cjconstantine Posted April 2, 2008 Posted April 2, 2008 Ok, here's the code: #include <GUIConstants.au3> $hGUI_Main = GUICreate('Profile Mover', 400, 300) GUICtrlCreateLabel('Old Profile', 10, 10) GUICtrlCreateLabel('', 10, 28, 260, 18, $SS_SUNKEN) GUISetState(@SW_SHOW, $hGUI_Main) Do $msg = GUIGetMsg() Until $msg = $GUI_EVENT_CLOSE I just installed the latest version of AutoIt, AutoIt beta, and Scite ... and when I run the program I get the follow errors: D:\Documents and Settings\xcs1621a\Desktop\Scripts\Profile Move.au3(5,51) : WARNING: $SS_SUNKEN: possibly used before declaration. GUICtrlCreateLabel('', 10, 28, 260, 18, $SS_SUNKEN) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ D:\Documents and Settings\xcs1621a\Desktop\Scripts\Profile Move.au3(5,51) : ERROR: $SS_SUNKEN: undeclared global variable. GUICtrlCreateLabel('', 10, 28, 260, 18, $SS_SUNKEN) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ D:\Documents and Settings\xcs1621a\Desktop\Scripts\Profile Move.au3 - 1 error(s), 1 warning(s) Any ideas? Have I just totally lost it??
AdmiralAlkex Posted April 2, 2008 Posted April 2, 2008 (edited) Hard to say when you dont say if you use stable or beta but i would try: #include <StaticConstants.au3> Edit:Also I recommend that you switch to GUIConstantsEx.au3 instead of GUIConstants.au3 Edited April 2, 2008 by AdmiralAlkex .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface
GaryFrost Posted April 2, 2008 Posted April 2, 2008 StaticConstants.au3 SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
AdmiralAlkex Posted April 2, 2008 Posted April 2, 2008 (edited) Thanks much! When did that change?With latest stable (v3.2.10.0)It's written in the changelog Edited April 2, 2008 by AdmiralAlkex .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface
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