ConsultingJoe Posted March 30, 2006 Posted March 30, 2006 the bmp is under the editboxes but the contols aren't you should see what I mean. is there a way to fix this? Thanks #include <GUIConstants.au3> $gui = GUICreate("-", 571, 356, 192, 125) GUISetIcon ( @scriptdir & "\ICON.ico" , -1, $gui ) $Pic1 = GUICtrlCreatePic("BITMAP.bmp", 0, 0, 579, 399) $Input1 = GUICtrlCreateInput("", 99, 136, 209, 21, -1, $WS_EX_CLIENTEDGE) $Input2 = GUICtrlCreateInput("", 99, 180, 209, 21, -1, $WS_EX_CLIENTEDGE) $Checkbox1 = GUICtrlCreateCheckbox("ACheckbox1", 96, 208, 17, 17) GUISetState(@SW_SHOW) WinSetOnTop ( "-", "", 1 ) While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = -11 _login() EndSelect WEnd Exit Func _login() EndFunc Check out ConsultingJoe.com
ConsultingJoe Posted March 30, 2006 Author Posted March 30, 2006 Try disabling the pic.WOW, thAt was it, thAnks Check out ConsultingJoe.com
ConsultingJoe Posted March 30, 2006 Author Posted March 30, 2006 one more thing is there still a way to set the z-index or make an invisable button over the bmp Check out ConsultingJoe.com
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now