Kyme Posted July 2, 2008 Posted July 2, 2008 how i can set gui position if i use xskin??? i can't add the position to guicreate.... $Form1 = XSkinGUICreate("Form1 ",671, 259,$Skin_Folder,1,11) some other function for setposition exist? tnx
Valuater Posted July 2, 2008 Posted July 2, 2008 Just use WinMove() #include <XSkin.au3> ; folder of skin $Skin_Folder = @ScriptDir & "\Skins\Valor" $XSkinGui = XSkinGUICreate( "My GUI", 400, 450, $Skin_Folder) WinMove($XSkinGui, "", 0, 0) GUISetState() While 1 Sleep(10) WEnd 8)
Kyme Posted July 2, 2008 Author Posted July 2, 2008 Just use WinMove() #include <XSkin.au3> ; folder of skin $Skin_Folder = @ScriptDir & "\Skins\Valor" $XSkinGui = XSkinGUICreate( "My GUI", 400, 450, $Skin_Folder) WinMove($XSkinGui, "", 0, 0) GUISetState() While 1 Sleep(10) WEnd 8) good idea Valuater tnx
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