Search found 172 matches

by AlexSchaft
Fri Mar 23, 2012 10:43 am
Forum: FiveWin for Harbour/xHarbour
Topic: Multi Threading?
Replies: 0
Views: 316

Multi Threading?

Hi,

Is FWH compatible with Harbour multi-threading?
by AlexSchaft
Thu Nov 17, 2011 6:51 am
Forum: FiveWin for Harbour/xHarbour
Topic: TSmtp with proxy ?
Replies: 1
Views: 308

Re: TSmtp with proxy ?

Hi,

As far as I'm aware, SMTP can't be proxied. You need to talk directly to a mail server.

Alex
by AlexSchaft
Mon Nov 14, 2011 6:07 am
Forum: FiveWin for Harbour/xHarbour
Topic: Windows 7 taskbar button progress bar
Replies: 20
Views: 6278

Windows 7 taskbar button progress bar

Hi,

I'm trying to show progress on the windows taskbar via the api from http://msdn.microsoft.com/en-us/library ... 85%29.aspx but can't seem to get it to work.

Has anyone else done this?

Alex
by AlexSchaft
Tue Sep 06, 2011 9:37 am
Forum: FiveWin for Harbour/xHarbour
Topic: Automatic start of a new window
Replies: 2
Views: 505

Re: Automatic start of a new window

Easiest way we have found of doing this is via a timer which we activate just before activating the main window In your on init clause of the main window you set a var like lMainWindowInitComplete := .t. The timer function then checks for this and if it's true create the second window and stop the t...
by AlexSchaft
Wed Aug 03, 2011 8:23 am
Forum: FiveWin for Harbour/xHarbour
Topic: Mailing rich text
Replies: 0
Views: 309

Mailing rich text

Hi,

We've got the rich edit control to edit rich text, but now we want to mail it to someone. Does anybody know how to format mail for this? Alternatively, is there a decent rtf to html converter anyone can recommend?

Thanks,
Alex
by AlexSchaft
Tue Mar 08, 2011 1:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse 2010/12
Replies: 4
Views: 833

xbrowse 2010/12

Hi,

The xbrowse class from 2010/12 refers to a TMySqlQuery WSeekplus method. Where can I find this?

Thanks,
Alex
by AlexSchaft
Mon Feb 28, 2011 5:23 am
Forum: FiveWin for CA-Clipper
Topic: Decompiler
Replies: 2
Views: 4050

Re: Decompiler

Hi,

Valkyrie won't decompile the blinker compressed exe, and for $200 I might as well rewrite from scratch

Thanks,
Alex
by AlexSchaft
Fri Feb 25, 2011 1:20 pm
Forum: FiveWin for CA-Clipper
Topic: Decompiler
Replies: 2
Views: 4050

Decompiler

Hi,

I wrote a program for someone in clipper+fw many many moons ago which i now need to decompile for some functionality

Can anyone point me at something that will do this for me?

Thanks,
alex
by AlexSchaft
Wed Feb 16, 2011 5:52 am
Forum: FiveWin for Harbour/xHarbour
Topic: Get spinners in windows 7
Replies: 2
Views: 461

Re: Get spinners in windows 7

Hi, This is on version 2010.12 http://mail.quicksoftware.co.za/badspin.png #include "Fivewin.ch" FUNCTION MAIN()     LOCAL oDlg     Local oget     LOCAL nVal := -1     DEFINE DIALOG oDlg     @ 1,1 GET oget var nVal;           PICTURE "999";           SPINNER           ;     ACTIV...
by AlexSchaft
Tue Feb 15, 2011 9:21 am
Forum: FiveWin for Harbour/xHarbour
Topic: Get spinners in windows 7
Replies: 2
Views: 461

Get spinners in windows 7

Hi,

It appears Windows 7 is drawing the scroll bars wrong on single line get controls with spinner enabled.

Is there any way around this?

Alex
by AlexSchaft
Tue Jan 18, 2011 8:20 am
Forum: FiveWin for Harbour/xHarbour
Topic: FIVEWIN/samples/win32.prg
Replies: 4
Views: 859

Re: FIVEWIN/samples/win32.prg

Hi, It's a bit late, but if you add the avi to your exe file as follows in the app.rc: 151 AVI "\\dev\\avi\\findfile.avi" And change tAnimate to:   METHOD FindFile() BLOCK { | Self, h |::OpenEx( nil, 151 ) } It works. I only changed from XP to Windows 7 at the end of last year, and only hi...
by AlexSchaft
Fri Jan 14, 2011 5:50 am
Forum: FiveWin for Harbour/xHarbour
Topic: FixThemeControls()?
Replies: 0
Views: 214

FixThemeControls()?

Hi,

what Does the FixThemeControls() function do?

Alex
by AlexSchaft
Thu Dec 09, 2010 1:42 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Progress bars not reaching 100% in Windows 7
Replies: 0
Views: 323

Progress bars not reaching 100% in Windows 7

I saw a thread about this dated from January. Has anybody found anything about it since then?

Alex
by AlexSchaft
Mon May 17, 2010 9:48 am
Forum: FiveWin for Harbour/xHarbour
Topic: Listening socket on specific ip address?
Replies: 1
Views: 402

Listening socket on specific ip address?

Hi,

Is there an function similar to bindtoport available that maps to the socket api bind function? I'd like to create a socket that listens on 127.0.0.1 (localhost) only

Thanks,
Alex
by AlexSchaft
Mon May 10, 2010 9:52 am
Forum: FiveWin for Harbour/xHarbour
Topic: Menu item text in bold?
Replies: 0
Views: 192

Menu item text in bold?

In windows explorer, the context menu item that would be run when double clicking is shown in bold. How do I achieve this in FWH?