Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Another VFP DLL Question
Message
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Miscellaneous
Thread ID:
00538616
Message ID:
00539520
Views:
17
>I am using VFP6, SP5
>
>In the debugger, you can see ALL field names on the
>oRecord object??
>
>I even created another test DLL, just to see if my other
>DLL had something wrong, and the test DLL does the same
>thing

Have you tried writing out to debug log to see if it has it in the com server?
It may have it at debug time (while running as a class in VFP), but not under COM.
FYI: I'm using VFP sp4 with no problem.

e.g.
Procedure AddUser
  Select users
  Scatter Name oRecord
  this.WriteToDebug(Transform(oRecord.Field1))
  this.WriteToDebug(Transform(oRecord.Field1))
 ** etc.
EndProc

Procedure WriteToDebug(tcOutput)
  StrToFile(tcOutput + Chr(13), Home() + "debug.log", .T.)
EndProc
Insanity: Doing the same thing over and over and expecting different results.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform