◄Up► ◄Contents► ◄Index► ◄Back► ─────Run-Time Library─────────────────────────────────────────────────────── /* WABOUT.C - Demonstrate setting the About dialog box * string with _wabout */ #include <stdio.h> #include <io.h> char string[512]; void main() { int nRes; for ( ; ; ) { printf( "\nEnter the About string: " ); scanf("%s", string); printf( "\nAbout string = %s\n", string ); printf( "Setting about string..." ); nRes = _wabout( string ); printf( "\n_wabout result = %i\n", nRes ); printf( "\nTry 'About' in the Help menu\n" ); } } -♦-