What is the proper replacement for the VB6 VAL command? ie num=VAL("1234") that works in VB6
Is there a VB6 B4J cross reference anywhere?
Is there a VB6 B4J cross reference anywhere?
if isnumber("123456") then
'This will work.
dim num as int = "123456"
end if
Example?or when doing math without the need to create extra variables.
Log("45" + "23") '68
Dim txt="12345"
Log(5*txt.CharAt(3)) <- doesn't compile
Log(5*Bit.ParseInt(txt.CharAt(3),10)) <- works fine