Search found 3494 matches: command

Return to advanced search

Re: Problem with alignment in SAY command

// C:\FWH\SAMPLES\ENRISAY.PRG #Include "FiveWin.ch"FUNCTION Main()   LOCAL oDlg, cText, aGrad, oFont   cText := "Driessen: Enrico Maria Giordano - Style Right"   DEFINE FONT oFont  NAME "Ms Sans Serif"  SIZE 00, -14 BOLD   aGrad := { { 0.30, CLR_HGREEN...
by karinha
Fri Mar 01, 2024 4:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with alignment in SAY command
Replies: 18
Views: 842

Re: Problem with alignment in SAY command

Here it is: #include "Fivewin.ch"FUNCTION MAIN()    LOCAL oDlg    DEFINE DIALOG oDlg;           RESOURCE "TEST"    REDEFINE SAY PROMPT "This is right aligned";            &...
by Enrico Maria Giordano
Fri Mar 01, 2024 3:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with alignment in SAY command
Replies: 18
Views: 842

Re: Problem with alignment in SAY command

Enrico,

Thanks a lot for your message.

Is it possible to send a small example of how to do that?

Thanks.
by driessen
Fri Mar 01, 2024 2:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with alignment in SAY command
Replies: 18
Views: 842

Re: Problem with alignment in SAY command

ADD SS_RIGHT style to your STATIC resource.
by Enrico Maria Giordano
Fri Mar 01, 2024 11:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with alignment in SAY command
Replies: 18
Views: 842

Problem with alignment in SAY command

... to the right. In my resources this field is defined as right text, but my text is shown aligned to the left. How can I align the text in the SAY command to the right? Thank you.
by driessen
Fri Mar 01, 2024 9:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with alignment in SAY command
Replies: 18
Views: 842

Re: How to show and print a pdf file?

Karinha,
This command prints the PDF directly and I wanted to show it before print. Is it possible ?
by vilian
Thu Feb 29, 2024 1:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to show and print a pdf file?
Replies: 13
Views: 665

Re: COMBOBOX

You received an error because REDEFINE COMBOBOX does not support FONT. Check fivewin.ch to always see the latest implementation of a command line. I use resources exclusively because the alignment on a complex dialog is much easier. I use the following resource to see the latest implementation ...
by TimStone
Tue Feb 27, 2024 7:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: COMBOBOX
Replies: 7
Views: 304

Re: Problem with FiveWin and PDF995 on Windows 11.

... best option. That keeps compatibility between Pdf class and Printer class. For now you can start creating PDF files with FWH without HaruPdf. This command PRINT oPrn FILE cFilePDF directly creates PDF file even without HaruPdf. You don't need it now but just for information: PRINT oPrn FILE "test.png" ...
by nageswaragunupudi
Thu Feb 15, 2024 3:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FiveWin and PDF995 on Windows 11.
Replies: 29
Views: 1221

Re: Problem with FiveWin and PDF995 on Windows 11.

"before executing PRINT command." "Not inside PRINT/ENDPRINT" I don't exactly understand how this work. But it does. Does this flag (lUseHaruPDF) stay true until it is set back to false, or do you need to set it everytime. ...
by Enrico Maria Giordano
Wed Feb 14, 2024 8:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FiveWin and PDF995 on Windows 11.
Replies: 29
Views: 1221

Re: Problem with FiveWin and PDF995 on Windows 11.

"before executing PRINT command." "Not inside PRINT/ENDPRINT" I don't exactly understand how this work. But it does. Does this flag (lUseHaruPDF) stay true until it is set back to false, or do you need to set it everytime. ...
by byron.hopp
Wed Feb 14, 2024 7:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FiveWin and PDF995 on Windows 11.
Replies: 29
Views: 1221

Re: Problem with FiveWin and PDF995 on Windows 11.

As we suggested above, use TPrinter():lUseHarufPDF := .t. before executing PRINT command. Not inside PRINT/ENDPRINT Also please try to use later methods of Tprinter. Please try this sample as it is: #include "fivewin.ch"REQUEST FWHARUfunction Main()  ...
by nageswaragunupudi
Wed Feb 14, 2024 1:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FiveWin and PDF995 on Windows 11.
Replies: 29
Views: 1221

Re: erase files

The command ERASE <cfile> is preprocessed as FERASE( <cfile> ). This command or function should work (and it works for me) if the file exists and is not in use and can be deleted. If the ERASE command does not really ...
by nageswaragunupudi
Wed Jan 24, 2024 2:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1545

Re: Creating table with Trichedit

... cFileNameRETURN Nice job!! I wish insert a row ( with two column) before of the 4 rows you inserted and write some texts Where I can found command as insert picture,fonts, colors ? I 'm thinked Rtf file perhaps is more used and it can be opened also with no Office/openoffice computer.
by Silvio.Falconi
Wed Jan 24, 2024 1:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1458

Re: file ID in the Windows file system

... table in case one needs to do a restore, so that one can find the ID again. I think of a private file allocation table. I have tested with these command com files and the fsutil. It could work. And in such a DMS - for businesses on the scale of hotels, there are not thousands of files added daily. ...
by Otto
Sat Jan 06, 2024 9:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: file ID in the Windows file system
Replies: 5
Views: 628

file ID in the Windows file system

... use specific tools or write a program that interacts with the Windows API. Here's a general outline of how you can retrieve the File ID: **Using Command Line:** - **fsutil**: Windows includes a command-line utility called fsutil that can display the File ID among other file and volume information. ...
by Otto
Fri Jan 05, 2024 4:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: file ID in the Windows file system
Replies: 5
Views: 628
PreviousNext

Return to advanced search