addproperty

2015-05-11 Thread Allen
Hi foxgang. I just tried addproperty. Never used it before. This is all done in the command window. a = .F. to create the property I want to use note this will end up in a class but for now. I opened a table and scatter name a in debug I can see the property a Addproperty(a,newprop,1) create

RE: addproperty

2015-05-11 Thread Paul Newton
That was because a.newprop is interpreted as the field newprop in a cursor with alias a -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Allen Sent: 11 May 2015 12:18 To: profoxt...@leafe.com Subject: RE: addproperty Ok I tried it with oIni instead

RE: addproperty

2015-05-11 Thread Allen
So why isn't oIni ? Al -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Paul Newton Sent: 11 May 2015 13:57 To: profoxt...@leafe.com Subject: RE: addproperty That was because a.newprop is interpreted as the field newprop in a cursor with alias a

RE: addproperty

2015-05-11 Thread Allen
Ok I tried it with oIni instead of a and it works. Al -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Allen Sent: 11 May 2015 13:07 To: profoxt...@leafe.com Subject: addproperty Hi foxgang. I just tried addproperty. Never used it before. This is all

Re: M$ woes

2015-05-11 Thread Kevin Cully
I'm not sure about everything that you're asking about but if you're looking for a plug-n-play server that will run for years and years, check out IXSystems and their FreeNAS Mini. Give these people a call as their support is supposed to be legendary. They can help you configure a system

Re: addproperty

2015-05-11 Thread Fernando D. Bozzo
May be it's good to remember, for those who don't know, that letters a through j are reserved from the times of dBase and FoxBase. I just searched in the help if there is something about it because I recall that this is something maintained because of this historical behaviour, and I've found it

RE: addproperty

2015-05-11 Thread Allen
Thanks for the answers guys. Slapped wrist for me. I would never have put that in the final code. Was just messing with the command window. Anyway I have my answer thanks Al -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Fernando D. Bozzo Sent: 11

Re: Printing to a Zebra printer

2015-05-11 Thread Ted Roche
On the altogether different PC, try printing from the command windows (or the awesome vRunFox available in the downloads here if you don't have VFP on the machine). Try the GETPRINTER() and APRINTERS() functions to see what the second machine thinks the printer is called. Depending on the

RE: addproperty

2015-05-11 Thread Tracy Pearson
On May 11, 2015 9:07:50 AM EDT, Allen pro...@gatwicksoftware.com wrote: So why isn't oIni ? Al -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Paul Newton Sent: 11 May 2015 13:57 To: profoxt...@leafe.com Subject: RE: addproperty That was because

Re: Printing to a Zebra printer

2015-05-11 Thread Alan Bourke
We use Zebra label printers on various sites. I don't remember there being anything problematic with them - we just make sure that they have the same name and then 'set printer to name'. Are you sure the particular model supports network printing? Not all do. Try the following: Share it on the

[ADMIN] Tour de Cure Recap

2015-05-11 Thread Ed Leafe
First off, let me once again thank everyone who donated in my name to make this ride possible. It's a great cause, and I really appreciate your generosity. So Saturday was the date of the big ride, and I was ready. Fate would throw me a few curveballs, but I dealt with them. Rather than writing

Re: Copy File

2015-05-11 Thread Jeff Johnson
Fred: the second one is failing because there is no file. I know the lcinitialname exists, but it won't copy to the other folder. I am renaming it which is fine. This same line of code is in all my apps, but in this one today it doesn't work. On 5/11/2015 4:57 PM, Fred Taylor wrote: ?

Re: Copy File

2015-05-11 Thread Gianni Turri
Hi Jeff, you must use name expressions, the syntax is as follow: lcinitialname = 'd:\users\public\applications\ft_cafe\documents\export\75041.pdf' lcservername = 'd:\users\public\applications\ft_cafe\documents\someotherfile.pdf' copy file (lcinitialname) to (lcservername) Gianni On Mon, 11

Re: Copy File

2015-05-11 Thread Jeff Johnson
Tried that also. I tried everything I know and still won't copy. Thanks, On 5/11/2015 4:34 PM, Gianni Turri wrote: Hi Jeff, you must use name expressions, the syntax is as follow: lcinitialname = 'd:\users\public\applications\ft_cafe\documents\export\75041.pdf' lcservername =

Re: Copy File

2015-05-11 Thread Fred Taylor
Try just: ? FILE(m.lcinitialname) ? FILE(m.lcservername) to see which one fails. Fred On Mon, May 11, 2015 at 4:50 PM, Jeff Johnson j...@san-dc.com wrote: Tried that also. I tried everything I know and still won't copy. Thanks, On 5/11/2015 4:34 PM, Gianni Turri wrote: Hi Jeff, you

Re: Copy File

2015-05-11 Thread Jeff Johnson
Are there any characters that won't copy - such as : ? On 5/11/2015 5:29 PM, Jeff Johnson wrote: Fred: the second one is failing because there is no file. I know the lcinitialname exists, but it won't copy to the other folder. I am renaming it which is fine. This same line of code is in

Copy File

2015-05-11 Thread Jeff Johnson
Why does this work: COPY FILE 'd:\users\public\applications\ft_cafe\documents\export\75041.pdf' TO 'd:\users\public\applications\ft_cafe\documents\someotherfile.pdf' Where lcinitialname and lcservername are the same as above does not work: copy file '' + alltrim(lcinitialname) + '' to '' +

Re: Printing to a Zebra printer

2015-05-11 Thread Paul McNett
One of my clients has been printing to a zebra for like 10+ years with no issues, from a range of Windows versions, 32 and 64 bit. Here's my basic approach: 1) get the label designed using whatever software. save the bytes. 2) use text substitution to dynamically generate a string at runtime

Re: Copy File

2015-05-11 Thread Fred Taylor
http://xahlee.info/mswin/allowed_chars_in_file_names.html Fred On Mon, May 11, 2015 at 8:15 PM, Jeff Johnson j...@san-dc.com wrote: Fred: I can do it manually but not programmatically. I'm wondering if a : in the file name might be the problem. On 5/11/2015 6:46 PM, Fred Taylor wrote:

Re: Copy File

2015-05-11 Thread Jeff Johnson
Fred: I can do it manually but not programmatically. I'm wondering if a : in the file name might be the problem. On 5/11/2015 6:46 PM, Fred Taylor wrote: Rights issue on the destination file/folder? Fred On Mon, May 11, 2015 at 5:29 PM, Jeff Johnson j...@san-dc.com wrote: Fred: the

Re: Copy File

2015-05-11 Thread Fred Taylor
Rights issue on the destination file/folder? Fred On Mon, May 11, 2015 at 5:29 PM, Jeff Johnson j...@san-dc.com wrote: Fred: the second one is failing because there is no file. I know the lcinitialname exists, but it won't copy to the other folder. I am renaming it which is fine. This