GenHTML.Prg is the prg that is run when you take that option. You can run
it manually like:
DO GenHTML With lcHTMLFileName, lcTableName
ActiveVFP -www.activevfp.com
Free, Open Source VFP Web Development
> GenHTML.Prg is the prg that is run when you take that option. You can run
> it manually like:
[quoted text clipped - 10 lines]
>
> - Show quoted text -
Thank you for your responce.. however, I'm still lost...
Here is my code below...
Select * from parts.dbf where alltrim(partno)=="12345" and
alltrim(itemstatus)<>"X"
Copy to "C:\Results.htm" type htm (? -- not sure what would go here
but your telling me it should be)
DO GenHTML With lcHTMLFileName, lcTableName
What is IcHTMLFileName? What is IcTableName?
Thanks so much!
Bernhard Sander - 28 Jul 2008 16:28 GMT
Hi Internetdomainowner
> DO GenHTML With lcHTMLFileName, lcTableName
>
> What is IcHTMLFileName? What is IcTableName?
Start your VFP IDE
Enter this command in the command window:
MODIFY COMMAND genhtml
Have a look at the parameter description
Regards
Bernhard Sander
Dan Freeman - 28 Jul 2008 16:44 GMT
Take out the COPY TO. Nobody told you to do that.
SELECT into cursor
DO Genhtml with ....
That's all.
Dan
> Thank you for your responce.. however, I'm still lost...
>
[quoted text clipped - 11 lines]
>
> Thanks so much!