Search found 824 matches

by StefanHaupt
Fri Feb 21, 2014 10:27 am
Forum: FiveWin for Harbour/xHarbour
Topic: off for some days
Replies: 73
Views: 10897

Re: off for some days

Antonio,

I know your situation very well, it´s a hard time.

My sincere condolences.

Stefan
by StefanHaupt
Fri Feb 21, 2014 10:12 am
Forum: FiveWin for Harbour/xHarbour
Topic: Scrollbars missing
Replies: 37
Views: 5845

Re: Scrollbars missing

Greg,
I guess I need to switch to a different resource editor that will use native .rc file.


I suggest to use the resource editor of PellesC, it´s free and very good.
by StefanHaupt
Wed Feb 19, 2014 9:24 am
Forum: FiveWin for Harbour/xHarbour
Topic: how change size of close button of dialog
Replies: 4
Views: 739

Re: how change size of close button of dialog

Maybe it´s possible with skins. See samples\skin1.prg
by StefanHaupt
Thu Feb 13, 2014 2:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic: tDolphin , using it on remote computer
Replies: 3
Views: 754

Re: tDolphin , using it on remote computer

I hope, I understood you right..

Xampp is only a webserver, that includes a sql modul. But, as I said before, this sql service is not accessible from outside, you can only access it if you have a website, running on that server, with e.g. a java or php app. These can access this sql service.

To ...
by StefanHaupt
Wed Feb 12, 2014 10:52 am
Forum: FiveWin for Harbour/xHarbour
Topic: tDolphin , using it on remote computer
Replies: 3
Views: 754

Re: tDolphin , using it on remote computer

Frank,
For a connection we have to know the hostname , i have no idea how we can get it or set it.

in your case the hostname is the name of the pc where xampp is installed.

But, if I remember correct, xammp does not allow any sql access from outside the web environment. Better you install the ...
by StefanHaupt
Tue Feb 11, 2014 1:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: off for some days
Replies: 73
Views: 10897

Re: off for some days

Antonio,

my thoughts are with you
by StefanHaupt
Tue Feb 11, 2014 12:30 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ftp problem
Replies: 8
Views: 2219

Re: ftp problem

Wanderson,

try without "ftp://", only the hostname
by StefanHaupt
Fri Jan 31, 2014 10:22 am
Forum: FiveWin for Harbour/xHarbour
Topic: lLFNMkDir is not returning neither true nor false
Replies: 5
Views: 902

Re: lLFNMkDir is not returning neither true nor false

lMkDir () creates directories with long names, there is no need to use lLfnMkDir()

Code: Select all | Expand

? lMkDir ("d:\Test with long names")  // return .t.

You can also use function MakeDir (<cDir>) from (x)Harbour
by StefanHaupt
Thu Jan 30, 2014 1:47 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 13.12 printer SetCopies problem
Replies: 20
Views: 6012

Re: FWH 13.12 printer SetCopies problem

Antonio,

ok, many thanks.

(just to explain, I suspected an incompatibility, because oPrinter:Setup() calls an old dialog, not that one I get from windows)
by StefanHaupt
Thu Jan 30, 2014 12:46 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 13.12 printer SetCopies problem
Replies: 20
Views: 6012

Re: FWH 13.12 printer SetCopies problem

more curious, if I change the sample this way

PROCEDURE TestPrint&#40;cPrn&#41;LOCAL oFnt, oPrintLOCAL cText := "Dies ist ein Testtext zum drucken"IF MsgYesNo &#40;"Print to " + cPrn&#41; PRINT oPrint NAME "Formular" FROM USER // choose the printer DEFINE FONT oFnt NAME "ARIAL" SIZE 0,12 OF oPrint ...
by StefanHaupt
Thu Jan 30, 2014 7:22 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 13.12 printer SetCopies problem
Replies: 20
Views: 6012

Re: FWH 13.12 printer SetCopies problem

Antonio,

very curious, both times I get 2 copies, but the printer only prints 1 copy. oPrint:SetLandscape() is ignored, too.
by StefanHaupt
Wed Jan 29, 2014 10:53 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 13.12 printer SetCopies problem
Replies: 20
Views: 6012

Re: FWH 13.12 printer SetCopies problem

Antonio,

for another test I enhanced my example. I intergrated a second function for printing, but only with (x)Harbour functions, using the Win32Prn object. Please see function Test2 (..). This sample is now working with xHarbour and Harbour.

#include "FiveWin.ch"#include "Objects.ch"Procedure ...
by StefanHaupt
Wed Jan 29, 2014 9:05 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 13.12 printer SetCopies problem
Replies: 20
Views: 6012

Re: FWH 13.12 printer SetCopies problem

Hmm, really nobody who wants to help to solve this problem ? :(

Please, can anyone run the small test and report the results, many thanks.
by StefanHaupt
Sat Jan 25, 2014 11:33 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 13.12 printer SetCopies problem
Replies: 20
Views: 6012

Re: FWH 13.12 printer SetCopies problem

Antonio,

I made this small test-function

#include "Fivewin.ch"Procedure Main&#40;&#41;LOCAL oPrn, oPrint,oFnt, cPrinter := ""LOCAL oWnd, oBrwLOCAL aPrn := &#123;&#125;LOCAL cDef, i := 1aPrn := GetPrinters &#40;&#41;IF Empty &#40;aPrn&#41; MsgAlert &#40;"No Printers found" &#41;//+ CRLF ...