messages listlengths 1 1 | topic stringlengths 2 60 |
|---|---|
[
{
"date": "2006-03-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr.Jeff\n\nHere is the solution.\n\n\n@ 1,1 BUTTON oBtnLap PROMPT \"LAP + (\"+alltrim(str(nLapCounter))+\")\" SIZE 50,25 of oDlg1 FONT oFontSmall UPDATE Action (nLapCounter++, TONE(440,1),oBtnLap:SetText(\"LAP (\"+alltrim(str(nCou... | BUTTON question |
[
{
"date": "2006-03-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks Ramesh \n\nWorks perfectly <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) --> \n\n\nJeff",
"time": "16:42",
"topic": "BUTTON question",
"username": "Jeff Barnes"
... | BUTTON question |
[
{
"date": "2006-06-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Everybody,\n\nIs there any way to have more than one line of text on a button?\n\n\nThanks,\n\nJeff",
"time": "19:03",
"topic": "BUTTON question",
"username": "Jeff Barnes"
}
] | BUTTON question |
[
{
"date": "2006-06-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This is a working sample:\n\n[code:as5o0wi0]#include \"Fivewin.ch\"\n\n\n#define CR CHR( 13 )\n\n#define BS_MULTILINE 8192\n\n\nFUNCTION MAIN()\n\n LOCAL oDlg, oBtn\n\n DEFINE DIALOG oDlg\n\n @ 1, 1 BU... | BUTTON question |
[
{
"date": "2006-08-28",
"forum": "FiveWin for Pocket PC",
"text": "Dear Antonio,\n\n1. BUTTON class does still support CRLF for seperate line?\n2. BUTTON Caption can define left alignment?\n\nBest regards,\nDutch",
"time": "07:09",
"topic": "BUTTON question?",
"username": "dutch"
}
] | BUTTON question? |
[
{
"date": "2006-08-28",
"forum": "FiveWin for Pocket PC",
"text": "Dutch,\n\n> 1. BUTTON class does still support CRLF for seperate line? \n\nOnly if you use it from resource and you use this style:\n#define BS_MULTILINE 1024\n\n> 2. BUTTON Caption can define left alignment? \n\nSame as above but... | BUTTON question? |
[
{
"date": "2006-08-28",
"forum": "FiveWin for Pocket PC",
"text": "Even from code:\n\n[code:1lg0xhic]#include \"Fivewin.ch\"\n\n\n#define CR CHR( 13 )\n\n#define BS_MULTILINE 8192\n\n\nFUNCTION MAIN()\n\n LOCAL oDlg, oBtn\n\n DEFINE DIALOG oDlg\n\n @ 1, 1 BUTTON oBtn PROMPT ... | BUTTON question? |
[
{
"date": "2006-08-28",
"forum": "FiveWin for Pocket PC",
"text": "Ops, sorry, I wasn't aware that this is the FWPCC forum. But maybe it could still work.\n\nEMG",
"time": "10:43",
"topic": "BUTTON question?",
"username": "Enrico Maria Giordano"
}
] | BUTTON question? |
[
{
"date": "2006-08-28",
"forum": "FiveWin for Pocket PC",
"text": "It works with DIALOGs but not with WINDOWs and I don't know why:\n\n[code:3s666716]#include \"Fwce.ch\"\n\n\n#define BS_MULTILINE 8192\n\n\nFUNCTION MAIN()\n\n LOCAL oDlg, oBtn\n\n DEFINE DIALOG oDlg\n\n @ 1, 1 BUTTO... | BUTTON question? |
[
{
"date": "2006-08-28",
"forum": "FiveWin for Pocket PC",
"text": "Dear Antonio&Enrico,\n\nIt works perfect now. \n\n#define BS_MULTILINE 8192 and CR CHR(13)\n\nBest regards,\nDutch",
"time": "12:05",
"topic": "BUTTON question?",
"username": "dutch"
}
] | BUTTON question? |
[
{
"date": "2006-08-28",
"forum": "FiveWin for Pocket PC",
"text": "Enrico,\n\n> It works with DIALOGs but not with WINDOWs and I don't know why: \n\nBecause in dialogs, the control style is used when building the dialog.\n\nIn a window, the window already exists and the control is created later on.",
... | BUTTON question? |
[
{
"date": "2006-08-28",
"forum": "FiveWin for Pocket PC",
"text": "I already tried with WINDOW and ON INIT clause to no avail.\n\nEMG",
"time": "12:41",
"topic": "BUTTON question?",
"username": "Enrico Maria Giordano"
}
] | BUTTON question? |
[
{
"date": "2006-08-28",
"forum": "FiveWin for Pocket PC",
"text": "Enrico,\n\nIn a window it may work using SetWindowLong( oButton:hWnd, GWL_STYLE, nOr( GetWindowLong( oButton:hWnd, GWL_STYLE ), BS_... ) )",
"time": "12:44",
"topic": "BUTTON question?",
"username": "Antonio Linares"
}
] | BUTTON question? |
[
{
"date": "2006-08-28",
"forum": "FiveWin for Pocket PC",
"text": "Confirmed!\n\n[code:6rzn7df0]#include \"Fwce.ch\"\n\n\n#define GWL_STYLE -16\n#define BS_MULTILINE 8192\n\n\nFUNCTION MAIN()\n\n LOCAL oWnd, oBtn\n\n DEFINE WINDOW oWnd\n\n @ 1, 1 BUTTON oBtn PROMPT \"&Close\" + CHR&... | BUTTON question? |
[
{
"date": "2006-08-28",
"forum": "FiveWin for Pocket PC",
"text": "Dear Antonio&Enrico,\n\nThis code does not work.\n\noBtn:nStyle := NOR( oBtn:nStyle, BS_LEFTTEXT )\n\nBest regards,\nDutch",
"time": "13:03",
"topic": "BUTTON question?",
"username": "dutch"
}
] | BUTTON question? |
[
{
"date": "2006-08-28",
"forum": "FiveWin for Pocket PC",
"text": "Dutch,\n\nPlease try it as Enrico's sample code.",
"time": "13:11",
"topic": "BUTTON question?",
"username": "Antonio Linares"
}
] | BUTTON question? |
[
{
"date": "2006-08-29",
"forum": "FiveWin for Pocket PC",
"text": "Dear Antonio,\n\nCan I change oBtn:cCaption that create from source code in FWPPC. In FW/Clipper I do it from Resource and change :cCaption and :Refresh(). It works ok but I try with FWPPC. It doesn't change.\n\noBtn:cCaption := 'Next... | BUTTON question? |
[
{
"date": "2006-08-29",
"forum": "FiveWin for Pocket PC",
"text": "Dutch,\n\nTry this:\n\noBtn:SetText( \"Next Caption\" )",
"time": "13:36",
"topic": "BUTTON question?",
"username": "Antonio Linares"
}
] | BUTTON question? |
[
{
"date": "2006-08-29",
"forum": "FiveWin for Pocket PC",
"text": "Dear Antonio,\n\nIt works perfect now. \n\nThanks&Regards,\nDutch",
"time": "18:43",
"topic": "BUTTON question?",
"username": "dutch"
}
] | BUTTON question? |
[
{
"date": "2011-09-28",
"forum": "All products support",
"text": "Ciao Enrico e a tutti e ben tornati....\n\nho un problemino, per te piccolo:\n\nho sostituito in un programma le BUTTON con le BTNBMP poiche' potevo colorarle ed erano piu' carine.\nHo notato pero' che il relativo btnbmp non funziona in ... | BUTTON vs BTNBMP |
[
{
"date": "2011-09-28",
"forum": "All products support",
"text": "Compilando il tuo esempio ottengo:\n\n[code=fw:2uozaz2s]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">test.prg<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">19</span><span style=\"color: #000... | BUTTON vs BTNBMP |
[
{
"date": "2011-10-04",
"forum": "All products support",
"text": "Quindi non e' possibile uscire da una dialog con un bottone BTNBMP ?\n\nGRAZIE",
"time": "09:02",
"topic": "BUTTON vs BTNBMP",
"username": "Romeo"
}
] | BUTTON vs BTNBMP |
[
{
"date": "2011-10-04",
"forum": "All products support",
"text": "Certo che è possibile: basta mettere\n\n[code=fw:1h53v7ha]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #0000ff;\">ACTION</span> oDlg:<span style=\"color: #000000;\">End</span><span style=\"color: #0... | BUTTON vs BTNBMP |
[
{
"date": "2011-10-04",
"forum": "All products support",
"text": "A RIECCOTI L'ESEMPIO MODIFICATO E NON MI FUNZIONA, cioe' non riesco ad uscire con il campo vuoto, clikkando sul bottone:\nTi ho anche mandato il file EXE (zippato) in mail.\n***************\n*\n#include \"FiveWin.ch\"\n*\nfunction Main()... | BUTTON vs BTNBMP |
[
{
"date": "2011-10-04",
"forum": "All products support",
"text": "Sì, ora ho capito cosa intendevi. No, che io sappia non esiste la clausola CANCEL per i BTNBMP e quindi non puoi uscire da una dialog se c'è un campo obbligatiorio non riempito.\n\nEMG",
"time": "09:28",
"topic": "BUTTON vs BTNBMP... | BUTTON vs BTNBMP |
[
{
"date": "2011-10-04",
"forum": "All products support",
"text": "Sigh !!\n\nTks",
"time": "09:29",
"topic": "BUTTON vs BTNBMP",
"username": "Romeo"
}
] | BUTTON vs BTNBMP |
[
{
"date": "2011-10-04",
"forum": "All products support",
"text": "Magari c'è qualche escamotage che a me non viene in mente. Prova a chiedere nel forum in inglese.\n\nEMG",
"time": "09:47",
"topic": "BUTTON vs BTNBMP",
"username": "Enrico Maria Giordano"
}
] | BUTTON vs BTNBMP |
[
{
"date": "2011-10-04",
"forum": "All products support",
"text": "ok",
"time": "09:49",
"topic": "BUTTON vs BTNBMP",
"username": "Romeo"
}
] | BUTTON vs BTNBMP |
[
{
"date": "2011-10-21",
"forum": "All products support",
"text": "Prova ad aggiungere questa riga dopo il controllo BTNBMP \n\n[code=fw:2m4ig0qf]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> @<span style=\"color: #000000;\">90</span>,<span style=\"color: #000000;\">10</span> <s... | BUTTON vs BTNBMP |
[
{
"date": "2007-10-25",
"forum": "FiveWin para Harbour/xHarbour",
"text": "@ nRow, nCol BUTTON \"mi Boton\" \n\n quiero que salga \"mi Boton\" en negro con fondo Rojo. Como hago ?\n o que comando utilzo ?",
"time": "20:09",
"topic": "BUTTON, como cambio el color de fondo y de texto",... | BUTTON, como cambio el color de fondo y de texto |
[
{
"date": "2007-11-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Tienes que usar BTNBMP en vez de BUTTON:\n\n@ nRow, nCol BTNBMP oBtn PROMPT \"mi Boton\" ...\n\noBtn:SetColor( ..., ... )",
"time": "07:41",
"topic": "BUTTON, como cambio el color de fondo y de texto",
"username": "An... | BUTTON, como cambio el color de fondo y de texto |
[
{
"date": "2022-05-22",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola a todos\n\nEstoy tratando de poner un tooltip en un button sin bmp/png, pero no lo consigo.\n\nHe probado así:\n\n @190,102 BUTTON \"Ver petición\" OF oDlg SIZE 43,10 PIXEL ACTION VERPETICION(CRUTA,CCODIGO,CAPUNTE);\n TOOL... | BUTTON... TOOLTIP SIN BTNBMP [SOLUCIONADO] |
[
{
"date": "2022-05-22",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ramón,\n\nEl wiki lo hemos migrado a:\n\n[url:1cgs7voy]https://github.com/FiveTechSoft/FiveTech_wiki[/url:1cgs7voy]",
"time": "19:19",
"topic": "BUTTON... TOOLTIP SIN BTNBMP [SOLUCIONADO]",
"username": "Antoni... | BUTTON... TOOLTIP SIN BTNBMP [SOLUCIONADO] |
[
{
"date": "2022-05-22",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias, Antonio\n\nUn saludo",
"time": "19:36",
"topic": "BUTTON... TOOLTIP SIN BTNBMP [SOLUCIONADO]",
"username": "Ramón J."
}
] | BUTTON... TOOLTIP SIN BTNBMP [SOLUCIONADO] |
[
{
"date": "2022-05-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[code=fw:3dxxu111]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> @<span style=\"color: #000000;\">190</span>,<span style=\"color: #000000;\">102</span> <span style=\"color: #0000ff;\">BUTTON</s... | BUTTON... TOOLTIP SIN BTNBMP [SOLUCIONADO] |
[
{
"date": "2022-05-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias, João, pero así tampoco funcionaba. Lo he solucionado poniendo PROMPT. Así ya funciona.\n\nMira:\n\n[code=fw:31wjvydr]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">?<span style=\"color: #00D7D7;\">#inclu... | BUTTON... TOOLTIP SIN BTNBMP [SOLUCIONADO] |
[
{
"date": "2006-08-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\n\nHow do I do to change the image of the button?\n\n[img:1cmm1sr5]http://www.mpc.com.br/sysfar/teste/obar.jpg[/img:1cmm1sr5]\n\nClemerson",
"time": "22:14",
"topic": "BUTTONBAR",
"username": "c... | BUTTONBAR |
[
{
"date": "2006-08-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Clemerson,\n\noButtonBar:aControls[ 3 ]:FreeBitmaps()\noButtonBar:aControls[ 3 ]:LoadBitmaps( <cResName>,, [<cBmpFile>] )\noButtonBar:aControls[ 3 ]:Refresh()",
"time": "05:40",
"topic": "BUTTONBAR",
"username": "Anton... | BUTTONBAR |
[
{
"date": "2006-08-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":3evh9zyx]Clemerson,\n\noButtonBar:aControls[ 3 ]:FreeBitmaps()\noButtonBar:aControls[ 3 ]:LoadBitmaps( <cResName>,, [<cBmpFile>] )\noButtonBar:aControls[ 3 ]:Refresh()[/quote:3evh9zyx]\n\nAntonio/Clemers... | BUTTONBAR |
[
{
"date": "2006-08-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Clemerson,\n\nIt looks like you have a button you want in an up or down state. I believe you can define two bitmaps when you define the button, then use the oBtn:toogle() to change the state of the button, and the bitmap will chan... | BUTTONBAR |
[
{
"date": "2006-08-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "thank you ...\n\nClemerson",
"time": "18:32",
"topic": "BUTTONBAR",
"username": "clemerson"
}
] | BUTTONBAR |
[
{
"date": "2023-05-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It possibile have the border only on bottom and not on top ?",
"time": "09:24",
"topic": "BUTTONBAR BORDER",
"username": "Silvio.Falconi"
}
] | BUTTONBAR BORDER |
[
{
"date": "2023-05-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Silvio,\n\n[quote:29mb7w70]It possibile have the border only on bottom and not on top ?[/quote:29mb7w70]\n\nMaybe the solution You are looking for ?\nYou can use any colour, pensize or transparent level.\n\n[img:29mb7w70]htt... | BUTTONBAR BORDER |
[
{
"date": "2012-06-13",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola amigos\n\nComo se hace para que la barra del BUTTONBAR no se pueda mover pulsando boton derecho.\n\nGracias por la ayuda\n\nSaludos,\n\nAdhemar",
"time": "17:55",
"topic": "BUTTONBAR Estatico",
"username": "acuel... | BUTTONBAR Estatico |
[
{
"date": "2012-06-13",
"forum": "FiveWin para Harbour/xHarbour",
"text": "oToolBar:bRClicked := {|| TRUE }\n oToolBar:bLClicked := {|| TRUE }\n\n[code=fw:mwbzgs5p]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\... | BUTTONBAR Estatico |
[
{
"date": "2012-06-13",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias Carlos.\n\nFuncionó perfecto.\n\nSaludos,\n\nAdhemar",
"time": "18:31",
"topic": "BUTTONBAR Estatico",
"username": "acuellar"
}
] | BUTTONBAR Estatico |
[
{
"date": "2012-06-13",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Tambien puedes usar oBAR:bRClicked := {|| NIL }\nsaludos... <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: -->",
"time": "21:58",
"topic": "BUTTONBAR Estatico... | BUTTONBAR Estatico |
[
{
"date": "2012-06-13",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias. Jose luis\n\nSaludos,\n\nAdhemar",
"time": "23:00",
"topic": "BUTTONBAR Estatico",
"username": "acuellar"
}
] | BUTTONBAR Estatico |
[
{
"date": "2007-10-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Office 2007 style\n\nIf there is a menu attached on a botton the open files tor the popup menu is too small.\nRegards,\nOtto",
"time": "23:38",
"topic": "BUTTONBAR RIGHT",
"username": "Otto"
}
] | BUTTONBAR RIGHT |
[
{
"date": "2007-10-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Will there be a solution?\nRegards,\nOtto",
"time": "18:12",
"topic": "BUTTONBAR RIGHT",
"username": "Otto"
}
] | BUTTONBAR RIGHT |
[
{
"date": "2010-01-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Es decir : @ 00, 11 BUTTONBAR oBar1 [b:u47i623a][color=#FF0000:u47i623a]2007[/color:u47i623a][/b:u47i623a]",
"time": "18:37",
"topic": "BUTTONBAR en posicion fija, acepta parametro 2007 ?",
"username": "gdeteran"
}
... | BUTTONBAR en posicion fija, acepta parametro 2007 ? |
[
{
"date": "2010-01-17",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Yo tengo FW907, revisando el fivewin.ch tengo esta sintaxis para buttonbar\n\n[code=fw:1keji9fn]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">!short: <span style=\"color: #0000ff;\">ButtonBar</span> Commands */<... | BUTTONBAR en posicion fija, acepta parametro 2007 ? |
[
{
"date": "2010-01-18",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Thanks G. N. Rao, worked perfectly <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "13:46",
"topic": "BUTTONBAR en posicion fija, acepta parametro 2007 ?",
"u... | BUTTONBAR en posicion fija, acepta parametro 2007 ? |
[
{
"date": "2010-01-18",
"forum": "FiveWin para Harbour/xHarbour",
"text": "After defining the bar, \noBar:l2007 := .t.\nworks",
"time": "02:59",
"topic": "BUTTONBAR en posicion fija, acepta parametro 2007 ?",
"username": "nageswaragunupudi"
}
] | BUTTONBAR en posicion fija, acepta parametro 2007 ? |
[
{
"date": "2019-05-14",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Buenas Noches.\n\nNecesito salir con la tecla VK_ESCAPE en un BUTTONBAR pero no lo hace. \nAqui el codigo que uso.\n\n[code=fw:2jjkpdfc]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0... | BUTTONBAR no sale CON VK_ESCAPE (RESUELTO) |
[
{
"date": "2019-05-14",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Saludos, solo por casualidad...no hagas comparacion si no asignacion...prueba con oBtn:lCancel := .t., no se, es solo costumbre de hacerlo asi y funciona al pelo sin hacer mas nada, gracias... <!-- s:shock: --><img src=\"{SMILIES... | BUTTONBAR no sale CON VK_ESCAPE (RESUELTO) |
[
{
"date": "2019-05-14",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Jose luis, un saludo hermano.\n\nLa instruccion [color=#008000:fvbybt2q] oBtn[4]:lCancel = TRUE[/color:fvbybt2q] no es para comparacion lo que hace es asignar el valor TRUE, igual probe \ncomo tu dices [color=#008000:fvbybt2q]oB... | BUTTONBAR no sale CON VK_ESCAPE (RESUELTO) |
[
{
"date": "2019-05-14",
"forum": "FiveWin para Harbour/xHarbour",
"text": "STATIC lExitDlg := .F.\n\nen el boton de salida,\n\nlExitDlg := .T.",
"time": "21:46",
"topic": "BUTTONBAR no sale CON VK_ESCAPE (RESUELTO)",
"username": "karinha"
}
] | BUTTONBAR no sale CON VK_ESCAPE (RESUELTO) |
[
{
"date": "2019-05-14",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Karihna,\n\n[quote:2nd4ipvd]\nSTATIC lExitDlg := .F.\n\nen el boton de salida,\n\nlExitDlg := .T.\n[quote:2nd4ipvd][/quote:2nd4ipvd][/quote:2nd4ipvd]\n\nTampoco funciona",
"time": "22:12",
"topic": "BUTTONBAR no sale CON ... | BUTTONBAR no sale CON VK_ESCAPE (RESUELTO) |
[
{
"date": "2019-05-14",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Me respondo yo mismo.\n\n[code=fw:lqxk5s2o]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />oDlg:<span style=\"color: #000000;\">bValid</span> = <||<br /> <span style=\"color: #... | BUTTONBAR no sale CON VK_ESCAPE (RESUELTO) |
[
{
"date": "2019-05-14",
"forum": "FiveWin para Harbour/xHarbour",
"text": "La tecla ESC por defecto cierra el dialogo, excepto que tenga una clausula Valid, pero es cierto que no la entrega como una nKey.\nEn tu ejemplo hubiese bastado:\n[code=fw:2ow4lhwg]<div class=\"fw\" id=\"{CB}\" style=\"font-famil... | BUTTONBAR no sale CON VK_ESCAPE (RESUELTO) |
[
{
"date": "2019-05-14",
"forum": "FiveWin para Harbour/xHarbour",
"text": "cmsoft,\n\n[quote:2a5gkddz]\nLa tecla ESC por defecto cierra el dialogo, excepto que tenga una clausula Valid, pero es cierto que no la entrega como una nKey.\n[/quote:2a5gkddz]\n\nESO LO SE, pero no me gusta porque no anticipa e... | BUTTONBAR no sale CON VK_ESCAPE (RESUELTO) |
[
{
"date": "2018-11-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I have a dialog with a button bar built in. ( using tBar control in the resource file ).\n\nI DEFINE BUTTONBAR ...no problem\nI DEFINE BUTTON ... no problem\n\nAdd in GROUP LABEL \"xyz\" to some buttons ... works fine.\n\nMy las... | BUTTONBAR separators |
[
{
"date": "2018-11-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Tim\ndo you know if you can draw the TABs instead of diagonally also vertically.\nThank you in advance\nOtto",
"time": "02:02",
"topic": "BUTTONBAR separators",
"username": "Otto"
}
] | BUTTONBAR separators |
[
{
"date": "2018-11-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Tim,\nI am working on the same problem right now.\nBest regards\nOtto\n\n[img:2kl95312]https://www.mybergland.com/FWForum/ribbon.jpg[/img:2kl95312]",
"time": "01:19",
"topic": "BUTTONBAR separators",
... | BUTTONBAR separators |
[
{
"date": "2018-11-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Otto\":2zawoqjw]Hello Tim\ndo you know if you can draw the TABs instead of diagonally also vertically.\nThank you in advance\nOtto[/quote:2zawoqjw]\nPlease try setting oTabs:nOrientation to 1,2,3,4 for top, bottom, left,... | BUTTONBAR separators |
[
{
"date": "2018-11-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr. Tim and Mr. Otto\n\nThis is the present behavior.\n[url=https://imageshack.com/i/pmoDQKnKp:11crcg5w][img:11crcg5w]https://imagizer.imageshack.com/v2/xq90/922/oDQKnK.png[/img:11crcg5w][/url:11crcg5w]\nIf... | BUTTONBAR separators |
[
{
"date": "2018-11-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Exactly, and thank you.",
"time": "08:16",
"topic": "BUTTONBAR separators",
"username": "TimStone"
}
] | BUTTONBAR separators |
[
{
"date": "2018-11-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Mr Rao,\nthank you.\nWhat I mean with vertical is this:\n\n[img:17ba56wq]https://www.mybergland.com/FWForum/ribbon2.jpg[/img:17ba56wq]\n\nBest regards,\nOtto",
"time": "09:05",
"topic": "BUTTONBAR sepa... | BUTTONBAR separators |
[
{
"date": "2018-11-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr. Otto\n\nSorry, that is not possible.",
"time": "09:33",
"topic": "BUTTONBAR separators",
"username": "nageswaragunupudi"
}
] | BUTTONBAR separators |
[
{
"date": "2018-11-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Mr Rao\n\nWhat is the advantage of TAB Class over a line with added buttons.\nDo you think I can get problems doing this.\n\nThank you in advance\nOtto\n\n\n[img:3xdo0drg]https://www.mybergland.com/FWForum/buttons... | BUTTONBAR separators |
[
{
"date": "2018-11-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto,\ndo you need this ?\n\n[img:234uqk1z]https://i.postimg.cc/1tsvnZMk/Immagine.jpg[/img:234uqk1z]",
"time": "11:45",
"topic": "BUTTONBAR separators",
"username": "Silvio.Falconi"
}
] | BUTTONBAR separators |
[
{
"date": "2018-11-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Silvio,\n\nyes this is what I would like to have.\nBut maybe I can use buttons to achieve the goal.\nThank you and best regards\nOtto",
"time": "14:15",
"topic": "BUTTONBAR separators",
"username": "Otto"
}
] | BUTTONBAR separators |
[
{
"date": "2018-11-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"TimStone\":1zcivlwt]Exactly, and thank you.[/quote:1zcivlwt]\n\nImplemented in FWH1808\n[code=fw:1zcivlwt]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <span style=\"color: #0000ff;\">DEFINE</spa... | BUTTONBAR separators |
[
{
"date": "2018-11-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"nageswaragunupudi\":1m8eypbc][quote=\"TimStone\":1m8eypbc]Exactly, and thank you.[/quote:1m8eypbc]\n\nImplemented in FWH1808\n[code=fw:1m8eypbc]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <span styl... | BUTTONBAR separators |
[
{
"date": "2013-11-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola Amigos\n\nHay ciertos detalles que los heredas, y al no haber mucha documentacion no se sabe que hace.\nDefino una BUTTONBAR, de la siguiente forma:\n[code=fw:8qqos1ny]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monos... | BUTTONBAR y el Right Click |
[
{
"date": "2013-11-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola\nintenta con oBar:bRClicked := { || .T. }",
"time": "23:03",
"topic": "BUTTONBAR y el Right Click",
"username": "cnavarro"
}
] | BUTTONBAR y el Right Click |
[
{
"date": "2013-11-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Cristobal\n\nFunciono!!, Gracias\nPara ocultarlo lo hice con:\n\n[code=fw:2w5ovmkp]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">oBar:<span style=\"color: #000000;\">bRClicked</span> := <span style=\"color: #000... | BUTTONBAR y el Right Click |
[
{
"date": "2010-01-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "REDEFINE BUTTONBMP oBtnFont ID 4003 OF oDlg ACTION msginfo(\"test\")\n\n\nSometimes I use BUTTONBMP without defining a bitmap.\n\nEvery time I enter the dialog with the BUTTONBMP inside \na new line BMP, 0, PLANSETUP, 2... | BUTTONBMP |
[
{
"date": "2010-01-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Otto,\n\nI use [color=#FF0000:1j2o1na6]GDIVIEW[/color:1j2o1na6], to test Resources. There is only one Line for each Application.\nA very good Tool. and Freeware. \nMaybe You will find still some more useful Utilities on the ... | BUTTONBMP |
[
{
"date": "2010-01-25",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Dibuja el boton perfectamente, pero el texto sobre él no se mueve junto con el boton al ser presionado. Tampoco permite cambiarle el color al texto, lo cual seria muy util, ya que el boton no puede cambiarse... | BUTTONBMP |
[
{
"date": "2010-07-05",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Bayron,\n\nLa Clase TButtonBmp está basada en los botones estandard de Windows. En realidad lo unico que hacemos es interceptar el pintado para dibujar el bitmap, pero todo el proceso de pintado lo hace Wind... | BUTTONBMP |
[
{
"date": "2007-10-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Amigos, estou usando o BUTTONBMP com @, ex:\n\n @ LIN,COL BUTTONBMP MoBtn[contamesas] PROMPT \"AAAAAA\"+CRLF+\"BBBBBB\" BITMAP qualmod1 PIXEL TEXTTOP\n\n1)Acontece que CRLF não funciona e não consigo colocar duas linhas de texto... | BUTTONBMP ! |
[
{
"date": "2007-10-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "<!-- m --><a class=\"postlink\" href=\"http://fivetechsoft.com/forums/viewtopic.php?t=2963&highlight=buttonbmp\">http://fivetechsoft.com/forums/viewtopi ... =buttonbmp</a><!-- m -->",
"time": "16:15",
"topic": "BUTTONBMP ... | BUTTONBMP ! |
[
{
"date": "2008-02-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio e amigos, é possível enquanto manter pressionado um BUTTONBMP, ele ficar executando constantemente a ação desejada?\n\n\nGrato",
"time": "13:17",
"topic": "BUTTONBMP - Executar enquanto estiver pressionado!",
... | BUTTONBMP - Executar enquanto estiver pressionado! |
[
{
"date": "2008-02-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"FWHISHOW\":1tpb6epo]Antonio e amigos, é possível enquanto manter pressionado um BUTTONBMP, ele ficar executando constantemente a ação desejada?[/quote:1tpb6epo]\nCreo que con BtnBmp no es posible, pero prueba este ejempl... | BUTTONBMP - Executar enquanto estiver pressionado! |
[
{
"date": "2008-02-18",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Grato Manuel, parabéns pelo excelente trabalho.",
"time": "20:25",
"topic": "BUTTONBMP - Executar enquanto estiver pressionado!",
"username": "FWHISHOW"
}
] | BUTTONBMP - Executar enquanto estiver pressionado! |
[
{
"date": "2016-06-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Good afternoon.\nI changed my version of Fivewin to 16:04 and buttonbmp is changed, leaving bitmaps with very small size when using textbotton, see pictures and the code below.\n\nExample:\nimage in version 08.10\n\n[img:180662p1]... | BUTTONBMP Error in the size of bitmpas 16.04 |
[
{
"date": "2016-06-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Augusto,\n\nPuedes poner una imagen de como se ve con FWH 16.04 ? gracias",
"time": "20:49",
"topic": "BUTTONBMP Error in the size of bitmpas 16.04",
"username": "Antonio Linares"
}
] | BUTTONBMP Error in the size of bitmpas 16.04 |
[
{
"date": "2016-06-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Sorry typed wrong, the first is previous version the second image is fw 16.04.\n\nBitmaps were small at 16.04\n\n[img:3d9ulx5z]https://lh3.googleusercontent.com/1zmkYzFfG5Ql3VuouhVLFfAxS1J__NXGnSVLztQGwCDhOi6ekZUB7g5dP... | BUTTONBMP Error in the size of bitmpas 16.04 |
[
{
"date": "2016-06-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Augusto,\n\nAre you using FWH 16.04 build 3 ?",
"time": "07:55",
"topic": "BUTTONBMP Error in the size of bitmpas 16.04",
"username": "Antonio Linares"
}
] | BUTTONBMP Error in the size of bitmpas 16.04 |
[
{
"date": "2016-06-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "No, it's build 2.\n\n\nNão, é o build 2.",
"time": "12:30",
"topic": "BUTTONBMP Error in the size of bitmpas 16.04",
"username": "augustogomes"
}
] | BUTTONBMP Error in the size of bitmpas 16.04 |
[
{
"date": "2016-06-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Can not see the second image. But that is not really important.\nCan you post the extract from rc file?",
"time": "14:25",
"topic": "BUTTONBMP Error in the size of bitmpas 16.04",
"username": "nageswaragunupudi"
}
] | BUTTONBMP Error in the size of bitmpas 16.04 |
[
{
"date": "2016-06-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "RC\n\n[code=fw:319n6uhf]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #B900B9;\">// RESOURCE SCRIPT generated by \"Pelles C for Windows, version 8.00\".</span><br /><br /><span style=\"color:... | BUTTONBMP Error in the size of bitmpas 16.04 |
[
{
"date": "2016-06-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Augusto,\n\nAlready fixed.\n\nI am emailing you the new FWH libs",
"time": "10:07",
"topic": "BUTTONBMP Error in the size of bitmpas 16.04",
"username": "Antonio Linares"
}
] | BUTTONBMP Error in the size of bitmpas 16.04 |
[
{
"date": "2016-06-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Obrigado\nTudo certo agora!\n\nAugusto",
"time": "12:57",
"topic": "BUTTONBMP Error in the size of bitmpas 16.04",
"username": "augustogomes"
}
] | BUTTONBMP Error in the size of bitmpas 16.04 |
[
{
"date": "2005-11-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antes del cambio a la nueva versión de FWH si me estaba apareciendo las BITMAP ahora yo no aparecen no sabes a que ser deba este problema.\n\nREDEFINE BUTTONBMP oBtn1 ID 20 OF oDlg TEXTRIGHT ; BITMAP \".\\BMPS\\ACE... | BUTTONBMP Porque ya no aparecen los BITMAP |
[
{
"date": "2005-11-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mario,\n\nAcabamos de probar samples\\TestBuBm.prg y funciona bien. Puedes por favor probarlo ahí y confirmarnos si te funciona ? Gracias.",
"time": "19:45",
"topic": "BUTTONBMP Porque ya no aparecen los BITMAP",
"use... | BUTTONBMP Porque ya no aparecen los BITMAP |
[
{
"date": "2005-11-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio si esta funcionando bien era un problema con la dirección de las imágenes. Solo falta que los acomode a la izquierda.\n\nMuchas Gracias.",
"time": "18:11",
"topic": "BUTTONBMP Porque ya no aparecen los BITMAP",
... | BUTTONBMP Porque ya no aparecen los BITMAP |
[
{
"date": "2005-11-30",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Esa cláusula TEXTRIGHT no está soportada for la clase original... asi que supongo has implementado los cambios hechos por Rosine. Yo he visto esos cambios y tambien hay una TEXTLEFT para poner el bmp a la izquierda del PROMPT (T... | BUTTONBMP Porque ya no aparecen los BITMAP |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.