I am trying to out put my array to a text box. I have tried
textbox1->Text = number[x];
x++;
The problem is i keep getting this error
error C2664: 'void System::Windows::Forms::Control::Text::set(System::String ^)' : cannot convert parameter 1 from 'int' to 'System::String ^'
No user-defined-conversion operator available, or
No standard conversion exists from the boxed form of the arithmetic type to the target type

Out puting array to text box
urikohan
is the type of your number array String
If not you have to convert the type to string with something like:
textbox1->Text = number[x].toString();
Sugar
Keith Short
maybe the function String::Concat could help you
drole