Search found 670 matches: flag

Return to advanced search

Re: Talking to your apps

... job of converting voice to text. I would suggest that when using this in our programs, as you have suggested, then we should have a program wide flag that allows the client to use, or NOT use, voice. Maybe a default on setup, and/or a hot key to toggle it. That way we don't always have a live ...
by TimStone
Mon Apr 01, 2024 9:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Talking to your apps
Replies: 20
Views: 3798

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. Why does it not get set back to false when you initiate ...
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: 1181

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. Why does it not get set back to false when you initiate ...
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: 1181

Re: Mark field as required

... save the record. An alternative is to allow the user to save the record even if some of the "required" data is unknown. You could then flag all the records missing the required data in a browse. I color the backgrounds of "required" information in the dialog and flag the records ...
by James Bott
Sat Feb 03, 2024 7:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mark field as required
Replies: 23
Views: 1764

Re: Cómo omitir el Fichero .TDS?

Dear Enrico,

thanks for your feedback, my mistake to trust AI without checking it :-)

This flag may work: -Gn

Use the -Gn option to disable incremental linking, which also prevents the generation of TDS files.


Again it comes from AI so it has to be checked
by Antonio Linares
Mon Jan 29, 2024 1:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cómo omitir el Fichero .TDS?
Replies: 9
Views: 380

Re: "Save As" dialog box

hi,
nageswaragunupudi wrote:The problem still remains. User can select a normal File also, even though the flag BIF_RETURNONLYFSDIRS is set when the flag BIF_BROWSEINCLUDEFILES is added.

you can test if it is a File or Folder which are select
by Jimmy
Sun Jan 28, 2024 9:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: "Save As" dialog box
Replies: 14
Views: 1829

Re: "Save As" dialog box

... The problem still remains. User can select a normal File also, even though the flag BIF_RETURNONLYFSDIRS is set when the flag BIF_BROWSEINCLUDEFILES is added. Expecting experts to guide.
by nageswaragunupudi
Sun Jan 28, 2024 5:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: "Save As" dialog box
Replies: 14
Views: 1829

Re: Cómo omitir el Fichero .TDS?

Estimado Armando,

Prueba a pasarle el flag -td al ilink32.exe
by Antonio Linares
Sun Jan 28, 2024 6:50 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cómo omitir el Fichero .TDS?
Replies: 9
Views: 380

Re: Insert an record on array

... which the value xValue will be inserted. nPos Subscript position in aArray. Default: 1st position xValue Value to be inserted lAutoSize Boolean flag to increase or not the size of aArray. Default value: .F. https://harbour.github.io/doc/harbour.html#hb_ains example: function ...
by Silvio.Falconi
Mon Jan 15, 2024 9:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Insert an record on array
Replies: 4
Views: 823

Re: Insert an record on array

... which the value xValue will be inserted. nPos Subscript position in aArray. Default: 1st position xValue Value to be inserted lAutoSize Boolean flag to increase or not the size of aArray. Default value: .F. https://harbour.github.io/doc/harbour.html#hb_ains example: function ...
by Antonio Linares
Sun Jan 14, 2024 6:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Insert an record on array
Replies: 4
Views: 823

Re: WebView2 Essentials: Guides, Tips & Resources

... This class appears to manage a web view control within a desktop application. Data Members: hWebView: Handle to the web view control. bOnBind: A flag or callback related to binding JavaScript functions. Methods: New(nDebug, hWndParent): Constructor that creates a new web view instance. It takes ...
by Otto
Wed Jan 10, 2024 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 478

Re: Create a Panel width a text

Dear Silvio, You can use Windows API DrawText() using the flag DT_CALCRECT to calculate the dimensions of the text rectangle without actually drawing the text. it will take into account the font you are using, etc. The resulting width and height are ...
by Silvio.Falconi
Fri Jan 05, 2024 10:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3162

Re: Create a Panel width a text

Dear Silvio, You can use Windows API DrawText() using the flag DT_CALCRECT to calculate the dimensions of the text rectangle without actually drawing the text. it will take into account the font you are using, etc. The resulting width and height are stored ...
by Antonio Linares
Fri Jan 05, 2024 7:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3162

Re: Question about deleting files and the trash

... pFrom is set to a file name without a full path, deleting the file with FO_DELETE does not move it to the Recycle Bin, even if the FOF_ALLOWUNDO flag is set. You must provide a full path to delete the file to the Recycle Bin. https://learn.microsoft.com/en-us/windows/win32/api/shellapi/ns-shellapi-shfileopstructa
by Jimmy
Wed Jan 03, 2024 9:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about deleting files and the trash
Replies: 11
Views: 1170

Re: Question about deleting files and the trash

Hello Jimmy,

Deleting files by using ShFileOperation() works fine.
But the deleted files are not moved to the recycle bin yet.
So I need to set the flag FOF_ALLOWUNDO.
But how do I do that?

Thanks.
by driessen
Fri Dec 22, 2023 11:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about deleting files and the trash
Replies: 11
Views: 1170
Next

Return to advanced search