Hi, How do I assign the characters entered into a text box to a c-style character array? I have to do this because the library I'm using contains many functions whose parameters are c-style character arrays. I wish to say something like:
char* x = new char[20];
strcpy(x, textbox->text);
char* x = new char[20];
strcpy(x, textbox->text);