9.0
231
Description
Return the string with S$'s trailing spaces removed.
Parameter Description
S$ Copy this string without the trailing spaces. If this value is Null then Null is returned.
See Also: LTrim$( ), Trim$( ).
Example
Sub Main
Debug
.Print ".";RTrim$(" x ");"." '". x."
End
Sub
SaveSetting Instruction
Syntax
SaveSetting AppName$, Section$, Key$, Setting
Group
Settings
Description
Save the Setting for Key in Section in project AppName. Win16 and Win32s store settings in a .ini file named
AppName
. Win32 stores settings in the registration database.
Parameter Description
AppName$ This string value is the name of the project which has this Section and Key.
Section$ This string value is the name of the section of the project settings.
Key$ This string value is the name of the key in the section of the project settings.
Setting Set the key to this value. (The value is stored as a string.)
Example
Sub Main
SaveSetting "MyApp","Font","Size",10
End
Sub
Second Function
Syntax
Second(dateexpr)
Group
Time/Date
Description










