shai Posted October 31, 2013 Posted October 31, 2013 i have a func in VB. maybe someone can help me to convert the function to autoit? this is a original func: Private Sub Command1_Click() Dim challange As Long challange = CLng(TextBoxChallange.Text) Dim s As String s = DigestStrToHexStr(Str(challange) & "Hi") Dim resp As Long resp = CLng("&H" & Mid(s, 3, 5)) TexBoxResponse.Text = Str(resp) End Sub this is my try autoit func: Func Command1_Click($TextBoxChallange) Dim $challange $challange = Number($TextBoxChallange) Dim $s $s = Hex(String($challange) & "Hi") Dim $resp $resp = Number("&H" & StringMid($s, 3, 5)) return String($resp) EndFunc but it is dont work thanks
Jfish Posted October 31, 2013 Posted October 31, 2013 Looks like you are trying to get the text from a textbox control (the whole script would be useful if you could post it). This might be the problem: $challange = Number($TextBoxChallange) ; if you are trying to read a text box try this instead... GUICtrlRead ( controlID [, advanced] ) ; you can still cast it to a number if you need to Build your own poker game with AutoIt: pokerlogic.au3 | Learn To Program Using FREE Tools with AutoIt
Moderators Melba23 Posted October 31, 2013 Moderators Posted October 31, 2013 shai,Can you please explain just what this TextBoxChallange does and why you are seeking to read it and manipulate the contents? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
shai Posted October 31, 2013 Author Posted October 31, 2013 Looks like you are trying to get the text from a textbox control (the whole script would be useful if you could post it). This might be the problem: $challange = Number($TextBoxChallange) ; if you are trying to read a text box try this instead... GUICtrlRead ( controlID [, advanced] ) ; you can still cast it to a number if you need to TextBoxChallange.Text is text box. but i want use this func without text box.
shai Posted October 31, 2013 Author Posted October 31, 2013 shai, Can you please explain just what this TextBoxChallange does and why you are seeking to read it and manipulate the contents? M23 is code maker in my work for token. i want convert him to autoitscript for automation of operations.
Moderators Melba23 Posted October 31, 2013 Moderators Posted October 31, 2013 shai,Not really a lot of help that - what sort of "operations" are these? I am afraid that this sounds to me very much like some kind of CAPTCHA - and we do not want to go there. Can you post a screenshot of the app with this dialog displayed to show exactly what is happening? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
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