Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Can we add hyperlink in report
Message
From
04/08/2005 13:06:05
 
 
To
02/08/2005 13:14:15
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01033373
Message ID:
01038612
Views:
22
Hi Stacy.

>Very strange, not throwing an error even...
>
>Maybe Doug will see this and jump in.

I tried this both on my Dev PC and a test machine that has the VFP 9 runtimes installed, and it worked in both cases. You'll likely have to add some old fashioned debugging code (ie. WAIT WINDOW statements) to see what's going on. For example, in the HyperlinkListener class, add this:
procedure Init
wait window 'Before DODEFAULT'
llReturn = dodefault()
wait window 'DODEFAULT returned ' + transform(llReturn)
wait window 'This.HadError = ' + transform(This.HadError)
return llReturn
endproc

procedure Error(nError, cMethod, nLine)
wait window transform(nError) + chr(13) + cMethod
dodefault(nError, cMethod, nLine)
endproc
Note that adding .H files to the project does nothing since those files are used at compile time, not runtime. Nor does having an ON ERROR, since _ReportListener has its own Error method, which overrides ON ERROR.

Good luck!

Doug
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform