View Single Post
Old Jan 18th, 2007, 12:23 PM   #9
Arevos
Programming Guru
 
Arevos's Avatar
 
Join Date: Aug 2005
Location: England
Posts: 1,499
Rep Power: 5 Arevos is on a distinguished road
I haven't done much work with the C++ .NET interface, but you probably have to do something like:
System::Int32 hours;
for(hours=1; hours<=50; hours++)
{
	this->HoursListBox->Items->Add(hours);
}
Arevos is offline   Reply With Quote