Search found 60 matches: embedding

Return to advanced search

Re: WebView resize

... to <input type="text"> or <textarea> elements in HTML, allowing for user input within the WebView2 embedded content. By embedding WebView2 in your application, you effectively create a hybrid environment where you can utilize web technologies for the UI and interact with ...
by Otto
Thu Mar 21, 2024 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2096

Re: WebView2 Essentials: Guides, Tips & Resources

... The provided code is a class definition for TWebView, a custom class presumably designed to interface with a web view control, possibly for embedding web content in a desktop application. The class seems to be written in a language that resembles Harbour, a Clipper-compatible programming ...
by Otto
Wed Jan 10, 2024 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 480

Re: FWH2308: ShowXLSX( cfileXLSX )

Many Thanks To Mr. Charles Kwon...!

Dear Rao Sir ,

Embedding this with XBROWSE , FW REPORT / EASYREPORT its great idea. Many thanks !!

Thanks
Shridhar
by shrifw
Fri Aug 25, 2023 1:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH2308: ShowXLSX( cfileXLSX )
Replies: 7
Views: 734

Re: SSE example

... question has been bothering me a lot: The way mod_harbour is implemented is by inserting HTML into the PRG. The way I implement mod_harbour is by embedding PRG into HTML. Everything with mod_harbour is so new, and there is so much to learn. But it's really fun. Thanks again for your help. Best ...
by Otto
Thu May 25, 2023 8:27 am
 
Forum: mod_harbour
Topic: SSE example
Replies: 19
Views: 4928

Re: Speech Recognizer for harbour App ?

Dear Massimo, Answered by chatGPT 4: OLE (Object Linking and Embedding) is a technology developed by Microsoft, primarily for use in their Windows operating system and applications like Microsoft Office. It allows users to create compound documents by ...
by Antonio Linares
Sun Apr 30, 2023 10:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Speech Recognizer for harbour App ?
Replies: 9
Views: 511

Re: Filling Excel Sheet Via OLE

... Yes, you can manipulate a combobox associated with a cell in an Excel sheet through OLE (Object Linking and Embedding). You can do this by using a programming language that supports OLE automation, such as VBA or Visual Basic, to access and modify the properties ...
by Antonio Linares
Thu Feb 02, 2023 11:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filling Excel Sheet Via OLE
Replies: 2
Views: 247

Re: HB_CRCCT equivalent

Good night master Otto, I've never used it. It was just an idea. Maybe it works embedding the function in C, but I'm not sure. Buenas noches maestro Otto, nunca lo he usado. Sólo era una idea. Tal vez funcione incrustando la función en C, pero no estoy seguro. Look: ...
by karinha
Thu Mar 24, 2022 10:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HB_CRCCT equivalent
Replies: 3
Views: 179

New FTDN September/Septiembre 2019 (FWH 19.09)

... is nil, default colors are used. - METHOD PrintTable( nRow, nCol, oTable, nWidth, nHeight, [oFont], [lBorder], ; [cTitle], [cUnits] ) Useful for embedding a simple and small table within a specified area in a ; print document. oTable: Data to the displayed as table. Can be specified as an array ...
by Antonio Linares
Sun Oct 13, 2019 11:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2019 (FWH 19.09)
Replies: 1
Views: 2898

FWH 1908: TPrinter class Enhancements: Charts, Tables, more

... PrintTable( nRow, nCol, oTable, nWidth, nHeight, [oFont], [lBorder], [cTitle], [cUnits] )  Useful for embedding a simple and small table within a specified area in a print document. oTable: Data to the displayed as table. Can be specified as an array ...
by nageswaragunupudi
Sun Sep 29, 2019 3:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 1908: TPrinter class Enhancements: Charts, Tables, more
Replies: 2
Views: 729

Re: Built-in text editor

Natter wrote:I've looked at examples with RichEdit and wrote the editor. But there are no examples for working with tables.
Many years ago there was a class TAppBox (for embedding other applications in your window).


Which version of Fw do you use?
Do not have the example TestRtf5.prg in the samples folder?
by cnavarro
Sun Jan 07, 2018 12:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Built-in text editor
Replies: 10
Views: 1638

Re: Built-in text editor

I've looked at examples with RichEdit and wrote the editor. But there are no examples for working with tables.
Many years ago there was a class TAppBox (for embedding other applications in your window).
by Natter
Sun Jan 07, 2018 7:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Built-in text editor
Replies: 10
Views: 1638

Re: Embedding a 3rd party .dll

Thank you very much Antonio, this solution works fine. Do you also know how to return an array of integer? I have another function (with 2 structs), that returns information of a xml-file. If there are discrepancies in the xml-file the array of int "Hinweis[30]" should return error-codes. ...
by Jeanette Panitz
Thu Oct 31, 2013 10:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Embedding a 3rd party .dll
Replies: 34
Views: 8281

Re: Embedding a 3rd party .dll

Jeanette,

This should be the right way:

Code: Select all  Expand view

PHB_ITEM pArray;

hb_arrayGet( hb_param( 1, HB_IT_ARRAY ), 17, pArray );

for ( k = 0; k < 30; k++ )
{
     aStruct.CSVFeld[k] = hb_arrayGetNI( pArray, k+1 );
}
 
by Antonio Linares
Mon Oct 28, 2013 1:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Embedding a 3rd party .dll
Replies: 34
Views: 8281

Re: Embedding a 3rd party .dll

Antonio, I tried your solution: the program shows the message "not an array there". After that it crashes. ...PHB_ITEM pArray = hb_param( 17, HB_IT_ARRAY );...if( ! pArray ) {     MessageBox( 0, "not an array there", "ok", 0 );}       f...
by Jeanette Panitz
Mon Oct 28, 2013 12:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Embedding a 3rd party .dll
Replies: 34
Views: 8281

Re: Embedding a 3rd party .dll

Jeanette,

Please try this:

Code: Select all  Expand view

PHB_ITEM pArray = hb_param( 17, HB_IT_ARRAY );

if( ! pArray )
   MessageBox( 0, "not an array there", "ok", 0 );

...
 
by Antonio Linares
Thu Oct 24, 2013 3:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Embedding a 3rd party .dll
Replies: 34
Views: 8281
Next

Return to advanced search