Search found 20 matches

by Brian Hays
Wed Jun 24, 2009 9:31 pm
Forum: FiveWin for Harbour/xHarbour
Topic: avi fails under Vista
Replies: 4
Views: 759

Re: avi fails under Vista

Cool, thanks!
by Brian Hays
Wed Jun 24, 2009 5:09 am
Forum: FiveWin for Harbour/xHarbour
Topic: avi fails under Vista
Replies: 4
Views: 759

Re: avi fails under Vista

Hey, Rick! Great to hear from you. Thanks for the code. This issue came up because we had an old routine with a dialog that used the standard "Copy Files" system avi (at least I'm pretty sure it's an avi). It turns out it just opens Shell32.dll to play the standard animations in the TAnima...
by Brian Hays
Wed Jun 24, 2009 1:53 am
Forum: FiveWin for Harbour/xHarbour
Topic: avi fails under Vista
Replies: 4
Views: 759

avi fails under Vista

If I build samples\win32.exe, the avi plays fine under XP but does nothing under Vista.
What's the trick to get it working?
Thanks!
by Brian Hays
Mon Sep 11, 2006 8:47 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to check ADI Yes/No Exist index TAG name?
Replies: 7
Views: 1788

Generally speaking, I strongly recommend staying with the clipper-compatible standard commands and functions. In the early days of rddads there was a need to create some wrapper functions to directly access ads stuff, but now almost all functionality (except where an ads feature is beyond what the c...
by Brian Hays
Mon Sep 11, 2006 8:10 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Generic ActiveX methods via OnError
Replies: 3
Views: 897

Terrific, Thanks!
by Brian Hays
Mon Sep 11, 2006 8:01 am
Forum: FiveWin for Harbour/xHarbour
Topic: Generic ActiveX methods via OnError
Replies: 3
Views: 897

Generic ActiveX methods via OnError

Antonio: I'm creating a wrapper class for a commercial ActiveX control. Rather than code a Method for each function, I created the OnError handler below to attempt to post any unknown message as a call to the actual control. It seems to work, but there are a couple issues: How can I handle passing n...
by Brian Hays
Mon Sep 11, 2006 6:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: How to check ADI Yes/No Exist index TAG name?
Replies: 7
Views: 1788

But to answer the specific question: All the standard ord* rdd functions should work: ordDestroy, ordName, etc., as well as their commands like DELETE TAG. Also: dbOrderInfo(DBOI_ORDERCOUNT, cBag), etc. Still, I also think it's best to delete the adi file. And the other comment on the forum re not n...
by Brian Hays
Wed Jul 19, 2006 11:10 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WebBrowser ActiveX control
Replies: 19
Views: 6629

So it is indeed already available to everyone with this newest release?
That's terrific.
by Brian Hays
Wed Jul 19, 2006 5:45 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WebBrowser ActiveX control
Replies: 19
Views: 6629

Ari: I'm sorry, I just realized Antonio had sent me patched libs to finish testing this, and until those low level changes are available for everybody it won't work. To be sure that's the problem, could you please trace the definition of CRLF and the array offsets that are concatenated and see which...
by Brian Hays
Mon Jul 17, 2006 10:11 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WebBrowser ActiveX control
Replies: 19
Views: 6629

Here's the link to my test and small wrapper class for the WebBrowser: http://hyperupload.com/download/024244dd11/webBrow.zip.html Now you can do: oBrowser = TWebBrowser():New( oWnd ) oBrowser:Navigate( "http://www.fivetechsoft.com" ) Notice you can also browse local folders like: oBrowser...
by Brian Hays
Mon Jul 17, 2006 4:05 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WebBrowser ActiveX control
Replies: 19
Views: 6629

Maurilio: We're currently working with the webexp.prg in Samples. You can now add something like this to the EventInfo function: if valType(event) == "C" .AND. event == "BeforeNavigate2" #define BEFORE_NAV_ARGS_URL 2 #define BEFORE_NAV_ARGS_TargetFrameName 4 #define BEFORE_NAV_AR...
by Brian Hays
Sun Jul 16, 2006 3:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WebBrowser ActiveX control
Replies: 19
Views: 6629

Wow! Thanks for the incredibly fast turnaround (on a weekend no less! :-)
by Brian Hays
Sat Jul 15, 2006 7:17 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WebBrowser ActiveX control
Replies: 19
Views: 6629

WebBrowser ActiveX control

I'm pasting here a private msg I sent to Antonio so our discussion can be shared. If anyone else has customized the Shell.InternetExplorer control, I'd love to hear your input. After much searching in vain on MSDN for docs, Antonio helped me realize the magic keyword is WebBrowser. Here's the link t...
by Brian Hays
Fri Dec 16, 2005 10:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: Toolbar prompts on two rows
Replies: 9
Views: 2389

No. I'll have to go back and review to find out the trick. We opted NOT to do 2 rows. Part of the problem is the standard style expands the buttons to the width of the widest string. You have to tell it to stop doing that, but I don't remember exactly how. It's not as easy as just adding the CCS_NOR...
by Brian Hays
Wed Dec 14, 2005 9:23 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Toolbar prompts on two rows
Replies: 9
Views: 2389

well unfortunately I have an extremely hacked toolbar class that isn't safe for public consumption. There were too many glitches getting it to work generically for Antonio, and I had a deadline I had to make so it's currently specific to our usage. You can test the return value from that call to see...