01-17-2008 10:06 AM
01-17-2008 10:13 AM
Hello Olivier,
the only reason why the string control could not appear is when the buffer is set to NULL (0). When using PromptPopup, make sure that ResponseBuffer (3rd parameter) refers to a valid buffer. When using GenericMessagePopup, this is the 6th parameter.
01-17-2008 10:47 AM
01-17-2008 10:50 AM
Hello Olivier.
The easiest way is just something like:
char string[500];
This will allocate a buffer of 500 bytes.
01-18-2008 03:35 AM
01-18-2008 04:53 AM - edited 01-18-2008 04:55 AM
01-18-2008 04:53 AM - edited 01-18-2008 04:56 AM
01-18-2008 04:53 AM - edited 01-18-2008 04:57 AM
01-18-2008 05:14 AM