Re: help files

2015-01-28 Thread Paul Hill
Hi, We're moving away from help files and using a online wiki type system This means others can contribute to the documentation too. -- Paul ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

Re: shared memory

2015-01-28 Thread Thierry Nivelet
Jean, You have this in ftp://foxincloud.com/ab/abOOP.PRG You can: 1/ download ftp://foxincloud.com/ab/*.* (preferably into home(1) + 'tools\ab\') 2/ in your startup program: set path to where the above files are installed additive do ab 3/ get the XML using: cXML =

RE: How do I configure VFP to find UDFs in a library folder?

2015-01-28 Thread Richard Kaye
BTW you can call an explicit config file using the -c switch when running VFP (i.e. path to where VFP lives\vfp9 -cc:\project1\config.fpw). Also, I noticed I had a typo in my prior message. At the risk of stating the obvious, the first delimiter in the set path bit should be a [ and not a {.

Re: VFP6: Printing to HP Inkjet Printer...

2015-01-28 Thread Desmond Lloyd
Thank you! Just tried with VFP9 SP2, same results. Checking into drivers now! Regards, Desmond On 28 January 2015 at 09:47, Alan Bourke alanpbou...@fastmail.fm wrote: On Wed, 28 Jan 2015, at 03:41 PM, Desmond Lloyd wrote: Any hints, 1) VFP9 SP2 2) Don't use HP PCL 6 drivers, they

VFP6: Printing to HP Inkjet Printer...

2015-01-28 Thread Desmond Lloyd
Good Morning, Anybody seen this before. Just got a new HP Office Jet Pro x476dn MFP (color). Installed on the network prints wonderfully. However when I print from our classic VFP6 application it either prints partial pages before going to the next, or a few lines, or nothing at all. No

Re: VFP6: Printing to HP Inkjet Printer...

2015-01-28 Thread Alan Bourke
On Wed, 28 Jan 2015, at 03:41 PM, Desmond Lloyd wrote: Any hints, 1) VFP9 SP2 2) Don't use HP PCL 6 drivers, they are prone to causing issues in VFP. Use the PCL 5e or PostScript drivers. -- Alan Bourke alanpbourke (at) fastmail (dot) fm ___

Re: shared memory

2015-01-28 Thread Jean MAURICE
Hi Thierry, why looking for so far when it is so near ! But I have an issue : with this program: SET PATH TO C:\VFP\VFP9\INTERNET\LEAFE\CTOXML\ ADDITIVE SET PROCEDURE TO C:\VFP\VFP9\INTERNET\LEAFE\CTOXML\ABOOP.PRG, C:\VFP\VFP9\INTERNET\LEAFE\CTOXML\AB.PRG loobj = CREATEOBJECT(test) lcresult

Re: shared memory

2015-01-28 Thread Thierry Nivelet
Hi Jean, Normal, your object has all properties identical to the class. This will work: SET PATH TO C:\VFP\VFP9\INTERNET\LEAFE\CTOXML\ ADDITIVE AB() loObj = CREATEOBJECT(test) loObj.toto = toto1 addProperty(loObj, 'test', test) _cliptext = cXMLofObject(m.loObj) ? _cliptext