Posts by D. Rodrigues • 79 points
6 posts
-
0
votes1
answer32
viewsQ: Used AUTO_INCREMENT to create ID numbers
I am using AUTO_INCREMENT to automatically add an ID whenever I create a new column. However when clearing a column, the ID number continues to add +1 instead of starting from where it left off. How…
-
0
votes2
answers85
viewsQ: Randomly generated numbers with arrays are repeated
I looked everywhere but I couldn’t find anything that would solve my problem. At the moment I have this: int[] nums5 = new int[100]; for (int i = 0; i < nums5.Length; ++i) { int aleat5; do {…
c#asked D. Rodrigues 79 -
2
votes2
answers67
viewsQ: How to know if all Abels with numbers are filled
I have a card with randomly generated numbers that when they are equal to the number generated in the middle, make the orange Labels. However, I wanted to do something for when all the Abels with…
c#asked D. Rodrigues 79 -
-1
votes2
answers114
viewsQ: Using the Click event inside an IF
Hello, I wonder if it is possible to use a Click event inside an IF. I will try to explain my situation. At the moment I have this: foreach (Label lblCor in panel1.Controls) if (lblNum.Text ==…
c#asked D. Rodrigues 79 -
3
votes2
answers81
viewsQ: How to get multiple Abels to have a randomly generated number
I am playing a Bingo game. Where I have 4 cards and each card has 15 Bingo cards (15 numbers). I want that when the form starts, each label has a randomly generated number. However, I’m only getting…
c#asked D. Rodrigues 79 -
1
votes2
answers65
viewsQ: How to change text type in a list with Jquery?
How can I make an effect on the text inside the lists with Jquery? For example, when the mouse hovers over the text in the lists, the color becomes lighter and the text is underlined. p {…