Search found 235 matches: classname

Return to advanced search

Re: how to open devtoolswindow from application.

If I understood correctly, then the cookie window is bothering you?
This is for DIV with a bitmap. See his class.
Using Eval(document.getElementsByClassName("classname").style.visibility = "hidden"; ), remove it
by Natter
Wed Jul 05, 2023 9:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to open devtoolswindow from application.
Replies: 21
Views: 1142

Re: SUB-CLASS TFolderEx()

while also this Syntax is used METHOD Update() INLINE AEval( ::aControls,;          { | o | If( ( Upper( o:ClassName() ) $ "TFOLDER;TFOLDEREX" ), o:Update(),;          If( o:lUpdate, o:Refresh(),)) } ) ...
by Jimmy
Sat Feb 04, 2023 6:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SUB-CLASS TFolderEx()
Replies: 20
Views: 1157

RELEASE FONT

Existe algum problema em utilizar a contante RELEASE FONT para destruir uma fonte ? fivewin.ch #xcommand RELEASE <ClassName> <oObj1> [,<oObjN>] ; => ; <oObj1>:End() ; <oObj1> := nil ; [ ; <oObjN>:End() ; <oObjN> := nil ] acredito que não ...
by MGA
Mon Aug 31, 2020 1:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RELEASE FONT
Replies: 2
Views: 292

Re: Drag & Drop

... toma el mando (incluso si está contenido en otro) Las imágenes o cuadros de colores ya se mueven, drag&drop, con el siguiente código : IF oWnd:ClassName()="TBITMAPINF" ::bRClicked:= { || ( ::lInfinito:=.f., ::Hide(), ::oWnd:lDrag:=.t. ) } ::oWnd:blDblClick := { || ::oWnd:lDrag:=.f., ...
by JESUS MARIN
Sat Jan 11, 2020 9:25 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Drag & Drop
Replies: 2
Views: 551

Re: TCalex: Show bad Mouth View

found the error METHOD GetFirstDateWeek( dDate ) CLASS TCalEx local dFirstDateWeek DEFAULT dDate := ::dDateSelected if ::Classname() != "TDAYVIEW" // Si ponemos +2 empieza en lunes dFirstDateWeek = dDate - DoW( dDate ) + 1 + _GFD else dFirstDateWeek = dDate endif RETURN dFirstDateWeek
by Silvio.Falconi
Thu Dec 12, 2019 12:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TCalex: Show bad Mouth View
Replies: 5
Views: 1064

Re: Documentación sintaxis

... IIf(xValue, ".T.",".F.") ; EXIT CASE "N" ; cValue := LTrim(Str(xValue)) ; EXIT CASE "O" ; cValue := xValue:className() ; EXIT DEFAULT cValue := "NIL" END RETURN cValue > RETURN bBlock
by nageswaragunupudi
Wed Oct 30, 2019 5:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Documentación sintaxis
Replies: 6
Views: 1440

Re: Archivo environment para xMate

... lo vi en el foro) : 1.- en todos mis prgs incluí #include "hbcompat.ch" 2.- en five.win agregué #ifdef __HARBOUR__ #xcommand CLASS <ClassName> [METACLASS <metaClass>] ; [ <frm: FROM, INHERIT> <SuperClass1> [,<SuperClassN>] ] ; [ <modulfriend: MODULE ...
by Compuin
Mon Jul 22, 2019 2:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Archivo environment para xMate
Replies: 9
Views: 1602

Re: Archivo environment para xMate

... lo vi en el foro) : 1.- en todos mis prgs incluí #include "hbcompat.ch" 2.- en five.win agregué #ifdef __HARBOUR__ #xcommand CLASS <ClassName> [METACLASS <metaClass>] ; [ <frm: FROM, INHERIT> <SuperClass1> [,<SuperClassN>] ] ; [ <modulfriend: MODULE ...
by juan_arroyo_t
Mon Jul 22, 2019 1:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Archivo environment para xMate
Replies: 9
Views: 1602

Herencia de TWindow y dudas

Buenas tardes: La clase base de Fivewin sino me equivoco es TWindow a partir de ahi heredan todas, pero esta clase base llama a un metodo ::ClassName() que no pertenece a TWindow, Entonces de que clase de Harbour heredan todas las clases que se definen? Aprovecho el mismo post para preguntar ...
by jvtecheto
Sat Jul 20, 2019 4:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Herencia de TWindow y dudas
Replies: 2
Views: 575

Re: Design test ( modified)

... | oCtrl | cPrg += oCtrl:cGenPRG( lDlgUnits ) } ) endif I think we must insert something of this : for n= 1 to Len( ::aControls) if (::aControls[n]:ClassName() ) $ "TFOLDER;TFOLDEREX" For k= 1 to Len( ::aControls[n]:aDialogs) AEval( ::aControls[n]:aDialogs[k], { | oCtrl | cPrg += oCtrl:cGenPRG( ...
by Compuin
Mon Jul 15, 2019 7:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Design test ( modified)
Replies: 3
Views: 1116

Re: add one method

EXTEND CLASS <ClassName> WITH [MESSAGE <MessageName>] METHOD <FunctionName>
EXTEND CLASS <ClassName> WITH MESSAGE <MessageName> INLINE <expression>
EXTEND CLASS <ClassName> WITH DATA <MemberName> [PERSISTENT]
by rhlawek
Wed Apr 17, 2019 2:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: add one method
Replies: 3
Views: 762

Re: null field in FW_OpenRecordSet

oRs:ClassName() = toleauto oRs:Fields:Count() = 103 oRs:RecordCount() = ERROR!!! Error description: Error ADODB.RecordSet:FIELDS/9 l record corrente corrisponde all'inizio o alla fine del file oppure è stato eliminato. Per eseguire ...
by damianodec
Thu Feb 21, 2019 2:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: null field in FW_OpenRecordSet
Replies: 11
Views: 1739

Re: null field in FW_OpenRecordSet

Please also try

? oRs:ClassName()
? oRs:Fields:Count()
? oRs:RecordCount()
by nageswaragunupudi
Thu Feb 21, 2019 1:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: null field in FW_OpenRecordSet
Replies: 11
Views: 1739

Re: Child of Folder

Günther, try with

? oDlg:oWnd:ClassName()
by cnavarro
Mon Dec 31, 2018 3:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Child of Folder
Replies: 2
Views: 574

Re: Algun experto en el foro que use o uso Eagle 1 ?

... ) IF lAdd MYADD_DATABASE(oDb) // Reemplaza utilizar oDb:=MyOpenDataBase(cDb,.f.,oMySql) // Refresca las conexiones (usuarios Dormidos)// ? oMySql:ClassName(),"DPMYSQLBD",cDb ENDIF // oDb:=MyOpenDataBase(cDb,.f.,oMySql) // Refresca las conexiones (usuarios Dormidos) // "my opendatabase ...
by jnavas
Thu Nov 15, 2018 2:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Algun experto en el foro que use o uso Eagle 1 ?
Replies: 15
Views: 3452
Next

Return to advanced search