Search found 166 matches: ocbx

Return to advanced search

Re: Agrandar la caja de selección de un combobox

... pero no veo una para incrementar el alto del combobox. dejame buscar en mis notas.... #xcommand @ <nRow>, <nCol> COMBOBOX [ <oCbx> VAR ] <cVar> ; [ <it: PROMPTS, ITEMS> <aItems> ] ; ... [ HEIGHTGET <nHGet> ] ; [ SELHEIGHT <nSelHt> ] ; [ ITEMHEIGHT ...
by carlos vargas
Fri Jun 05, 2020 7:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Agrandar la caja de selección de un combobox
Replies: 6
Views: 890

Re: Combobox on BTNBAR

Marc, Just check not to cover any buttons ( added to sample testbar.prg ) @ 2, 350 COMBOBOX oCbx VAR cItem ITEMS { "Testing", "this", "ComboBox" } ; SIZE 100, 300 OF oBar PIXEL HEIGHTGET 22 http://www.pflegeplus.com/IMAGES/Combo2.jpg ...
by ukoenig
Wed Jun 03, 2020 12:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Combobox on BTNBAR
Replies: 2
Views: 438

Re: COMBOBOX HEIGHTGET is not working? *Solved*

On resource, try

ACTIVATE DIALOG oDlg ON INIT oCbx:nSelectionHeight := <nNewHeight>
by MOISES
Wed May 20, 2020 1:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: COMBOBOX HEIGHTGET is not working? *Solved*
Replies: 11
Views: 1643

Re: COMBOBOX HEIGHTGET is not working?

... ), oDlgPE:Update() ), NIL ) );      HEIGHTGET 24  look the pos of keyword HEIGHTGET #xcommand REDEFINE COMBOBOX [ <oCbx> VAR ] <cVar> ; [ <items: PROMPTS, ITEMS> <aItems> ] ; [ ID <nId> ] ; [ <dlg:OF,WINDOW,DIALOG> <oWnd> ] ...
by carlos vargas
Tue May 19, 2020 9:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: COMBOBOX HEIGHTGET is not working? *Solved*
Replies: 11
Views: 1643

Re: Multiple Dimension Array in Combobox

... control. I have no doubt I'll figure this out tomorrow. Maybe Rao will have some ideas on a method in the control that can push this to happen. oCbx:update() and oCbx:refresh() don't do it. Meanwhile dinner is on the way. Tonight it's Chinese. Yesterday it was Mexican. Maybe tomorrow will be ...
by TimStone
Thu Aug 29, 2019 12:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple Dimension Array in Combobox
Replies: 24
Views: 4151

Re: Multiple Dimension Array in Combobox

REDEFINE COMBOBOX oCbx VAR cSource ITEMS arrTranspose( aSrc )[2] ; ON CHANGE ( cSource := aSrc[oCbx][1], oCbx:update() ) ID 2504 OF oDlg UPDATE The combobox displays the 2nd element of the array as desired, but it also returns that ...
by Silvio.Falconi
Wed Aug 28, 2019 11:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple Dimension Array in Combobox
Replies: 24
Views: 4151

Re: Multiple Dimension Array in Combobox

... { { "N", "New" }, {"R", "Rebuilt"}, {"U", "Used"} } Then the code: REDEFINE COMBOBOX oCbx VAR cSource ITEMS arrTranspose( aSrc )[2] ; ON CHANGE ( cSource := aSrc[oCbx][1], oCbx:update() ) ID 2504 OF oDlg UPDATE The combobox displays ...
by TimStone
Wed Aug 28, 2019 9:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple Dimension Array in Combobox
Replies: 24
Views: 4151

IMAGEN EN COMBOBOX

... "Amarillo" } Local aColores:= { "bmp_1", "bmp_2" } //los colores estan en recurso REDEFINE COMBOBOX oCbx VAR oColor ; ITEMS aItems ; BITMAPS aColores ; ID 1003 ; OF oDlg ; UPDATE lo tengo asi y no me resulta saludos
by jbrita
Sat Aug 17, 2019 8:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: IMAGEN EN COMBOBOX
Replies: 2
Views: 444

Re: Converting sample test of Tplan

... endif oRec:DATE = Date() oRec:ROOMS_ID = oPlan:GetRowID() oRec:CHECK_IN = dCheckIn oRec:CHECK_OUT = dCheckOut oRec:STATUS = StrZero( oCbx:nAt, 2 ) oRec:GUEST = cName oRec:save() now the record is saved on archive Now the method METHOD ResizeReservation( oData, nRowId, oPlann ) not ...
by Silvio.Falconi
Fri Jun 21, 2019 9:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Converting sample test of Tplan
Replies: 26
Views: 2733

ComboBox GetKeyChar() Method

Hi All, I noticed that TComboBox:nAt is not updated when GetKeyChar() hit a match ... It would be handy though ... So when user press char in oCbx:oGet and hit a match, we can retrieve other info relative to oCbx:nAt from another array... Like 'name' in oCbx:aItem to var1 and aAddr[ oCbx:nAt ...
by fraxzi
Wed Sep 26, 2018 12:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ComboBox GetKeyChar() Method
Replies: 2
Views: 512

Re: Combobox y búsqueda incremental

Joao, con tu código tampoco funciona. Ingresa la letra "U", aparecerá "UNO" en el get del combobox pero no se ejecuta muestrame( oCbx, oDlg )

Saludos
by horacio
Wed Nov 08, 2017 5:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Combobox y búsqueda incremental
Replies: 11
Views: 1409

COMBOBOX

... is not working anymore. Thanks in advance Otto #INCLUDE "FIVEWIN.CH" REQUEST DBFCDX function Main() local cItem, aItems := {} local oCbx local cCbx := "" local oCbx2 local cItem2 := "" local oDlg local oFont //----------------------------------------------------------------------------// ...
by Otto
Fri Aug 25, 2017 9:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: COMBOBOX
Replies: 5
Views: 1003

Re: Question about ComboBox

Mr Rao,
A small problem with SendMessage( oCbx:hWnd, 0x0153, -1, nNewHeight ),combobox be blue colored background on init .
Image
Regards!
Shuming Wang
by ShumingWang
Thu Aug 17, 2017 7:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about ComboBox
Replies: 12
Views: 1869

New FTDN July 2017 (FWH 17.07)

... (or) DROPWIDTH <nWidth> Sets width of drop down list box. - These settings can also be changed/reset at runtime using the SETGET datas: oCbx:nItemHeight := <nNewVal> // NIL resets to default oCbx:nSelectionHeight := <nNewVal> // NIL resets oCbx:nDropWidth := <nNewVal> ...
by Antonio Linares
Sun Aug 13, 2017 8:19 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN July 2017 (FWH 17.07)
Replies: 5
Views: 3021

Re: fiveweb: combobox seleccion

... Necesitas la versión más reciente de FiveWeb: https://bitbucket.org/fivetech/fiveweb Aqui genera bien el código: <select id="oCbx"> <option value="one">one</option> <option value="two" selected >two</option> <option value="three">three</option> ...
by Antonio Linares
Tue Aug 16, 2016 3:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: fiveweb: combobox seleccion
Replies: 13
Views: 2710
PreviousNext

Return to advanced search