9.0

116
Description
Win32 only. Convert to a decimal (96 bit scaled real).
Parameter Description
Num|$ Convert a number or string value to a 96 bit scaled real.
Example
Sub Main
Debug
.Print CDec("1E16")+0.1 ' 10000000000000000.1
End
Sub
charlist definition
A group of one or more characters enclosed by [ ] as part of Like operator's right string expression.
This list contains single characters and/or character ranges which describe the characters in the list.
A range of characters is indicated with a hyphen (-) between two characters. The first character must be
ordinally less than or equal to the second character.
Special pattern characters like ?, *, # and [ can be matched as literal characters.
The ] character can not be part of charlist, but it can be part of the pattern outside the charlist.
ChDir Instruction
Syntax
ChDir Dir$
Group
File
Description
Change the current directory to Dir$.
Parameter Description
Dir$ This string value is the path and name of the directory.
See Also: ChDrive, CurDir$( ).
Example
Sub Main
ChDir "C:\"
Debug
.Print CurDir$() '"C:\"
End
Sub