Re: DBF Records on a Web Server and EXE on Local Box

2016-05-13 Thread Alan Bourke
It depends on what you mean by 'web based'. If the DBF files are on a private network which is distributed across the internet, i.e. a WAN, and are located in a shared location that you can access via a UNC (\\myserver\myshare\myfile.dbf) then you *could* use them directly however IMO it will be

Re: IconEdit

2016-05-13 Thread Paul Hill
On 12 May 2016 at 22:50, Michael Glassman wrote: > MS Paint (at least through Win7) and IrfanView both work fine, too. Not for ICO icons. MS Paint does not support multiple images in 1 ICO or the alpha channel. Ken: IcoFX is nice. I use 1.6.4 which was the last

[OT] Hillary's IT guy

2016-05-13 Thread Michael Madigan
Why do I get the idea that this guy will be the fall guy for the email scandal? Apparently he's been offered immunity, but will he ever be able to work in IT again? http://dailycaller.com/2016/05/12/documents-show-hillarys-email-technician-was-underqualified-for-the-job/

RE: DBF Records on a Web Server and EXE on Local Box

2016-05-13 Thread Dave Crozier
George, Don't even try to run with VFP over either a WAN or wireless as it is far to slow and when it crashes it will probably end up corrupting the VFP tables. As Mike so rightly says step up to Client Server (M$SQL server (Free version) or MySQL (or equivalent). The data transfer requirement

Re: DBF Records on a Web Server and EXE on Local Box

2016-05-13 Thread mbsoftwaresolutions
On 2016-05-13 05:01, Alan Bourke wrote: In this scenario SQL Server or indeed any full-fat database server like PostGres or MariaDB would be far better. Been using MySQL (MariaDB now) since 2004. Awesome and no issues. ___ Post Messages to:

RE: IconEdit

2016-05-13 Thread Dennis Schuette
Do you mean IMAGEDIT.exe? If so, I can send it to you. Dennis Schuette -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Ken Kixmoeller (ProFox) Sent: Thursday, May 12, 2016 3:27 PM To: profoxt...@leafe.com Subject: IconEdit Hey - -- Does anyone

Shortcut to generalized click column for sort order browse?

2016-05-13 Thread Joe Yoder
I need to present information from several tables. I want to enable the user to click on a column header to control the order in which the records are displayed. At this point it does not need to be very polished so a simple browse with scrolling, column resizing and repositioning, with control

Re: Shortcut to generalized click column for sort order browse?

2016-05-13 Thread Richard Kaye
Check out Craig Boyd's gridextras class. From: ProfoxTech on behalf of Joe Yoder Sent: Friday, May 13, 2016

Re: Shortcut to generalized click column for sort order browse?

2016-05-13 Thread Man-wai Chang
BROWSE is still available in VFP! On Fri, May 13, 2016 at 11:44 PM, Joe Yoder wrote: > I need to present information from several tables. I want to enable the > user to click on a column header to control the order in which the records > are displayed. At this point it does

Re: DOSBox (was: [NF] Virtual Box)

2016-05-13 Thread Man-wai Chang
Use Visual Foxpro to write a bridge via a DBF print queue? :) On Fri, May 13, 2016 at 2:37 AM, Michael Glassman wrote: > (As long as we're renaming threads, I think we should drop the [NF], since > I'm definitely looking at this for running FoxPro apps!) > > Gene,

Re: Shortcut to generalized click column for sort order browse?

2016-05-13 Thread Peter Cushing
On 13/05/2016 16:44, Joe Yoder wrote: I need to present information from several tables. I want to enable the user to click on a column header to control the order in which the records are displayed. At this point it does not need to be very polished so a simple browse with scrolling, column

Re: Shortcut to generalized click column for sort order browse?

2016-05-13 Thread Richard Kaye
Craig's class does all this and more. You basically put an instance on the form, assign a property to associate the form grid with the class, and call the init. Sorts, filters and searches all built-in and Excel export thrown in for good measure. From:

Re: DBF Records on a Web Server and EXE on Local Box

2016-05-13 Thread Ken McGinnis
I agree with this and add: We have many clients using our VFP9 SP2 software with DBF files on cloud servers with MS server 2003-2012 with very good results and the best performance for more than 4 users of any method we know of (using our software: about 2 million lines of code and over 100

Re: Shortcut to generalized click column for sort order browse?

2016-05-13 Thread Joe Yoder
Thanks guys - the SPS package is even better than I had hoped! Now I need to learn how to work with grids! Joe On Fri, May 13, 2016 at 3:25 PM, rafael copquin wrote: > In addition to what Peter says: > > when you click on the column you want to, put this code > > set

Re: IconEdit

2016-05-13 Thread Ken Kixmoeller (ProFox)
Yes, that is what I meant. Imagedit. Thanks, I'd love it. So simple... On Fri, May 13, 2016 at 10:30 AM, Dennis Schuette wrote: > Do you mean IMAGEDIT.exe? > If so, I can send it to you. > > Dennis Schuette > > -Original Message- > From: ProfoxTech

Re: DBF Records on a Web Server and EXE on Local Box

2016-05-13 Thread Ken McGinnis
yes to all. We put everything in the same folder and subfolders on the server, exactly like running on a local computer. The RDP client can be on everything I have tried including my android phone (NOTE 3) of course, it is pretty worthless because of the screen size, but a laptop with 11"

Re: Shortcut to generalized click column for sort order browse?

2016-05-13 Thread rafael copquin
In addition to what Peter says: when you click on the column you want to, put this code set order to ... in .(the table or cursor) this.parent.parent.refresh Those two lines of code will do what you want. Of course, we are talking of a grid here, not a browse Rafael Copquin On

Re: DBF Records on a Web Server and EXE on Local Box

2016-05-13 Thread Ted Roche
On Fri, May 13, 2016 at 2:16 PM, Ken McGinnis wrote: > > We have many clients using our VFP9 SP2 software with DBF files on cloud > servers with MS server 2003-2012 with very good results and the best > performance for more than 4 users of any method we know of (using our >