Search found 190 matches

by Davide
Sat Nov 07, 2009 6:44 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Windows 7
Replies: 35
Views: 6196

Re: Problem with Windows 7

Boris,

I heard that Windows 7 provides an "XP-mode" to prevent compatibility problems. I didn't try it myself, but you may give it a chance if nothing else suggested here does work.

Hi,
Davide
by Davide
Fri Nov 06, 2009 5:48 pm
Forum: FiveWin for Harbour/xHarbour
Topic: PRINT oPrn Win64
Replies: 8
Views: 1112

PRINT oPrn Win64

A client of mine today reported me that on Vista 64 bit: PRINT oPrn NAME "Test" [FROM USER|TO cPrinter] could not print anywhere but the default Windows printer (either "FROM USER" or "TO" a specific printer). Anybody ever experienced this ? Any idea ? Thanks, Davide FW...
by Davide
Fri Nov 06, 2009 5:15 pm
Forum: FiveWin for Harbour/xHarbour
Topic: http method post
Replies: 1
Views: 468

Re: http method post

Marco, Hi, any help about the http post method also ? I think can be managed using the tipclienthttp class but I didn't find any docs related to this class. I regularly do it via IE ActiveX. Please see http://forums.fivetechsupport.com/viewtopic.php?f=3&t=12514&hilit=GetPostData (someone sug...
by Davide
Sun Oct 18, 2009 1:02 am
Forum: FiveWin for Harbour/xHarbour
Topic: Default mail client
Replies: 2
Views: 392

Re: Default mail client

In my machine that key doesn't contain the correct mailer (probably because I don't use IE neither)

Regards,
Davide
by Davide
Mon Oct 12, 2009 1:46 am
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in TTray.prg
Replies: 1
Views: 382

Bug in TTray.prg

Antonio, at a certain point, between 7.09 and 9.05 (probably here http://forums.fivetechsupport.com/viewtopic.php?f=3&t=12421) you commented out WS_DISABLED  DEFINE WINDOW ::oWnd STYLE NOR( WS_POPUP ) FROM 0,0 TO 0,0 OF oWnd // , WS_DISABLED   ACTIVATE WINDOW ::oWnd ON INIT ::oWnd:Hide() This ma...
by Davide
Mon Oct 12, 2009 1:31 am
Forum: FiveWin for Harbour/xHarbour
Topic: Testsmtp.prg FWH9.03
Replies: 9
Views: 1478

Re: Testsmtp.prg FWH9.03

If you've sent AUTH info, but the server doesn't support authentication, you should terminate with ::Failure, not setting the status to ST_QUIT because the socket doesn't receive further data and case ST_QUIT never get fired.     Case ::nStatus == ST_AUTH          If SubStr( cData, 1, 3 ) == "3...
by Davide
Thu Sep 24, 2009 9:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TSocket.prg - Possible bug ?
Replies: 3
Views: 783

Re: TSocket.prg - Possible bug ?

Daniel, thank you for your reply. If the server is up and running, the package is received ok with or without that "exit" commented. No problem here. If the server is down, that commented "exit" makes the log file growing forever because the loop in SendData() never ends. Restori...
by Davide
Thu Sep 24, 2009 3:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TSocket.prg - Possible bug ?
Replies: 3
Views: 783

TSocket.prg - Possible bug ?

I use TwebClie.prg to download a file from a remote server:  oConn:=TWebClient():New()   oConn:oSocket:lDebug  :=.t.   oConn:oSocket:cLogFile:=cLog   oConn:bOnConnect    := { | oS | oS:GetPage(cPage) }   oConn:bOnRead       := { | cD, oS | cBuffer+=cD }   oConn:oSocket:bClose:= { | oS | ManageFile(c...
by Davide
Fri Sep 18, 2009 6:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: PrintDC.c - From User - Antonio
Replies: 4
Views: 624

Re: PrintDC.c - From User - Antonio

Antonio, If you are so kind to test your own proposal, it would be great I'm not sure if I should change EVERY pd.flags line or only some of them. I though that you may have done a better job, as you know better than me the logic behind Printdc.c If you can replicate the problem at your location, I'...
by Davide
Fri Sep 18, 2009 5:39 pm
Forum: FiveWin for Harbour/xHarbour
Topic: PrintDC.c - From User - Antonio
Replies: 4
Views: 624

Re: PrintDC.c - From User - Antonio

Antonio, Do you mean that FWH controls the above automatically ? 1) PRINT oPrn FROM USER 2) The "Choose Printer" dialog box is opened 3) Change the number of copies (in that dialog) 4) Just 1 copy is printed on most cases in Vista Known issue on Windows XP/Vista/Windows 7: If PD_RETURNDC i...
by Davide
Fri Sep 18, 2009 12:51 am
Forum: FiveWin for Harbour/xHarbour
Topic: PrintDC.c - From User - Antonio
Replies: 4
Views: 624

PrintDC.c - From User - Antonio

In Windows XP/Vista , sometimes the copies selected by the FROM USER clause don't work.
Please see the Remarks at http://msdn.microsoft.com/en-us/library ... 85%29.aspx
I've solved the problem managing the copies in my prg but perhaphs you may solve it definitely in PrintDC.c

Hi,
Davide
by Davide
Thu Sep 03, 2009 1:11 pm
Forum: FiveWin for Harbour/xHarbour
Topic: oPrn:Say() with background color.
Replies: 0
Views: 183

oPrn:Say() with background color.

Hello all,

any way to do it without using oPrn:RoundBox() before the oPrn:Say() ?

Thanks,
Davide

FWH 9.05 - xH 1.2.1 - Bcc 5.5
by Davide
Thu Sep 03, 2009 11:45 am
Forum: FiveWin for Harbour/xHarbour
Topic: Erro 9000:
Replies: 15
Views: 1982

Re: Erro 9000:

Antonio, Call it from the VALID clause of the window. (WM_CLOSE) already tried. The program hangs before the VALID of that Window is evaluated (otherwise the oActiveX:End() in the VALID would already correctly work) I've found a workaround by assigning the object to a local variable before := nil , ...
by Davide
Thu Sep 03, 2009 1:14 am
Forum: FiveWin for Harbour/xHarbour
Topic: Erro 9000:
Replies: 15
Views: 1982

Re: Erro 9000:

Antonio, > METHOD Destroy() INLINE ActXEnd( ::hActiveX ), ::oOleAuto := nil, Super:Destroy() this unfortunately doesn't work (looks like the program hangs before method Destroy() get fired). > oActiveX:oOleAuto := nil This DOES work, but ... (there's always a but) ... I also have a buttonbar on that...
by Davide
Wed Sep 02, 2009 2:06 am
Forum: FiveWin for Harbour/xHarbour
Topic: Erro 9000:
Replies: 15
Views: 1982

Re: Erro 9000:

Antonio, Do it in your PRG where you no longer need your used OleAuto object I finally could replicate the problem here. I have a window opened this way (not the main window):  DEFINE WINDOW oWnd TITLE cTitle   oActiveX = TActiveX():New( oWnd, "Shell.Explorer" )     oWnd:oClient := oActive...