Search the Community
Showing results for tags 'guictrlread'.
-
Hello! Please help me with this small problem I've encountered while learning to make GUI. I'm not able to get the set slider values out of sliders and I can't figure out why. The slider value in the example is preset to 1, but whatever I set the slider to, it returns the value 3 when I...
-
One statement of GUICtrlRead() fails. Result is always "Long/Short" in written file. The other GUICtrlRead() calls work as expected Func GetScanSettings() ; Read User Input for scan Local $collectusername, $collectlot, $collectsample $UserFile = "Sample.dat" ; Global $UserFile = save this...
-
im getting strange output in array display,$split_[1] is not properly aligned to other arrays and why guictrlsetdata is not writting any data if i put comma(,) at the end of the text in $Input1??? #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #i...
- 5 replies
-
- guictrlread
- guictrlsetdata
-
(and 1 more)
Tagged with:
-
Hello World!!!, please I need help I wanted to read the GUICreateInput, I don't know whats wrong with my script. #include <GUIConstantsEx.au3> #include <GUIListView.au3> #include <GUIListViewEx.au3> GUICreate("My GUI", 300, 100) GUISetState(@SW_SHOW) Local $sInput = GUICtrlCreateInput(...
-
Hi Wiki has this entry: https://www.autoitscript.com/wiki/Label, which differs from the actual Help file. I can not READ the value of a LABEL. Code GuiCtrlRead($myLabel) returns "False". Help appreciated.
-
Hi guys When I run this part of my script If GUICtrlRead(Input1) = "" Then on_Close() it closes that gui window but still sends 0 I want it to send nothing if the user don't type anything anyone know how to fix this? thanks this is my full script the GUICtrlRead(input1) = "" T...
-
Hey guys! I just started to work on a script to convert/encrypt strings in a simple GUI. First of all, here is my code: #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <String.au3> $Form1 = GUICreate("Form1", 615,...
- 5 replies
-
- GUICtrlRead
- Edit
-
(and 2 more)
Tagged with:
-
Can someone tell me where I've gone wrong here - it keeps returning the same value - IT Infrastructure I want it to return the selection from the combo box. #include <ButtonConstants.au3> #include <ComboConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsC...
-
[Resolved]Help me completing this script
Command3r posted a topic in AutoIt General Help and Support
Hello, i'm making this tool to convert "English" letters To "Arabic" letters but i have some problems in reading "input1" Notice: it isn't translator!! here's the script: #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3>...- 9 replies
-
- If
- StringInStr
-
(and 1 more)
Tagged with:
-
Trying to put in a GUI(textbox) and want it to get the information only if the input is numbers --------------- Case $Start_button $var[2] = GUICtrlRead($TimeoutInput) If $TimeoutInput = ???? --------------- Anyone? =)
- 3 replies
-
- number
- GUICtrlRead
-
(and 1 more)
Tagged with:
-
Here's a quick thing that i just can't make work correctly. Put a screen up to capture a user's input. Force that input to lowercase and put it in a variable to replace at a certain place in a third file. My problem is that i cannot get the user's input to tell me anything other than "3." i HAVE...