haroldjclements
Well-known member
- Joined
- Jun 13, 2004
- Messages
- 46
I have a problem with converting my VB.NET code to J#.NET
I know the loop in J#, just not the code for adding the item to the combo box!
Any help will be appreciated.
Thanks,
Harold Clements
Code:
Dim x
For x = 1 To 31
Me.cbxDays.Item.Add(x)
Next
I know the loop in J#, just not the code for adding the item to the combo box!
Code:
for (int x=1; x<32; x++)
{
this.cbxDays.??????????(x);
}
Thanks,
Harold Clements