Some more information would be really handy to help fix your issue here :L
If I think you are referring to how to use the strings that are stored in for example "text boxes".
The text boxes use System::string^
You can marshal them over to other types.
Anyway thats what I thought you were asking I really don't have a clue because your question wasn't really well asked :L
Cheers
Kingpulse
For example i want to make a variable:
string welcome = "Hello world";
Where should I put it? In c++ file? Some kind of header?
And where should i put libraries? Like:
#include <string>
I think i didn't explain very well. OK
I got form application on VC++ 2010
I want to declare string variable. Like this:
string text = "test";
and also i got to include string library:
#include <string>
now where should i declare them?
I declared library at the top of "Form.h" file (after #pragma once)
And i declared string after library.
Is that a good place to declare variables and include libraries?