kjason Posted July 30, 2007 Posted July 30, 2007 Hi, guys~ I would like to use GUICtrlCreatePic function with both $WS_EX_ACCEPTFILES and $GUI_WS_EX_PARENTDRAG styles together. How can I use those styles together with GUICtrl ? ============================================================================== GUICreate ("title", 70, 70, 200, 200, $WS_POPUP, $WS_EX_TOOLWINDOW ) GUICtrlCreatePic ("title.jpg", -1, -1, 70, 70, $SS_NOTIFY , $WS_EX_ACCEPTFILES , $GUI_WS_EX_PARENTDRAG ) ==> I want to use like this but it doesn't work. ============================================================================== Your kind reply would be very appreciated.
enaiman Posted July 30, 2007 Posted July 30, 2007 GUICtrlCreatePic ("title.jpg", -1, -1, 70, 70, $SS_NOTIFY , BitOR($WS_EX_ACCEPTFILES , $GUI_WS_EX_PARENTDRAG )) SNMP_UDF ... for SNMPv1 and v2c so far, GetBulk and a new example script wannabe "Unbeatable" Tic-Tac-Toe Paper-Scissor-Rock ... try to beat it anyway :)
kjason Posted July 30, 2007 Author Posted July 30, 2007 enaiman ~~ Thanks ~~ It works great. ^^; Thanks again for your help.
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