messages
listlengths 1
1
| topic
stringlengths 2
60
|
|---|---|
[
{
"date": "2009-11-19",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Saludos nuevamente amigos del foro:\n\nEstoy tratando con un combobox Simple, con una arreglo en memoria, cuando selecciono un elemento de la lista no tengo problema, la variable, y el Combo:VarGet(), me proporcionan el dato, para yo guardarlo en una tabla, para posterior uso.\nEl problema lo tengo al agregar uno nuevo al combobox, ambas instancias estan vacias(la variable y Combo:VarGet()) algun hilo por donde puedo accesar al valor del elemento nuevo en el combo, para guardarlo en la tabla.\n\nEstoy usando FWH 9.06\n\nSaludos desde Honduras <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "19:25",
"topic": "COMBOBOX CBS_SIMPLE",
"username": "Blessed"
}
] |
COMBOBOX CBS_SIMPLE
|
[
{
"date": "2009-11-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello, friends of the forum.\nI need a thread with this;\nI am having a problem with a combobox from resources in the RC is defined as follows:\n\n[code=fw:3hm8ym01]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #0000ff;\">COMBOBOX</span> <span style=\"color: #000000;\">800</span>, <span style=\"color: #000000;\">35</span>, <span style=\"color: #000000;\">7</span>, <span style=\"color: #000000;\">180</span>, <span style=\"color: #000000;\">62</span>, CBS_SIMPLE | CBS_SORT | CBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP</div>[/code:3hm8ym01]\n\nIn the code is as follows:\n\n[code=fw:3hm8ym01]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">COMBOBOX</span> oGet <span style=\"color: #0000ff;\">VAR</span> cOtrosBenef <span style=\"color: #0000ff;\">ITEMS</span> aOtrosBenef <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">800</span> <span style=\"color: #0000ff;\">OF</span> oCitas <span style=\"color: #0000ff;\">UPDATE</span></div>[/code:3hm8ym01]\n\nThe combobox when introducing a new element in the list, the variable \"cOtrosBenef\" I get empty, and also Oget: VarGet (), not how to recover the value entered in the combobox, besides if I use the mouse to move the combobox loses the value entered.\nThere is another way to recover the value of the new item of the combobox, or some way to correct this.\n\nI'm using 9.06 FWH\n\nGreetings from Honduras <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "19:35",
"topic": "COMBOBOX CBS_SIMPLE",
"username": "Blessed"
}
] |
COMBOBOX CBS_SIMPLE
|
[
{
"date": "2009-11-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Oscar,\n\nCould you please test FWH\\samples\\combos.prg and combos.rc and check if you get the same problem ? thanks",
"time": "13:50",
"topic": "COMBOBOX CBS_SIMPLE",
"username": "Antonio Linares"
}
] |
COMBOBOX CBS_SIMPLE
|
[
{
"date": "2009-11-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio I appreciate your time.\nI reviewed the example that follows, and the valid only works when you ENTER me with a new element, and with the tab key or the mouse on the combobox valid is ignored (Combo Simple).\nAny suggestions are welcomed.\n\nGreetings from Honduras <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "15:05",
"topic": "COMBOBOX CBS_SIMPLE",
"username": "Blessed"
}
] |
COMBOBOX CBS_SIMPLE
|
[
{
"date": "2009-11-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Oscar,\n\nThose combos contain a GET control object, so you can also use their VALIDs, i.e.:\n\noCbx1:oGet:bValid := { || MsgBeep(), .T. }\n\nPlease check if that helps you, thanks",
"time": "15:35",
"topic": "COMBOBOX CBS_SIMPLE",
"username": "Antonio Linares"
}
] |
COMBOBOX CBS_SIMPLE
|
[
{
"date": "2009-11-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\ntry this:\n\n[code=fw:15482ipj]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> oCbx1:<span style=\"color: #000000;\">oGet</span>:<span style=\"color: #000000;\">bValid</span> := <span style=\"color: #000000;\">{</span> || <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Hello word\"</span>, oCbx1:<span style=\"color: #000000;\">oGet</span>:<span style=\"color: #000000;\">VarGet</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>, .T. <span style=\"color: #000000;\">}</span><br /> </div>[/code:15482ipj]\n\nAnd it ignores the valid, with the mouse, the enter key and tab; And just how such \"combos.prg\" say the object is not updated, when introducing a new element; any other suggestions?\n\nThanks for the help <!-- s:wink: --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\":wink:\" title=\"Wink\" /><!-- s:wink: -->",
"time": "16:59",
"topic": "COMBOBOX CBS_SIMPLE",
"username": "Blessed"
}
] |
COMBOBOX CBS_SIMPLE
|
[
{
"date": "2009-11-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Okay, I'll have to use a combobox DROPDOWNLIST, and with new elements add a button, not pretty, but good.\nEsperaro that in the not too distant future this is fixed, who knows maybe it will contribute.\n\nThanks for the help <!-- s:wink: --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\":wink:\" title=\"Wink\" /><!-- s:wink: -->",
"time": "17:06",
"topic": "COMBOBOX CBS_SIMPLE",
"username": "Blessed"
}
] |
COMBOBOX CBS_SIMPLE
|
[
{
"date": "2006-10-18",
"forum": "FiveWin for CA-Clipper",
"text": "Resulta que en esa maquina (Toshiba) el combobox (ya sea por codigo o por recursos) me inserta 2 elementos al inicio con basura.\n\nTambien me pasa en una VAIO XP-PROF SP2\n\nEn todas las demas maquinas no.\n\n\na alguien le ha ocurrido eso?",
"time": "23:53",
"topic": "COMBOBOX Con error en Centrino DUo con HP HOME SP2",
"username": "creswinman"
}
] |
COMBOBOX Con error en Centrino DUo con HP HOME SP2
|
[
{
"date": "2006-10-29",
"forum": "FiveWin for CA-Clipper",
"text": "I have the same problem. Check out this image [img:rp1i158c]http://www.psmps.com/images/Image2.gif[/img:rp1i158c]. Notice the three garbage elements at the top of the list. The first item im my array is \"All Tables\".",
"time": "18:10",
"topic": "COMBOBOX Con error en Centrino DUo con HP HOME SP2",
"username": "arpipeline"
}
] |
COMBOBOX Con error en Centrino DUo con HP HOME SP2
|
[
{
"date": "2006-10-30",
"forum": "FiveWin for CA-Clipper",
"text": "Exactamente ese es el error, curiosamente si desactivo el lector de Huella Digital ya no se genera!!!!\n\n¿Sera un caso para la araña?",
"time": "15:55",
"topic": "COMBOBOX Con error en Centrino DUo con HP HOME SP2",
"username": "creswinman"
}
] |
COMBOBOX Con error en Centrino DUo con HP HOME SP2
|
[
{
"date": "2020-05-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I use REDEFINE COMBOBOX from resource but HEIGHTGET is not working, nothing change.\n\nThanks in advance,",
"time": "14:00",
"topic": "COMBOBOX HEIGHTGET is not working? *Solved*",
"username": "dutch"
}
] |
COMBOBOX HEIGHTGET is not working? *Solved*
|
[
{
"date": "2020-05-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Please try increasing height in the rc file.",
"time": "02:08",
"topic": "COMBOBOX HEIGHTGET is not working? *Solved*",
"username": "nageswaragunupudi"
}
] |
COMBOBOX HEIGHTGET is not working? *Solved*
|
[
{
"date": "2020-05-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Master,\nI got it. Thank you.[quote=\"nageswaragunupudi\":1xxscld7]Please try increasing height in the rc file.[/quote:1xxscld7]",
"time": "02:24",
"topic": "COMBOBOX HEIGHTGET is not working? *Solved*",
"username": "dutch"
}
] |
COMBOBOX HEIGHTGET is not working? *Solved*
|
[
{
"date": "2020-05-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "How to change HEIGHTGET in RC file?\n\n[code=fw:2rks3jse]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> CONTROL <span style=\"color: #ff0000;\">\"\"</span>, <span style=\"color: #000000;\">102</span>, <span style=\"color: #ff0000;\">\"ComboBox\"</span>, WS_BORDER|CBS_DROPDOWNLIST|WS_TABSTOP, <span style=\"color: #000000;\">73</span>, <span style=\"color: #000000;\">23</span>, <span style=\"color: #000000;\">27</span>, <span style=\"color: #000000;\">81</span><br /> </div>[/code:2rks3jse]\n[quote=\"nageswaragunupudi\":2rks3jse]Please try increasing height in the rc file.[/quote:2rks3jse]",
"time": "07:11",
"topic": "COMBOBOX HEIGHTGET is not working? *Solved*",
"username": "dutch"
}
] |
COMBOBOX HEIGHTGET is not working? *Solved*
|
[
{
"date": "2020-05-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "not work\n[code=fw:1expybe1]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">COMBOBOX</span> nEstado ;<br /> <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">109</span> <span style=\"color: #0000ff;\">OF</span> oDlgPE ;<br /> <span style=\"color: #0000ff;\">ITEMS</span> aEstados ;<br /> HEIGHTGET <span style=\"color: #000000;\">24</span> ;<br /> <span style=\"color: #0000ff;\">WHEN</span> !Empty<span style=\"color: #000000;\">(</span> cNomProy <span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">CHANGE</span> <span style=\"color: #000000;\">(</span> IIf<span style=\"color: #000000;\">(</span> nEstado == <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">(</span> cPermisoCierre := Space<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">20</span> <span style=\"color: #000000;\">)</span>, dFechaCierre := CToD<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"\"</span> <span style=\"color: #000000;\">)</span>, oDlgPE:<span style=\"color: #0000ff;\">Update</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>, <span style=\"color: #00C800;\">NIL</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> </div>[/code:1expybe1]\n\nwork ok.\n[code=fw:1expybe1]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">COMBOBOX</span> nEstado ;<br /> <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">109</span> <span style=\"color: #0000ff;\">OF</span> oDlgPE ;<br /> <span style=\"color: #0000ff;\">ITEMS</span> aEstados ;<br /> <span style=\"color: #0000ff;\">WHEN</span> !Empty<span style=\"color: #000000;\">(</span> cNomProy <span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">CHANGE</span> <span style=\"color: #000000;\">(</span> IIf<span style=\"color: #000000;\">(</span> nEstado == <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">(</span> cPermisoCierre := Space<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">20</span> <span style=\"color: #000000;\">)</span>, dFechaCierre := CToD<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"\"</span> <span style=\"color: #000000;\">)</span>, oDlgPE:<span style=\"color: #0000ff;\">Update</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>, <span style=\"color: #00C800;\">NIL</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>;<br /> HEIGHTGET <span style=\"color: #000000;\">24</span><br /> </div>[/code:1expybe1]\n\nlook the pos of keyword HEIGHTGET \n[quote:1expybe1]#xcommand REDEFINE COMBOBOX [ <oCbx> VAR ] <cVar> ;\n [ <items: PROMPTS, ITEMS> <aItems> ] ;\n [ ID <nId> ] ;\n [ <dlg:OF,WINDOW,DIALOG> <oWnd> ] ;\n [ <help:HELPID, HELP ID> <nHelpId> ] ;\n [ ON CHANGE <uChange> ] ;\n [ VALID <uValid> ] ;\n [ <color: COLOR,COLORS> <nClrText> [,<nClrBack>] ] ;\n [ <update: UPDATE> ] ;\n [ MESSAGE <cMsg> ] ;\n [ WHEN <uWhen> ] ;\n [ BITMAPS <acBitmaps> ] ;\n [ ON DRAWITEM <uBmpSelect> ] ;\n [ STYLE <nStyle> ] ;\n [ <pict: PICT, PICTURE> <cPicture> ];\n [ ON EDIT CHANGE <uEChange> ] ;\n [ HEIGHTGET <nHGet> ] ;\n [ SELHEIGHT <nSelHt> ] ;\n [ ITEMHEIGHT <nItmHt> ] ;\n [ <lw: LISTWIDTH, DROPWIDTH> <nDropW> ] ;\n [ DIRECTORY <cDir> [ATTRIB <attr>] [SAYDIR <oSayDir> ] ] ;\n [ OWNERDRAW <uOwnerDraw> ];[/quote:1expybe1]",
"time": "22:08",
"topic": "COMBOBOX HEIGHTGET is not working? *Solved*",
"username": "carlos vargas"
}
] |
COMBOBOX HEIGHTGET is not working? *Solved*
|
[
{
"date": "2020-05-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Carlos,\n\nThank you for your reply and I try as your suggestion as below but it doesn't change anything.\n\n[code=fw:1g54pxoz]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">COMBOBOX</span> oGet<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">VAR</span> oDbf:<span style=\"color: #000000;\">TCG_SECNO</span> <span style=\"color: #0000ff;\">ITEMS</span> MEMVAR->aStn <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">102</span> <span style=\"color: #0000ff;\">OF</span> oDlg ;<br /> <span style=\"color: #0000ff;\">WHEN</span> !lFlr ;<br /> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">CHANGE</span> <span style=\"color: #000000;\">(</span>MsgWait<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">'test'</span>,,<span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> ;<br /> HEIGHTGET <span style=\"color: #000000;\">50</span></div>[/code:1g54pxoz]\n\n[url=https://postimages.org/:1g54pxoz][img:1g54pxoz]https://i.postimg.cc/sxD4tph1/HEIGHTGET.jpg[/img:1g54pxoz][/url:1g54pxoz]",
"time": "03:51",
"topic": "COMBOBOX HEIGHTGET is not working? *Solved*",
"username": "dutch"
}
] |
COMBOBOX HEIGHTGET is not working? *Solved*
|
[
{
"date": "2020-05-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote:jc1mcrvs]I use REDEFINE COMBOBOX from resource but HEIGHTGET is not working, nothing change.[/quote:jc1mcrvs]\n\nDo not use HEIGHTGET\n\nUse \n[code=fw:jc1mcrvs]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">........<br />SELHEIGHT <span style=\"color: #000000;\">50</span> ;<br />.........</div>[/code:jc1mcrvs]\n\nAlternatively, you can also do\n\n[code=fw:jc1mcrvs]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">INIT</span> oCbx:<span style=\"color: #000000;\">nSelectionHeight</span> := <nNewHeight><br /> </div>[/code:jc1mcrvs]",
"time": "05:40",
"topic": "COMBOBOX HEIGHTGET is not working? *Solved*",
"username": "nageswaragunupudi"
}
] |
COMBOBOX HEIGHTGET is not working? *Solved*
|
[
{
"date": "2020-05-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Mst Rao,\n\n[u:3g9uu81l]SELHEITHGT is not working.[/u:3g9uu81l]\n[quote=\"nageswaragunupudi\":3g9uu81l]\nDo not use HEIGHTGET\nUse \n[code=fw:3g9uu81l]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">........<br />SELHEIGHT <span style=\"color: #000000;\">50</span> ;<br />.........</div>[/code:3g9uu81l]\n\nAlternatively, you can also do\n\n[code=fw:3g9uu81l]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">INIT</span> oCbx:<span style=\"color: #000000;\">nSelectionHeight</span> := <nNewHeight><br /> </div>[/code:3g9uu81l][/quote:3g9uu81l]\n\nThis one is working well.\n[url=https://postimages.org/:3g9uu81l][img:3g9uu81l]https://i.postimg.cc/C5Gfbfyh/HEIGHTGET.png[/img:3g9uu81l][/url:3g9uu81l]\n\nThank you so much.",
"time": "09:46",
"topic": "COMBOBOX HEIGHTGET is not working? *Solved*",
"username": "dutch"
}
] |
COMBOBOX HEIGHTGET is not working? *Solved*
|
[
{
"date": "2020-05-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[b:3lx67wcm]NOT RUN OK ON RESOURCES[/b:3lx67wcm]\n\nOn my order I have \n\n @ 2,5 COMBOBOX aGet[1] VAR nIcoElemento Items aElementiItems ;\n BITMAPS aBmpCombo SIZE 50,90 PIXEL of oFolder:aDialogs[1];\n ON CHANGE ( ncella:=\"\", aGet[2]:refresh()) [b:3lx67wcm]HEIGHTGET 66[/b:3lx67wcm]\n\nand run ok \n\n[img:3lx67wcm]https://i.postimg.cc/T3pJHj9Q/twofolder.png[/img:3lx67wcm]",
"time": "11:15",
"topic": "COMBOBOX HEIGHTGET is not working? *Solved*",
"username": "Silvio.Falconi"
}
] |
COMBOBOX HEIGHTGET is not working? *Solved*
|
[
{
"date": "2020-05-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "On resource, try\n\nACTIVATE DIALOG oDlg ON INIT oCbx:nSelectionHeight := <nNewHeight>",
"time": "14:48",
"topic": "COMBOBOX HEIGHTGET is not working? *Solved*",
"username": "MOISES"
}
] |
COMBOBOX HEIGHTGET is not working? *Solved*
|
[
{
"date": "2020-05-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I did some tests with fwh\\samples\\combosb.prg using \\fwh\\samples\\combosb.rc.\nI found that both HEIGHTGET and SELHEIGHT are working with resources.\n\nPlease build and run \\fwh\\samples\\combosb.prg without any changes.\nThis is what you see.\n\n[url=https://imageshack.com/i/poBUsvVDp:3svfufd8][img:3svfufd8]https://imagizer.imageshack.com/v2/xq90/924/BUsvVD.png[/img:3svfufd8][/url:3svfufd8]\n\nNow, add these clauses \"HEIGHTGET 50\" and \"HEIGHTGET 30\" to oCbx2 and oCbx3 respectively.\nThis is the code.\n[code=fw:3svfufd8]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">COMBOBOX</span> oCbx2 <span style=\"color: #0000ff;\">VAR</span> cItem2 <span style=\"color: #0000ff;\">ITEMS</span> <span style=\"color: #000000;\">{</span> <span style=\"color: #ff0000;\">\"One\"</span>, <span style=\"color: #ff0000;\">\"Two\"</span>, <span style=\"color: #ff0000;\">\"Three\"</span> <span style=\"color: #000000;\">}</span> ;<br /> <span style=\"color: #0000ff;\">ID</span> ID_DROPDOWN <span style=\"color: #0000ff;\">OF</span> oDlg ;<br /> <span style=\"color: #0000ff;\">STYLE</span> CBS_DROPDOWN ;<br /> HEIGHTGET <span style=\"color: #000000;\">50</span> ;<br /> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">CHANGE</span> <span style=\"color: #000000;\">(</span> cItem4 := cItem2, oSay:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">VALID</span> <span style=\"color: #000000;\">(</span> <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> ! oCbx2:<span style=\"color: #000000;\">Find</span><span style=\"color: #000000;\">(</span> oCbx2:<span style=\"color: #000000;\">oGet</span>:<span style=\"color: #000000;\">GetText</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>,;<br /> oCbx2:<span style=\"color: #000000;\">Add</span><span style=\"color: #000000;\">(</span> oCbx2:<span style=\"color: #000000;\">oGet</span>:<span style=\"color: #000000;\">GetText</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>,<span style=\"color: #000000;\">)</span>, .t. <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">COMBOBOX</span> oCbx3 <span style=\"color: #0000ff;\">VAR</span> cItem3 <span style=\"color: #0000ff;\">ITEMS</span> <span style=\"color: #000000;\">{</span> <span style=\"color: #ff0000;\">\"One\"</span>, <span style=\"color: #ff0000;\">\"Two\"</span>, <span style=\"color: #ff0000;\">\"Three\"</span> <span style=\"color: #000000;\">}</span> ;<br /> <span style=\"color: #0000ff;\">ID</span> ID_DROPDOWNLIST <span style=\"color: #0000ff;\">OF</span> oDlg ;<br /> HEIGHTGET <span style=\"color: #000000;\">30</span> ;<br /> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">CHANGE</span> <span style=\"color: #000000;\">(</span> cItem4 := cItem3, oSay:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">VALID</span> <span style=\"color: #000000;\">(</span> cItem4 := cItem3, oSay:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, .t. <span style=\"color: #000000;\">)</span><br /> </div>[/code:3svfufd8]\nThis is what you see.\n[url=https://imageshack.com/i/pnPMYDADp:3svfufd8][img:3svfufd8]https://imagizer.imageshack.com/v2/xq90/923/PMYDAD.png[/img:3svfufd8][/url:3svfufd8]\n\nNow, change these clauses as \"SELHEIGHT 30\" and \"SELHEIGHT 50\" to oCbx2 and oCbx3 respectively.\nThis is the code\n[code=fw:3svfufd8]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">COMBOBOX</span> oCbx2 <span style=\"color: #0000ff;\">VAR</span> cItem2 <span style=\"color: #0000ff;\">ITEMS</span> <span style=\"color: #000000;\">{</span> <span style=\"color: #ff0000;\">\"One\"</span>, <span style=\"color: #ff0000;\">\"Two\"</span>, <span style=\"color: #ff0000;\">\"Three\"</span> <span style=\"color: #000000;\">}</span> ;<br /> <span style=\"color: #0000ff;\">ID</span> ID_DROPDOWN <span style=\"color: #0000ff;\">OF</span> oDlg ;<br /> <span style=\"color: #0000ff;\">STYLE</span> CBS_DROPDOWN ;<br /> SELHEIGHT <span style=\"color: #000000;\">30</span> ;<br /> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">CHANGE</span> <span style=\"color: #000000;\">(</span> cItem4 := cItem2, oSay:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">VALID</span> <span style=\"color: #000000;\">(</span> <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> ! oCbx2:<span style=\"color: #000000;\">Find</span><span style=\"color: #000000;\">(</span> oCbx2:<span style=\"color: #000000;\">oGet</span>:<span style=\"color: #000000;\">GetText</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>,;<br /> oCbx2:<span style=\"color: #000000;\">Add</span><span style=\"color: #000000;\">(</span> oCbx2:<span style=\"color: #000000;\">oGet</span>:<span style=\"color: #000000;\">GetText</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>,<span style=\"color: #000000;\">)</span>, .t. <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">COMBOBOX</span> oCbx3 <span style=\"color: #0000ff;\">VAR</span> cItem3 <span style=\"color: #0000ff;\">ITEMS</span> <span style=\"color: #000000;\">{</span> <span style=\"color: #ff0000;\">\"One\"</span>, <span style=\"color: #ff0000;\">\"Two\"</span>, <span style=\"color: #ff0000;\">\"Three\"</span> <span style=\"color: #000000;\">}</span> ;<br /> <span style=\"color: #0000ff;\">ID</span> ID_DROPDOWNLIST <span style=\"color: #0000ff;\">OF</span> oDlg ;<br /> SELHEIGHT <span style=\"color: #000000;\">50</span> ;<br /> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">CHANGE</span> <span style=\"color: #000000;\">(</span> cItem4 := cItem3, oSay:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">VALID</span> <span style=\"color: #000000;\">(</span> cItem4 := cItem3, oSay:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, .t. <span style=\"color: #000000;\">)</span><br /> </div>[/code:3svfufd8]\nThis is what you see.\n[url=https://imageshack.com/i/poOlqTXZp:3svfufd8][img:3svfufd8]https://imagizer.imageshack.com/v2/xq90/924/OlqTXZ.png[/img:3svfufd8][/url:3svfufd8]\n\nThese tests show that both HEIGHTGET and SELHEIGHT work with resources too.\nFirst test these changes in \\fwh\\samples\\combosb.prg.\nAfter that, if in your program these clauses are not working, look for the differences this sample and your own sources.",
"time": "14:48",
"topic": "COMBOBOX HEIGHTGET is not working? *Solved*",
"username": "nageswaragunupudi"
}
] |
COMBOBOX HEIGHTGET is not working? *Solved*
|
[
{
"date": "2020-05-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Master Rao,\n\nI found the problem of HEIGHTGET that does not work. It is RESIZE16 clause effect. It will be work, if no RESIZE16.\n\nThank you so much.\nDutch",
"time": "15:15",
"topic": "COMBOBOX HEIGHTGET is not working? *Solved*",
"username": "dutch"
}
] |
COMBOBOX HEIGHTGET is not working? *Solved*
|
[
{
"date": "2009-03-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Friends,\nany sample of a combobox with bitmaps on button bar ?",
"time": "13:43",
"topic": "COMBOBOX ON BUTTONBAR",
"username": "Silvio"
}
] |
COMBOBOX ON BUTTONBAR
|
[
{
"date": "2009-08-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Silvio,\n\nConseguiste insertar un combobox en un buttonbar?",
"time": "11:18",
"topic": "COMBOBOX ON BUTTONBAR",
"username": "fgondi"
}
] |
COMBOBOX ON BUTTONBAR
|
[
{
"date": "2009-08-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "simply yes, with bitmaps no... Now i use another class",
"time": "13:01",
"topic": "COMBOBOX ON BUTTONBAR",
"username": "Silvio"
}
] |
COMBOBOX ON BUTTONBAR
|
[
{
"date": "2009-08-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Silvio,\n\nwith the new Vtitle-Class, You can create Your own individual Buttonbar, because\nButton-Action for Bitmaps is supported now.\n\nJust a test with Combobox and Button-Action :\n[img:2u25wwyg]http://www.pflegeplus.com/pictures/vtitle33.jpg[/img:2u25wwyg]\n\nCombobox added to samples\\[color=#FF0000:2u25wwyg]testtitl.prg[/color:2u25wwyg]\n[code=fw:2u25wwyg]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">//Title 5 Horizontal( Down )</span><br />@ <span style=\"color: #000000;\">480</span>, <span style=\"color: #000000;\">150</span> <span style=\"color: #0000ff;\">TITLE</span> oTitle5 <span style=\"color: #0000ff;\">size</span> <span style=\"color: #000000;\">460</span>, <span style=\"color: #000000;\">60</span> <span style=\"color: #0000ff;\">of</span> oWnd SHADOW BOTTOMLEFT SHADOWSIZE <span style=\"color: #000000;\">2</span><br />@ <span style=\"color: #000000;\">5</span>, <span style=\"color: #000000;\">10</span> TITLEIMG <span style=\"color: #0000ff;\">OF</span> oTitle5 BITMAP <span style=\"color: #ff0000;\">\"../bitmaps<span style=\"color: #000000;\">\\3</span>2X32<span style=\"color: #000000;\">\\k</span>eys.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">30</span>, <span style=\"color: #000000;\">30</span> REFLEX TRANSPARENT ANIMA ;<br /><span style=\"color: #0000ff;\">ACTION</span> MsgAlert<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"I am Action for Button 1\"</span>, <span style=\"color: #ff0000;\">\"Attention\"</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">// @ 20, 60 TITLETEXT OF oTitle5 TEXT \"<== Move over me\" COLOR CLR_BLACK </span><br />@ <span style=\"color: #000000;\">14</span>, <span style=\"color: #000000;\">220</span> TITLETEXT <span style=\"color: #0000ff;\">OF</span> oTitle5 <span style=\"color: #0000ff;\">TEXT</span> <span style=\"color: #ff0000;\">\"FIVEWIN 9.07\"</span> <span style=\"color: #0000ff;\">COLOR</span> CLR_BLACK <span style=\"color: #0000ff;\">FONT</span> oFont2 <span style=\"color: #B900B9;\">// 3d</span><br />@ <span style=\"color: #000000;\">5</span>, <span style=\"color: #000000;\">400</span> TITLEIMG <span style=\"color: #0000ff;\">OF</span> oTitle5 BITMAP <span style=\"color: #ff0000;\">\"../bitmaps<span style=\"color: #000000;\">\\f</span>ivetech.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">30</span>, <span style=\"color: #000000;\">30</span> REFLEX <br />oTitle5:<span style=\"color: #000000;\">nShadowIntensity</span> = <span style=\"color: #000000;\">70</span><br /><br />@ <span style=\"color: #000000;\">0.5</span>, <span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">COMBOBOX</span> oCbx <span style=\"color: #0000ff;\">VAR</span> cText <span style=\"color: #0000ff;\">OF</span> oTitle5 <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">100</span>, <span style=\"color: #000000;\">80</span> ;<br /><span style=\"color: #0000ff;\">BITMAPS</span> <span style=\"color: #000000;\">{</span><span style=\"color: #ff0000;\">\"../bitmaps<span style=\"color: #000000;\">\\a</span>rrow.bmp\"</span>,<span style=\"color: #ff0000;\">\"../bitmaps<span style=\"color: #000000;\">\\b</span>rowse.bmp\"</span>,<span style=\"color: #ff0000;\">\"../bitmaps<span style=\"color: #000000;\">\\c</span>alc.bmp\"</span><span style=\"color: #000000;\">}</span> ;<br /><span style=\"color: #0000ff;\">STYLE</span> CBS_DROPDOWN ;<br /><span style=\"color: #0000ff;\">ITEMS</span> <span style=\"color: #000000;\">{</span> <span style=\"color: #ff0000;\">\"One\"</span>, <span style=\"color: #ff0000;\">\"Two\"</span>, <span style=\"color: #ff0000;\">\"Three\"</span> <span style=\"color: #000000;\">}</span> ;<br /><span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">CHANGE</span> oWnd:<span style=\"color: #000000;\">SetText</span><span style=\"color: #000000;\">(</span> cText <span style=\"color: #000000;\">)</span><br /> </div>[/code:2u25wwyg]\n\nBest regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "13:46",
"topic": "COMBOBOX ON BUTTONBAR",
"username": "ukoenig"
}
] |
COMBOBOX ON BUTTONBAR
|
[
{
"date": "2009-08-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Sorry Uwe,\nVtitle class of Antonio linares can be a good class but i use my vtitle class (the name is paint title) with it i can make button on it and i can insert also animated bitmaps buttons allready from two year ago.\n\n\nAnd... I not think you can crete combobox with BIG bitmaps on it",
"time": "19:31",
"topic": "COMBOBOX ON BUTTONBAR",
"username": "Silvio"
}
] |
COMBOBOX ON BUTTONBAR
|
[
{
"date": "2014-09-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estimados Amigo\nAcabo de migrar de la versión FWH1108 a la versión FWH1407 y al revisar mis diálogos con combo simple siempre lo editaba y presionando la tecla enter pasaba al siguiente campo, ahora no se puede hacer esto viéndome obligado a usar la tecla Tab o con el mouse para pasar de un campo a otro, debido a la rapidez de la edición con la tecla enter quisiera saber si hay alguna forma de corregir.\nAgradezco su apoyo\n\nCarlos Cardoza\nFWH+PellesC+Mysql",
"time": "23:16",
"topic": "COMBOBOX SIMPLE FWH1407",
"username": "cjcardoza"
}
] |
COMBOBOX SIMPLE FWH1407
|
[
{
"date": "2022-01-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Nages sad me I can insert [b:1yh69ogj]STYLE CBS_DROPDOWN[/b:1yh69ogj] on COMBOBOX when the value is numeric\n\n [b:1yh69ogj]nNaturaIva:[/b:1yh69ogj]= ASCAN(aNatura, { | a | alltrim(a[ 1 ]) == alltrim(\"N1\") } )\n\n @ 140, 120 COMBOBOX aGet[4] VAR [b:1yh69ogj]nNaturaIva[/b:1yh69ogj] ITEMS aItems SIZE 450,24 PIXEL OF oDlg [b:1yh69ogj]STYLE CBS_DROPDOWN [/b:1yh69ogj] UPDATE\n\nbat when I put the mouse on combobox\n\n[b:1yh69ogj]it go out error[/b:1yh69ogj]\n\n[img:1yh69ogj]https://i.postimg.cc/85QV0SKJ/ff.png[/img:1yh69ogj]\n\nHow I can resolve i t?",
"time": "13:37",
"topic": "COMBOBOX STYLE",
"username": "Silvio.Falconi"
}
] |
COMBOBOX STYLE
|
[
{
"date": "2009-02-25",
"forum": "FiveWin for Pocket PC",
"text": "Hi Antonio.\n\nI download lastest version of FWPPC.\n\nCOMBOBOX is work now.\nI try use STYLE CBS_DROPDOWN, and some character from previous Combo value is appended to end of current value ,if COMBOBOX lost focus (click to next get box for example).\n\nLength of previous value must be more than length of current value.\n\nIf STYLE CBS_DROPDOWN not set COMBOBOX work good.\n\nRegards\n\nAndrej.",
"time": "16:01",
"topic": "COMBOBOX STYLE CBS_DROPDOWN - a little bug?",
"username": "xVar"
}
] |
COMBOBOX STYLE CBS_DROPDOWN - a little bug?
|
[
{
"date": "2009-02-26",
"forum": "FiveWin for Pocket PC",
"text": "Andrej,\n\nCould you please provide a small PRG to test it ? thanks",
"time": "12:21",
"topic": "COMBOBOX STYLE CBS_DROPDOWN - a little bug?",
"username": "Antonio Linares"
}
] |
COMBOBOX STYLE CBS_DROPDOWN - a little bug?
|
[
{
"date": "2009-03-04",
"forum": "FiveWin for Pocket PC",
"text": "Andrej,\n\nThanks for your example.\n\nYes, there is a bug there to locate and fix. We are working on it.",
"time": "10:13",
"topic": "COMBOBOX STYLE CBS_DROPDOWN - a little bug?",
"username": "Antonio Linares"
}
] |
COMBOBOX STYLE CBS_DROPDOWN - a little bug?
|
[
{
"date": "2009-03-03",
"forum": "FiveWin for Pocket PC",
"text": "Well.\nComing soon.<!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->\n//\n\n\n#include \"fwce.ch\"\n#include \"dll.ch\"\n\n\n#define MB_ICONINFORMATION 0x40\n\n\n\nstatic aBTypes:= {'Repce','Akác','Hárs','Gesztenye','Napraforgó','Selyemkóró','Facélia','Vegyes virág','Mézharmat','Egyéb'} \n\n\n\nfunction Main()\n // Main Window\n \n LOCAL oBmp \n Local oHONEYTYPES, cHONEYTYPES\n Local oHONEYTYPES_DD, cHONEYTYPES_DD\n Local oBEEKEEPER , cBEEKEEPER \n cBeeKeeper:=\"Click to me after set second combo\"\n \n public oWnd\n \n\n\n DEFINE WINDOW oWnd TITLE \"RFID_OMME\" ;\n\n @ 2 ,2 COMBOBOX oHONEYTYPES Var cHONEYTYPES ITEMS aBTypes SIZE 100,120 \n \n \n @ 6 ,2 COMBOBOX oHONEYTYPES_DD Var cHONEYTYPES_DD ITEMS aBTypes STYLE CBS_DROPDOWN SIZE 100,120 \n \n @ 10, 2 GET oBEEKEEPER Var cBEEKEEPER SIZE 200, 22\n \n ACTIVATE WINDOW oWnd;\n\n \n \nreturn nil\n\n//",
"time": "10:09",
"topic": "COMBOBOX STYLE CBS_DROPDOWN - a little bug?",
"username": "xVar"
}
] |
COMBOBOX STYLE CBS_DROPDOWN - a little bug?
|
[
{
"date": "2016-06-13",
"forum": "FiveWin for Pocket PC",
"text": "Alguna solucion para viejas versiones?\ngracias.",
"time": "16:54",
"topic": "COMBOBOX STYLE CBS_DROPDOWN - a little bug?",
"username": "goosfancito"
}
] |
COMBOBOX STYLE CBS_DROPDOWN - a little bug?
|
[
{
"date": "2016-06-15",
"forum": "FiveWin for Pocket PC",
"text": "Gustavo,\n\nDime por favor que mide el fichero source\\classes\\combobox.prg de FWPPC",
"time": "09:20",
"topic": "COMBOBOX STYLE CBS_DROPDOWN - a little bug?",
"username": "Antonio Linares"
}
] |
COMBOBOX STYLE CBS_DROPDOWN - a little bug?
|
[
{
"date": "2016-06-15",
"forum": "FiveWin for Pocket PC",
"text": "non o, perdon yo no tengo pocket pc. ya resolvi era por fwh.",
"time": "13:56",
"topic": "COMBOBOX STYLE CBS_DROPDOWN - a little bug?",
"username": "goosfancito"
}
] |
COMBOBOX STYLE CBS_DROPDOWN - a little bug?
|
[
{
"date": "2023-03-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi ,\nI had the same problem and solved it by adding blank after items in the array .\n\nI found that all items of the array should have the same lenght .\n\nStrange !!\n\nPhilippe",
"time": "12:17",
"topic": "COMBOBOX WITH Sort",
"username": "Jack"
}
] |
COMBOBOX WITH Sort
|
[
{
"date": "2023-03-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello \nI have a COMBOBOX ( in a RC file with Sort = Yes ) \n\naTipi := {'Paolo', 'Gianni','Andrea' 'Cesare' }\n\nI set cTipo_Cli = 'Gianni'\n\n REDEFINE COMBOBOX oCom Var cTipo_Cli ITEMS aTipi ID 4009 OF oDlg \n\n but when I open the dialog on the combobox I have 'Cesare' and not 'Gianni'\n\nThanks",
"time": "10:27",
"topic": "COMBOBOX WITH Sort",
"username": "Maurizio"
}
] |
COMBOBOX WITH Sort
|
[
{
"date": "2023-03-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Perhaps, if you are using pellesC, you need to \"remove\" the SORT variable in the combobox as NO.\n\nMaybe:\nON Change := cTipo_Cli[ oCbx:nAt ]\n\nRegards, saludos.",
"time": "15:12",
"topic": "COMBOBOX WITH Sort",
"username": "karinha"
}
] |
COMBOBOX WITH Sort
|
[
{
"date": "2011-02-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I made \n\nlocal aItems := { 'COMPUTER','PORTATILE','STAMPANTE','MONITOR', 'TASTIERA', 'SWITCH', ;\n 'MOUSE', 'POCKET','SCANNER','PROIETTORE' ,'VIDEOCAMERA' , 'FILMCAMERA' , 'FOTOCAMERA' }\n\n...\n\n @ 0.8, 14 say \"&Tipo Hardware :\" OF oDlg\n @ 0.8, 16 COMBOBOX aGet[2] VAR cType ITEMS aItems OF oDlg; \n BITMAPS { 'HARD_01',;\n 'HARD_02' ,;\n 'HARD_03' ,;\n 'HARD_04' ,;\n 'HARD_05',;\n 'HARD_06' ,;\n 'HARD_07',;\n 'HARD_08',;\n 'HARD_09' ,;\n 'HARD_10',;\n 'HARD_11',;\n 'HARD_12',;\n 'HARD_13' } SIZE 80,30 STYLE CBS_DROPDOWNLIST\n\n\nBUT I CANNOT SEE THE BITMAPS BUT ONLY THE ITEMS\n\nHOW I CAN MAKE TO SHOW BITMAPS AND ITEMS ?\n\nNOTE: THE BITMAPS ARE ON A RESOURCES FILES!!",
"time": "11:44",
"topic": "COMBOBOX WITH BITMAPS",
"username": "Silvio"
}
] |
COMBOBOX WITH BITMAPS
|
[
{
"date": "2011-02-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "What is the size of the BITMAPS used ? Is it 16 x 16 ?\n\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=3&t=20831\">viewtopic.php?f=3&t=20831</a><!-- l -->\n\nRegards\nAnser",
"time": "13:02",
"topic": "COMBOBOX WITH BITMAPS",
"username": "anserkk"
}
] |
COMBOBOX WITH BITMAPS
|
[
{
"date": "2011-02-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Anserkk,\nyes they are 16x16 simply bitmaps no alpha\n\nonly it give me this error \n\n[b:cne1ht8s]Error description: Error BASE/1132 Error de rango: acceso al array[/b:cne1ht8s]\n\n\n\n[code=fw:cne1ht8s]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">pplication<br />===========<br /> Path and <span style=\"color: #0000ff;\">name</span>: <span style=\"color: #000000;\">C</span>:\\WORK\\errori2\\work\\test.Exe <span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">32</span> bits<span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">Size</span>: <span style=\"color: #000000;\">2</span>,<span style=\"color: #000000;\">945</span>,<span style=\"color: #000000;\">536</span> bytes<br /> Time <span style=\"color: #0000ff;\">from</span> start: <span style=\"color: #000000;\">0</span> hours <span style=\"color: #000000;\">1</span> mins <span style=\"color: #000000;\">21</span> secs <br /> Error occurred <span style=\"color: #00C800;\">at</span>: <span style=\"color: #000000;\">18</span><span style=\"color: #000000;\">-02</span><span style=\"color: #000000;\">-2011</span>, <span style=\"color: #000000;\">13</span>:<span style=\"color: #000000;\">18</span>:<span style=\"color: #000000;\">06</span><br /> Error description: <span style=\"color: #000000;\">Error</span> BASE/<span style=\"color: #000000;\">1132</span> Error de rango: <span style=\"color: #000000;\">acceso</span> al array<br /> Args:<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">]</span> = A <span style=\"color: #000000;\">{</span> ... <span style=\"color: #000000;\">}</span><br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">]</span> = N <span style=\"color: #000000;\">0</span><br /><br />Stack Calls<br />===========<br /> Called <span style=\"color: #0000ff;\">from</span>: <span style=\"color: #000000;\">imagelis</span>.prg => LBXDRAWITEM<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">510</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">COMBOBOX</span>.PRG => TCOMBOBOX:<span style=\"color: #000000;\">DRAWITEM</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">758</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => TWINDOW:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\CONTROL.PRG => TCONTROL:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1499</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">COMBOBOX</span>.PRG => TCOMBOBOX:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">604</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">WINDOW</span>.PRG => _FWH<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">3394</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => SENDMESSAGE<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">WINDOW</span>.PRG => TDIALOG:<span style=\"color: #000000;\">DRAWITEM</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1165</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => TWINDOW:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">DIALOG</span>.PRG => TDIALOG:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">944</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => SYSREFRESH<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">DIALOG</span>.PRG => TDIALOG:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">531</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\<span style=\"color: #00C800;\">function</span>\\ERRSYSW.PRG => <span style=\"color: #000000;\">(</span>b<span style=\"color: #000000;\">)</span>ERRORDIALOG<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">360</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">BUTTON</span>.PRG => TBUTTON:<span style=\"color: #0000ff;\">CLICK</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">176</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\CONTROL.PRG => TBUTTON:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1447</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">WINDOW</span>.PRG => _FWH<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">3394</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => SENDMESSAGE<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">DIALOG</span>.PRG => TDIALOG:<span style=\"color: #000000;\">COMMAND</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">408</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => TWINDOW:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">DIALOG</span>.PRG => TDIALOG:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">944</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => DIALOGBOXINDIRECT<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">DIALOG</span>.PRG => TDIALOG:<span style=\"color: #0000ff;\">ACTIVATE</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">273</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\<span style=\"color: #00C800;\">function</span>\\ERRSYSW.PRG => ERRORDIALOG<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">379</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\<span style=\"color: #00C800;\">function</span>\\ERRSYSW.PRG => <span style=\"color: #000000;\">(</span>b<span style=\"color: #000000;\">)</span>ERRORSYS<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">27</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: <span style=\"color: #000000;\">imagelis</span>.prg => LBXDRAWITEM<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">510</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">COMBOBOX</span>.PRG => TCOMBOBOX:<span style=\"color: #000000;\">DRAWITEM</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">758</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => TWINDOW:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\CONTROL.PRG => TCONTROL:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1499</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">COMBOBOX</span>.PRG => TCOMBOBOX:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">604</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">WINDOW</span>.PRG => _FWH<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">3394</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => SENDMESSAGE<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">WINDOW</span>.PRG => TDIALOG:<span style=\"color: #000000;\">DRAWITEM</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1165</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => TWINDOW:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">DIALOG</span>.PRG => TDIALOG:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">944</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => DIALOGBOXINDIRECT<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">DIALOG</span>.PRG => TDIALOG:<span style=\"color: #0000ff;\">ACTIVATE</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">273</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\<span style=\"color: #00C800;\">function</span>\\ERRSYSW.PRG => ERRORDIALOG<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">379</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\<span style=\"color: #00C800;\">function</span>\\ERRSYSW.PRG => <span style=\"color: #000000;\">(</span>b<span style=\"color: #000000;\">)</span>ERRORSYS<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">27</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: <span style=\"color: #000000;\">imagelis</span>.prg => LBXDRAWITEM<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">510</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">COMBOBOX</span>.PRG => TCOMBOBOX:<span style=\"color: #000000;\">DRAWITEM</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">758</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => TWINDOW:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\CONTROL.PRG => TCONTROL:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1499</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">COMBOBOX</span>.PRG => TCOMBOBOX:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">604</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">WINDOW</span>.PRG => _FWH<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">3394</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => SENDMESSAGE<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">WINDOW</span>.PRG => TDIALOG:<span style=\"color: #000000;\">DRAWITEM</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1165</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => TWINDOW:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">DIALOG</span>.PRG => TDIALOG:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">944</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => DIALOGBOXINDIRECT<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">DIALOG</span>.PRG => TDIALOG:<span style=\"color: #0000ff;\">ACTIVATE</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">273</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: <span style=\"color: #000000;\">source</span>\\PHardware.prg => HWEDITA<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">550</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: <span style=\"color: #000000;\">source</span>\\PHardware.prg => <span style=\"color: #000000;\">(</span>b<span style=\"color: #000000;\">)</span>HARDWARE<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">203</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: <span style=\"color: #000000;\">Lib</span>\\VMenu.prg => TVMENU:<span style=\"color: #000000;\">EVALACTION</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1700</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: <span style=\"color: #000000;\">Lib</span>\\VMenu.prg => TVMENU:<span style=\"color: #000000;\">LBUTTONUP</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1398</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\CONTROL.PRG => TCONTROL:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1489</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: <span style=\"color: #000000;\">Lib</span>\\VMenu.prg => TVMENU:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">905</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">WINDOW</span>.PRG => _FWH<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">3394</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => WINRUN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\<span style=\"color: #0000ff;\">WINDOW</span>.PRG => TWINDOW:<span style=\"color: #0000ff;\">ACTIVATE</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">978</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: <span style=\"color: #000000;\">source</span>\\main.prg => TAPPLICATION:<span style=\"color: #0000ff;\">ACTIVATE</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">167</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: <span style=\"color: #000000;\">source</span>\\main.prg => MAIN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">49</span><span style=\"color: #000000;\">)</span></div>[/code:cne1ht8s]",
"time": "13:19",
"topic": "COMBOBOX WITH BITMAPS",
"username": "Silvio"
}
] |
COMBOBOX WITH BITMAPS
|
[
{
"date": "2011-02-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "NOT RUN ALSO WITH \n\n @ 0.8, 16 COMBOBOX aGet[2] VAR cType ITEMS aItems OF oDlg;\n BITMAPS {\".\\bitmaps\\SM_HARD.bmp\" ,;\n \".\\bitmaps\\SM_LAP.bmp\" ,;\n \".\\bitmaps\\SM_PRT.bmp\" ,;\n \".\\bitmaps\\SM_MON.bmp\" ,;\n \".\\bitmaps\\SM_KEY.bmp\" ,;\n \".\\bitmaps\\SM_SWI.bmp\" ,;\n \".\\bitmaps\\SM_MOU.bmp\" ,;\n \".\\bitmaps\\SM_PALM.bmp\" ,;\n \".\\bitmaps\\SM_SCAN.bmp\" ,;\n \".\\bitmaps\\SM_PRO.bmp\" ,;\n \".\\bitmaps\\SM_VID.bmp\" ,;\n \".\\bitmaps\\SM_FILM.bmp\" ,;\n \".\\bitmaps\\SM_CAME.bmp\"} SIZE 80,80\n\n\n\nand as I saw on ownerdra.prg fivewin sample ( it run ok) \n\nbut when I insert the combo on my prg NOT RUN \n\n @ 0.8, 16 COMBOBOX aGet[2] VAR cType ITEMS aItems OF oDlg;\n BITMAPS {\"..\\bitmaps\\SM_HARD.bmp\" ,;\n \"..\\bitmaps\\SM_LAP.bmp\" ,;\n \"..\\bitmaps\\SM_PRT.bmp\" ,;\n \"..\\bitmaps\\SM_MON.bmp\" ,;\n \"..\\bitmaps\\SM_KEY.bmp\" ,;\n \"..\\bitmaps\\SM_SWI.bmp\" ,;\n \"..\\bitmaps\\SM_MOU.bmp\" ,;\n \"..\\bitmaps\\SM_PALM.bmp\" ,;\n \"..\\bitmaps\\SM_SCAN.bmp\" ,;\n \"..\\bitmaps\\SM_PRO.bmp\" ,;\n \"..\\bitmaps\\SM_VID.bmp\" ,;\n \"..\\bitmaps\\SM_FILM.bmp\" ,;\n \"..\\bitmaps\\SM_CAME.bmp\"} SIZE 80,80",
"time": "13:24",
"topic": "COMBOBOX WITH BITMAPS",
"username": "Silvio"
}
] |
COMBOBOX WITH BITMAPS
|
[
{
"date": "2011-02-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Silvio,\n\nbecause of Path-defines, sometimes I got Problems to find BMP's\nI don't use .\\ or ..\\ anymore.\n\nInstead I use :\n\n[color=#FF0000:xzuifno3]c_path [/color:xzuifno3]:= CURDRIVE() + \":\\\" + GETCURDIR() \n\nand the BMP-call with\n\n[color=#FF0000:xzuifno3]c_Path [/color:xzuifno3]+ \"\\bitmaps\\\" + cBmp1\nor\n[color=#FF0000:xzuifno3]c_Path [/color:xzuifno3]+ \"\\Images\\16x16\\\" + cBmp1\n\nwhere cBmp1 = \"LOGO.BMP\"\n\nmaybe it can fix Your problem.\n\nBest regards\nUwe <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->",
"time": "14:43",
"topic": "COMBOBOX WITH BITMAPS",
"username": "ukoenig"
}
] |
COMBOBOX WITH BITMAPS
|
[
{
"date": "2011-02-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I had a similar problem. My bitmaps are referenced in the .rc file so included in the .exe.\n\nI found it was necessary to use 16x16 bit alpha bitmaps, and it works perfectly. In this case, I wanted color swatches, so I have bitmaps with solid colors. Using any other size, or type ( ie. 8 bit, etc ) did not work but these do.\n\nTim",
"time": "20:24",
"topic": "COMBOBOX WITH BITMAPS",
"username": "TimStone"
}
] |
COMBOBOX WITH BITMAPS
|
[
{
"date": "2011-02-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Tim,\n\n16x16 is OK, to use for Comboboxes.\nIt is also possible, to display bigger sizes, but there is a Row-size-problem :\nRow-height / width is not adjusted like in xBrowse.\n\n[img:29tiqt91]http://www.pflegeplus.com/pictures/combo7.jpg[/img:29tiqt91]\n\nBest regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "20:53",
"topic": "COMBOBOX WITH BITMAPS",
"username": "ukoenig"
}
] |
COMBOBOX WITH BITMAPS
|
[
{
"date": "2011-02-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "perhaps I found the error ....\n\nI use vtaskbar of paco and link to my application his lib ( c5new)\n\nwhen I erase this lib from my application I see combobox with bitmaps !!!!!!!!!!!!!!!!!!!!!!! \n\nBut this is very strange ....because I used that lib always ....",
"time": "21:29",
"topic": "COMBOBOX WITH BITMAPS",
"username": "Silvio"
}
] |
COMBOBOX WITH BITMAPS
|
[
{
"date": "2022-06-10",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola Amigos.. como se podria hacer esto:\n[url=https://postimg.cc/Fd6G1PNt:2mveaiuk][img:2mveaiuk]https://i.postimg.cc/Fd6G1PNt/comboboxcheck.png[/img:2mveaiuk][/url:2mveaiuk]\n\ncon xbrowse se podria... pero otra forma\n\nsaludos",
"time": "18:00",
"topic": "COMBOBOX Y CHECKBOX",
"username": "jbrita"
}
] |
COMBOBOX Y CHECKBOX
|
[
{
"date": "2022-06-10",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Interesante...\n\nMe sumo a la inquietud +1",
"time": "18:56",
"topic": "COMBOBOX Y CHECKBOX",
"username": "JoseAlvarez"
}
] |
COMBOBOX Y CHECKBOX
|
[
{
"date": "2022-06-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Esta es una posible forma, aunque sin usar un combobox:\n\n[img:3jzf9pxn]https://github.com/FiveTechSoft/screenshots/blob/master/panelcheckbox.jpg?raw=true[/img:3jzf9pxn]\n\nVamos a ir mejorándolo <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\n[code=fw:3jzf9pxn]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"constant.ch\"</span><br /><br /><span style=\"color: #00C800;\">static</span> oDlg, oPanel<br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> oBtn<br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"Marca\"</span> ;<br /> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">200</span>, <span style=\"color: #000000;\">250</span> <span style=\"color: #0000ff;\">PIXEL</span><br /><br /> @ <span style=\"color: #000000;\">100</span>, <span style=\"color: #000000;\">5</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBtn <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Aplicar\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">90</span>, <span style=\"color: #000000;\">15</span> FLAT<br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">CENTERED</span> ;<br /> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">INIT</span> <span style=\"color: #000000;\">(</span> oBtn:<span style=\"color: #000000;\">SetColor</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"W+/BG+\"</span> <span style=\"color: #000000;\">)</span>, CreatePanel<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, CreateCheckBoxes<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, oPanel:<span style=\"color: #000000;\">SetRange</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #B900B9;\">//--------------------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> CreatePanel<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> oPanel = TScrollPanel<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">50</span>, <span style=\"color: #000000;\">11</span>, oDlg:<span style=\"color: #000000;\">nBottom</span> - <span style=\"color: #000000;\">60</span>, oDlg:<span style=\"color: #000000;\">nWidth</span> - <span style=\"color: #000000;\">20</span>, oDlg <span style=\"color: #000000;\">)</span><br /> oPanel:<span style=\"color: #000000;\">WinStyle</span><span style=\"color: #000000;\">(</span> WS_BORDER, .F. <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #B900B9;\">//--------------------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> CreateCheckBoxes<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> aValues := Array<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">12</span> <span style=\"color: #000000;\">)</span>, nTop := <span style=\"color: #000000;\">0</span><br /><br /> AFill<span style=\"color: #000000;\">(</span> aValues, .F. <span style=\"color: #000000;\">)</span><br /><br /> @ nTop, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">3</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">4</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">5</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">6</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">7</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">8</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">9</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">11</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">12</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #B900B9;\">//--------------------------------------------------------------------------------------//</span><br /> </div>[/code:3jzf9pxn]",
"time": "17:51",
"topic": "COMBOBOX Y CHECKBOX",
"username": "Antonio Linares"
}
] |
COMBOBOX Y CHECKBOX
|
[
{
"date": "2022-06-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":3nbnb3wt]Esta es una posible forma, aunque sin usar un combobox:\n\n[img:3nbnb3wt]https://github.com/FiveTechSoft/screenshots/blob/master/panelcheckbox.jpg?raw=true[/img:3nbnb3wt]\n\nVamos a ir mejorándolo <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\n[code=fw:3nbnb3wt]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"constant.ch\"</span><br /><br /><span style=\"color: #00C800;\">static</span> oDlg, oPanel<br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> oBtn<br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"Marca\"</span> ;<br /> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">200</span>, <span style=\"color: #000000;\">250</span> <span style=\"color: #0000ff;\">PIXEL</span><br /><br /> @ <span style=\"color: #000000;\">100</span>, <span style=\"color: #000000;\">5</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBtn <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Aplicar\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">90</span>, <span style=\"color: #000000;\">15</span> FLAT<br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">CENTERED</span> ;<br /> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">INIT</span> <span style=\"color: #000000;\">(</span> oBtn:<span style=\"color: #000000;\">SetColor</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"W+/BG+\"</span> <span style=\"color: #000000;\">)</span>, CreatePanel<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, CreateCheckBoxes<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, oPanel:<span style=\"color: #000000;\">SetRange</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #B900B9;\">//--------------------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> CreatePanel<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> oPanel = TScrollPanel<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">50</span>, <span style=\"color: #000000;\">11</span>, oDlg:<span style=\"color: #000000;\">nBottom</span> - <span style=\"color: #000000;\">60</span>, oDlg:<span style=\"color: #000000;\">nWidth</span> - <span style=\"color: #000000;\">20</span>, oDlg <span style=\"color: #000000;\">)</span><br /> oPanel:<span style=\"color: #000000;\">WinStyle</span><span style=\"color: #000000;\">(</span> WS_BORDER, .F. <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #B900B9;\">//--------------------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> CreateCheckBoxes<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> aValues := Array<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">12</span> <span style=\"color: #000000;\">)</span>, nTop := <span style=\"color: #000000;\">0</span><br /><br /> AFill<span style=\"color: #000000;\">(</span> aValues, .F. <span style=\"color: #000000;\">)</span><br /><br /> @ nTop, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">3</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">4</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">5</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">6</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">7</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">8</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">9</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">11</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /> @ nTop += <span style=\"color: #000000;\">1.7</span>, <span style=\"color: #000000;\">0.5</span> <span style=\"color: #0000ff;\">CHECKBOX</span> aValues<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">12</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">SIZE</span> oPanel:<span style=\"color: #000000;\">nRight</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">OF</span> oPanel <span style=\"color: #B900B9;\">// SCROLL ADJUST</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #B900B9;\">//--------------------------------------------------------------------------------------//</span><br /> </div>[/code:3nbnb3wt][/quote:3nbnb3wt]\n\nDear Antonio\n\nHow about use it when Resource Dialog",
"time": "04:30",
"topic": "COMBOBOX Y CHECKBOX",
"username": "richard-service"
}
] |
COMBOBOX Y CHECKBOX
|
[
{
"date": "2022-06-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Dear Richard,\n\nstandard Windows resources (RC files) don't allow to define childs of childs (grandchilds <!-- s;-) --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\";-)\" title=\"Wink\" /><!-- s;-) -->\n\nso you can only place a TScrollPanel on the resource and from the ON INIT of the dialog, place the checkboxes on the panel\n\nI think it may be easier if we use the samples/ownerdra.prg way...",
"time": "07:48",
"topic": "COMBOBOX Y CHECKBOX",
"username": "Antonio Linares"
}
] |
COMBOBOX Y CHECKBOX
|
[
{
"date": "2022-06-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":22j569fk]Dear Richard,\n\nstandard Windows resources (RC files) don't allow to define childs of childs (grandchilds <!-- s;-) --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\";-)\" title=\"Wink\" /><!-- s;-) -->\n\nso you can only place a TScrollPanel on the resource and from the ON INIT of the dialog, place the checkboxes on the panel\n\nI think it may be easier if we use the samples/ownerdra.prg way...[/quote:22j569fk]\n\nThanks a lot.",
"time": "13:03",
"topic": "COMBOBOX Y CHECKBOX",
"username": "richard-service"
}
] |
COMBOBOX Y CHECKBOX
|
[
{
"date": "2010-01-10",
"forum": "FiveWin para Harbour/xHarbour",
"text": "¿Hay alguna manera de alinear un COMBOBOX a la derecha?. A diferencia de GET, no veo la claúsula ALIGN. Lo he intentado con PICTURE, pero no lo consigo. \n\n¿Alguna idea?\n\nFeliz año nuevo a todos.",
"time": "08:08",
"topic": "COMBOBOX alineado a la derecha",
"username": "Manuel Valdenebro"
}
] |
COMBOBOX alineado a la derecha
|
[
{
"date": "2010-01-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola,\n\nrevisa setWindowLong, en el manual de FW y en San Google, yo intento cambiar la alineacion de un GET en tiempo de ejecucion y no lo he logrado\n\nsaludos\n\nMarcelo",
"time": "13:51",
"topic": "COMBOBOX alineado a la derecha",
"username": "Marcelo Via Giglio"
}
] |
COMBOBOX alineado a la derecha
|
[
{
"date": "2010-01-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Manuel,\n\nComo te indica Marcelo, prueba con:\n\nSetWindowLong( oComboBox:oGet:hWnd, GWL_STYLE, nOr( GetWindowLong( oComboBox:oGet:hWnd, GWL_STYLE ), ES_RIGHT ) )\n\nDebes hacerlo una vez el combobox tenga un hWnd válido (en caso de usar un diálogo, desde la claúsula ON INIT):\nACTIVATE DIALOG oDlg ON INIT ...",
"time": "18:56",
"topic": "COMBOBOX alineado a la derecha",
"username": "Antonio Linares"
}
] |
COMBOBOX alineado a la derecha
|
[
{
"date": "2010-01-13",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Muchas gracias Marcelo y Antonio. Lo probaré.",
"time": "05:07",
"topic": "COMBOBOX alineado a la derecha",
"username": "Manuel Valdenebro"
}
] |
COMBOBOX alineado a la derecha
|
[
{
"date": "2016-06-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola amigos nuevamente yo con problemas con combobox, les cuento, en workshop o pellec creo un combobox y luego lo llamo con mi programa.\n\n REDEFINE COMBOBOX aGets[14] VAR oPatente ITEMS aBus ID 104 OF oDlg WHEN lValue1 UPDATE\n\nle doy doy en largo que me muestre la informacion pero cuando la informacion es mucha el combobox no muestra lo que puse el workshop o pellec se agranda el combobox para arriba y para abajo.\n\nque podra ser\n\nsaluds",
"time": "15:45",
"topic": "COMBOBOX cambia posicion",
"username": "jbrita"
}
] |
COMBOBOX cambia posicion
|
[
{
"date": "2016-06-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Por favor copia aqui las líneas en donde defines el combobox en tu fichero RC",
"time": "22:30",
"topic": "COMBOBOX cambia posicion",
"username": "Antonio Linares"
}
] |
COMBOBOX cambia posicion
|
[
{
"date": "2016-06-25",
"forum": "FiveWin para Harbour/xHarbour",
"text": "ACA ESTA :\nRENDICION_ADM DIALOG 78, -23, 597, 353\nSTYLE DS_MODALFRAME | 0x4L | WS_POPUP | WS_VISIBLE | WS_SYSMENU\nFONT 7, \"MS Sans Serif\"\nLANGUAGE LANG_SPANISH, SUBLANG_SPANISH_MEXICAN\n{\n EDITTEXT 101, 116, 80, 41, 16, ES_MULTILINE | ES_UPPERCASE | WS_BORDER | WS_TABSTOP\n CONTROL \"\", 102, \"SysDateTimePick32\", 0 | WS_CHILD | WS_VISIBLE, 355, 77, 69, 15\n COMBOBOX 103, 145, 119, 285, 71, CBS_DROPDOWNLIST | CBS_DISABLENOSCROLL | WS_VSCROLL | WS_TABSTOP\n COMBOBOX 105, 325, 153, 107, 94, CBS_DROPDOWNLIST | WS_TABSTOP\n EDITTEXT 108, 119, 198, 303, 16, ES_MULTILINE | ES_UPPERCASE | WS_BORDER | WS_TABSTOP\n EDITTEXT 109, 116, 226, 86, 16, ES_MULTILINE | ES_UPPERCASE | WS_BORDER | WS_TABSTOP\n PUSHBUTTON \"&Aceptar\", 501, 178, 317, 91, 19\n PUSHBUTTON \"&Aceptar\", 502, 280, 316, 88, 20\n LTEXT \"\", 52, 72, 7, 324, 29\n LTEXT \"Fecha \", 2, 296, 80, 51, 13\n LTEXT \"Centro Costo:\", 3, 63, 120, 54, 13\n GROUPBOX \"\", -1, 48, 61, 391, 42, BS_GROUPBOX\n LTEXT \"Patente\", 4, 66, 158, 52, 13\n LTEXT \"Folio \", 1, 64, 83, 40, 13\n GROUPBOX \"\", -1, 47, 108, 391, 30, BS_GROUPBOX\n GROUPBOX \"\", -1, 47, 141, 391, 36, BS_GROUPBOX\n GROUPBOX \"\", -1, 46, 185, 391, 64, BS_GROUPBOX\n LTEXT \"Descripcion\", 8, 57, 198, 59, 14\n LTEXT \"$ Valor\", 9, 61, 228, 43, 13\n LTEXT \"Agencia\", 6, 270, 155, 45, 13\n COMBOBOX 104, 130, 155, 77, 145, CBS_DROPDOWNLIST | WS_TABSTOP\n\n REDEFINE COMBOBOX aGets[14] VAR oPatente ITEMS aBus ID 104 OF oDlg WHEN lValue1 UPDATE /\n\naca imagen:\n[url=https://postimg.org/image/lga3alv5j/:1beytwdt][img:1beytwdt]https://s31.postimg.org/lga3alv5j/combo_patente.png[/img:1beytwdt][/url:1beytwdt]",
"time": "18:42",
"topic": "COMBOBOX cambia posicion",
"username": "jbrita"
}
] |
COMBOBOX cambia posicion
|
[
{
"date": "2016-06-25",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Prueba a disminuir el valor 145. Por ejemplo usa 100\n\nCOMBOBOX 104, 130, 155, 77, 100, CBS_DROPDOWNLIST | WS_TABSTOP",
"time": "22:28",
"topic": "COMBOBOX cambia posicion",
"username": "Antonio Linares"
}
] |
COMBOBOX cambia posicion
|
[
{
"date": "2016-06-25",
"forum": "FiveWin para Harbour/xHarbour",
"text": "no funciona poniendo 100, aque se debe ese problema\nademas antonio este problema le pasa a todos los COMBOBOX (TODOS)\n\n\nsaludps",
"time": "22:59",
"topic": "COMBOBOX cambia posicion",
"username": "jbrita"
}
] |
COMBOBOX cambia posicion
|
[
{
"date": "2016-06-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Puedes probar el ejemplo samples\\combos.prg:\n\nbuildh.bat combos\n\ny comprobar si en ese ejemplo también funciona mal ?",
"time": "07:44",
"topic": "COMBOBOX cambia posicion",
"username": "Antonio Linares"
}
] |
COMBOBOX cambia posicion
|
[
{
"date": "2016-06-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "quedo perfecto ahora, saque la idea de ahi . muy amable por tu tiempo\n\nsaludos",
"time": "17:47",
"topic": "COMBOBOX cambia posicion",
"username": "jbrita"
}
] |
COMBOBOX cambia posicion
|
[
{
"date": "2014-10-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi, \nI get hsis error\n\nTime from start: 0 hours 0 mins 0 secs \n Error occurred at: 10/30/2014, 09:52:24\n Error description: Error BASE/2022 Argument error: ALLTRIM\n Args:\n [ 1] = D 01/01/2014\n\nStack Calls\n===========\n Called from: => ALLTRIM( 0 )\n Called from: .\\source\\classes\\COMBOBOX.PRG => (b)TCOMBOBOX:DEFAULT( 754 )\n Called from: => ASCAN( 0 )\n Called from: .\\source\\classes\\COMBOBOX.PRG => TCOMBOBOX:DEFAULT( 754 )\n Called from: .\\source\\classes\\COMBOBOX.PRG => TCOMBOBOX:INITIATE( 694 )\n Called from: => __OBJSENDMSG( 0 )\n Called from: => HB_EXECFROMARRAY( 0 )\n Called from: .\\source\\function\\HARBOUR.PRG => OSEND( 287 )\n Called from: => HB_EXECFROMARRAY( 0 )\n Called from: .\\source\\function\\HARBOUR.PRG => ASEND( 265 )\n Called from: .\\source\\classes\\DIALOG.PRG => TDIALOG:INITIATE( 631 )\n Called from: .\\source\\classes\\DIALOG.PRG => TDIALOG:HANDLEEVENT( 876 )\n Called from: => DIALOGBOXINDIRECT( 0 )\n Called from: .\\source\\classes\\DIALOG.PRG => TDIALOG:ACTIVATE( 274 )\n Called from: combo3d1.prg => MAIN( 15 )\n\nSource file\n\n[code=fw:39skyhe9]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><br /><br /><span style=\"color: #00C800;\">function</span> main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> oDlg, cCombo := ctod<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"01/03/2014\"</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> aItems := <span style=\"color: #000000;\">{</span> ctod<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"01/01/2014\"</span><span style=\"color: #000000;\">)</span>, ctod<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"01/03/2014\"</span><span style=\"color: #000000;\">)</span>, ctod<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"01/05/2014\"</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /><br />set cent <span style=\"color: #0000ff;\">on</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">FROM</span> <span style=\"color: #000000;\">2</span>, <span style=\"color: #000000;\">2</span> <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">18</span>, <span style=\"color: #000000;\">60</span> <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"Test\"</span> ;<br /> <span style=\"color: #0000ff;\">STYLE</span> nOr<span style=\"color: #000000;\">(</span> DS_MODALFRAME, WS_POPUP, WS_CAPTION, WS_SYSMENU, <span style=\"color: #000000;\">4</span> <span style=\"color: #000000;\">)</span><br /><br /> @ <span style=\"color: #000000;\">2</span>, <span style=\"color: #000000;\">2</span> <span style=\"color: #0000ff;\">COMBOBOX</span> cCombo <span style=\"color: #0000ff;\">ITEMS</span> aItems <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">200</span>, <span style=\"color: #000000;\">100</span><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">CENTERED</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> </div>[/code:39skyhe9]\n\nAny solution ?\n\nBest regards",
"time": "09:53",
"topic": "COMBOBOX dont work with array of dates ?",
"username": "avista"
}
] |
COMBOBOX dont work with array of dates ?
|
[
{
"date": "2014-10-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nuse a list of string for display the dates in combobox, when choose one of then, change CTOD(<choose date>) the selected date\n\nregards\n\nMarcelo",
"time": "12:33",
"topic": "COMBOBOX dont work with array of dates ?",
"username": "Marcelo Via Giglio"
}
] |
COMBOBOX dont work with array of dates ?
|
[
{
"date": "2014-10-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi, try it this way:\n local oDlg, cCombo := DtoC(ctod(\"01/03/2014\"))\n local aItems := { DtoC(ctod(\"01/01/2014\")), DtoC(ctod(\"01/03/2014\")), DtoC(ctod(\"01/05/2014\")) }\nRegards.",
"time": "02:25",
"topic": "COMBOBOX dont work with array of dates ?",
"username": "FranciscoA"
}
] |
COMBOBOX dont work with array of dates ?
|
[
{
"date": "2014-11-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "If I remember correctly, comboboxes only work with strings,",
"time": "16:43",
"topic": "COMBOBOX dont work with array of dates ?",
"username": "James Bott"
}
] |
COMBOBOX dont work with array of dates ?
|
[
{
"date": "2018-09-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola Amigos:\n\nEs posible poner un COMBOBOX en una BUTTONBAR?, algún ejemplo?\n\nSaludos",
"time": "02:10",
"topic": "COMBOBOX en BUTTONBAR?",
"username": "Armando"
}
] |
COMBOBOX en BUTTONBAR?
|
[
{
"date": "2018-09-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "algo viejito pero funcional\n\n[code=fw:d4my95v2]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"Arial Narrow\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">6</span>, <span style=\"color: #000000;\">18</span> BOLD<br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BRUSH</span> oBrs <span style=\"color: #0000ff;\">COLOR</span> VAL<span style=\"color: #000000;\">(</span>cColor<span style=\"color: #000000;\">)</span><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">ICON</span> oIco <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #000000;\">101</span><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">CURSOR</span> oMan <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"MANO\"</span><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\" \"</span>+ALLTRIM<span style=\"color: #000000;\">(</span>_Sig<span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\" //\"</span>+cTitle <span style=\"color: #0000ff;\">MENU</span> MenPri<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">ICON</span> oIco <span style=\"color: #0000ff;\">BRUSH</span> oBrs<br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTONBAR</span> oBar <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">48</span>,<span style=\"color: #000000;\">52</span> 3DLOOK TOP <span style=\"color: #0000ff;\">OF</span> oWnd <span style=\"color: #0000ff;\">CURSOR</span> oMan<br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"SALIR3\"</span> <span style=\"color: #0000ff;\">OF</span> oBar <span style=\"color: #0000ff;\">ACTION</span> oWnd:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> NOBORDER TOOLTIP OEMTOANSI<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\" Finalizar la ejecusi¢n \"</span>+CRLF+<span style=\"color: #ff0000;\">\" del Sistema... \"</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"IPC\"</span> <span style=\"color: #0000ff;\">OF</span> oBar GROUP <span style=\"color: #0000ff;\">ACTION</span> TablIPC<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> NOBORDER TOOLTIP OEMTOANSI<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\" Tabla principal del I.P.C. \"</span> +CRLF+<span style=\"color: #ff0000;\">\" Acumulado por los A¤os \"</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"ACTIVO\"</span> <span style=\"color: #0000ff;\">OF</span> oBar <span style=\"color: #0000ff;\">ACTION</span> Activos<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> NOBORDER TOOLTIP OEMTOANSI<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\" Crear, Modificar, Eliminar \"</span> +CRLF+<span style=\"color: #ff0000;\">\" C¢digos de Activo fijo \"</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"TABLA\"</span> <span style=\"color: #0000ff;\">OF</span> oBar <span style=\"color: #0000ff;\">ACTION</span> TablFac<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> NOBORDER TOOLTIP OEMTOANSI<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\" Muestra la Tabla de Factores \"</span>+CRLF+<span style=\"color: #ff0000;\">\" para la Correcci¢n Monetaria \"</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"TRASPA\"</span> <span style=\"color: #0000ff;\">OF</span> oBar <span style=\"color: #0000ff;\">ACTION</span> Calcula<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> NOBORDER TOOLTIP OEMTOANSI<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\" Calcular el periodo de Depreciaci¢n \"</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">MENU</span> oPopup <span style=\"color: #0000ff;\">POPUP</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> OEMTOANSI<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\" &Informe Ejercicio del Activo Fijo \"</span><span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">ACTION</span> Corrije<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">SEPARATOR</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> OEMTOANSI<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\" &Correcci¢n Monetaria meses anteriores \"</span><span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">ACTION</span> Monetar<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span><br /> <span style=\"color: #0000ff;\">MENU</span> yPopup <span style=\"color: #0000ff;\">POPUP</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> OEMTOANSI<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\" &Cierre Anual \"</span><span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">ACTION</span> CAnual1<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"LISTA\"</span> <span style=\"color: #0000ff;\">OF</span> oBar <span style=\"color: #0000ff;\">ACTION</span> PrinterSetup<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">MENU</span> oPopup NOBORDER <span style=\"color: #0000ff;\">MESSAGE</span> OEMTOANSI<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Configuraci¢n de Impresoras \"</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"CIERRE\"</span> <span style=\"color: #0000ff;\">OF</span> oBar GROUP <span style=\"color: #0000ff;\">ACTION</span> Mensual<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">MENU</span> yPopup NOBORDER TOOLTIP OEMTOANSI<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Cierre mensual de activos \"</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"AYUDA\"</span> <span style=\"color: #0000ff;\">OF</span> oBar GROUP <span style=\"color: #0000ff;\">ACTION</span> MsgBeep<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> NOBORDER<br /><br /> @ <span style=\"color: #000000;\">12</span>, <span style=\"color: #000000;\">500</span> <span style=\"color: #0000ff;\">COMBOBOX</span> oCbx <span style=\"color: #0000ff;\">VAR</span> cMes <span style=\"color: #0000ff;\">ITEMS</span> aMes <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">140</span>, <span style=\"color: #000000;\">100</span> <span style=\"color: #0000ff;\">PIXEL</span> <span style=\"color: #0000ff;\">OF</span> oBar <span style=\"color: #0000ff;\">COLOR</span> <span style=\"color: #ff0000;\">\"N/W*\"</span> <span style=\"color: #0000ff;\">FONT</span> oFont <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">CHANGE</span> TablaCALC<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> @ <span style=\"color: #000000;\">12</span>, <span style=\"color: #000000;\">650</span> <span style=\"color: #0000ff;\">COMBOBOX</span> oMox <span style=\"color: #0000ff;\">VAR</span> cAno <span style=\"color: #0000ff;\">ITEMS</span> aAno <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">80</span>, <span style=\"color: #000000;\">100</span> <span style=\"color: #0000ff;\">PIXEL</span> <span style=\"color: #0000ff;\">OF</span> oBar <span style=\"color: #0000ff;\">COLOR</span> <span style=\"color: #ff0000;\">\"N/W*\"</span> <span style=\"color: #0000ff;\">FONT</span> oFont <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">CHANGE</span> TablaCALC<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> oWnd:<span style=\"color: #000000;\">oBar</span>:<span style=\"color: #000000;\">bRClicked</span> = <span style=\"color: #000000;\">{</span> || <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Accion Cancelada...\"</span>,<span style=\"color: #ff0000;\">\" Propiedades \"</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /><br />SET <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #0000ff;\">OF</span> oWnd <span style=\"color: #0000ff;\">TO</span> _Ver+<span style=\"color: #ff0000;\">\" \"</span>+CURDRIVE<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\":<span style=\"color: #000000;\">\\.</span>\"</span>+_Bas KEYBOARD DATE TIME<br /><span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">MAXIMIZED</span> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">INIT</span> SysRefresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">VALID</span> MsgYesNo<span style=\"color: #000000;\">(</span>OEMTOANSI<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Terminar la Ejecuci¢n del Sistema ?\"</span><span style=\"color: #000000;\">)</span>,_Ver<span style=\"color: #000000;\">)</span><br /><br /> </div>[/code:d4my95v2]\n\nresultado\n\n[img:d4my95v2]http://i64.tinypic.com/2hojq05.jpg[/img:d4my95v2]\n\nsaludos",
"time": "12:56",
"topic": "COMBOBOX en BUTTONBAR?",
"username": "armando.lagunas"
}
] |
COMBOBOX en BUTTONBAR?
|
[
{
"date": "2018-09-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Tocayo:\n\nMuchas gracias, le voy a usar.\n\nSaludos",
"time": "14:33",
"topic": "COMBOBOX en BUTTONBAR?",
"username": "Armando"
}
] |
COMBOBOX en BUTTONBAR?
|
[
{
"date": "2019-07-25",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola amigos:\nComo puedo implementar un COMBOBOX en una celda en cada file de xBrowse ?\nGracias",
"time": "22:52",
"topic": "COMBOBOX en file de xBrowse",
"username": "Willi Quintana"
}
] |
COMBOBOX en file de xBrowse
|
[
{
"date": "2019-07-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "oCol:nEditType := EDIT_LISTBOX\noCol:aEditListTxt = { \"One\", \"Two\", \"Three\" }",
"time": "00:44",
"topic": "COMBOBOX en file de xBrowse",
"username": "nageswaragunupudi"
}
] |
COMBOBOX en file de xBrowse
|
[
{
"date": "2019-07-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Buenas noches, gracias por contestar, y cono hago para asignar el valor del combobox seleccionado a la variable del BROWSE. trabajo con arreglos.\nGRacias",
"time": "03:16",
"topic": "COMBOBOX en file de xBrowse",
"username": "Willi Quintana"
}
] |
COMBOBOX en file de xBrowse
|
[
{
"date": "2019-07-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "The selected variable is automatically assigned by the xbrowse.",
"time": "03:26",
"topic": "COMBOBOX en file de xBrowse",
"username": "nageswaragunupudi"
}
] |
COMBOBOX en file de xBrowse
|
[
{
"date": "2019-07-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Thanks!,\nHow do I get the selected combobox value to show it?\nregards.",
"time": "22:46",
"topic": "COMBOBOX en file de xBrowse",
"username": "Willi Quintana"
}
] |
COMBOBOX en file de xBrowse
|
[
{
"date": "2018-01-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Create a GET COMBOBOX using a .dbf VAR, with a field size of 10\nFor the dropdown, create a list of items of various lengths.\nSelect, or type in, a long item that nearly fills the field: ie. HAPPYDAYS\nSave the value\nNow select a shorter value from the list, ie. SHORT\nSave the selection.\n\nThe field does not erase the original saved value, but simply does a letter by letter replacement\nThus the value you now see is: SHORTDAYS\n\nThis is using 17.12",
"time": "23:29",
"topic": "COMBOBOX issue",
"username": "TimStone"
}
] |
COMBOBOX issue
|
[
{
"date": "2018-01-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim,\n\nok, we are reviewing it\n\nmany thanks for your feedback",
"time": "07:52",
"topic": "COMBOBOX issue",
"username": "Antonio Linares"
}
] |
COMBOBOX issue
|
[
{
"date": "2012-06-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Antonio,\nI have problems with comboMetro.\nAlthough I have no blank field inside the array which I display in a comboMetro the combobox shows blank rows.\nPlease see the attached screenshot.\nPlease can you help me. \nThanks In advance,\nOtto\n[img:135mm2va]http://www.atzwanger-software.com/fw/combo8.jpg[/img:135mm2va]",
"time": "17:48",
"topic": "COMBOBOX metro",
"username": "Otto"
}
] |
COMBOBOX metro
|
[
{
"date": "2012-06-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto,\n\nPlease post the source code for that combobox in your app, thanks",
"time": "18:07",
"topic": "COMBOBOX metro",
"username": "Antonio Linares"
}
] |
COMBOBOX metro
|
[
{
"date": "2012-06-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Antonio,\nI use comboMetro of FWH. \nI noticed that comboMetro is working correctly if the upper and lower border are inside the parent window.\nIf not there are on the side which is opposite to the side which is outside the parent window blank lines.\nBest regards,\nOtto\n\n\n[code=fw:h5v82nar]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <span style=\"color: #00C800;\">local</span> aBilanz:= <span style=\"color: #000000;\">{</span><span style=\"color: #ff0000;\">\"01\"</span>,;<br /> <span style=\"color: #ff0000;\">\"02\"</span>,;<br /> <span style=\"color: #ff0000;\">\"03\"</span>,;<br /> <span style=\"color: #ff0000;\">\"04\"</span>,;<br /> <span style=\"color: #ff0000;\">\"05\"</span>,;<br /> <span style=\"color: #ff0000;\">\"06\"</span>,;<br /> <span style=\"color: #ff0000;\">\"07\"</span>,;<br /> <span style=\"color: #ff0000;\">\"08\"</span>,;<br /> <span style=\"color: #ff0000;\">\"09\"</span>,;<br /> <span style=\"color: #ff0000;\">\"10\"</span>,;<br /> <span style=\"color: #ff0000;\">\"11\"</span>,;<br /> <span style=\"color: #ff0000;\">\"12\"</span>,;<br /> <span style=\"color: #ff0000;\">\"13\"</span>,;<br /> <span style=\"color: #ff0000;\">\"14\"</span>,;<br /> <span style=\"color: #ff0000;\">\"15\"</span>,;<br /> <span style=\"color: #ff0000;\">\"16\"</span>,;<br /> <span style=\"color: #ff0000;\">\"17\"</span>,;<br /> <span style=\"color: #ff0000;\">\"18\"</span>,;<br /> <span style=\"color: #ff0000;\">\"19\"</span>,;<br /> <span style=\"color: #ff0000;\">\"20\"</span><span style=\"color: #000000;\">}</span><br /> <br /> @ <span style=\"color: #000000;\">10</span>,<span style=\"color: #000000;\">10</span> ;<br /> COMBOMETRO oCbxGliederung ;<br /> <span style=\"color: #0000ff;\">VAR</span> nVarGliederung ;<br /> <span style=\"color: #0000ff;\">PROMPTS</span> aBilanz ;<br /> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">80</span>/<span style=\"color: #000000;\">2.05</span>, <span style=\"color: #000000;\">25</span>/<span style=\"color: #000000;\">2.05</span> ;<br /> <span style=\"color: #0000ff;\">OF</span> oDlg ;<br /> <span style=\"color: #0000ff;\">PIXEL</span>;<br /> <span style=\"color: #0000ff;\">COLOR</span> CLR_GRAY, CLR_WHITE<br /> </div>[/code:h5v82nar]\n\n[img:h5v82nar]http://www.atzwanger-software.com/fw/combo8A.jpg[/img:h5v82nar]\n\n[img:h5v82nar]http://www.atzwanger-software.com/fw/combo8B.jpg[/img:h5v82nar]",
"time": "18:32",
"topic": "COMBOBOX metro",
"username": "Otto"
}
] |
COMBOBOX metro
|
[
{
"date": "2012-06-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "The interface is designed so that always the highlighted item is displayed exactly in the same position as the original control. When the topmost item ( \"01\" ) is highlighted, this item is shown at the same position of the control and blank space is shown above this item. Same way when the last item is shown the space below is displayed blank.\n\nBut in any case, the user can not navigate in to the blank space or can select a blank item.\n\nIf you feel the design should be different, please indicate.",
"time": "20:09",
"topic": "COMBOBOX metro",
"username": "nageswaragunupudi"
}
] |
COMBOBOX metro
|
[
{
"date": "2012-06-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Mr. Rao,\nThank you for you answer.\nI looked into WINDOWS 8 Setup and made some tests with comboboxes. There are no blank lines shown.\nI think we should change this.\nBest regards,\nOtto",
"time": "22:11",
"topic": "COMBOBOX metro",
"username": "Otto"
}
] |
COMBOBOX metro
|
[
{
"date": "2012-07-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Is someone working with this class and can confirm this behavior?\nBest regards,\nOtto",
"time": "21:14",
"topic": "COMBOBOX metro",
"username": "Otto"
}
] |
COMBOBOX metro
|
[
{
"date": "2009-09-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello!\n\nredefine combobox items doesn't show if .rc commented this line:\n\n[code=fw:okyusxhs]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> <span style=\"color: #B900B9;\">//1 24 \"WindowsXP.Manifest\"</span><br /> </div>[/code:okyusxhs]\n\nwith:\n[code=fw:okyusxhs]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">24</span> <span style=\"color: #ff0000;\">\"WindowsXP.Manifest\"</span><br /> </div>[/code:okyusxhs]\n\ncombobox properly shows.\n\nAny idea why?\n\n..Using xHB1.21 + FWH9.08",
"time": "06:21",
"topic": "COMBOBOX odd behavior on themed app",
"username": "fraxzi"
}
] |
COMBOBOX odd behavior on themed app
|
[
{
"date": "2006-04-28",
"forum": "FiveWin for Pocket PC",
"text": "How can I Refresh() Combobox with function Inv_Nasta2()\n\nTnx, Darjo\n\n[code:37oearjs]#include \"FWCE.ch\"\n\nFUNCTION Main()\nPRIVATE ocbNah\n\n arrNahaja:={'1a','1b','1c'}\n STORE 1 TO cIzbPe,cIzbNah\n \n DEFINE WINDOW owInv\n @ 93,0 SAY 'Main:' PIXEL\n @ 108,0 COMBOBOX cIzbPe ITEMS {'001','002'} PIXEL SIZE 240,200 ON CHANGE Inv_Nasta2()\n @ 135,0 SAY 'Sub:' PIXEL\n @ 150,0 COMBOBOX ocbNah VAR cIzbNah ITEMS arrNahaja PIXEL SIZE 240,200\n ACTIVATE WINDOW owInv\nreturn nil\n\n\n********************************\nFUNCTION Inv_Nasta2()\n********************************\narrNahaja:=array(0)\narrNahaja:={'2a','2b'}\nocbNah:Refresh() && why does it not work ???\nRETURN (.t.)\n\n[/code:37oearjs]",
"time": "11:26",
"topic": "COMBOBOX refresh",
"username": "remecd"
}
] |
COMBOBOX refresh
|
[
{
"date": "2006-04-28",
"forum": "FiveWin for Pocket PC",
"text": "Darjo,\n\n******************************** \nFUNCTION Inv_Nasta2() \n******************************** \narrNahaja:=array(0) \narrNahaja:={'2a','2b'} \nocb:SetItems( arrNahaja )\nocbNah:Refresh()\nRETURN (.t.)",
"time": "12:22",
"topic": "COMBOBOX refresh",
"username": "Antonio Linares"
}
] |
COMBOBOX refresh
|
[
{
"date": "2022-11-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I thought this was addressed earlier with a simple solution. I can write code to \"make it happen\" but if it is already addressed with FWH, I would like to use it:\n\nField 1 is a title\nField 2 is a description.\nBoth are in a database\nI want to read them into a 2 element array.\nThen, using a combobox ( or listbox ), I want the first element ( field 1 ) to be the items \nWhen an item is selected ( ON CHANGE ), I want the value in the second element to be assigned to a variable used in a separate GET ( for editing ).\n\nI thought this was addressed in the forum, and code, previously, but I can't find it.\n\nCurrently I assign the values to 2 arrays, use the first to select the title, and knowing it's position, I load the corresponding value from the second array into the variable. That has been my procedure in the past but I \"think\" a more direct approach was shared previously.\n\nAny thoughts will be helpful. Thanks.",
"time": "02:31",
"topic": "COMBOBOX with 2 element array",
"username": "TimStone"
}
] |
COMBOBOX with 2 element array
|
[
{
"date": "2022-11-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Tim,\n\nHere you have what we recently did:\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?p=252389&sid=daf03f16b17c5b26d15d18e6316a6c28#p252389\">viewtopic.php?p=252389&sid=daf03f16b17c5b26d15d18e6316a6c28#p252389</a><!-- l -->",
"time": "08:02",
"topic": "COMBOBOX with 2 element array",
"username": "Antonio Linares"
}
] |
COMBOBOX with 2 element array
|
[
{
"date": "2022-11-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr. Tim\nThat is what DBCOMBO is supposed to do\nPlease look for samples of DBCOMBO",
"time": "11:24",
"topic": "COMBOBOX with 2 element array",
"username": "nageswaragunupudi"
}
] |
COMBOBOX with 2 element array
|
[
{
"date": "2022-11-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I looked at the other posts, and also studied dbcombo. Those were really more complex then I need.\n\n[code=fw:3fx5ma7z]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">COMBOBOX</span> oCbxA1 <span style=\"color: #0000ff;\">VAR</span> cScript <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">106</span> <span style=\"color: #0000ff;\">OF</span> oeText ;<br /> <span style=\"color: #0000ff;\">ITEMS</span> aSMScode <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">CHANGE</span> <span style=\"color: #000000;\">(</span> lx := oCbxA1:<span style=\"color: #000000;\">nAt</span>, cBody := aSMStext<span style=\"color: #000000;\">[</span>lx<span style=\"color: #000000;\">]</span>, oGet1:<span style=\"color: #0000ff;\">refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Select a script\"</span> <span style=\"color: #0000ff;\">STYLE</span> CBS_DROPDOWN <span style=\"color: #0000ff;\">UPDATE</span><br /> <br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">GET</span> oGet1 <span style=\"color: #0000ff;\">VAR</span> cBody MEMO <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">103</span> <span style=\"color: #0000ff;\">OF</span> oeText <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Enter the text of your message\"</span> <span style=\"color: #0000ff;\">UPDATE</span><br /> </div>[/code:3fx5ma7z]\n\nI took the DBF, and put the first field in the array aSMScode, and the second field in aSMStext.\nThis code takes the selected item in the dropdown, and looks at the corresponding element in the second array. It takes that 2nd array value and puts it into cBody which is the text to be used, or edited.\n\nThis works exactly as I wanted. It's not complex. I just thought we could perhaps use an array of 2 element arrays. That doesn't appear to be how dbcombo works either. \n\nThanks.",
"time": "02:50",
"topic": "COMBOBOX with 2 element array",
"username": "TimStone"
}
] |
COMBOBOX with 2 element array
|
[
{
"date": "2007-01-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I want to store '[b:1cg4mu1k]L[/b:1cg4mu1k]', '[b:1cg4mu1k]A[/b:1cg4mu1k]' or '[b:1cg4mu1k]O[/b:1cg4mu1k]' in a (1 character) database field called MAIL_CAT (Mail category = [b:1cg4mu1k]L[/b:1cg4mu1k]ocal, [b:1cg4mu1k]A[/b:1cg4mu1k]frican, [b:1cg4mu1k]O[/b:1cg4mu1k]verseas)\n\nBut I want to use a Combobox so the user can only make a valid choice, but I only want to store the first letter ie. L, A, or O in the database.\n\nREDEFINE COMBOBOX oDBF:MAIL_CAT ITEMS {\"Local\", \"African\", \"Overseas\" } ID 4012 OF oDLG\n\n... doesn't do it.\n\nIs there a way the screen can show 'Overseas' when it sees 'O' in the database field? How?",
"time": "21:07",
"topic": "COMBOBOX with oDBF",
"username": "Ollie"
}
] |
COMBOBOX with oDBF
|
[
{
"date": "2007-01-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Use a DBCombo. See \\samples\\testdbc1.prg for an example.",
"time": "21:22",
"topic": "COMBOBOX with oDBF",
"username": "James Bott"
}
] |
COMBOBOX with oDBF
|
[
{
"date": "2007-01-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks.\n\nI have this code:\n\nREDEFINE DBCOMBO oDBF:MAIL_CAT ID 4012 ;\n items {\"L\",\"A\",\"O\"} ;\n list {\"Local\",\"African\",\"Overseas\"} ;\n of oFld:aDialogs[ 1 ] UPDATE\n\nBut the compiler gives a \"parse error at 'DBCOMBO' what am I doing wrong?",
"time": "21:41",
"topic": "COMBOBOX with oDBF",
"username": "Ollie"
}
] |
COMBOBOX with oDBF
|
[
{
"date": "2007-01-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "#include \"dbcombo.ch\"",
"time": "21:58",
"topic": "COMBOBOX with oDBF",
"username": "James Bott"
}
] |
COMBOBOX with oDBF
|
[
{
"date": "2007-01-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "That did it. EXCELLENT !!! Thanks.",
"time": "22:11",
"topic": "COMBOBOX with oDBF",
"username": "Ollie"
}
] |
COMBOBOX with oDBF
|
[
{
"date": "2011-06-15",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola a todos,\n\n¿Cómo puedo gestionar que cuando un COMBOBOX tiene el foco, si pulso la tecla ESC haga 'algo'?\n\nYa lo pregunté hace días pero no tuve éxito, a ver si ahora....\n\nGracias",
"time": "18:01",
"topic": "COMBOBOX y ESC",
"username": "FiveWiDi"
}
] |
COMBOBOX y ESC
|
[
{
"date": "2011-06-15",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Fivewidi,\n\nprueba asi:\n\noCbx:bKeydown := {|nKey| if(nKey==27, msginfo(\"presiono Esc\"),)} \nó asi:\noCbx:bKeydown := {|| if(GETKEYSTATE(VK_ESC),\"msginfo(\"presiono Esc\"),)}\nespero te ayude\nsaludos\npaco",
"time": "23:56",
"topic": "COMBOBOX y ESC",
"username": "Francisco Horta"
}
] |
COMBOBOX y ESC
|
[
{
"date": "2011-03-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola a todos,\n\nEstoy intentando que cuando un COMBOBOX de una MDICHILD tenga el foco pueda cerrar la ventana pulsando la tecla VK_ESCAPE, y no lo consigo.\n\nEstoy probando haciendo esto:\n\noTitulari:bKeyDown := {| nKey , nflags | If( nKey = VK_ESCAPE, oDomici10:End(), Nil ) }\n\ny esto otro:\n\noTitulari:bKeyChar := {| nKey , nflags | If( nKey = VK_ESCAPE, oDomici10:End(), Nil ) }\n\ny no hay manera; no quiere cerrar la ventana.\n\nCómo lo harían ustedes?\n\nGracias.",
"time": "18:16",
"topic": "COMBOBOX y VK_ESCAPE",
"username": "FiveWiDi"
}
] |
COMBOBOX y VK_ESCAPE
|
[
{
"date": "2011-03-09",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Nadie sabe cómo hacerlo?\n\nBueno encenderé unas velas...\n\nGracias.",
"time": "21:56",
"topic": "COMBOBOX y VK_ESCAPE",
"username": "FiveWiDi"
}
] |
COMBOBOX y VK_ESCAPE
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.