Jump to content

Recommended Posts

Posted

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

Posted

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
Posted

shai,

Can you please explain just what this TextBoxChallange does and why you are seeking to read it and manipulate the contents? :huh:

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Posted

 

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.

Posted

shai,

Can you please explain just what this TextBoxChallange does and why you are seeking to read it and manipulate the contents? :huh:

M23

 

is code maker in my work for token. i want convert him to autoitscript for automation of operations.

  • Moderators
Posted

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? :huh:

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...