baban Posted June 27, 2006 Posted June 27, 2006 How can I put just Uppercase to input box? Or change letter to uppercase. Thanks in advance for any help
Xenobiologist Posted June 27, 2006 Posted June 27, 2006 How can I put just Uppercase to input box? Or change letter to uppercase.Thanks in advance for any helpHi,what about StringUpper() ?So long,Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
baban Posted June 27, 2006 Author Posted June 27, 2006 Hi,what about StringUpper() ?So long,MegaThanks for your fast reply. I have tried but I coulden't sort out. Is that possible to change from lowercase to upper?
Xenobiologist Posted June 27, 2006 Posted June 27, 2006 HI, yes of course! Show your code and we'll fix it. So long, Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
baban Posted June 27, 2006 Author Posted June 27, 2006 HI, yes of course! Show your code and we'll fix it. So long, Mega very simple code #include <GuiConstants.au3> GuiCreate("MyGUI", 392, 316,-1, -1 , BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS)) $Input_1 = GuiCtrlCreateInput("", 90, 100, 130, 30, StringUpper()) $Button_2 = GuiCtrlCreateButton("Button2", 240, 100, 60, 30) GuiSetState() While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case Else ;;; EndSelect WEnd Exit
Developers Jos Posted June 27, 2006 Developers Posted June 27, 2006 $Input_1 = GuiCtrlCreateInput("", 90, 100, 130, 30,$ES_UPPERCASE) Ebola57 and Xandy 1 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
baban Posted June 27, 2006 Author Posted June 27, 2006 I have tried this way it doesn't work either. #include <GuiConstants.au3> GuiCreate("MyGUI", 392, 316,-1, -1 , BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS)) $Input_1 = GuiCtrlCreateInput("", 90, 100, 130, 30) $Button_2 = GuiCtrlCreateButton("Button2", 240, 100, 60, 30) GuiSetState() While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop case $msg = $Button_2 StringUpper($Button_2) Case Else ;;; EndSelect WEnd Exit
Xenobiologist Posted June 27, 2006 Posted June 27, 2006 HI, or if you want to do it by button: #include <GuiConstants.au3> GuiCreate("MyGUI", 392, 316,-1, -1 , BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS)) $Input_1 = GuiCtrlCreateInput("", 90, 100, 130, 30) $Button_2 = GuiCtrlCreateButton("Button2", 240, 100, 60, 30) GuiSetState() While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop case $msg = $Button_2 GUICtrlSetData($Input_1, StringUpper(GUICtrlRead($Input_1))) Case Else ;;; EndSelect WEnd Exit So long, Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
baban Posted June 27, 2006 Author Posted June 27, 2006 $Input_1 = GuiCtrlCreateInput("", 90, 100, 130, 30,$ES_UPPERCASE) amazing. thanks works % makes me
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