My understanding is that you need to make the transaction between accounts program and the sending software seamless. So you can export to a spreadsheet, create the required totals, do any adjustments, then MAP the figures you want from the spreadsheet into the sending software, ie do NOT copy &...
My understanding is that Craig is aware of this.
There has been no comment as to when or whether it is to be fixed.
When I had previously downloaded it, there was a txt file with details. If you do not have it then please ask for specific info.
Thanks Olaf
I think you have cracked it.
? ResponseXML.validate.errorCode = -1.0728E+9
& ? ResponseXML.validate.reason
"The node is neither valid nor invalid because no DTD/Schema declaration was found"
So either use
lQualifier=STREXTRACT(lResponseText,"Qualifier","/Qualifier")
or
go and...
I'm trying to use "MSXML2.XMLHTTP.6.0" to send and receive an XML
I have been using "MSXML2.XMLHTTP.3.0" for over 10 years but suspect some of my clients are having problems with the ActiveX security
I use
Try
oHttp = CreateObject("MSXML2.XMLHTTP.6.0")
Catch
oHttp =...
Thanks Olaf
I check for the TRANSFORM(ohttp.status) is '200'
The xml that is sent back is always the same format.
It is quite small, only about 10 elements.
The routine has worked well for me for over 10 years, however a client had a problem with it at the beginning of this year, I suspect it...
Olaf was very helpful with a good description on using MSXML2.XMLHTTP.6.0 & MSXML2.XMLHTTP.3.0 in thread http://www.tek-tips.com/viewthread.cfm?qid=1715949
Try
oXML = CreateObject("MSXML2.XMLHTTP.6.0")
Catch
oXML = CreateObject("MSXML2.XMLHTTP.3.0")
Endtry
however when I have tried to...
Yanx
The solution is quite simple. You use the INT function.
? INT(expense) will give the Dollar amount.
? expense - INT(expense) will give the Cents.
However I totally disagree with your desire to create a field each for them.
Could you explain why you wish to do this.
Are you displaying the...
Daniel
I rolled my own.
Your main exe should be able to read a file off the web to see if there is an update. I compare the version of the exe to a text file on the web.
If there is an update it comes out of the main exe & fires a second exe, your updater.
This can now download your new exe...
Hi Micheleb
Prior to calling the report I have a form that allows you to enter both height & width changes. Just 2 spinners.
I find you have to multiply by 400 to get 1mm change (approx)
lUpDown=ThisForm.SpinUpDown.Value*400
lLeftRight=ThisForm.spinLeftRight.Value*400
When they have been...
Wiremesh
Here is a link which might do what you want.
http://maps.forum.nu/gm_driving_directions2.html
You would have to abstract the info from the source.
Andrew
Paul
You might want to read
'MySQL Client-Server Applications with Visual FoxPro' which has just been published from
http://www.hentzenwerke.com/catalog/mysqlvfp.htm
Andrew
(30 miles north of Edinburgh)
dbMark
Sorry, disagree with your assessment.
With VFP9 SP1
I did this in the command window
? int(1333365.8900*100) &&-> 133336589
? int(1333365.89000*100) &&-> 133336588
Still gives dif values
Andrew
Olaf
I was using the version of dfpug that came with Foxtalk2.
There is a form which allows you to choose the folder to zip & save the zip.
I timed the 'oarchive.createarchive' method.
I have now dived into that class & can now time the 'createziparchive' method. This does indeed bring the time...
Craig
I have rerun the tests on folder with 60 files, size is 1.7MEG.
Files were dbf & cdx with one of dbc,dct,dcx.
The zip size is 198KB.
Saving to another folder on the same drive.
Times were
dfpug 9.6 seconds
vfpcompression 0.312
exceed (old version) 0.359
dropping to dos window & running...
Just run vfpcompression.fll & dfpug back to back.
dfpug took over 7 seconds compared to vfpcompression.fll's 0.3 sec
I did notice that vfpcompression.fll will skip a used file & still return .T. in its 'Folder' methods.
I had to write my own routine ( heavily borrowed from faq184-3830 ) to add...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.