RE: Setting Step On AND KEEPING IT ON

2015-10-13 Thread Allen Pollard
And deleting the fxp's ? Al -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Gene Wirchenko Sent: 14 October 2015 01:09 To: profoxt...@leafe.com Subject: RE: Setting Step On AND KEEPING IT ON At 13:23 2015-10-13, "Allen Pollard" wrote: >Delete the fx

RE: Setting Step On AND KEEPING IT ON

2015-10-13 Thread Gene Wirchenko
At 13:23 2015-10-13, "Allen Pollard" wrote: Delete the fxp's. You may need to close VFP then delete them Nope. The issue happens even on a start of VFP with a clean compile. [snip] Sincerely, Gene Wirchenko ___ Post Messages to: ProFox@lea

Re: MsOutlook Signature

2015-10-13 Thread Mike Copeland
Have to ask...you are using HTML for the body source? Mike Copeland Sytze de Boer wrote: With a number of my clients I configure my accounting software to send invoices via Outlook This is working fine, except, the Outlook signature is not including the picture as part of the signature. Can any

MsOutlook Signature

2015-10-13 Thread Sytze de Boer
With a number of my clients I configure my accounting software to send invoices via Outlook This is working fine, except, the Outlook signature is not including the picture as part of the signature. Can anyone throw some light on this? -- Kind regards, Sytze de Boer --- StripMime Report -- proc

RE: Setting Step On AND KEEPING IT ON

2015-10-13 Thread Allen Pollard
Delete the fxp's. You may need to close VFP then delete them Al -Original Message- I do not use them with one small exception (.frx for setting printer orientation). My code is almost totally .prg. This helps avoid gotchas like having to clear out as above. Sincerely, Gene Wir

RE: Setting Step On AND KEEPING IT ON

2015-10-13 Thread Gene Wirchenko
At 05:04 2015-10-13, Dave Crozier wrote: I also meant to add clear out any/all compiled code in the SCX's and FRX's and VCX's for the same reason. I do not use them with one small exception (.frx for setting printer orientation). My code is almost totally .prg. This helps avoid gotcha

Re: MP4

2015-10-13 Thread Ted Roche
If you're doing this on your own machine, where you have a lot of control over what's installed and working, it's pretty easy to do. If you're depending on other people's machines to be configured properly, you run into a lot more issues, and I'd be more inclined to shell out to the default media p

RE: MP4

2015-10-13 Thread Kurt Wendt
Hey Dave, Understood et. al. As I've not really used the General field - I mostly know Of It - and I have heard people say NOT to stick big content in General fields because of Bloat or other issues. So - yeah - my bad, not a good idea. And, yes - I think I have done that before - just storing

RE: MP4

2015-10-13 Thread Kurt Wendt
Nope - No attachments don't work on this list... -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Jack Skelley Sent: Tuesday, October 13, 2015 12:24 PM To: profoxt...@leafe.com Subject: RE: MP4 Dave: I did something similar using the media player's ac

RE: MP4

2015-10-13 Thread Jack Skelley
Dave: I did something similar using the media player's activex component. This program reads the registry to get the current media player so the correct syntax is used. Older media player versions have different object addressing. When an audio file is selected the form looks as attached. When a

RE: MP4

2015-10-13 Thread Dave Crozier
Also, an alternative way of doing it would be to embed the videos in a Word or Excel document and use automation to display the finished document. In that way you could scroll up and down it selecting the appropriate video content and playing it as required. This would also be very easy to make

RE: MP4

2015-10-13 Thread Dave Crozier
Kurt, I thought that, but the browser really doesn't care where the files are, it will navigate to them wherever they are. As for embedding them in a general field ... well that will end in tears as you get bloat on the memo file part of the dbf - been there, got the teeshirt!!! Also, general

RE: MP4

2015-10-13 Thread Kurt Wendt
Dave - your assuming that this is a YouTube video his is referring to that exists on the Web. I was thinking Gary has Pics and MP4 Videos on his HD that he wants to access in this app. Of course, I could be wrong. If so - I think that the MP4 can be stored in a General field - although I haven't

RE: MP4

2015-10-13 Thread Dave Crozier
Or this may help. Select the YouTube MP4 link at the top of the form ** * Start of Program * public oform oform=createObject("ywmp") oform.show read events return DEFINE CLASS ywmp AS form Top = 53 Left = 164 Height = 430 Width = 460 ShowWIN

RE: MP4

2015-10-13 Thread Dave Crozier
Gary, Why not embed the Web page in a form. oForm = CREATEOBJECT("form") With oForm .Width=500 .Height=500 .Show() .AddObject("oIE","olecontrol","shell.explorer.2") .oIE.Width = .Width .oIE.Height = .Height .oIE.Visible = .t. .oIE.na

MP4

2015-10-13 Thread Gary
Is there a tool or container in fox pro9 that I can insert an .mp4 movie. I building a gymnastic skill data base and in some cases I have a picture and or drawing and in many other instances I have a video. Ideally, I would like scroll through multiple views and then press play as the desired title

RE: Setting Step On AND KEEPING IT ON

2015-10-13 Thread Dave Crozier
I also meant to add clear out any/all compiled code in the SCX's and FRX's and VCX's for the same reason. Dave -Original Message- From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Dave Crozier Sent: 13 October 2015 13:03 To: ProFox Email List Subject: RE: Setting Step On AND K

RE: Setting Step On AND KEEPING IT ON

2015-10-13 Thread Dave Crozier
Don't forget to allow debugging information to be saved when you recomp the project. If the worst comes to the worst delete all .fxp files before running so they are regenerated at runtime. Dave -Original Message- From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Koen Piller S

Re: Setting Step On AND KEEPING IT ON

2015-10-13 Thread Koen Piller
Op dinsdag 13 oktober 2015 heeft Paul Newton het volgende geschreven: > You do not have to modify the superclass (parent class). Set step in in > your subclass and issue DoDefault() If you set a ' set step 'on in a method of your parent class the debugger will also show when this method is exe

Re: Setting Step On AND KEEPING IT ON

2015-10-13 Thread Fernando D. Bozzo
Gene, you can put the name of the event or method (must have code in it) in the debugger, and this should force the debugging into this method or event. In the worst case, you can SET COVERAGE TO FILE to see what lines are executed. May be something is bad behaving because some kind of binary corr

RE: Setting Step On AND KEEPING IT ON

2015-10-13 Thread Paul Newton
You do not have to modify the superclass (parent class). Set step in in your subclass and issue DoDefault() -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Gene Wirchenko Sent: 13 October 2015 05:39 To: profoxt...@leafe.com Subject: Re: Setting Ste