Search found 2491 matches: init

Return to advanced search

Re: New txbrowse

... 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 ) METHOD New (nRow, nCol, nWidth, nHeight, oWnd) METHOD SetUserCols(lDefCols) ...
by Silvio.Falconi
Mon Apr 22, 2024 9:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 340

Re: Brush

... CLR_BLACK }, .F. } ) @ 0, 0 BITMAP oImagem FILENAME cImagem ; SIZE 400, 600 OF ; oDlg PIXEL NO BORDER ADJUST ACTIVATE WINDOW oDlg CENTERED ; ON INIT SobreporImagem( oDlg ) Return NIL *------------------------------------------------------------------------------* Function SobreporImagem( oDlg ...
by oliveiros junior
Fri Apr 19, 2024 1:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 9
Views: 154

Re: records on xbrowse

... when I make a search for a sample "frank" ( on First) ndatarow is 3 and also obrw:nlen is 3 I tried to inser a variable nTotalrecords at init oDbf:= TCustomer():New() oDbf:setorder(1) oDbf:Gotop() nTotalRecords:= oDbf:OrdKeyCount() and the on each button WHEN ( nTotalRecords > oBrw:nDataRows ...
by Silvio.Falconi
Wed Mar 27, 2024 9:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 1688

Re: records on xbrowse

perhaps I resolved with WHEN ( oBrw:nDataRows < oDbf:OrdKeyCount() )

init
Image

after search
Image
by Silvio.Falconi
Tue Mar 26, 2024 11:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 1688

Re: records on xbrowse

... "" ;     ACTION oBrw:KeyDown(VK_UP, 0)   TOOLTIP "indietro" WHEN ( oBrw:nDataRows >= oBrw:nLen  ) INIT https://i.postimg.cc/FRHVdCnv/init.png [img]with%20search[/img] https://i.postimg.cc/mrJ7kZMY/sea.png
by Silvio.Falconi
Tue Mar 26, 2024 11:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 1688

Splitter and Resize window

... NEED again *************************   oFld1:SetPos( ID_TOP, 0 )   oFld1:SetSize( nLeftWidth, nHeight - ID_FXBAR - 40 )   oWnd:Refresh()RETURN On Init I have https://i.postimg.cc/8k4L6VKh/1.png If I iconize the window and then call the window I have a wrong wnd https://i.postimg.cc/zvGbjVtT/2.png ...
by Silvio.Falconi
Thu Mar 21, 2024 11:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Splitter and Resize window
Replies: 0
Views: 241

Re: TITLE CLASS BUG with oDLg TRansparent

... we want to display the background (color/brush/gradient) of a control to be shown, then we should set oControl:lTransparent := .F. in the dialog's init clause. Please test the small sample. This way you can show the gradient of oTitle on a transparent dialog. function Test()   local oDlg, ...
by Silvio.Falconi
Mon Mar 18, 2024 7:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TITLE CLASS BUG with oDLg TRansparent - RESOLVED-
Replies: 9
Views: 1649

Re: TITLE CLASS BUG with oDLg TRansparent

... we want to display the background (color/brush/gradient) of a control to be shown, then we should set oControl:lTransparent := .F. in the dialog's init clause. Please test the small sample. This way you can show the gradient of oTitle on a transparent dialog. function Test()   local ...
by nageswaragunupudi
Mon Mar 18, 2024 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TITLE CLASS BUG with oDLg TRansparent - RESOLVED-
Replies: 9
Views: 1649

Problemas con comportamiento de XBrowse.

... oBrw:CreateFromCode() cGrad := PadR( GradStr( BrwGrad( oBrw ) ), 128 ) Activate Dialog oDlg On Init (CentroDlg(@oDlg),Centra( oDlg ),BtnBarNew( oBrw, @oDlg, aBotones)) Valid( Fade( oDlg ), .t. ) ---------- *---------------------------------------------------------------------------// ...
by José Camilo
Fri Mar 15, 2024 2:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con comportamiento de XBrowse.
Replies: 1
Views: 392

Re: To Nageswrao Del Objs on TscrollPanel

... the procedure  on Init load all buttons with   aImages:= LoadLinks( cIniUser, cSection )and set the btnbmp on panel scroll  as you can see on this picture https://i.postimg.cc/SxTbV6sG/project.jpg ...
by Silvio.Falconi
Wed Mar 06, 2024 10:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 660

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

hi Silvio, a question yPos := 0 this is no good because the first panel can init from 18 and not from 0 row I not found the exact variable perhaps ::nTop ? as i can say it is 1st Position of "Body" from TExplorerBar() where i oExBar:AddPanel() yes but ...
by Silvio.Falconi
Wed Feb 28, 2024 8:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 473

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

hi Silvio,
Silvio.Falconi wrote:a question

yPos := 0

this is no good because the first panel can init from 18 and not from 0 row

I not found the exact variable perhaps ::nTop ?

as i can say it is 1st Position of "Body" from TExplorerBar() where i oExBar:AddPanel()
by Jimmy
Tue Feb 27, 2024 10:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 473

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

a question

yPos := 0

this is no good because the first panel can init from 18 and not from 0 row

I not found the exact variable perhaps ::nTop ?
by Silvio.Falconi
Tue Feb 27, 2024 11:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 473

Add a new taskPanel on Explorerbar ( on line)

At init I have https://i.postimg.cc/jddnRVhH/second.png and I wish insert a taskpanel after the first taskpanel on line ( I wish the final user can add the second Panel on line) https://i.postimg.cc/fTDWNxD1/second.jpg ...
by Silvio.Falconi
Sun Feb 25, 2024 5:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Add a new taskPanel on Explorerbar ( on line)
Replies: 2
Views: 217

Re: Create a Panel width a text

...      next Initially the explorerbar is https://i.postimg.cc/BZ770CGp/init.png on Default there are only two lines when the message is empty or is less than two lines the procedure must always ensure the default space ...
by Silvio.Falconi
Fri Feb 23, 2024 12:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3185
Next

Return to advanced search