Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Syntax Conundrum single quotes, double quotes, brackets
Message
 
To
18/05/2007 10:44:17
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01226752
Message ID:
01226767
Views:
28
This message has been marked as the solution to the initial question of the thread.
>Ok, it's Friday. Must be why I can't see the forest...
>
>I can programmatically pass information correctly to a bluetooth device using this format (the format is the bluetooth device's programming language syntax):
>
>lnBytes = thisform.zOcx.Send([! U1 GETVAR "bluetooth.authentication"]+CHR(13)+CHR(10))
>
>That succeeds. However, if I type
>
>! U1 GETVAR "bluetooth.authentication"
>
>in a textbox and try this:
>
>lnBytes = thisform.zOcx.Send(thisform.text1.value+CHR(13)+CHR(10))
>
>it fails. So does passing single quotes or square brackets. I need to pass a value INSIDE double quotes taken from a value typed in the textbox and pass the double quotes in the string. Any ideas? What obvious thing am I missing this time? :o)

lnBytes = thisform.zOcx.Send("["+alltr(thisform.text1.value)+"]"+CHR(13)+CHR(10))
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform