RE: Class library causing compile error

2007-03-16 Thread John J. Mihaljevic
This did the trick. Thanks much! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ken Dibble Sent: Thursday, March 15, 2007 9:26 PM To: [EMAIL PROTECTED] Subject: RE: Class library causing compile error The following lines, executed

RE: Class library causing compile error

2007-03-15 Thread Ken Dibble
At 01:09 PM 3/14/07, you wrote: I loop the project a few times releasing each class library, via a menu call to this: The following lines, executed in the Command Window before compiling, will do it: RELEASE ALL EXTENDED CLEAR ALL Ken Dibble www.stic-cil.org

RE: Class library causing compile error

2007-03-14 Thread Dave Crozier
Joun, Look at Release Classlib Dave Crozier -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John J. Mihaljevic Sent: 14 March 2007 14:39 To: profox@leafe.com Subject: Class library causing compile error Hi all, I've got some classes in a library

Re: Class library causing compile error

2007-03-14 Thread Alan Bourke
I get this with VFP9 as well, and releasing the classlib doesn't work. Pain in the bum. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list:

RE: Class library causing compile error

2007-03-14 Thread Tracy
I loop the project a few times releasing each class library, via a menu call to this: PROCEDURE ClearClassLibs LOCAL lnCount lnCount = 0 DO WHILE DoClearClassLibs() *-- We don't want to get stuck in a loop lnCount = lnCount + 1 IF lnCount 10 EXIT ENDIF