Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Strange behaviour from RightClick()
Message
 
To
10/07/2002 06:17:45
General information
Forum:
Visual FoxPro
Category:
Troubleshooting
Miscellaneous
Thread ID:
00676977
Message ID:
00676981
Views:
17
Kevin,

The box you see is a non-printable character, probably a CR or LF (CHR(13), CHR(10) respectively). This character is most likely being appended to the string by the spell checking routine you are calling. You can fix this by trying this change;
* The following line removes any CR and/or LF from the string
gcText = StrTran(STRTRAN(gcText,CHR(10),""),CHR(13),"")

IF this.Enabled AND !this.ReadOnly
  IF this.SelLength > 0
    this.SelText = gcText
  ELSE
    this.Value = gcText
  ENDIF
ENDIF
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform