Search found 197 matches: constructor

Return to advanced search

Re: Propuesta para que hagan un curso virtual FW

... clases, lo que reduce la duplicación y hace tu código más eficiente. 6. Otros conceptos - Interfaces y Clases Abstractas en POO - Los métodos CONSTRUCTOR y DESTRUCTOR - Estado de un objeto - Relaciones Tipo de Relación Definición Ejemplo Fortalezas Asociación Relación general entre dos clases ...
by xmanuel
Tue Sep 10, 2024 8:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Propuesta para que hagan un curso virtual FW
Replies: 302
Views: 40170

Re: Como paso un codigo de VB 10 a FWH

... de objeto Fusion (`c_Fusion := Fusion():new()`)**: - En FiveWin/Harbour, se crea un objeto usando `:<class name>():new()` para llamar al constructor. 4. **Llamadas a métodos (`:MethodName(...)`)**: - Para llamar a métodos de un objeto, se utiliza el operador `:` seguido del nombre del ...
by Compuin
Fri Jun 14, 2024 3:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como paso un codigo de VB 10 a FWH
Replies: 3
Views: 713

Re: WebView2 Essentials: Guides, Tips & Resources

... 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 debug settings and a parent window handle as arguments. Navigate(cURL): Navigates the web ...
by Otto
Wed Jan 10, 2024 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 674

Re: GET cuando esta como PASSWORD no funciona del todo el change

Hola goosfancito: Muestra el código fuente real, método del constructor y el método que te da problemas sino complicado saber donde esta el fallo. Yo tengo programas con campos Password y nunca he tenido problemas con ninguna versión. Alguna linea que ...
by jll-fwh
Thu Nov 30, 2023 9:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: GET cuando esta como PASSWORD no funciona del todo el change
Replies: 3
Views: 480

Re: Saving OuterHTML using Await Implementation with TWebView

... previous bindings. - `oWeb`: Instance of TWebView. - `cQuery`, `nSecond`, `cReturn`: Parameters used for querying. - Methods include: - `New`: Constructor that binds the 'SendToFWH' function for callback purposes. - `Query`: Runs a specific query on the web page. - `QuerySelectAll`: Selects ...
by CharlesKwon
Thu Aug 17, 2023 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 3583

Re: Saving OuterHTML using Await Implementation with TWebView

... previous bindings. - `oWeb`: Instance of TWebView. - `cQuery`, `nSecond`, `cReturn`: Parameters used for querying. - Methods include: - `New`: Constructor that binds the 'SendToFWH' function for callback purposes. - `Query`: Runs a specific query on the web page. - `QuerySelectAll`: Selects ...
by Otto
Thu Aug 17, 2023 8:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 3583

Valores desde una dbf a DATA de un objeto

... lo hago para pasarlo a este OBJETO como si fuera una DATA con su respectivo valor CLASS valores DATA cAmbiente AS CHARACTER ... ... METHOD NEW() CONSTRUCTOR ENDCLASS De tal forma que pueda usarlo asi For x= 1 to valores:largo .... Next Por el momento no tengo control con el nombre de variables ...
by Adolfo
Thu Apr 27, 2023 3:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Valores desde una dbf a DATA de un objeto
Replies: 2
Views: 358

Re: Help about TWebView class. reading something from website.

Please try this:

document.getElementById('dosya_listesi_result' ).constructor.name

Lets know what class of object it is
by Antonio Linares
Mon Jul 04, 2022 9:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help about TWebView class. reading something from website.
Replies: 33
Views: 2699

Re: Focus error on this new project

... ? I think it was onces needed for XBrowser, but not anymore... CLASS TSeek STATIC // From Xbrowse seek function ? DATA oBrw METHOD New( oBrw ) CONSTRUCTOR METHOD SetText( c ) INLINE ::oBrw:RefreshFooters() ENDCLASS METHOD New( oBrw ) CLASS TSeek // From Xbrowse seek function ? ::oBrw := oBrw ...
by Marc Venken
Tue Jan 11, 2022 10:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Focus error on this new project
Replies: 16
Views: 1965

ActiveX - CREATEOBJECT and singleton pattern

... I am sending a reworked dll, it should work now. The problem was probably that COM registration required the class to have a public default constructor, and since we use a singleton pattern (to manage and control instances of Bluetooth connections), the constructor was private. In any case, ...
by metro2
Tue Sep 28, 2021 9:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX - CREATEOBJECT and singleton pattern
Replies: 21
Views: 2242

Re: New FTDN December/Diciembre 2020 (FWH 20.12)

... lSquare INLINE ( ::nRows == ::nCols ) ACCESS Determinant INLINE If( ::nRows == ::nCols, m_determinant( ::aMatrix ), 0 ) ACCESS IsIdentity Métodos CONSTRUCTOR: METHOD New( aArray ) CONSTRUCTOR METHOD Identity( nSize ) CONSTRUCTOR // --> Matriz Identity de filas nSize y columnas nSize. METHOD ...
by Antonio Linares
Mon Dec 28, 2020 3:18 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2020 (FWH 20.12)
Replies: 8
Views: 5890

New FTDN December/Diciembre 2020 (FWH 20.12)

... ACCESS lSquare INLINE ( ::nRows == ::nCols ) ACCESS Determinant INLINE If( ::nRows == ::nCols, m_determinant( ::aMatrix ), 0 ) ACCESS IsIdentity CONSTRUCTOR METHODS: METHOD New( aArray ) CONSTRUCTOR METHOD Identity( nSize ) CONSTRUCTOR // --> Identity matrix of nSize rows and nSize cols. METHOD ...
by Antonio Linares
Mon Dec 28, 2020 10:16 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2020 (FWH 20.12)
Replies: 8
Views: 5890

Re: FWH: Support for Matrix calculations

... ACCESS lSquare INLINE ( ::nRows == ::nCols ) ACCESS Determinant INLINE If( ::nRows == ::nCols, m_determinant( ::aMatrix ), 0 ) ACCESS IsIdentity CONSTRUCTOR METHODS: METHOD New( aArray ) CONSTRUCTOR METHOD Identity( nSize ) CONSTRUCTOR // --> Identity matrix of nSize rows and nSize cols. METHOD ...
by nageswaragunupudi
Thu Dec 10, 2020 9:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: Support for Matrix calculations
Replies: 3
Views: 952

Re: New FTDN July/Julio 2020 (FWH 20.07)

... - Los campos memo no estaban funcionando. Solucionado. http://forums.fivetechsupport.com/viewtopic.php?f=3&p=234116#p234116 - El constructor fromQry() no funciona a menos que el sql comience con SELECT. Solucionado. * Clases TPrinter y FWHPdf: cText en el método SayText() puede ...
by Antonio Linares
Sun Aug 02, 2020 12:15 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio 2020 (FWH 20.07)
Replies: 1
Views: 2228

New FTDN July/Julio 2020 (FWH 20.07)

... TArrayData class (tarrdata.prg) - Memofields are not working. Fixed. http://forums.fivetechsupport.com/viewtopic.php?f=3&p=234116#p234116 - Constructor fromQry() not working unless the sql starts with SELECT. Fixed. * TPrinter and FWHPdf classes: cText in method SayText can be a codeblock. ...
by Antonio Linares
Sat Aug 01, 2020 5:40 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio 2020 (FWH 20.07)
Replies: 1
Views: 2228
Next

Return to advanced search