Posts by Jose Carlos Taveira • 70 points
3 posts
-
2
votes1
answer1204
viewsA: Rand() function does not return random numbers. C++
You have put the 2 necessary includes to generate the numbers? #include<stdlib.h> and #include<time.h>. The variable num_items must have a value as well. Replace the srand( (unsigned)…
-
1
votes1
answer212
viewsQ: Use of bindingNavigator
I fill a dataGridView via SQL and filling a dataTable. I’d like to associate a bindingNavigator eastward dataGridView. I’m not getting it. Follow the code. string arquivo =…
c#asked Jose Carlos Taveira 70 -
2
votes2
answers2085
viewsQ: Radio button selection return in C#
Good morning. I have a Groupbox that contains 5 Radiobutton. I have a function where it receives the name of the Groupbox and it returns 1 if any Radiobutton is selected and -1 if no Radiobutton has…