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.com

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 use

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 Intellisense to

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

2012-07-18 Thread John Harvey
I think you have to create the instance from the command prompt and attach it to a global variable, like _screen, then intellisense will kick in when you are in the programming window. John -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of

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 Keep folder!