Search found 1588 matches: checkbox

Return to advanced search

Re: also for obrw nheight

The procedure not run ok
At init run ok then when you reselect a checkbox It crash
by Silvio.Falconi
Sat May 18, 2024 7:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also for obrw nheight
Replies: 10
Views: 383

Re: also for obrw nheight

... use Tpanel, customer.dbf states.dbf At first it works correctly then it makes an error and I haven't found the error if the user activates a checkbox the procedure automatically activates a panel, the one that is free and displays it and inserts the controls for searching on xbrowse if the ...
by Silvio.Falconi
Fri May 17, 2024 9:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also for obrw nheight
Replies: 10
Views: 383

Re: also for obrw nheight

Now the xbrowse change good the nheight but when I desactivate a checkbox the xbrowse not return to initial state https://i.postimg.cc/Qxs8KQQL/videot.gif // Calculate the total height of the activated boxes for nIndex := 1 to Len(aFilters) ...
by Silvio.Falconi
Thu May 16, 2024 9:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also for obrw nheight
Replies: 10
Views: 383

Re: also for obrw nheight

... shouldn't be panels but they behave as if they were panels) https://i.postimg.cc/Jz0p0gcf/kj.png in the first Box[1] I inserted 3 checkboxes (age, state, married) and this box is fix while from the second box[2] to the fourth box[4] they must be shown if the others are not active ...
by Silvio.Falconi
Thu May 16, 2024 6:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also for obrw nheight
Replies: 10
Views: 383

Re: passing a value through a for..next loop

... DIALOG oDlg CENTEREDreturn nilstatic function CreateChk( nRow, nCol, oDlg, aFilters, nIndex, oDbf, cFilter )   local oChk    @ nRow, nCol CHECKBOX oChk VAR aFilters[ nIndex, 1 ] ;       PROMPT aFilters[ nIndex, 2 ] SIZE 150,15 PIXEL OF oDlg ;       ON CHANGE ( cFilter ...
by Silvio.Falconi
Tue May 14, 2024 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: passing a value through a for..next loop
Replies: 14
Views: 603

passing a value through a for..next loop

... on change I call a function passing the value of n of for..next loop but the n is allway 3  For n= 1 to len(aFilters)        @ nRow, nCol CHECKBOX aCheck[n] VAR aFilters[n][1]  ;               PROMPT aFilters[n][2]  OF  oBox[1] SIZE 150,15 ...
by Silvio.Falconi
Thu May 09, 2024 8:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: passing a value through a for..next loop
Replies: 14
Views: 603

Re: how to change the size of an xbrowse in runtime

... of the first box? that is, to make you understand https://i.postimg.cc/3w4GsbSF/io.png then if I pressed "age" the checkbox must be first, that is, it must move to the first place and consequently the box must be before the other the test #include 'fivewin.ch'#include ...
by Silvio.Falconi
Sun May 05, 2024 4:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 489

xbrowse (likely a custom table) whose contents change dynam

xbrowse (likely a custom table) whose contents change dynamically Checkboxes that control the appearance of radio menus and changes to the xbrowse's size. Here's a possible scenario based on your description: Initial State: The xbrowse table is visible. ...
by Otto
Sat May 04, 2024 7:42 am
 
Forum: mod_harbour
Topic: xbrowse (likely a custom table) whose contents change dynam
Replies: 0
Views: 161

Dynamic Table Filter Control

... grid-container"> <label><strong>Gefiltert nach:</strong></label> <div> <input type="checkbox" id="filter-age"> Alter <input type="checkbox" id="filter-married" class="ms-3"> Verheiratet ...
by Otto
Fri May 03, 2024 4:42 pm
 
Forum: mod_harbour
Topic: Dynamic Table Filter Control
Replies: 0
Views: 322

Re: how to change the size of an xbrowse in runtime

... is @ 40,10 XBROWSE oBrw SIZE -10,-110 PIXEL OF oDlg ; DATASOURCE oList COLUMNS aCols ; AUTOSORT FONT oFont; NOBORDER CELL LINES if I click on a checkbox the procedure must change the height to the xbrowse example - 60 in another procedure I have already done it but I reduce the ntop of the xbrowse, ...
by Silvio.Falconi
Thu May 02, 2024 7:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 489

Re: Filter on Xbrowse

... don't need? I realized that I have to do a simulation to make you understand what I would like to create First step init I see the xbrowse and the checkboxes under the xbrowse https://i.postimg.cc/RF2c6N1Y/first-step.png Second step the end user click first checkbox, the xbrowse ...
by Silvio.Falconi
Thu May 02, 2024 7:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 1271

Re: Filter on Xbrowse

... I see that perhaps you didn't understand I know how to filter with ordscope/dbfilter but that's not what I meant I would like it like this: two checkboxes must be under the xbrowse next to the words "filter by" 1) if I click in the first checkbox (married) the procedure must change ...
by Silvio.Falconi
Thu May 02, 2024 6:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 1271

Filter on Xbrowse

... https://i.postimg.cc/Y21d88SR/n.png for example I would like to know the married and the unmarried when I click on the first checkbox the procedure must raise the xbrowse and insert two married / not moved radio controls if I click on the second checkbox it must raise the ...
by Silvio.Falconi
Thu May 02, 2024 12:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 1271

Re: SetMultiSelectCol() on line

... xbrowse the procedure must remove the :SetMultiSelectCol() instead the test samples\xbmulsel.prg example already has the SetMultiSelectCol and the checkbox disables it but physically it is still in the xbrowse I hope I was clear in my explanation
by Silvio.Falconi
Tue Apr 23, 2024 6:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 288

Re: New txbrowse

... the compatible fwh version. We noticed a problem in xbrowse when using the SetMultiSelectCol() method, sometimes it saves the column where the checkbox is located as col-1, col-2, col-3, col4 each time so in the state it increases by one field which doesn't actually exist, but this error only ...
by Silvio.Falconi
Mon Apr 22, 2024 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 536
Next

Return to advanced search