Search found 2248 matches: modify

Return to advanced search

New FTDN April 2024 (FWH 24.04)

... blank record oCustRec:Edit() // oStatesRec := oCn:Record( "states", "code='WA'" ) // one existing record oStatesRec:Edit() // modify and save the existing record - Methods CreateTable() and ImportFromDBF() used to create DateTime and TimeStamp fields without support for fraction ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 0
Views: 38

Re: New txbrowse

... setcolumns() method has been changed and loaded at the beginning of the procedure in override mode. by doing this way I don't need to go and modify the original xbrowse class every time, so I always have the compatible fwh version. We noticed a problem in xbrowse when using the SetMultiSelectCol() ...
by Silvio.Falconi
Mon Apr 22, 2024 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 382

Re: xbrowse problem with :bLClicked

... one using the spacebar, it will reset the buttonbar to its initial state, even if there are still other records selected. To fix this, you need to modify the `:bKeyChar` block to check the overall selection state of the xbrowse, not just the current row. Here's a possible solution: :bKeyChar := ...
by Antonio Linares
Mon Apr 22, 2024 5:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 100

Re: Error en librerias de Harbour MSVC

... /NODEFAULTLIB:msvcrt Ahora usamos la versión UCRT (en vez de la anterior MSVCRT) de MSVC que es más moderna y rápida Dear Antonio, You mean modify buildh32.bat file echo ws2_32.lib >> msvc.tmp echo shlwapi.lib >> msvc.tmp echo strmiids.lib >> msvc.tmp *NEW ADD echo ucrt.lib ...
by richard-service
Thu Apr 18, 2024 10:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en librerias de Harbour MSVC
Replies: 4
Views: 122

Re: FWH 2006: XBrowse : Own built-in Buttonbar

... y no ordena las columnas, solo al colocar // XbrSetupBar( oBrw ) vueve a ordernar, podria verificar si es asi o estoy haciendo algo mal ? Please modify xbrowse and apply this fix. Please locate this line in the METHOD HeaderLButtonUp( nMRow, nMCol, nFlags ) CLASS TXBrwColumn      if ...
by nageswaragunupudi
Tue Apr 16, 2024 3:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2006: XBrowse : Own built-in Buttonbar
Replies: 14
Views: 2259

Re: New txbrowse

... I make somethig with Override but I can add or modify a method but I not Know how create new datas
by Silvio.Falconi
Fri Apr 12, 2024 3:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 382

New txbrowse

... the end user can only show some of them at the beginning, the procedure must show the standard columns. I found how to do it but I don't want to modify the original class
by Silvio.Falconi
Fri Apr 12, 2024 10:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 382

Re: FWErrorsys()

function ErrorDialog( e ) is static so you have to modify errsysw.prg to make it public or entirely replace FWH errsysw.prg with one of your own
by Antonio Linares
Wed Apr 03, 2024 9:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWErrorsys()
Replies: 8
Views: 1828

Re: also error with btnbmp SHOWPOPUP

Nages I made a small test with all my 3 buttons I use customer.dbf https://i.postimg.cc/tJmwGCwL/kkk.png modify the sample test xbrwin7.prg I have error when press btn2 the test // Using Windows 7 row selection colors in xbrowse#include 'fivewin.ch'#include 'xbrowse.ch' request ...
by Silvio.Falconi
Sun Mar 31, 2024 8:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1706

Re: incremental search on Xbrowse

Mauri

Have a look at the samples AdoRick.prg .... sample uses ado but I think you may be able to modify to use dbfcdx ..

Rick Lipkin
by Rick Lipkin
Mon Mar 25, 2024 1:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: incremental search on Xbrowse
Replies: 10
Views: 2010

Re: Problema super raro

Mr. Rao:

Yes, I want to copy the records from a non-temporary table and pass them to a temporary table to modify them
and then return them to the non-temporary table

There are 5 records in the non-temporary table and only 2 are passed to the temporary table

Best regards
by Armando
Sun Mar 24, 2024 1:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2122

incremental search on Xbrowse

Hi all, Is it possible to modify xbrowse so that it can also accept the 'space' character in the 'seek' search string? This change would allow searches even with 2 or more words.  xbrowse vers. : #define FWVERSION    "FWH ...
by mauri.menabue
Sat Mar 23, 2024 2:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: incremental search on Xbrowse
Replies: 10
Views: 2010

Re: Hide/show search system on a dialog - Resolved

nageswaragunupudi wrote:Please see the solution I posted here
viewtopic.php?f=6&t=44333

You may modify and adopt similar logic to your case.

on xbrowser.prg there is not on buttonbar the get and the combobox
by Silvio.Falconi
Tue Mar 19, 2024 10:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1193

Re: Hide/show search system on a dialog - Resolved

Please see the solution I posted here
viewtopic.php?f=6&t=44333

You may modify and adopt similar logic to your case.
by nageswaragunupudi
Mon Mar 18, 2024 11:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1193

Re: Window transition event

... to inherit a Class TMyWindow from TWindow and implement support for WM_ACTIVATE There are some examples in these forums showing how to inherit and modify Method HandleEvent() https://fivetechsupport.com/forums/viewtopic.php?p=258349&sid=4b8316cfb706cfb5bfa9a662a4a7fb5e#p258349
by Antonio Linares
Fri Mar 15, 2024 3:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Window transition event
Replies: 2
Views: 503
Next

Return to advanced search