Search found 407 matches: optional

Return to advanced search

Re: Creating table with Trichedit

... rtf of files // Copyright: (C) 01/28/97 1997, Thomas R. Marchione oRTF := SetRT( cOutFile ) // Use this to write an entire paragraph, with optional formatting. NEW PARAGRAPH oRTF TEXT 'OOO «Text in aligned left»'; FONTNUMBER 1 ; APPEARANCE BOLD_OFF+ITALIC_OFF+CAPS_OFF; FONTSIZE 12 ; FONTCOLOR ...
by Silvio.Falconi
Sun Jan 28, 2024 5:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1455

Re: Creating table with Trichedit

... rtf of files // Copyright: (C) 01/28/97 1997, Thomas R. Marchione oRTF := SetRT( cOutFile ) // Use this to write an entire paragraph, with optional formatting. NEW PARAGRAPH oRTF TEXT 'OOO «Text in aligned left»'; FONTNUMBER 1 ; APPEARANCE BOLD_OFF+ITALIC_OFF+CAPS_OFF; FONTSIZE 12 ; FONTCOLOR ...
by Silvio.Falconi
Sat Jan 27, 2024 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1455

Re: Creating table with Trichedit

... rtf of files // Copyright: (C) 01/28/97 1997, Thomas R. Marchione oRTF := SetRT( cOutFile ) // Use this to write an entire paragraph, with optional formatting. NEW PARAGRAPH oRTF TEXT 'OOO «Text in aligned left»'; FONTNUMBER 1 ; APPEARANCE BOLD_OFF+ITALIC_OFF+CAPS_OFF; FONTSIZE 12 ; FONTCOLOR ...
by MMK
Sat Jan 27, 2024 9:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1455

Re: WebView2 Essentials: Guides, Tips & Resources

... function. SetTitle(cTitle): Sets the title of the web view window. SetSize(nWidth, nHeight, nHints): Sets the size of the web view window with optional size hints. Print(): Invokes the print function of the web view. SetParent(oWnd): Sets the parent window of the web view. SetUserAgent(cUserAgent): ...
by Otto
Wed Jan 10, 2024 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 481

Soap Web Service - timeout request

... cHttpSend += [ <soapenv:Header/>] cHttpSend += [ <soapenv:Body>] cHttpSend += [ <urn:FindRFIDQry>] cHttpSend += [ <!--Optional:-->] cHttpSend += [ <Header>] cHttpSend += [ <!--Optional:-->] cHttpSend += [ <Document>] + cSDNo + [</Document>] ...
by cdmmaui
Mon Jan 08, 2024 9:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service - timeout request
Replies: 4
Views: 706

Re: phpBB to LLM

... if your firewall or antivirus software is blocking the connection. Temporarily disabling them for the installation process might help. Conda (Optional): If you're still having trouble, consider using conda, which is another package manager. You can create a new conda environment and install ...
by Antonio Linares
Mon Dec 25, 2023 6:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4696

Re: Classe TGif

... top position, image width, image height, local color table flag, interlace flag, sort flag, size of local color table, and local color table (optional). It should have one or more image data blocks that contain the compressed pixel data of each image in the file. The image data blocks should ...
by Antonio Linares
Fri Dec 08, 2023 8:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Classe TGif
Replies: 9
Views: 1659

Re: Error sending email

thank you for your answer but... the parameter is optional, I also tried with no parameters, .t., .f., 0, 1, nothing changes. Note that if I pass (.t.) the error appears 'after' I close the dialog, and if I pass (.f.) -non-modal mode- the error appears ...
by chiaiese
Fri Aug 11, 2023 12:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error sending email
Replies: 18
Views: 788

Re: Web programming with Mod Harbour

... web application is ready, you'll need to deploy it on a web server that supports Mod Harbour or the chosen web framework. Frontend Integration (Optional): While Mod Harbour is not commonly used for frontend development, you can integrate it with other frontend technologies like HTML, CSS, and ...
by sumit234
Sat Jul 29, 2023 7:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web programming with Mod Harbour
Replies: 1
Views: 328

New FTDN July/Julio (FWH 23.07)

... top-level windows on the screen by passing the handle to each window, in turn, to a codeblock where the handle of each window is provided and an optional nLParam value. * ScrollMsg: NOBORDER clause added * TGET: - Picture claise "@M c1,c2,..." implemented like FoxPro. https://forums.fivetechsupport.com/viewtopic.php?f=3&t=43407&hilit=foxpro ...
by Antonio Linares
Thu Jul 27, 2023 6:13 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1065

Re: is box mandotary in SCROLLMSG class?

Can it be optional? Yes. We made this optional from the next version. If you want to remove the box right now in your application, you need to modify the fwh\source\classes\scrolmsg.prg: Comment out line 115 //   ::oWnd:Box( ::nTop ...
by Horizon
Tue Jul 18, 2023 6:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: is box mandotary in SCROLLMSG class?
Replies: 6
Views: 369

Re: is box mandotary in SCROLLMSG class?

Can it be optional?

Yes. We made this optional from the next version.

If you want to remove the box right now in your application, you need to modify the
fwh\source\classes\scrolmsg.prg:
Comment out line 115
Code: Select all  Expand view
//   ::oWnd:Box( ::nTop - 1, ::nLeft - 1, ::nBottom + 1, ::nRight + 1 )
 
by nageswaragunupudi
Tue Jul 18, 2023 5:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: is box mandotary in SCROLLMSG class?
Replies: 6
Views: 369

Re: is box mandotary in SCROLLMSG class?

nageswaragunupudi wrote:Right now, box is always painted.
Do you want it without border (box) ?


Yes, Mr. Rao, I want it without border. Can it be optional?
by Horizon
Tue Jul 18, 2023 11:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: is box mandotary in SCROLLMSG class?
Replies: 6
Views: 369

Re: Create help system with F1

... can be a text field or support rich text formatting, depending on the complexity and formatting requirements of your help content. Category: An optional field that categorizes the help topics into different groups or sections. This field can help users navigate through the help content based ...
by Antonio Linares
Tue Jul 11, 2023 4:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create help system with F1
Replies: 15
Views: 870

Re: can use SWITCH Control in XBROWSE ?

i like to request EDIT_LOGIC This is implemented as: oCol:SetCheck( [aBmps], [lEdit], [aPrompts] Parameters: aBmps: Optional. Array or 2 or 3 bitmaps to be displayed when the value is .T., .F., nil. If omitted, xbrowse provides default bitmaps which look like checkboxes. ...
by nageswaragunupudi
Tue May 30, 2023 12:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: can use SWITCH Control in XBROWSE ?
Replies: 7
Views: 512
Next

Return to advanced search