Timur Posted March 15, 2007 Posted March 15, 2007 How to change "Window Blue-line", that moves the window => to the picture? I need: When Pressing mouse1 on the picture and move mouse, the window moves. Thanks . пс русские есть?
Helge Posted March 15, 2007 Posted March 15, 2007 (edited) Have you tried to set the picture-style to $GUI_WS_EX_PARENTDRAG ?Edit : Maybe this is close to what you want....#include <GUIConstants.au3> GUICreate("", 160, 160, -1, -1, $WS_POPUP) GUICtrlCreatePic(@WindowsDir & "\Jade.bmp", 0, 0, 160, 160, -1, $GUI_WS_EX_PARENTDRAG) GUISetState() Do Until GUIGetMsg() = $GUI_EVENT_CLOSEEdit II : Ehm, v2 ? Edited March 15, 2007 by Helge
Timur Posted March 15, 2007 Author Posted March 15, 2007 Thanks. I trough i used all styles at GuiCreate and Createpic... Thanks a lot!
Timur Posted March 15, 2007 Author Posted March 15, 2007 (edited) Another requestion: Is it possible to make diferent-collored text in the EDIT? Edited March 15, 2007 by Timur
saldous Posted March 15, 2007 Posted March 15, 2007 In the EDIT? $Input1 = GUICtrlCreateInput("", 232, 144, 121, 21) GUICtrlSetColor(-1, 0xFF0000)
Timur Posted March 15, 2007 Author Posted March 15, 2007 (edited) You didn't understood..I need to have different color text in same time in edit.IT'S EDIT:1st part of text of edit2nd part of text of editAlso: could i enable UTF-8 Encoding/Decoding in Edit? Thanks alot! Edited March 15, 2007 by Timur
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