Search found 2331 matches: txbrowse

Return to advanced search

Re: New txbrowse

Nageswarao never included the possibility of having default columns and those suggested by the programmer and those predefined by the end user, I made some changes created by Francisco and created a sub class of xbrowse Is it not a option to set the colums, save the state of xbrowse (selected from ...
by Silvio.Falconi
Mon Apr 22, 2024 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 362

Re: New txbrowse

Nageswarao never included the possibility of having default columns and those suggested by the programmer and those predefined by the end user, I made some changes created by Francisco and created a sub class of xbrowse Is it not a option to set the colums, save the state of xbrowse (selected from ...
by Marc Venken
Mon Apr 22, 2024 12:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 362

Re: New txbrowse

... oBrw SIZE -10,-10 PIXEL OF oDlg ; DATASOURCE oDbf COLUMNS aCols ; AUTOSORT FONT oFont; NOBORDER CELL LINES CLASS TMyBrowse() CLASS TMyBrowse FROM TXBrowse CLASSDATA lRegistered AS LOGICAL DATA aCols2Hide AS ARRAY INIT Array(0) DATA aDefaultCols INIT ARRAY( 0 ) DATA aPreviousCols INIT ARRAY( 0 ...
by Silvio.Falconi
Mon Apr 22, 2024 9:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 362

Re: New txbrowse

Hola silvio, Tengo una clase: CLASS TFactur_1 FROM TIMPRIME CLASSDATA lRegistered AS LOGICAL DATA oFont_6 ..... que cuando la compilo da este .ppo: _HB_CLASS TFactur_1 ; function TFactur_1 ( ... ) ; STATIC s_oClass ; LOCAL nScope, oClass, oInstance ; IF s_oClass == NIL .AND. __clsLockDef( @s_oClass ...
by FiveWiDi
Sat Apr 13, 2024 3:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 362

Re: New txbrowse

Silvio, You can keep the original class and add your own data to it as far as I read this post : https://forums.fivetechsupport.com/viewtopic.php?f=3&t=37281https://forums.fivetechsupport.com/viewtopic.php?f=3&t=37281 I make somethig with Override but I can a...
by Silvio.Falconi
Fri Apr 12, 2024 3:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 362

Re: New txbrowse

Silvio,

You can keep the original class and add your own data to it as far as I read this post :

https://forums.fivetechsupport.com/viewtopic.php?f=3&t=37281https://forums.fivetechsupport.com/viewtopic.php?f=3&t=37281
by Marc Venken
Fri Apr 12, 2024 2:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 362

New txbrowse

I need to use a particular xbrowse and have some particular buttons at my foot, this in all the dialogs and I was wondering if I could create an already defined xbrowse without having to copy the same lines every time for each procedure. Furthermore, in the xbrowse columns I need to set many (defaul...
by Silvio.Falconi
Fri Apr 12, 2024 10:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 362

Re: Tooltip of the selector column

... BASE/1082 Argument error: - Parameter : [ 1] = U [ 2] = N 1 Stack-List ---------- called by MOJCOLTOOLTIP(31) called by (b)TEST(16) called by TXBROWSE:MOUSEMOVE(3554) called by TWINDOW:HANDLEEVENT(0) called by TCONTROL:HANDLEEVENT(1724) called by TXBROWSE:HANDLEEVENT(11734) called by _FWH(3177) ...
by mtajkov
Sun Apr 07, 2024 11:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tooltip of the selector column
Replies: 11
Views: 1363

error oBrw:ToExcel

... Args: [ 1] = L .T. Stack Calls =========== Called from: => TOLEAUTO:_FREEZEPANES( 0 ) Called from: .\source\classes\XBROWSE.PRG => TXBROWSE:TOEXCEL( 9095 ) the app run on 10 pcs but I get this error only on 2 pcs why? Thanks
by damianodec
Tue Jan 09, 2024 4:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: error oBrw:ToExcel
Replies: 2
Views: 537

Re: xbrowser no muestra el scroll

Modifica esta línea:

CONTROL "", 112, "ListBox", LBS_SORT|LBS_NOTIFY|WS_VSCROLL|WS_TABSTOP, 28, 131, 323, 159

asi:

CONTROL "", 112, "TXBrowse", WS_VSCROLL|WS_TABSTOP, 28, 131, 323, 159
by Antonio Linares
Wed Dec 13, 2023 10:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowser no muestra el scroll
Replies: 7
Views: 603

Re: OVERRIDE

... [IN] OBJECT <!object!> => ; __objAddData( <object>, #<Message> ) which is the object ? sample If I must add a data into Txbrowse how I can make ? EXTEND DATA aDefaultCols IN OBJECT TXBrowse give me not found txbrowse
by Silvio.Falconi
Tue Nov 14, 2023 8:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: OVERRIDE
Replies: 8
Views: 616

Re: OVERRIDE

... => ; __objAddData( <Class>():classH, #<Message> ) seem run ok then if I add a data sample : EXTEND DATA aDefaultCols IN CLASS TXBrowse give me an error Error occurred at: 11/13/23, 13:13:45 Error description: Error BASE/3101 Argument error: __OBJADDDATA Stack Calls =========== ...
by Silvio.Falconi
Mon Nov 13, 2023 12:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OVERRIDE
Replies: 8
Views: 616

Re: Saber nombre de campo en xBrowse

Armando wrote:Mr.

Gracias por la respuesta pero no me funciona.

? oBrw:FieldName(nCol)

Me tira error Error description: Error BASE/1004 Message not found: TXBROWSE:FIELDNAME

Saludos


Armando:

SAMPLES\TESTXBRW.PRG - FUNCTION MULTILINE()

Regards, saludos.
by karinha
Thu Oct 19, 2023 5:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Saber nombre de campo en xBrowse (SOLUCIONADO)
Replies: 9
Views: 389

Re: Saber nombre de campo en xBrowse

Mr.

Gracias por la respuesta pero no me funciona.

? oBrw:FieldName(nCol)

Me tira error Error description: Error BASE/1004 Message not found: TXBROWSE:FIELDNAME

Saludos
by Armando
Thu Oct 19, 2023 5:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Saber nombre de campo en xBrowse (SOLUCIONADO)
Replies: 9
Views: 389

Re: Request : function GetSerialCol()

... but it gave me Error ---- when press Button "add new" it crash Error description: Error BASE/1004 Message not found: TXBROWSE:EDITSOURC Stack Calls =========== Called from: .\source\function\HARBOUR.PRG => _CLSSETERROR( 247 ) Called from: .\XBROWSE.PRG => TXBROWSE:EDITSOURC( ...
by Jimmy
Wed Sep 27, 2023 7:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : function GetSerialCol()
Replies: 8
Views: 581
Next

Return to advanced search