Search found 67 matches: citem

Return to advanced search

Barcode FwZebra

...                    "128","PDF417","DATAMATRIX","QR"}    local cItem    := "123456789012"   PRINT oPrn PREVIEW   DEFINE FONT oFont NAME "TAHOMA" SIZE 0,-14 OF oPrn   PAGEFor n= 1 to Len(aBarCode) @ ...
by Silvio.Falconi
Sun Apr 16, 2023 2:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Barcode FwZebra
Replies: 0
Views: 170

Re: Newbie have COMBOBOX Question

... is used when "on change" Event is fired Sample i saw look like this local cItemo:bSetGet := {|u| If( PCount()==0, citem , citem := u ) } now i have "Value" in cItem but what about ENTER (or Dblclick) :?: which Codeblock ( from which Super CLASS ...
by Jimmy
Sun Oct 30, 2022 10:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Newbie have COMBOBOX Question
Replies: 6
Views: 431

Re: ¿Se puede poner ctooltip en items de un combobox?

... sí que sale, pero cuando se ha seleccionado la opción y se ha cerrado el combo. [url]function Main() SET _3DLOOK ON local oDlg, oCbx local cItem := "" DEFINE DIALOG oDlg FROM 5, 5 TO 15, 40 TITLE "A Dialog Box with combo" @ 1, 1 COMBOBOX oCbx VAR cItem ITEMS { "Option ...
by Ramón J.
Thu Nov 18, 2021 8:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Se puede poner ctooltip en items de un combobox?
Replies: 7
Views: 1108

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: 421

Re: xBrowse jpg in SQL-database

... Id='+xUSERID+';Password='+xPASSWORD aImages := Directory( cCft + "*.*" ) FOR nX1=1 TO LEN(aImages) cTemp := aImages[nX1,1] cItem := "" oSay:SetText( LTRIM( STR( ROUND( (nX1/LEN(aImages))*100, 2), 9, 3) ) + "% Complete . . ." ) Sysrefresh() FOR nX2:=1 ...
by cdmmaui
Fri Nov 08, 2019 1:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse jpg in SQL-database
Replies: 19
Views: 2939

Re: xBrowse jpg in SQL-database

... := [INSERT INTO asset_chart(] cSqlIns += [itemnumber,] cSqlIns += [inspcft] cSqlIns += [)] cSqlIns += [ VALUES (] cSqlIns += ['] + _SqlClean( cItem ) + [',] cSqlIns += MemoRead( cCft + aImages[nX1,1] ) cSqlIns += [)] TRY oSql:Open( cSqlIns, xCONNECT ) nAdded++ CATCH oError IF MsgNoYes( "Unable ...
by cdmmaui
Fri Nov 08, 2019 1:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse jpg in SQL-database
Replies: 19
Views: 2939

Possible to CALCULATE a listbox-height ?

... + 4.8 // font-height + top and bottom-space nBrwHeight := nRowHeight * LEN( aItems ) // tested with 10 and 5 items @ 5, 5 LISTBOX oLbx VAR cItem ITEMS aItems ; SIZE nBrwWidth, nBrwHeight PIXEL OF oDlg the total height nDlgHeight := nBrwHeight + 45 ( extra space for the defined button ) ...
by ukoenig
Tue Apr 23, 2019 12:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Possible to CALCULATE a listbox-height ?
Replies: 9
Views: 1051

COMBOBOX

... 2) If I use HEIGHTGET search 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: 955

Re: DBCOMBO Metodos GotFocus() y LostFocus()

Asi puedes saber cuando se selecciona un ítem con el ratón:

oDBC1:bChange = { | oDbc, cItem | MsgInfo( cItem ) }
by Antonio Linares
Tue Jan 10, 2017 10:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBCOMBO Metodos GotFocus() y LostFocus()
Replies: 4
Views: 2277

Re: Combobox y Select

Hola creo que es un error conceptual mio... cuando hago: REDEFINE COMBOBOX oCom VAR cItems PROMPTS´{"Juan","Pedro","Mateo"} ID 101 OF oDlg siempre le doy el valor numèrico donque quiero que se pare el COMBO, por ejemplo: cItem:=2 si quiero ...
by TOTOVIOTTI
Thu May 19, 2016 9:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Combobox y Select
Replies: 5
Views: 595

Re: Variable substitution in MS Sql Substring() Function

... would have returned both records and there are additional relational tree's from Brevision on other foreign key's in tables Corposal and the Citem table which uses the same root foreign key concatenated rule as root+.01,.02,.03, etc .. The results I got did not seem different from the original ...
by Rick Lipkin
Tue Feb 09, 2016 1:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Variable substitution in MS Sql Substring() Function
Replies: 6
Views: 1336

Re: Combobox Data

... view the main table that has the value .. since that field value was not found in the array . the combobox value is blank. There is a method add( cItem, nAt) for the combobox, so technically you could add it on the fly. But, I still maintain that you should build the lookup table and never delete ...
by James Bott
Fri Sep 18, 2015 4:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Combobox Data
Replies: 7
Views: 1704

Re: FolderEx y DelItem

METHOD AddItem( cItem, cResName, bRedefineControls, cnHelpId, bPrevItemDeleted, bPostItemDeleted) CLASS TFolderEx //Dos nuevos parámetros local oDlg local nLen local n local oThis := Self if ValType( ::bPrevItemAdded ) == "B" ...
by Biel EA6DD
Fri Feb 27, 2015 4:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FolderEx y DelItem
Replies: 25
Views: 4787

Re: New FTDN June/Junio 2013 (FWH 13.06)

Junio 2013 ========== * Nuevo : Método Set( cItem ) en la clase TDbCombo, ahora se inicializa correctamente el elemento: viewtopic.php?p=146508#p146508 * Corrección: Había un error en la clase TMsgItem, en el método Refresh() que causaba pérdida ...
by Antonio Linares
Tue Jul 16, 2013 5:19 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2013 (FWH 13.06)
Replies: 1
Views: 3014

New FTDN June/Junio 2013 (FWH 13.06)

June 2013 ========= * New: Method Set( cItem ) CLASS TDbCombo, now initializes properly the shown item: http://forums.fivetechsupport.com/viewtopic.php?p=146508#p146508 * Fix: There was a bug in Class TMsgItem Method Refresh() that caused a ...
by Antonio Linares
Mon Jul 08, 2013 6:53 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2013 (FWH 13.06)
Replies: 1
Views: 3014
Next

Return to advanced search