Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Probably the easiest question any programmer will have to answer...

Status
Not open for further replies.

The

Programmer
Jul 30, 2001
92
0
0
CA
what does the dollar sign ($) do in codes?? I see ppl using it like (some name here)$(something else here)

what does it mean? thanks
 
This is old terminology that refers to the item as a String. In new terminology it may be a system variable.
 
Oh, thanks...so it's just the same as putting "str(whatever)"?
 
Any variable followed by a dollar sign is a string variable.
If dollar sign is ommited, it will be an integer variable.
You had to use it in QBasic for any string variable.
But it's not necessary (but better to use) in Visual Basic.

Hope this is the answer you want...
Byes
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top