Search found 191 matches: applies

Return to advanced search

Re: To Nageswrao Del Objs on TscrollPanel

... oPanel:aControls[ n ]:End()HB_ADel( oPanel:aControls[ n ], n, .t. ) To delete current row in XBrowse ( applies to arrays, dbf, ado or any data source) oBrw:Delete()oBrw:Refresh() This code: FOR i := 1 TO LEN(oBrw:aCols)oCol := ...
by Silvio.Falconi
Wed Feb 28, 2024 8:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 662

Re: To Nageswrao Del Objs on TscrollPanel

... oPanel:aControls[ n ]:End()HB_ADel( oPanel:aControls[ n ], n, .t. ) To delete current row in XBrowse ( applies to arrays, dbf, ado or any data source) oBrw:Delete()oBrw:Refresh() This code: FOR i := 1 TO LEN(oBrw:aCols)oCol := ...
by nageswaragunupudi
Tue Feb 27, 2024 12:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nageswrao Del Objs on TscrollPanel
Replies: 17
Views: 662

Re: Inserting a string with CRLF into a single-line TGet.

... GetKeyState(VK_CONTROL ), Check CRL F(), ) } for each control if the method can be modified :KeyDown via Override ? With override, the change applies to all Gets and we need not write this for each Get. If you like, you can override the method till next version. t 2. Will this function work ...
by nageswaragunupudi
Tue Dec 12, 2023 10:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting a string with CRLF into a single-line TGet.
Replies: 10
Views: 896

Re: Campos en 0 en xbrowse

Code: Select all  Expand view
oBrw:lDisplayZeros  := .F.

This is the right way and recommended by FWH.
This shows all numeric zeros and empty dates as blanks.
This setting applies to the entire Browse.

If we want this setting only to some columns, then use
Code: Select all  Expand view
oCol:lDisplayZeros := .F.
by nageswaragunupudi
Wed Nov 01, 2023 1:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Campos en 0 en xbrowse
Replies: 10
Views: 620

Re: DBF . Commit

... However, the changes, as long as they are in the cache, should be visible to all users accessing the server, since the cache is centralized and applies to all users. ----------- set( _SET_HARDCOMMIT, .F. ) The deactivation of automatic commit operations could, however, increase the risk of data ...
by Otto
Sat Oct 21, 2023 8:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2338

Re: Actualizar xBrowse con un Clic del ratón?

Then, you can copy any text any where and then press Ctrl-V in the active cell. The value is pasted and browse updated.
This applies even for pasting images in memo fields.

Aprovechado el hilo, como debería definirse si quiero hacerlo con un Xbrowse con Array?
by cmsoft
Fri Aug 18, 2023 3:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualizar xBrowse con un Clic del ratón?
Replies: 22
Views: 1355

Re: Actualizar xBrowse con un Clic del ratón?

Code: Select all  Expand view
oCol:VarPut( newValie _


For pasting initially set
Code: Select all  Expand view
oBrw:lCanPaste := .t.

Then, you can copy any text any where and then press Ctrl-V in the active cell. The value is pasted and browse updated.
This applies even for pasting images in memo fields.
by nageswaragunupudi
Fri Aug 18, 2023 12:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualizar xBrowse con un Clic del ratón?
Replies: 22
Views: 1355

Re: FWH 23/04 buildH.BAT : wrong Path ?

hi Antonio,
Antonio Linares wrote:Harbour can be built with different C compiler thats why it uses:
bin\win\bcc
bin\win\msvc
etc

The same applies to lib\win\...

ah, understand thx
by Jimmy
Wed Jul 19, 2023 6:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 23/04 buildH.BAT : wrong Path ?
Replies: 2
Views: 190

Re: FWH 23/04 buildH.BAT : wrong Path ?

Dear Jimmy,

Harbour can be built with different C compiler thats why it uses:

bin\win\bcc
bin\win\msvc
etc

The same applies to lib\win\...
by Antonio Linares
Wed Jul 19, 2023 6:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 23/04 buildH.BAT : wrong Path ?
Replies: 2
Views: 190

Re: Numeric alignment with oPrn:SayText( )

From Whatnew * TWindow Method SayText( cText, aRect, cAlign, oFont, nClrText, nClrBack, lBorder ) Applies to all derived classes like dialogs and controls To be used in o:bPainted. function FW_SayText( hDC or oWnd, cText, aRect, cAlign, oFont, nClrText, nClrBack, lBorder ...
by Marc Venken
Wed May 17, 2023 10:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Numeric alignment with oPrn:SayText( )
Replies: 8
Views: 533

Re: View deleted records in xBrowse

... to see Deleted records. However, in the Editor, it would be helpful to see them. IF I use SET DELETED OFF in the Editor, since it is MDI, it now applies that to anywhere in the full program, and DELETED records are suddenly visible. Placing the SET command is the challenge. It would be easier ...
by TimStone
Tue Dec 13, 2022 9:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: View deleted records in xBrowse
Replies: 8
Views: 702

Re: Harbour CGI

... also save that time and speed it up the web app :-) Along these three years using mod_harbour we have been learning and improving... The same applies to your PRGs. If you place them inside the modharbour.exe, then there is no need to read, compile, etc. The code is simply executed and this ...
by Antonio Linares
Sun Oct 02, 2022 8:21 am
 
Forum: mod_harbour
Topic: Harbour CGI
Replies: 19
Views: 6174

Re: Notifications

Please move this line to the end:
$balmsg.Visible = $true

https://stackoverflow.com/questions/20615151/how-can-i-close-a-notifyicon-ballontooltip-from-code

He uses an extra this.Hide(); that I don't know which control applies. You may try this:
$balmsg.Hide()

or
$balmsg.Visible = $false
by Antonio Linares
Tue Sep 27, 2022 9:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Notifications
Replies: 9
Views: 776

Re: Build version of fivewin libraries on MSVC

I cannot be sure this applies, but I have seen some issues arising with Windows 7 and programs built with the latest Visual Studio 2022. I assume the following: 1). Microsoft no longer supports Windows 7, and they are not interested ...
by TimStone
Thu Jul 28, 2022 1:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Build version of fivewin libraries on MSVC
Replies: 3
Views: 531

Re: how to DEBUG FiveWin ?

... so you can easily build using 32 or 64 bits, or using any of those compilers. That would be impossible using harbour/bin only. The same structure applies for the lib folder.
by Antonio Linares
Mon Jul 25, 2022 3:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to DEBUG FiveWin ?
Replies: 12
Views: 745
Next

Return to advanced search