Touch Posted January 7, 2009 Posted January 7, 2009 Yo, How do I convert VB variables e.g 32514& into an AutoIt accepted number? I'm not sure if it's hex or what. Any help please? [center][font="Arial"]If practise makes perfect and no-ones perfect whats the point of practise?[/font]Sorry for my rude attitude when I started here.[/center]
rasim Posted January 7, 2009 Posted January 7, 2009 Yo,How do I convert VB variables e.g 32514& into an AutoIt accepted number? I'm not sure if it's hex or what.Any help please?I think this is just a 32514
Zinthose Posted January 7, 2009 Posted January 7, 2009 (edited) Yo,How do I convert VB variables e.g 32514& into an AutoIt accepted number? I'm not sure if it's hex or what.Any help please?Visual Basic uses some special characters to allow the programmer to specify the data types of inline literals.% = Integer& = Long@ = Decimal! = Single# = Double$ = StringSince AutoIt dose not adhere to Strict datatypeing, these should be of no concern to typical AutoIt programmers.You can read more on the topic at: Visual Basic 2005 Programmer's Reference. Edited January 7, 2009 by Zinthose --- TTFN
James Posted January 7, 2009 Posted January 7, 2009 Or as Monoceres pointed out to me, output the number into a message box. MsgBox(32514&) In this case it is just 32514. Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
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