Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Can we add hyperlink in report
Message
De
04/08/2005 13:06:05
 
 
À
02/08/2005 13:14:15
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire de rapports & Rapports
Versions des environnements
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Database:
Visual FoxPro
Divers
Thread ID:
01033373
Message ID:
01038612
Vues:
21
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform