Re: [NF] Backup Software

2016-04-17 Thread Tracy Pearson
program needs. HTH, Tracy On April 17, 2016 3:24:49 PM EDT, John Weller <j...@johnweller.co.uk> wrote: >I am trying to install some backup software for a friend. The app I >have >used in the past is SyncToy which is very good at mirroring folders to >a >backup location ho

RE: Edit CSV file

2016-04-14 Thread Tracy Pearson
CSV, it may be easier than you think: CREATE CURSOR csvoutput (contname c(30)) INSERT INTO csvoutput VALUES ("Paul") INSERT INTO csvoutput VALUES ("John") SELECT contname as ContactName FROM csvoutput INTO CURSOR finaloutput COPY TO sytzetest TYPE CSV MODI

RE: [NF] VoIP Phone Systems and PSTN Signalling

2016-03-28 Thread Tracy Pearson
: https://community.spiceworks.com/topic/714713-busy-signal-when-dialing-outsi de-line-or-voicemail-cisco-7960-phone-and-asterisk You've reached the end of my experience. I do hope you get it worked out. Tracy Pearson PowerChurch Software ___ Post

RE: ReFox to reverse compile a VFP9 EXE?

2016-03-23 Thread Tracy Pearson
> here has successfully used it. > > http://www.refox.net/-overview.html > > tia, > --Mike > Mike, Yes, it works. I have recovered a couple of EXE files after the only source for the EXE's got lost on a dead hard drive. Tracy Pearson PowerChurch Software

Re: Outlook and VFP

2016-03-21 Thread Tracy Pearson
The limits I have seen are by emails, not attachments. There is a 10mb limit on an email on most servers. However, this would get stuck in the outbox. On March 21, 2016 7:54:07 PM EDT, Gene Wirchenko wrote: >At 16:00 2016-03-20, Sytze de Boer wrote:

RE: Which server for VFP9 app

2016-03-21 Thread Tracy Pearson
some research to see which files get corrupt the most. There might be a pattern to our corruption, and a pattern to the code that touches the files. Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://m

RE: Using Soap from non web server machine? -- AARGH!!!!

2016-03-21 Thread Tracy Pearson
retty clearly to me that I'll have to have a web service > running on a web server. :-( > Vince, I agree with your understanding of those words. What do you need to do you with the information in the callback? A C# WebAPI self-hosted project could be setup to handle it. A php or python proje

RE: Need help with parsing XML

2016-03-21 Thread Tracy Pearson
") For Each element In gcolElements ? element.attributes.item(0).text,element.attributes.item(1).text IF element.haschildnodes FOR EACH content IN element.childNodes ? content.attributes.item(0).text, content.attributes.item(1).text NEXT ENDIF EndFor Tra

RE: Using Soap from non web server machine?

2016-03-21 Thread Tracy Pearson
ce that responds to multiple clients. Something needs to instantiate multiple instances of VFP to do that. (VFP being an ISAPI control in IIS. VFP COM in a C# WCF project.) There are multiple ways to do SOAP. I understand Rick Strahl has created a good framework for this. I used the t

Re: Outlook and VFP

2016-03-20 Thread Tracy Pearson
. On March 20, 2016 6:40:21 PM EDT, Sytze de Boer <sytze.k...@gmail.com> wrote: >Hi Tracey >(I always check your posts immediately) > >.but would it do so randomly? > > >On Mon, Mar 21, 2016 at 11:39 AM, Tracy Pearson <tr...@powerchurch.com> >wrote: > >&

Re: Outlook and VFP

2016-03-20 Thread Tracy Pearson
Some anti virus program could be removing the attachment. On March 20, 2016 6:02:53 PM EDT, Sytze de Boer wrote: >In my accounting system, clients can email their clients an invoice or >copy >of an invoice. >It places the message and pdf into Outlook. >Outlook then takes

RE: ctSCHEDULE ActiveX control odd behavior

2016-03-11 Thread Tracy Pearson
ocus and LostFocus have uses, such as I suggested. They are not good for data updates and the like that take time. Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/l

RE: ctSCHEDULE ActiveX control odd behavior

2016-03-11 Thread Tracy Pearson
e to play with it but I suspect I could add a > conditional test in the ctSchedule event to ensure it has the > appropriate form.ZOrder before firing. > > Mike > Mike, I had not noticed that behavior before. May I suggest setting Disable/Enable TipTypes in the Forms L

RE: ctSCHEDULE ActiveX control odd behavior

2016-03-11 Thread Tracy Pearson
X Control Event *** LPARAMETERS nscrollbar, nvalue, nscrolltype This.SetFocus() It has appeared to fix the problem in testing. Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/m

ctSCHEDULE ActiveX control odd behavior

2016-03-11 Thread Tracy Pearson
, and things start to work again. ctSchedule is a DBI-Tech control: http://www.dbi-tech.com/download/demos/html/solsched7/flashhelp/welcome/welc ome_to_ctschedule.htm Thank you, Tracy ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http

Re: [NF] Weird problems with Chrome

2016-03-08 Thread Tracy Pearson
Delete the cached files. If that doesn't help delete cookies. You can surgically delete cookies that relate to those sites, or clear them all. On March 8, 2016 6:57:48 PM EST, mbsoftwaresoluti...@mbsoftwaresolutions.com wrote: >My Chrome (manually updated to the latest version as of yesterday,

USE {table} EXCLUSIVE sometimes opens readonly.

2016-03-08 Thread Tracy Pearson
Share None. There is that split moment on some machines that VFP is successful. Has anyone else seen this behavior before? Thank you for reading, Tracy ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailma

Re: Using the when event in a command button

2016-03-05 Thread Tracy Pearson
It was late Friday night too. The time of the week to be relaxing. On March 5, 2016 9:06:19 AM EST, Joe Yoder <j...@wheypower.com> wrote: >Thanks Tracy - it's been to long since I did any screen coding! > >On Sat, Mar 5, 2016 at 12:49 AM, Tracy Pearson <tr...@power

Re: Using the when event in a command button

2016-03-04 Thread Tracy Pearson
The line should be Return NOT EMPTY(thisform.combo1.Value) On March 4, 2016 10:55:39 PM EST, Joe Yoder <j...@wheypower.com> wrote: >No - just the one line or the .f. >On Mar 4, 2016 10:28 PM, "Tracy Pearson" <tr...@powerchurch.com> wrote: > >Is

Re: Using the when event in a command button

2016-03-04 Thread Tracy Pearson
Is there a RETURN statement in front of the NOT? On March 4, 2016 10:20:09 PM EST, Joe Yoder wrote: >I have a command button on a form that should not be accessible unless >there is a table selected. I am attempting to use a expression that >will >evaluate to false in the

Re: VFP 9 breakpoints

2016-02-27 Thread Tracy Pearson
use a modal dialog to find myself in the form. I then go find my code. HTH, Tracy On February 27, 2016 10:19:15 AM EST, Alan Bourke <alanpbou...@fastmail.fm> wrote: >The breakpoints have always been a bit hit and miss for me. I always >just stick a SET STEP ON in. > >

RE: VFP9 copy to clipboard causes VFP to 'hang' for long period

2016-02-25 Thread Tracy Pearson
Mike Copeland wrote on 2016-02-25: > Tracy, > > So far, so good. For anyone else interested... > > I first tried putting a CONFIG.FPW file containing the line > "resource=off" in the startup folder where VFP9.exe is located. > Sure enough, the copy

RE: VFP9 copy to clipboard causes VFP to 'hang' for long period

2016-02-25 Thread Tracy Pearson
ing at the Id field and seeing WINDSNIP. It seems to match up to places I've copied code from recently. Perhaps you can delete those Id's from the table, then pack it. HTH, Tracy Tracy Pearson PowerChurch Software ___ Post Messages to: ProF

RE: Controling the order/timing of processing after doing a form

2016-02-23 Thread Tracy Pearson
orm.ParentForm.ContinueMethod() Be sure to release the object reference you placed on the secondary form. ThisForm.ParentForm = .NULL. Then, in your ParentForm.ContinueMethod be sure the form is still visible before processing anything. There's also BindEvent that can help with th

Re: Problem with GROUP BY

2016-02-20 Thread Tracy Pearson
My experience with VFP is that the order of the fields in the GROUP BY clause allows me to skip the ORDER BY clause. The grouping is always the same, no matter the order. On February 20, 2016 3:47:15 PM EST, Paul Hill wrote: >On 20 February 2016 at 20:34, Jean MAURICE

RE: Problem with GROUP BY

2016-02-20 Thread Tracy Pearson
When you have an aggregate (the sum), you should group by all the noon-aggregate fields. You could use the numbers for each field. Group by 3,1,2,4,5,6 On February 20, 2016 2:53:12 PM EST, jerry foote wrote: > >I have adjusted the code as below and still get error

RE: DBF Compare

2016-02-11 Thread Tracy Pearson
or a while. If you were to CD to a folder below the Share "\COMPARES\COMPTABS\workingfolder\" you would have better success. Some of our customers noticed a performance increase when we got them changed over. Tracy Pearson PowerChurch Software

RE: Multi-Select Grid & Foxite Code Issue (Was...RE: A Question of ListBoxes)

2016-02-09 Thread Tracy Pearson
a check all option? > Stephen, You're thinking of the Listbox control. Many users don't understand the Shift+Click concept to select many. The Grid control doesn't have multi-select ability natively. Tracy Pearson PowerChurch Software __

RE: Multi-Select Grid & Foxite Code Issue (Was...RE: A Question of ListBoxes)

2016-02-09 Thread Tracy Pearson
hers in the game longer than me can correct as needed. > > Mike, I believe VFP 3 had the ability to subclass. The BindEvents came in VFP 7 or 8. I never used 7, so I'm not certain. I know they existed in 8 and were enhanced in 9. Tracy Pearson PowerChurch Software

RE: Why won't the font selection hold in this form I'm editing?

2016-02-03 Thread Tracy Pearson
Thanks, > --Mike > Mike, That information is stored in the foxuser.dbf. Corruption? Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free

RE: Multi-Select Grid & Foxite Code Issue (Was...RE: A Question of ListBoxes)

2016-02-03 Thread Tracy Pearson
es by, subclass the Column and set the MemberClass and MemberClassLibrary on a grid for all the columns added to it to inherit from it. The Column class has HeaderClass and HeaderClassLibrary to do the same. You may need this bit of help with the BindEvents, if you choose to go that route: lnEv

RE: Multi-Select Grid & Foxite Code Issue (Was...RE: A Question of ListBoxes)

2016-02-03 Thread Tracy Pearson
Another way I test is start a separate VFP session with a custom config.fpw that launches startup.prg which will set up some variables and configurations, then launch the EXE. Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subs

RE: Multi-Select Grid & Foxite Code Issue (Was...RE: A Question of ListBoxes)

2016-02-03 Thread Tracy Pearson
ct have been known to cause hard to reproduce errors, and a rare C5 for me. Exiting out of code in the middle of a CATCH of the Try/Catch have caused a C5 for me. Corrupt CDX files have caused a C5 for me. ActiveX controls, those are my bane, with C5's. I can't reproduce them in house,

RE: Table excluded from EXE (in same folder) versus table INCLUDING in EXE

2016-02-03 Thread Tracy Pearson
sted this. The DBF inside the EXE is used. Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this list: http://mail.leafe.com/mailman/listi

RE: Multi-Select Grid & Foxite Code Issue (Was...RE: A Question of ListBoxes)

2016-02-03 Thread Tracy Pearson
Kurt Wendt wrote on 2016-02-03: > Tracy - I agree - it DOES look like code is running in an Infinite loop. But, that really shouldn't be happening. > > When I test - I run the APP - not the EXE - and in another session of VFP where I am doing Editing of the Forms. And, I simply run

Re: Jeff Johnson

2016-01-30 Thread Tracy Pearson
On January 30, 2016 10:54:42 AM EST, Fred Taylor <fbtay...@gmail.com> wrote: >It's with deep sorrow I report that Jeff Johnson passed away this past >Tuesday. He will be truly missed. > >Fred This news saddens me. May he be remembered for they positive things he had done. T

RE: VFP Colours in Development mode..

2016-01-28 Thread Tracy Pearson
hat have something to do with it? Are theme's enabled in one but not the other? Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this lis

RE: Norton blocking exe's

2016-01-27 Thread Tracy Pearson
Wes Wilson wrote on 2016-01-27: > Tracy, > Take a look at a Linkedin post I just did. I had the same problem recently > and this group bailed me out. > Norton found virus - 52 others did not. > > | | > | | | | | | | | > | Norton found virus - 5

RE: Norton blocking exe's

2016-01-27 Thread Tracy Pearson
Ted Roche wrote on 2016-01-27: > You may need to log onto LinkedIn manually. I did, looked up Wes, and > found the article here: > > https://www.linkedin.com/pulse/norton-found-virus-52-others-did-wes-wilson > Ted, Thank you. I was able to read it without logging in.

Re: Norton will not let me send EXE - Need help fast

2016-01-26 Thread Tracy Pearson
On January 26, 2016 4:19:38 AM EST, Paul Hill <paulroberth...@gmail.com> wrote: >On 25 January 2016 at 22:48, Tracy Pearson <tr...@powerchurch.com> >wrote: >> mbsoftwaresoluti...@mbsoftwaresolutions.com wrote on 2016-01-25: >>> Comodo should really stop selli

Code Signing VFP exes

2016-01-25 Thread Tracy Pearson
Today I ran some tests because customers have reported some odd problems. I updated a Windows 10 computer to all the latest updates and finally got to see what the customer reported. https://s3.amazonaws.com/uploads.hipchat.com/15697/60882/WN2lcXUa8zdne6o/cor ruptsignature1.png "Windows protected

RE: Norton will not let me send EXE - Need help fast

2016-01-25 Thread Tracy Pearson
mbsoftwaresoluti...@mbsoftwaresolutions.com wrote on 2016-01-23: > On 2016-01-22 20:43, Tracy Pearson wrote: > I think what you're asking is going to depend on the tool you use to > sign the exe. > I sign the VFP exe then put it into an INNO installer, and sign that

RE: Norton will not let me send EXE - Need help fast

2016-01-25 Thread Tracy Pearson
mbsoftwaresoluti...@mbsoftwaresolutions.com wrote on 2016-01-25: > On 2016-01-25 17:18, Tracy Pearson wrote: > Mike, > > I don't foresee a problem with the 256. It's more trouble than it is > worth, > and takes longer to crack. Currently > > From wh

RE: Norton will not let me send EXE - Need help fast

2016-01-25 Thread Tracy Pearson
mbsoftwaresoluti...@mbsoftwaresolutions.com wrote on 2016-01-25: > Hi Tracy, > > I bought the other yesterday but contacted them today to cancel the > transaction. I will purchase this one instead. > > Do you foresee any problems using the SHA-256 only? I'd rather just

RE: Norton will not let me send EXE - Need help fast

2016-01-22 Thread Tracy Pearson
I think what you're asking is going to depend on the tool you use to sign the exe. I sign the VFP exe then put it into an INNO installer, and sign that installer. On January 22, 2016 8:25:37 PM EST, mbsoftwaresoluti...@mbsoftwaresolutions.com wrote: >On 2016-01-21 14:49, Tracy Pearson wr

RE: Norton will not let me send EXE - Need help fast

2016-01-21 Thread Tracy Pearson
Edward Leafe wrote on 2016-01-21: > On Jan 20, 2016, at 8:44 AM, Tracy Pearson <tr...@powerchurch.com> wrote: > >> It appears my response was snipped by the server, just as it did with Paul. >> > Did you trim out the quoted footer text? If the server sees that,

RE: Norton will not let me send EXE - Need help fast

2016-01-21 Thread Tracy Pearson
mbsoftwaresoluti...@mbsoftwaresolutions.com wrote on 2016-01-21: > On 2016-01-21 11:07, Tracy Pearson wrote: > Yes, what I didn't trim was the added text in the brackets [] that is > where > it was cut off. > Lesson learned. > > > > > Well I still wan

RE: Norton will not let me send EXE - Need help fast

2016-01-21 Thread Tracy Pearson
mbsoftwaresoluti...@mbsoftwaresolutions.com wrote on 2016-01-21: > On 2016-01-21 12:04, Tracy Pearson wrote: > Mike, > > We forked out less than that with a COMODO code signing certificate. > Starts > at 166.95/year. There might be less expensive providers out

RE: VFP 9.00.0000.5815 and a bad PATH environment variable

2016-01-20 Thread Tracy Pearson
recompiled. I get the same results even with the table included. Then I set resource=foxuser.dbf and got --- Microsoft Visual FoxPro --- Visual FoxPro cannot start. Insufficient Memory. --- OK --- Th

RE: VFP 9.00.0000.5815 and a bad PATH environment variable

2016-01-20 Thread Tracy Pearson
Koen Piller wrote on 2016-01-19: > Tracy > It does remake > Koen > > Op maandag 18 januari 2016 heeft Tracy Pearson <tr...@powerchurch.com> het > volgende geschreven: > >> True, it does not when the config.fpw has the resource=off in it. Which >>

RE: Norton will not let me send EXE - Need help fast

2016-01-20 Thread Tracy Pearson
Tracy Pearson wrote on 2016-01-20: > Paul Hill wrote on 2016-01-20: >> On 19 January 2016 at 22:09, Tracy Pearson <tr...@powerchurch.com> wrote: >> mbsoftwaresoluti...@mbsoftwaresolutions.com wrote on 2016-01-19: >>>> On 2016-01-19 12:16, Tracy Pearson w

RE: Norton will not let me send EXE - Need help fast

2016-01-20 Thread Tracy Pearson
Paul Hill wrote on 2016-01-20: > On 19 January 2016 at 22:09, Tracy Pearson <tr...@powerchurch.com> wrote: > mbsoftwaresoluti...@mbsoftwaresolutions.com wrote on 2016-01-19: >>> On 2016-01-19 12:16, Tracy Pearson wrote: >>> We digitally sign our executables.

RE: Norton will not let me send EXE - Need help fast

2016-01-19 Thread Tracy Pearson
mbsoftwaresoluti...@mbsoftwaresolutions.com wrote on 2016-01-19: > On 2016-01-19 12:16, Tracy Pearson wrote: > We digitally sign our executables. It helps with A/V validations. > > > Is that using the VeriSign cert that costs something like $3000 (or used > to anyway)?

RE: Norton will not let me send EXE - Need help fast

2016-01-19 Thread Tracy Pearson
contact a local tech to verify they did not have a virus on the computer. To me, it sounded like a virus had modified the files. To my knowledge, they have not called back. We support our software, and sometimes getting it running on the computer, we don't support the OS and virus cleanup. Trac

RE: Disappearing Debug Window

2016-01-18 Thread Tracy Pearson
. If you have it in the FoxPro Frame, try to Cascade the found in the Window menu. Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this li

RE: VFP 9.00.0000.5815 and a bad PATH environment variable

2016-01-18 Thread Tracy Pearson
manifest. Any thoughts? Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech

Re: VFP 9.00.0000.5815 and a bad PATH environment variable

2016-01-18 Thread Tracy Pearson
True, it does not when the config.fpw has the resource=off in it. Which has also been in since VFP 5. On January 18, 2016 4:57:23 PM EST, Koen Piller <koen.pil...@gmail.com> wrote: >Tracy >If there is no foxuser.dbf in your Path VFP will create one. >This behavior is sin

RE: [ADMIN] Whitelist Request for IP Address 104.236.203.188

2016-01-14 Thread Tracy Pearson
to RackSpace we had a similar problem. The user that had the IP prior to us may have put an open relay email server on it. This caused a lot of grieve for us. We ended up getting RackSpace to move us to a different IP after a few days of attempting to get

RE: This is only a test!

2016-01-13 Thread Tracy Pearson
Gianni Turri wrote on 2016-01-13: > This is only a test! > > Gianni > Gianni, Ping Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/pr

RE: [ADMIN] Moving leafe.com and dabodev.com servers

2016-01-13 Thread Tracy Pearson
;>>> Aha! Another clue... >>> >>> I think that did it! Can any profoxtech subscriber confirm? >> >> Nope - progress, but not enough. One more try and then I'll have to >> return to this tonight. >> >> >> -

RE: This is only a test!

2016-01-13 Thread Tracy Pearson
Ted Roche wrote on 2016-01-13: > I see your test; do you see my reply? > > On Wed, Jan 13, 2016 at 1:00 PM, Gianni Turri <gianni...@gmail.com> wrote: > This is only a test! > > Gianni > Ted, I see your reply. Tracy P

Re: And he's back!

2016-01-12 Thread Tracy Pearson
I'm not getting any emails from the profox-tech list, only the profox list. On January 12, 2016 6:03:23 PM EST, Fred Taylor wrote: >Gmail is still working fine for me. Don't think I've missed anything, >but >then, how would I know? ;) > > >Fred > >On Tue, Jan 12, 2016 at

RE: [ADMIN] Moving leafe.com and dabodev.com servers

2016-01-12 Thread Tracy Pearson
arding the ZoHo account, I'm looking for a way to prevent them from dropping in to the SPAM folder. The confirmation and acknowledgment emails went there. No others have arrived. Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leaf

VFP 9.00.0000.5815 and a bad PATH environment variable

2016-01-07 Thread Tracy Pearson
will happen. This wasn't a problem with VFP 9.00..3504 I do update the manifest in my VFP 9.00..3504, which does start causing the problem. Does anyone have some thoughts or ideas as to what might be the problem? Thank you, Tracy ___ Post Messages

RE: email from vfp

2016-01-07 Thread Tracy Pearson
use the .NET tools to build an EXE or COM object to use. If you need SSL and TLS, you'll need to spend some money. TLS is getting to be the preferred method. Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription

RE: Menus

2015-12-31 Thread Tracy Pearson
the code looks. Since there are multiple ways to build the standard menus in VFP, your needs will determine how you build them. I have not looked in to the menu project on VFPx. Happy New Year! Tracy -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf

CHRSAW() doesn't always return a logical

2015-11-25 Thread Tracy Pearson
I expect I will need to hunt each of these down and validate the CHRSAW() value before checking it in an IF statement as a workaround. Thank you, Tracy ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mail

RE: CHRSAW() doesn't always return a logical

2015-11-25 Thread Tracy Pearson
Ted Roche wrote on 2015-11-25: > What Does The HackFox Say? > > :) > > On Wed, Nov 25, 2015 at 2:44 PM, Tracy Pearson <tr...@powerchurch.com> wrote: >>> From time to time during a process to gather data for a report, we check >> CHRSAW(). >> >

Re: Array passing Suggestions...

2015-11-24 Thread Tracy Pearson
ACopy() comes to mind. On November 24, 2015 7:44:54 AM EST, Dave Crozier wrote: >I have a class that needs to be sent an array from the calling program. >What I want to do is ideally pass the array in as a property and use >the property _"Assign" method to process the

RE: Multiuser VFP9 application served on Win Pro share?

2015-11-23 Thread Tracy Pearson
eed to have a less secure setting enabled on the Windows 10 host. Anti-Virus and Anti-Maleware tools can cause sharing issues. What I don't know is how many people share the DBF's in our program at a given time. Tracy Pearson PowerChurch Software ___ P

RE: OLE drag drop - Done

2015-11-23 Thread Tracy Pearson
AndyHC wrote on 2015-11-23: > +1 is it touted as a 'feature' or is it a real bug? > > On 23/11/2015 21:06, Kent Belan wrote: > Thank you Tracy and Kurt !! > > I would of never guessed that running in "Admin Mode" would disable the > drag/drop featu

RE: All drop downs freezing in an appliction

2015-11-23 Thread Tracy Pearson
ions are not set to shutdown when you tell them to. It started in Windows 8. Holding the Shift key as you shutdown will force it to do a proper shutdown if the setting is on. It doesn't hurt to hold the shift key if it isn't set on. http://windowssecrets.com/langalist-plus/with-windows-8-off-isnt-real

RE: OLE drag drop

2015-11-20 Thread Tracy Pearson
with Administrator privileges, Drag and Drop doesn't work. This is not VFP specific. 1) Don't run with Administrator privileges. 2) Turn UAC off. (Personally I believe this is the wrong choice.) Tracy Pearson PowerChurch Software ___ Post Messages to: Pr

RE: [NF] More Windows 10 woes

2015-11-17 Thread Tracy Pearson
mbsoftwaresoluti...@mbsoftwaresolutions.com wrote on 2015-11-17: >> I have had clients have problem with emailing on Windows 10 using SSL. >> Switching to TLS has resolved the problem. Changing which control I >> use to send emails has helped as well. >> >> Tracy P

[ADMIN] Archives return Server Error

2015-11-17 Thread Tracy Pearson
Hello Ed, I went to scan the archives a couple different ways today. (link at a bottom of email, searched from the web interface) I get a Server Error, An internal server error occurred, in response. Thank you for keeping us connected! Tracy

RE: VFP check for disk space

2015-11-13 Thread Tracy Pearson
t have access to the path a -1 is returned. When the user does have access, DiskSpace() returns a fairly accurate value for all options. It also works with UNC paths as well as shared drive lettes. If I implement this, I'll use DiskSpace(). Tracy Tracy Pearson PowerChurch Software __

RE: VFP check for disk space

2015-11-12 Thread Tracy Pearson
ed > Kevin, Thank you Kevin. Luckily, the largest data I've seen from some of our clients with > 10 years of data has only been in the 20 meg range. Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Mainten

VFP check for disk space

2015-11-12 Thread Tracy Pearson
Has anyone implemented a check for disk space to protect against loss of data. The VFP tables will be local or on a network. I haven't researched this yet, it is more a question at the moment. Thank you, Tracy ___ Post Messages to: ProFox@leafe.com

RE: Sending SMTP emails from VFP using PowerShell.

2015-11-12 Thread Tracy Pearson
only options I have found with many certificate verifications is to ignore verifying the certificate chain. Which ends up ignoring expired or revoked certificates. Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Maint

VFP and MS InteropForms Toolkit

2015-11-09 Thread Tracy Pearson
. Thank you, Tracy ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com

Re: [NF] MS WILL deliberately auto-install Windows 10

2015-10-30 Thread Tracy Pearson
Great, Sony recommends I don't update the Sony Vaio I own. On October 30, 2015 1:53:57 PM EDT, Ken Dibble wrote: >Remember I said, a few weeks ago, "Windows Automatic Updates: just say >no"? > >If you didn't have enough reason to heed me then, maybe now you do: >

Re: Using Outlook

2015-10-29 Thread Tracy Pearson
Look into using getobject(). https://msdn.microsoft.com/en-us/subscriptions/downloads/zbw8a3a6(v=vs.80).aspx On October 29, 2015 9:23:42 PM EDT, Sytze de Boer wrote: >My clients have the choice of sending emails via Gmail or Outlook >I have found Gmail to work better in

RE: Quickbooks ODBC

2015-10-21 Thread Tracy Pearson
quot;SELECT * FROM [accounts]" You might also look up SQLTABLES to be sure of the table name spellings. Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/prof

RE: VBR & TLB Files Generated by VFP!

2015-10-20 Thread Tracy Pearson
P app. > > Thanks again, > -K- > Kurt, Right click the project. Select Properties. You'll find the "Servers" tab. This will give you some insight to where the OlePublic flag is set. Tracy Pearson PowerChurch Software ___

RE: VBR & TLB Files Generated by VFP!

2015-10-20 Thread Tracy Pearson
Kurt Wendt wrote on 2015-10-20: > Hey Tracy, > > Thanks for the feedback. Yes indeed - this is one of the Apps where I MUST open VFP in Admin mode in order to generate the EXE file. > > And - when you said "...I usually delete them" - you mean that you normally d

RE: VBR & TLB Files Generated by VFP!

2015-10-20 Thread Tracy Pearson
Kurt Wendt wrote on 2015-10-20: > Tracy - sorry if this sounds Daft... > > I wasn't sure where you wanted me to " Right click the project". At one point - I thought you meant via the Prj file in Windows Explorer - but, no Servers tab under Properties. So - I did right-

RE: VBR & TLB Files Generated by VFP!

2015-10-20 Thread Tracy Pearson
t flag. I usually delete them. When building a project that has a class flagged as OLEPublic, VFP is required to be in Administrative mode. It updates the registry during the build to update the flags. Tracy Pearson PowerChurch Software ___ Post Messages to: P

RE: Setting Step On AND KEEPING IT ON

2015-10-12 Thread Tracy Pearson
ne, I have never seen it not stop on the next line of code that happens after a step next. When the form appears, the debugger is sitting at the READ EVENTS line, or back at the DO FORM when it is a modal form. The next event stops on the first line of code that fires. Tracy Pearson PowerChurch

Re: VFP 9 SP2 Printing problem

2015-10-11 Thread Tracy Pearson
Does finding out what the default printer if is cause an error? If it is different then the stored value, the system can be self updating. If it is blank, or an unknown device, it can make adjustments. On October 10, 2015 11:49:36 PM EDT, Mike Copeland wrote: >Actually,

RE: Another new ransomware

2015-10-07 Thread Tracy Pearson
do the same, will detect a change and upload the encrypted file to the cloud. Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this li

RE: [NF] More Windows 10 woes

2015-10-05 Thread Tracy Pearson
ose of you who want to upgrade to do so with care! > > Nice one M$. > > Dave > Dave, I have had clients have problem with emailing on Windows 10 using SSL. Switching to TLS has resolved the problem. Changing which control I use to send emails has helped as well.

RE: DBI ctTree control and datetime column

2015-10-02 Thread Tracy Pearson
, this is how I would get the decimal section: SET DECIMALS TO 5 ltSentDate = DATETIME(2015,10,01,23,59,59) lnSeconds = ((HOUR(ltSentDate) * 3600) + (MINUTE(ltSentDate) * 60) + SEC(ltSentDate)) / 86400 ?lnSeconds Tracy Pearson PowerChurch Software

RE: VFP & Blue Circles

2015-09-29 Thread Tracy Pearson
> > Thanks > > Chris. > I have always thought of it as VFP is faster than the Windows event handler. What used to take a few moments on the old systems happens incredibly fast on the new. VFP stacks events to Windows and Windows doesn'

RE: VFP & Blue Circles

2015-09-29 Thread Tracy Pearson
the Timer.Event calls (or the event itself) THISFORM.MousePointer = 11 End it with THISFORM.MousePointer = 0 If the screen is showing, change THISFORM to _SCREEN Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subs

FW: Some news in regards to David Stevenson

2015-09-16 Thread Tracy Pearson
Add news. I believe I've heard the name, I don't remember if I've met him. I thought I might pass this along. Tracy -Original Message- From: Russell Campbell Sent: Wednesday, September 16, 2015 10:07 AM Subject: Some news in regards to David Stevenson For those of you who know Dave

RE: Some news in regards to David Stevenson

2015-09-16 Thread Tracy Pearson
> Sent: 16 September 2015 17:25 > To: profoxt...@leafe.com > Subject: Re: Some news in regards to David Stevenson > > On Sep 16, 2015, at 9:22 AM, Tracy Pearson <tr...@powerchurch.com> wrote: > >>> I believe I've heard the name, I don't remember if I've met him.

RE: Code Reference Util - Missing Prior Searches

2015-09-14 Thread Tracy Pearson
w your still learning! Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech Sea

RE: Code Reference Util - Missing Prior Searches

2015-09-14 Thread Tracy Pearson
one. > > Has anyone seen this before - and know the remedy? > > Regards, > Kurt Wendt > Consultant > Kurt, There is an option to overwrite prior results. Was that checked? Tracy Pearson PowerChurch Software ___ Post Messa

Re: HELP ME...new microsoft bug

2015-09-13 Thread Tracy Pearson
Hi Gary, Is the excel file still open? There was a patch to a version of office that also caused this fire our clients. We ended up asking them to save the file as a CSV file. HTH, Tracy On September 13, 2015 12:58:44 PM EDT, Gary <g.jeur...@charter.net> wrote: >For years I've been c

RE: VFP 9 up to date MRU problem

2015-09-10 Thread Tracy Pearson
tained separately. The config.fpw is also in that resource folder. Have you tried to /Unregserver the VFP9 EXE then again /Regserver it? HTH, Tracy Tracy Pearson PowerChurch Software ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http:/

<    1   2   3   4   5   6   7   8   9   10   >