Dec 16, 2003 #1 shahatul Programmer May 28, 2002 23 US Hello, In VFP 6.0 Caption property of label has ='=' was worked very well but in VFP 8.0 it does not work. Any idea? Thanks in advance.
Hello, In VFP 6.0 Caption property of label has ='=' was worked very well but in VFP 8.0 it does not work. Any idea? Thanks in advance.
Dec 16, 2003 #2 tristero Programmer Jan 24, 2003 95 US what do you want as the caption? an equal sign? Thisform.Label1.Caption = '=' (or "=" This isn't working? Upvote 0 Downvote
what do you want as the caption? an equal sign? Thisform.Label1.Caption = '=' (or "=" This isn't working?
Dec 16, 2003 Thread starter #3 shahatul Programmer May 28, 2002 23 US I want an equal sign. In VFP 8.0, when you open a form, it gives me a Syntax error warning message. So Thisform.Label1.Caption ='=' does not work. Upvote 0 Downvote
I want an equal sign. In VFP 8.0, when you open a form, it gives me a Syntax error warning message. So Thisform.Label1.Caption ='=' does not work.
Dec 16, 2003 #4 craigsboyd IS-IT--Management Nov 9, 2002 2,839 US have you tried: Thisform.Label1.Caption = chr(61) Slighthaze = NULL [sub]craig1442@mchsi.com[/sub][sup]"Whom computers would destroy, they must first drive mad." - Anon[/sup] Upvote 0 Downvote
have you tried: Thisform.Label1.Caption = chr(61) Slighthaze = NULL [sub]craig1442@mchsi.com[/sub][sup]"Whom computers would destroy, they must first drive mad." - Anon[/sup]
Dec 16, 2003 Thread starter #5 shahatul Programmer May 28, 2002 23 US Well, I found solution, if you can put space before and after quote, it works ok. For e.g, = ' = '. Thanks for reply. Upvote 0 Downvote
Well, I found solution, if you can put space before and after quote, it works ok. For e.g, = ' = '. Thanks for reply.