Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
~2K People Reached
Favorite Forums
Favorite Tags
2 Posted Topics
Hi it would be good if you see this code i am creating a label for each item in tha combo box [CODE] public partial class Form1 : Form { ComboBox cb ; Label lb; public Form1() { InitializeComponent(); cb = new ComboBox(); cb.Location = new Point(20, 20); cb.Items.Add("José"); cb.Items.Add("Ivan"); …
Hi Friends, Wel i´am not sure about that way, becayse you will have an if() for each button it would be nice if check this code [CODE] public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { int buttonID = 0; …
The End.
jmosquera1987