I'd like add also the options "Starting With", "Containing" on combobox but I not Know how make it XBROWSER.PRG already has the code for it. Please adapt . yes I saw but I need to create this : when I insert this line @ 10, 550 COMBOBOX oBrw:oSortCbx VAR oBrw:cSortOrder; SIZE 10...
I made the search on xbrowse with @ 10, 165 GET oGet VAR cSeek..... @ 10, 550 COMBOBOX oBrw:oSortCbx VAR oBrw:cSortOrder; SIZE 150,400 PIXEL OF oDlg HEIGHTGET 14.8 STYLE CBS_DROPDOWN I'd like add also the options "Starting With", "Containing" on combobox but I not Know how make i...
How can I put a Get in a buttonbar when the end user selects the second option of a combobox xhe is on the same buttonbar local aShowExtract:= {"Estrazioni continue","Estrazioni annuali"} ::nyear := "2022" //ComboBox @ 2,190 COMBOBOX aShowCbx[2] Var cExtractSel ITEMS aS...
hi, Can you please help me to find where is the program containing FWTVLC class in FWH sources? this is a new CLASS which i just write for FiveWin :wink: --- have found out that COMBOBOX under FiveWin does use "old" MeasureItem Value when resize https://docs.microsoft.com/de-de...
Nages, You can add the new search mode (for example lautoSeek) in the xbrowser function and add @ 1.2, 75 SAY oSaySearch[1] Prompt "Search" SIZE 46,24 PIXEL OF oBar @ 1.2, 95 SAY oSaySearch[2] Prompt "on" SIZE 40,24 PIXEL OF oBar @ 1.2, 130 GET oGetSearch VAR cSeek SIZE 80,10 PIX...
Nages sad me I can insert STYLE CBS_DROPDOWN on COMBOBOX when the value is numeric nNaturaIva: = ASCAN(aNatura, { | a | alltrim(a[ 1 ]) == alltrim("N1") } ) @ 140, 120 COMBOBOX aGet[4] VAR nNaturaIva ITEMS aItems SIZE 450,24 PIXEL OF oDlg STYLE CBS_DROPDOWN UPDATE bat when I put the mouse ...
https://i.postimg.cc/BtWRgJPd/jio.jpg When I select a item on combobox it no refresh the xbrowse with the order selected this the sources #INCLUDE "FIVEWIN.CH"#INCLUDE "DBCOMBO.CH"#INCLUDE "DTPICKER.CH"MEMVAR oApp// -------------------------------------...
I would also prefer a FW solution, but the editor is not ready sofar. Maybe a other idea... Just thinking ... RC code looks like this : omzetdlg DIALOG 6, 19, 797, 426 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Superteksten" FONT 8, "Arial" { DEFPUSHBUTTON ...
[quote="nageswaragunupudi"]Using Combobox: 1) With Numeric Variables: When using numeric variables, we should NOT use CBS_DROPDOWN style. Sample: #include "fivewin.ch"function Main() local oDlg local aElemento :={ "Testo","Immagine","Ba...
Using Combobox: 1) With Numeric Variables: When using numeric variables, we should NOT use CBS_DROPDOWN style. Sample: #include "fivewin.ch"function Main() local oDlg local aElemento :={ "Testo","Immagine","Barcode" ...
nageswaragunupudi wrote:You should not use CBS_DROPDOWN style when the variable is numeric. This style can be used when the variable is of character type.