Antonio,
I know your situation very well, it´s a hard time.
My sincere condolences.
Stefan
Search found 824 matches
- Fri Feb 21, 2014 10:27 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: off for some days
- Replies: 73
- Views: 12850
- Fri Feb 21, 2014 10:12 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Scrollbars missing
- Replies: 37
- Views: 5939
Re: Scrollbars missing
Greg,
I suggest to use the resource editor of PellesC, it´s free and very good.I guess I need to switch to a different resource editor that will use native .rc file.
- Wed Feb 19, 2014 9:24 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: how change size of close button of dialog
- Replies: 4
- Views: 1032
Re: how change size of close button of dialog
Maybe it´s possible with skins. See samples\skin1.prg
- Thu Feb 13, 2014 2:02 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: tDolphin , using it on remote computer
- Replies: 3
- Views: 1127
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 run ...
- Wed Feb 12, 2014 10:52 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: tDolphin , using it on remote computer
- Replies: 3
- Views: 1127
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 standa...
- Tue Feb 11, 2014 1:00 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: off for some days
- Replies: 73
- Views: 12850
Re: off for some days
Antonio,
my thoughts are with you
my thoughts are with you
- Tue Feb 11, 2014 12:30 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: ftp problem
- Replies: 8
- Views: 2653
Re: ftp problem
Wanderson,
try without "ftp://", only the hostname
try without "ftp://", only the hostname
- Fri Jan 31, 2014 10:22 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: lLFNMkDir is not returning neither true nor false
- Replies: 5
- Views: 1230
Re: lLFNMkDir is not returning neither true nor false
lMkDir () creates directories with long names, there is no need to use lLfnMkDir()
You can also use function MakeDir (<cDir>) from (x)Harbour
Code: Select all
? lMkDir ("d:\Test with long names") // return .t.
- Thu Jan 30, 2014 1:47 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH 13.12 printer SetCopies problem
- Replies: 20
- Views: 6686
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)
ok, many thanks.
(just to explain, I suspected an incompatibility, because oPrinter:Setup() calls an old dialog, not that one I get from windows)
- Thu Jan 30, 2014 12:46 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH 13.12 printer SetCopies problem
- Replies: 20
- Views: 6686
Re: FWH 13.12 printer SetCopies problem
more curious, if I change the sample this way PROCEDURE TestPrint(cPrn) LOCAL oFnt, oPrint LOCAL cText := "Dies ist ein Testtext zum drucken" IF MsgYesNo ("Print to " + cPrn) PRINT oPrint NAME "Formular" FROM USER // choose the printer DEFINE FONT oFnt NAME "A...
- Thu Jan 30, 2014 7:22 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH 13.12 printer SetCopies problem
- Replies: 20
- Views: 6686
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.
very curious, both times I get 2 copies, but the printer only prints 1 copy. oPrint:SetLandscape() is ignored, too.
- Wed Jan 29, 2014 10:53 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH 13.12 printer SetCopies problem
- Replies: 20
- Views: 6686
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.c...
- Wed Jan 29, 2014 9:05 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH 13.12 printer SetCopies problem
- Replies: 20
- Views: 6686
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.
Please, can anyone run the small test and report the results, many thanks.
- Sat Jan 25, 2014 7:39 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH 13.12 printer SetCopies problem
- Replies: 20
- Views: 6686
- Sat Jan 25, 2014 11:33 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH 13.12 printer SetCopies problem
- Replies: 20
- Views: 6686
Re: FWH 13.12 printer SetCopies problem
Antonio, I made this small test-function #include "Fivewin.ch" Procedure Main() LOCAL oPrn, oPrint,oFnt, cPrinter := "" LOCAL oWnd, oBrw LOCAL aPrn := {} LOCAL cDef, i := 1 aPrn := GetPrinters () IF Empty (aPrn) MsgAlert ("No Printers found" )//+ CRLF +; RETURN ENDI...