Search found 4631 matches: select

Return to advanced search

Re: SetMultiSelectCol() on line

... have the :SetMultiSelectCol() the procedure must create the :SetMultiSelectCol() as the first column of the xbrowse and give the possibility to select the row If there are no selected rows in the xbrowse the procedure must remove the :SetMultiSelectCol() instead the test samples\xbmulsel.prg ...
by Silvio.Falconi
Tue Apr 23, 2024 6:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 186

Re: New txbrowse

... 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 users) and the let the users select one of the saved states ? I still like the idea to subclass xbrowse for our own purposes, and will ...
by Silvio.Falconi
Mon Apr 22, 2024 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 387

Re: New txbrowse

... 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 users) and the let the users select one of the saved states ? I still like the idea to subclass xbrowse for our own purposes, and will ...
by Marc Venken
Mon Apr 22, 2024 12:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 387

xbrowse problem with :bLClicked

i have a xbrowse with :SetMultiSelectCol() with bRClicked I associated a menupopup with :bLClicked I click on a row and select it I made the same with :bKeyChar ( space button)   :bLClicked := { |r,c,f,oBrw| if( oBrw:Mousecolpos( c ) == 1, ;    ...
by Silvio.Falconi
Sun Apr 21, 2024 7:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 103

SetMultiSelectCol() on line

I have an xbrowse created with an array without the :SetMultiSelectCol() and I have the ability to display a menupopup like this MENU oMenu POPUP if oBrw:IsSelectedRow() MENUITEM "Deselect the current row" action DeSelect_One_array(oBrw) MENUITEM ...
by Silvio.Falconi
Sat Apr 13, 2024 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 186

Re: xbrowse SelectRow method

Or, if we want to deselect a specific row number, which is not the current row, we can do like this. if ( nAt := AScan( oBrw:aSelected, nRecNo ) ) > 0HB_ADel( oBrw:aSelected, nAt, .t. )endifoBrw:Refresh() ...
by Silvio.Falconi
Mon Apr 01, 2024 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse SelectRow method
Replies: 3
Views: 687

xbrowse SelectRow method

If I made to select all record on xbrowse

oBrw:SelectRow( 4 )

and the I wish deselect only one record

If I made oBrw:SelectRow( 0 ) it deselect all

how resolve ?
by Silvio.Falconi
Sat Mar 30, 2024 3:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse SelectRow method
Replies: 3
Views: 687

Re: Problema super raro (SOLUCIONADO)

... nights, I have finally solved the problem, the problem was in the last line of this code. [code] oRsWrk := FW_OpenRecordSet(oApp:oCon,"SELECT " +; "*," +; "RUB_DES," +; "CON_DES " +; "FROM " +; cTabNam + " " +; "LEFT JOIN " ...
by Armando
Thu Mar 28, 2024 1:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2123

Problem with datepick - Resolved -

give me an error when I try to select a date @ nRow, 70 DTPICKER  aGet[1] VAR ddatacambio OF oDlgSub SIZE 198, 25 PIXEL ;      FONT oFont UPDATE PICTURE "ddd dd mmm yyyy"  ;     VALID ( DoSwitch( ddatacambio, oBtnGetExchange) ...
by Silvio.Falconi
Tue Mar 26, 2024 12:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with datepick - Resolved -
Replies: 2
Views: 525

Re: xbrowser, setorder DESC

ok.
And so that the column that is ordered by "SELECT" appears the TRIANGULITE as it is done?
by goosfancito
Mon Mar 25, 2024 8:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowser, setorder DESC
Replies: 8
Views: 1678

Re: Alto de linea en LISTBOX

... SIZE 10,14 // bold DEFINE FONT oFont NAME "TAHOMA" SIZE 0,-15 DEFINE DIALOG oDlg RESOURCE "CodLiqVar" . . . select _CoLiAux _CoLiAux->(DbGotop()) REDEFINE LISTBOX oLbx FIELDS str(_CoLiAux->Locatario,4,0) , ; _CoLiAux->Nombre , ; str(_CoLiAux->Propiedad,4,0) ...
by karinha
Mon Mar 25, 2024 4:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Alto de linea en LISTBOX
Replies: 5
Views: 983

Re: Alto de linea en LISTBOX

... SIZE 10,14 // bold DEFINE FONT oFont NAME "TAHOMA" SIZE 0,-15 DEFINE DIALOG oDlg RESOURCE "CodLiqVar" . . . select _CoLiAux _CoLiAux->(DbGotop()) REDEFINE LISTBOX oLbx FIELDS str(_CoLiAux->Locatario,4,0) , ; _CoLiAux->Nombre , ; str(_CoLiAux->Propiedad,4,0) ...
by José Camilo
Mon Mar 25, 2024 1:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Alto de linea en LISTBOX
Replies: 5
Views: 983

Re: Problema super raro

... 5.1 Driver][mysqld-5.1.53-community]Undeclared variable: oRsWrk (0x80004005): Microsoft OLE DB Provider for ODBC Drivers Args: [ 1] = C SELECT * INTO oRsWrk FROM oRsDet oRsWrk and oRsDet are RecordSets. You should not use recordsets. Use table names. if the table names are "original" ...
by nageswaragunupudi
Sun Mar 24, 2024 10:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2123

Re: Problema super raro

Mr. Rao: First of all, thank you very much for your support. Whit this code       oApp:oCon:Execute( "SELECT * INTO oRsWrk FROM oRsDet" )  I get this error Error description: (DOS Error -2147352567) WINOLE/1007 [MySQL][ODBC 5.1 Driver][mysqld-5.1.53-community]Undeclared ...
by Armando
Sun Mar 24, 2024 6:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2123

Re: Question about performance RowSet

I am try this: Code: aRow := oCn:QueryResult( "select field1,field2 from states where code='WA'" ) if aRow == NIL // not found, then inserts aRow := { "aa","bb" } oCn:Upsert( "states", nil, { aRow } ) endif ...
by nageswaragunupudi
Wed Mar 20, 2024 3:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4039
Next

Return to advanced search