Very Nice!
To further add, if you were to change the string "Warning" to "Loading GPS Module" in:
String Table -> 376 -> 1033 -> 6007
and change the warning message (can't remember exactly what it says) to "\n" in:
String Table 379 -> 1033 -> 6058
you wind up with something that looks even more informational, and even less like your computer's gonna blow up..
I still had to modify the height of the dialg box, that was where we originally modified the Window caption to Warning:
Dialog -> 1028 -> 1033 - modified values are
bold
1028 DIALOG 0, 0, 137,
75
STYLE WS_POPUP | WS_CAPTION
CAPTION "Warning"
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
FONT 10, "Tahoma"
{
CONTROL "OK", 1, BUTTON, BS_OWNERDRAW | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 28,
50, 40, 15
CONTROL "Cancel", 2, BUTTON, BS_OWNERDRAW | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 78,
50, 40, 15
CONTROL 158, 611, STATIC, SS_BITMAP | WS_CHILD, 33, 4, 69, 13
}
Dodgetimes2, thanks for the info!