Re: Putting dbf on web site by Dan
Dan
Mon Jun 18 18:09:37 CDT 2007
If all you're doing is static HTML, you don't even need the report.
use your.dbf
do (_genhtml) with 'output.html', Dbf(), 2
Dan
Emily wrote:
> Thank you but I looked into this and this is not supported by Vista.
> Any other ideas?
>
> What I need actually can maybe handled through the ReportListener
> class. I found out I can create a report and save it as an html file
> which is wondering that is all I need however I am unable to work the
> thing keep getting syntax error on the examples that are even
> provided by Microsoft.
>
> Maybe if someone could look at this code and tell me what I am doing
> wrong?
>
> Thanks.
>
> Down below this is the line giving me a syntax error:
> REPORT FORM r_commnunpdweb OBJECT oHtml
>
>
> LOCAL oHtml
> lcThisDir = dir_data
> oHtml = NEWOBJECT("HtmlListener","_reportlistener.vcx")
> oHtml.targetFileName = lcThisDir + 'TEST.HTM'
> oHtml.quietmode=.t.
> REPORT FORM r_commnunpdweb OBJECT oHtml
> MODIFY FILE (oHtml.targetFileName)
> ACTI SCREEN
> ? oHtml.XsltProcessorUser.Stylesheet.Xml
>
>
>
> Emily
>
> "Anders Altberg" wrote:
>
>> Java can uase a VFP database through an OLE DB connection. Install
>> VFPOLEDB.DLL. The same way it would connect throgh an OLE DB driver
>> for any database.
>> -Anders
>>
>> "Emily" <Emily@discussions.microsoft.com> wrote in message
>> news:A8C4EE8A-D7ED-4403-97C7-AB9FC0431AB2@microsoft.com...
>>> Hello,
>>>
>>> I need to take values from a dbf file and display on website. Does
>>> any one
>>> know of JavaScripts that can do this?
>>>
>>> Thank you in advance.