Re: What was that old trick for getting Intellisense to work in a PRG class with THIS. references?

2012-07-18 Thread MB Software Solutions, LLC
On 7/18/2012 4:11 PM, Tracy Pearson wrote: > Mike, > > #IF .F. > LOCAL THIS as ObjectClass > #ENDIF > > Sometimes the syntax might be > #IF .F. > LOCAL THIS as ObjectClass OF WONTOP() > #ENDIF That did it...THANKS Saved this one in the "Kee

RE: What was that old trick for getting Intellisense to work in a PRG class with THIS. references?

2012-07-18 Thread John Harvey
MB Software Solutions, LLC Sent: Wednesday, July 18, 2012 2:58 PM To: ProFox Email List Subject: Re: What was that old trick for getting Intellisense to work in a PRG class with THIS. references? But that doesn't work when I'm writing/creating code and using THIS. For example, if in a me

RE: What was that old trick for getting Intellisense to work in a PRG class with THIS. references?

2012-07-18 Thread Tracy Pearson
MB Software Solutions, LLC wrote on 2012-07-18: > But that doesn't work when I'm writing/creating code and using THIS. > > For example, if in a method in my class I want to write > IF THIS.SystemName = "ABC" THEN > messagebox("Rock on, man!") > ENDIF > ...and I want Intellise

Re: What was that old trick for getting Intellisense to work in a PRG class with THIS. references?

2012-07-18 Thread MB Software Solutions, LLC
But that doesn't work when I'm writing/creating code and using THIS. For example, if in a method in my class I want to write IF THIS.SystemName = "ABC" THEN messagebox("Rock on, man!") ENDIF ...and I want Intellisense to kick in right after I type "THIS." See what I mean? I want to

RE: What was that old trick for getting Intellisense to work in a PRG class with THIS. references?

2012-07-18 Thread Richard Kaye
LOCAL myvar AS [myclass.myobject] You have to have "set classlib to myclass" in scope. -- rk -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of MB Software Solutions, LLC Sent: Wednesday, July 18, 2012 3:39 PM To: profoxt...@leafe.co