"Jonathan Ernst" Jonathan@ErnstFamily.ch wrote:
Next I'll change the window to a dialog if I can.
Thanks.
- wc.lpszClassName = appname;
wc.lpszClassName = sAppname;
if (!RegisterClass(&wc)) exit(1);
- hWnd = CreateWindow( appname, "Wine Application Uninstaller",
- hWnd = CreateWindow( sAppname, sAppname,
Sorry for not pointing out to it earlier, but it's better to leave the window class name in ASCII.