Code:
Function SplashProc() As Long Dialog New 0, "",,, 325,146, %WS_POPUP Or %WS_DLGFRAME To sDlg Control Add Image, sDlg, -1,"#1031",0,0,325,146 Control Add Frame, sDlg, -2,"Licensed to",20, 55, 150, 35, %WS_EX_LEFT Control Add Label, sDlg, -3, wRegUser, 25, 65, 140, 10, %WS_EX_LEFT Control Add Label, sDlg, -4, wRegCompany, 25, 75, 140, 10, %WS_EX_LEFT Dialog Show Modal sDlg Call SplashScreen End Function
I would like to make the label's background clear, transparent, etc, it's being put over top of a bitmap (image) and it looks kinda silly this way...
Is there a window style for this or do I have to do the paint by numbers routine??
Thanks,
Scott
Comment