Posts by Jose Badim • 61 points
8 posts
-
0
votes1
answer22
viewsA: Content does not work in Firefox - CSS
Try adding the following in the press: border: none; -webkit-appearance: none; This is what you need to get Firefox up and running.
cssanswered Jose Badim 61 -
3
votes2
answers59
viewsA: How to maintain a responsive daughter DIV without overriding parent DIV and without using overflow:Hidden
The problem is that it is using 100% height in various classes, so the children are the same height as the father, which is the same height as Body. To solve this you can reduce to the height of the…
-
1
votes0
answers88
viewsQ: Link n to n
I have a database and I wanted to dial n to n on C#, but I don’t know how to get the data from my other table. I wish where it says id_equipa the data of the team selected in the combobox Step to…
-
0
votes1
answer131
viewsQ: How to place two Tables in a Datagridview?
I have a program in which I wanted to present two tables of my database in one datagridview, these two tables have relation of n to n but I don’t know how I can see the second table. Step to…
-
0
votes1
answer143
viewsA: Changing Mysql data with C#
I also have a program that I have to change the data of the database and use this code (You have to put it in the change button) : foreach (DataGridViewRow item in this.dataGridView1.SelectedRows) {…
-
0
votes1
answer55
viewsQ: Windows Forms, double click that opens a new Form
I have a table called Tournament and would like to make Doubleclick on the type of game open all the teams of that game. I have 4 buttons that represent the 4 games I have, in the 4 games I have the…
-
0
votes3
answers337
viewsA: error calling a method passing a class as parameter c#
@Anderson User777, you are connected to some database? If you are connected to the database you can work with language mysql and everything gets a lot easier and in my opinion a lot more beautiful…
c#answered Jose Badim 61 -
0
votes1
answer56
viewsQ: How to Open Another Form by Double Clicking on the Cell
I have a table called tournaments that shows the type of game, the name of the tournament and the date. I want you to do double click in the cell of the type of game open the teams of this type of…