alawoona Posted March 28, 2004 Posted March 28, 2004 (edited) How difficult is it to add other controls to AutoIT-gui, like updown and trackbar. Being an absolute neophyte in c++, I do not know the scope of doing this. Edited March 28, 2004 by alawoona
jpm Posted March 29, 2004 Posted March 29, 2004 How difficult is it to add other controls to AutoIT-gui, like updown and trackbar. Being an absolute neophyte in c++, I do not know the scope of doing this.I am not sure to know what is updown does combo control do the job.and Trackbar isn't it the progress control.draw an example as I can see the difference.
CyberSlug Posted March 30, 2004 Posted March 30, 2004 Other controls you might consider adding: - RichEdit textbox - Menu bar - Status bar Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
alawoona Posted March 30, 2004 Author Posted March 30, 2004 JP - try this script: $DTS_TIMEFORMAT = 9 GuiCreate("test") GUISetControl ( "date", "", 20, 20, 100, 20, $DTS_TIMEFORMAT) GUIWaitClose ( ) The time box has little up and down arrows on its right hand side - An updown control looks like this but it appplies to numeric data other then time. So it looks like an input box that you can adjust the values by clicking on the up and down arrows. (you can put the arrows on the left side or have them aligned horizontally by choosing various updown control styles)
jpm Posted March 30, 2004 Posted March 30, 2004 JP - try this script:$DTS_TIMEFORMAT = 9GuiCreate("test")GUISetControl ( "date", "", 20, 20, 100, 20, $DTS_TIMEFORMAT) GUIWaitClose ( )The time box has little up and down arrows on its right hand side - An updown control looks like this but it appplies to numeric data other then time. So it looks like an input box that you can adjust the values by clicking on the up and down arrows. (you can put the arrows on the left side or have them aligned horizontally by choosing various updown control styles)I understand but I hope Larry,Valik and other have great idea to implement this updown.I have none for the time being.
Valik Posted March 30, 2004 Posted March 30, 2004 (edited) It's just a control type, JP. I can't remember what it's called off the top of my head, but I don't think there are any tricks to it. I've seen it in the GUI designer in Visual Studio, at any rate.Edit: Search MSDN for "Up-Down Control Reference". Edited March 30, 2004 by Valik
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