messages
listlengths 1
1
| topic
stringlengths 2
60
|
|---|---|
[
{
"date": "2006-03-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you for your answer.\nHere are more infos.\n\nTanti saluti\nOtto\n\n\n\n// Class. Mainly used for Automatic Alignment techniques\n\n#include \"FiveWin.ch\"\n\n#ifdef __XPP__\n #define Super ::TControl\n #define New _New\n#endif\n\n//----------------------------------------------------------------------------//\n\nCLASS TInvoice FROM TControl\n\n CLASSDATA lRegistered AS LOGICAL\n\n METHOD New( nTop, nLeft, nBottom, nRight, oWnd ) CONSTRUCTOR\n\n METHOD IVHeader()\n\n METHOD IVBody()\n\n METHOD IVFooter()\n\n METHOD IVClear()\n\n METHOD IVSay()\n\n METHOD IVBox()\n\n METHOD IVLine()\n\nENDCLASS\n\n//----------------------------------------------------------------------------//\n\nMETHOD New( nTop, nLeft, nBottom, nRight, oWnd ) CLASS TInvoice\n\n DEFAULT nTop := 0, nLeft := 0, nBottom := 100, nRight := 100,;\n oWnd := GetWndDefault()\n\n ::nTop = nTop\n ::nLeft = nLeft\n ::nBottom = nBottom\n ::nRight = nRight\n ::oWnd = oWnd\n //::nStyle = nOr( WS_CHILD, WS_VISIBLE )\n ::nStyle = nOr( WS_CHILD, WS_VISIBLE, WS_TABSTOP )\n\n ::lDrag = .f.\n\n ::Register()\n\n if ! Empty( ::oWnd:hWnd )\n ::Create()\n ::oWnd:AddControl( Self )\n else\n ::oWnd:DefControl( Self )\n endif\n\nreturn Self\n\n//----------------------------------------------------------------------------//\n\nMETHOD IVHeader(nRowHeader,Font1,Font2,Font3) CLASS TInvoice\n ::say(nRowHeader , 20, \"ArtNr\" ,255,16777215,Font3,.T.)\n ::say(nRowHeader , 100, \"Bezeichnung\" ,255,16777215,Font1,.T.)\n ::say(nRowHeader , 500, \"Preis\" ,255,16777215,Font2,.T.)\n nRowHeader += Font2:nHeight\n ::say( nRowHeader, 500, \"inkl. MWST\" ,255,16777215,Font3,.T.)\n nRowHeader += Font2:nHeight\nreturn nil\n\n//----------------------------------------------------------------------------//\n\nMETHOD IVBody() CLASS TInvoice\n\nreturn nil\n\n//----------------------------------------------------------------------------//\n\nMETHOD IVFooter(nRowFooter,Font1,Font2,Font3) CLASS TInvoice\n nRowFooter += Font2:nHeight/2\n ::line (nRowFooter,11,nRowFooter,700 )\n nRowFooter += Font2:nHeight/2\n\n ::say(nRowFooter , 20, \"ArtNr\" ,255,16777215,Font3,.T.)\n ::say(nRowFooter , 100, \"Summe\" ,255,16777215,Font1,.T.)\n ::say(nRowFooter , 500, \"999,99\" ,255,16777215,Font2,.T.)\n nRowFooter += Font2:nHeight\n ::say( nRowFooter, 500, \"inkl. MWST\" ,255,16777215,Font3,.T.)\n nRowFooter += Font2:nHeight\n\nreturn nil\n\n//----------------------------------------------------------------------------//\n\nMETHOD IVClear(nRow,Font1) CLASS TInvoice\n local nRowHelp := 0\n local I:=0\n nRowHelp := nRow\nFOR I = 1 TO 15\n ::say( nRowHelp, 1, space(1000),255,16777215,Font1,.T.)\n nRowHelp += Font1:nHeight\nNEXT\n\nreturn nil\n\n//----------------------------------------------------------------------------//\n\nMETHOD IVSay(nRow,nCol,cLine,nClrFore,nClrBack,oFont) CLASS TInvoice\n ::say( nRow,nCol,cLine,nClrFore,nClrBack,oFont,.T.)\nreturn nil\n\nMETHOD IVLine(nRow,nCol1,nCol2) CLASS TInvoice\n ::Line (nRow,nCol1,nRow,nCol2 )\nreturn nil\n\nMETHOD IVBox(nRow,nCol1,nCol2,nRow2) CLASS TInvoice\n ::box (nRow,nCol1,nRow2,nCol2 )\nreturn nil",
"time": "09:04",
"topic": "BOX change color how?",
"username": "Otto"
}
] |
BOX change color how?
|
[
{
"date": "2006-03-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Otto\":3g3bi4qj]Thank you for your answer.\nHere are more infos.[/quote:3g3bi4qj]\n\nYour class inherits from TControl. Then, if I'm not wrong, you are calling TWindow:Box() method that doesn't have nPen parameter, right?\n\nEMG",
"time": "11:18",
"topic": "BOX change color how?",
"username": "Enrico Maria Giordano"
}
] |
BOX change color how?
|
[
{
"date": "2006-03-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You are right. \nYou think I could draw my own box - 4 lines?\nRegards\nOtto",
"time": "11:22",
"topic": "BOX change color how?",
"username": "Otto"
}
] |
BOX change color how?
|
[
{
"date": "2006-03-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This is a working sample:\n\n[code:i2b9r21q]#include \"Fivewin.ch\"\n\n\nFUNCTION MAIN()\n\n LOCAL oDlg\n\n DEFINE DIALOG oDlg\n\n ACTIVATE DIALOG oDlg;\n ON PAINT DRAWBOX( oDlg, hDC, 10, 10, 100, 100, CLR_HRED );\n CENTER\n\n RETURN NIL\n\n\nSTATIC FUNCTION DRAWBOX( oDlg, hDC, nTop, nLeft, nBottom, nRight, nColor )\n\n LOCAL hPen := CREATEPEN( PS_SOLID, 1, nColor )\n\n LOCAL hOldPen := SELECTOBJECT( hDC, hPen )\n\n MOVETO( hDC, nLeft, nTop )\n LINETO( hDC, nRight, nTop )\n LINETO( hDC, nRight, nBottom )\n LINETO( hDC, nLeft, nBottom )\n LINETO( hDC, nLeft, nTop )\n\n SELECTOBJECT( hDC, hOldPen )\n\n DELETEOBJECT( hPen )\n\n RETURN NIL[/code:i2b9r21q]\n\nEMG",
"time": "13:08",
"topic": "BOX change color how?",
"username": "Enrico Maria Giordano"
}
] |
BOX change color how?
|
[
{
"date": "2006-03-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you.\n\nOtto",
"time": "17:51",
"topic": "BOX change color how?",
"username": "Otto"
}
] |
BOX change color how?
|
[
{
"date": "2007-11-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "HOW create the header round as the HEADER OF OUTLOOK 2003 ?",
"time": "12:11",
"topic": "BOX ROUND",
"username": "Silvio"
}
] |
BOX ROUND
|
[
{
"date": "2009-01-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "How create a small box to call a html page ?",
"time": "20:16",
"topic": "BOX with html",
"username": "Silvio"
}
] |
BOX with html
|
[
{
"date": "2009-01-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Silvio,\n\nYou can use a SAY with no text or \"[ ]\" (etc.) like in this example:\n[code:37xfefmi]\n#include \"FiveWin.ch\"\n\nFunction Main()\n\n LOCAL oDLG,oBRU, oSAY, oSAY1, oHand\n\n DEFINE CURSOR oHand HAND\n\n DEFINE BRUSH oBru FILENAME ( \"SPLASH.BMP\" )\n\n DEFINE DIALOG oDLG ;\n TITLE \"Intranet Help\" ;\n SIZE 500, 320 BRUSH oBRU TRANSPARENT\n\n @ 3,2 SAY oSay PROMPT \"Click here for PCAS Intranet Manuals\" ;\n PIXEL of oDLG COLOR \"W+/W\"\n \n oDlg:aControls[ 1 ]:lTransparent = .t.\n\n @ 150,2 SAY oSay1 PROMPT \"Revision Date \"+dtoc( Date() )+;\n \" \"+FWVERSION+\" \"+VERSION() PIXEL of oDLG COLOR \"W+/W\"\n \n oDlg:aControls[ 2 ]:lTransparent = .t.\n\n oSay:lWantClick = .T.\n oSay:bLClicked = { || SHELLEXECUTE( nil,\"open\", \"http://www.yahoo.com\",0,0,1) }\n oSay:oCursor = oHand\n\n\n ACTIVATE DIALOG oDLG CENTERED\n\nRETURN(NIL)\n[/code:37xfefmi]",
"time": "22:18",
"topic": "BOX with html",
"username": "Antonio Linares"
}
] |
BOX with html
|
[
{
"date": "2009-01-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "sorry I am explaining bad\nI want open a Tpanel when I open the main window of my application and show into a page ( html)",
"time": "01:16",
"topic": "BOX with html",
"username": "Silvio"
}
] |
BOX with html
|
[
{
"date": "2009-01-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Silvio,\n\nPlease review FWH\\samples\\webexp.prg\n\nis it what you want ?",
"time": "01:38",
"topic": "BOX with html",
"username": "Antonio Linares"
}
] |
BOX with html
|
[
{
"date": "2006-10-21",
"forum": "FiveWin para CA-Clipper",
"text": "Alguien me podria explicar como usar BROWSE con ARRAY, \n\nyo uso TSBROWSE,, ahi defino con ADD COLUMN TO Obrw ARRAY ELEMENT \n\nalgun ejemplo util\n\nGRACIAS",
"time": "23:27",
"topic": "BROWSE CON ARRAY ALGUIEN ME LO EXPLICA",
"username": "A&C"
}
] |
BROWSE CON ARRAY ALGUIEN ME LO EXPLICA
|
[
{
"date": "2006-10-22",
"forum": "FiveWin para CA-Clipper",
"text": "Algun Ejemplo URGENTE",
"time": "18:46",
"topic": "BROWSE CON ARRAY ALGUIEN ME LO EXPLICA",
"username": "A&C"
}
] |
BROWSE CON ARRAY ALGUIEN ME LO EXPLICA
|
[
{
"date": "2006-10-22",
"forum": "FiveWin para CA-Clipper",
"text": "Pon una copia de tu pregunta en la sección de FWH, posiblemente puedan orientarte.\n\nNosotros no sabemos como ayudarte pues TSBrowse no es estandard de FWH y no estamos familiarizados con él.",
"time": "22:04",
"topic": "BROWSE CON ARRAY ALGUIEN ME LO EXPLICA",
"username": "Antonio Linares"
}
] |
BROWSE CON ARRAY ALGUIEN ME LO EXPLICA
|
[
{
"date": "2023-02-06",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Consegue me disponibilizar uma versao mais nova da classe wBrowse... por favor ?\n\natt\nGilberto",
"time": "14:15",
"topic": "BROWSE DE HERNAN",
"username": "Giba_Fro"
}
] |
BROWSE DE HERNAN
|
[
{
"date": "2023-02-06",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"Giba_Fro\":3gnbx1wp]Consegue me disponibilizar uma versao mais nova da classe wBrowse... por favor ?\n\natt\nGilberto[/quote:3gnbx1wp]\n\nAbandone isso. Atualize sua versão do Fivewin com o Gilmer tavares: <!-- e --><a href=\"mailto:gilmer@fivewin.com.br\">gilmer@fivewin.com.br</a><!-- e --> e comece a usar o poder da xBrowse() by mister Nages.\n\nDéjalo caer. Actualice su versión de Fivewin con Gilmer tavares: <!-- e --><a href=\"mailto:gilmer@fivewin.com.br\">gilmer@fivewin.com.br</a><!-- e --> y comience a usar el poder de xBrowse() de mister Nages.\n\nEvite usar classes de terceiros. Só recomendo a SSAY.PRG e a DSAY.PRG nada mais.\n\nEvite el uso de clases de terceros. Solo recomiendo SSAY.PRG y DSAY.PRG y nada más.\n\nRegards, saludos.",
"time": "16:35",
"topic": "BROWSE DE HERNAN",
"username": "karinha"
}
] |
BROWSE DE HERNAN
|
[
{
"date": "2020-05-15",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Muchas gracias Carlos\n\nme funcionó muy bien",
"time": "20:08",
"topic": "BROWSE DE HERNAN",
"username": "Marco Augusto"
}
] |
BROWSE DE HERNAN
|
[
{
"date": "2020-05-15",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Adquirí en diciembre la versión de FWH 2019\nDe casualidad alguien tendrá la librería\ndel browser de Hernán Diego Cesarelli\npara la ultima versión de xharbour 1.2.3. Pcode versión 10 bcc7\n\nno la he podido construir\n\ngracias de antemano",
"time": "18:04",
"topic": "BROWSE DE HERNAN",
"username": "Marco Augusto"
}
] |
BROWSE DE HERNAN
|
[
{
"date": "2020-05-15",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[url:1751t0w4]https://castillolawyers.zapto.org/owncloud/index.php/s/JUMoQWiHRSfmcuP[/url:1751t0w4]\nincluida las lib para harbour y xharbour.\n\nse construye las lib usando xmate.\n[url:1751t0w4]https://castillolawyers.zapto.org/owncloud/index.php/s/st8i36O5ESv97cz[/url:1751t0w4]\n\nsi deseas hacer las lib recuerda modificar los archivos .env de xmate para que apunten a los compiladores correspondiente.\n\nsalu2\ncarlos vargas",
"time": "18:38",
"topic": "BROWSE DE HERNAN",
"username": "carlos vargas"
}
] |
BROWSE DE HERNAN
|
[
{
"date": "2007-05-09",
"forum": "FiveWin para Pocket PC",
"text": "Necesito crear un folder que algunos de los dialogos tengan listbox tomo el ejemplo testfld y le añado una pestaña mas con un listbox y me genera el siguiente error :\nCan´t create dialogbox y despues me dice que no esta Identificado el control \nNon defined Id No. 10\naqui esta el codigo fuente\n\n#include \"FWCE.ch\"\n\nfunction Main()\n\n local oWnd, cValue, cText := \"Hello world!\"\n\n DEFINE WINDOW oWnd TITLE \"Folders\"\n\n @ 0.5, 1 FOLDER oFld PROMPTS \"One\", \"Two\" , \"Three\" ;\n DIALOGS \"sub1\", \"sub2\" , \"sub3\" ;\n SIZE 225, 245\n\n REDEFINE COMBOBOX cValue ID 100 OF oFld:aDialogs[ 1 ] ;\n ITEMS { \"Red\", \"Green\", \"Blue\" }\n\n REDEFINE BUTTON ID 110 OF oFld:aDialogs[ 1 ] ACTION MsgInfo( \"click\" )\n\n REDEFINE BUTTON ID 120 OF oFld:aDialogs[ 1 ] ACTION MsgInfo( cValue )\n\n REDEFINE BUTTON ID 104 OF oFld:aDialogs[ 2 ] ACTION MsgInfo( \"Second dialog\" )\n\n REDEFINE GET cText ID 106 OF oFld:aDialogs[ 2 ] COLOR \"GR+/G\"\n\n\n REDEFINE LISTBOX oLbx FIELDS First, Last ID 10 OF oFld:aDialogs[ 3 ]\n\n REDEFINE BUTTON ID 130 OF oFld:aDialogs[ 3 ] ACTION MsgInfo( \"click\" )\n REDEFINE BUTTON ID 140 OF oFld:aDialogs[ 3 ] ACTION MsgInfo( \"click\" )\n REDEFINE BUTTON ID 150 OF oFld:aDialogs[ 3 ] ACTION MsgInfo( \"click\" )\n REDEFINE BUTTON ID 160 OF oFld:aDialogs[ 3 ] ACTION MsgInfo( \"click\" )\n REDEFINE BUTTON ID 170 OF oFld:aDialogs[ 3 ] ACTION MsgInfo( \"click\" )\n REDEFINE BUTTON ID 180 OF oFld:aDialogs[ 3 ] ACTION MsgInfo( \"click\" )\n\n\n oFld:InitDialogs() // required to initialize the resources dialogs !\n\n ACTIVATE WINDOW oWnd\n\nreturn nil\n\n\ny este el añadido al .rc\nsub3 DIALOG 18, 18, 129, 128\nSTYLE WS_CHILD | 4\n{\n CONTROL \"\", 10, \"TWBrowse\", 0 | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP, 3, 5, 122, 64\n PUSHBUTTON \"&Incl.\", 130, 2, 72, 17, 14\n PUSHBUTTON \"&Borr.\", 140, 20, 72, 17, 14\n PUSHBUTTON \"&Copia\", 150, 38, 72, 17, 14\n PUSHBUTTON \"&Ver \", 160, 56, 72, 17, 14\n PUSHBUTTON \"&Total\", 170, 74, 72, 17, 14\n PUSHBUTTON \"&Salir\", 180, 92, 72, 17, 14\n}\n\nsi comento el TWBrowse en el RC y el REDEFINE del mismo en el PRG si me muestra la pestaña los botones.\nen conclusion deseo mostrar en pestañas TWBrowse que debo hacer.\n\nde antemano muchas Gracias.",
"time": "06:24",
"topic": "BROWSE DESDE FOLDER",
"username": "mag071"
}
] |
BROWSE DESDE FOLDER
|
[
{
"date": "2007-05-09",
"forum": "FiveWin para Pocket PC",
"text": "Mario,\n\nPrueba a incluir esta línea en el PRG:\n\n#include \"FWCE.ch\"\n\nfunction Main()\n\nlocal oWnd, cValue, cText := \"Hello world!\"\n\nDEFINE WINDOW oWnd TITLE \"Folders\"\n\n[color=red:ubjqtnvw]TWBrowse()[/color:ubjqtnvw]\n\n@ 0.5, 1 FOLDER oFld PROMPTS \"One\", \"Two\" , \"Three\" ;\nDIALOGS \"sub1\", \"sub2\" , \"sub3\" ;\nSIZE 225, 245\n\n...",
"time": "08:17",
"topic": "BROWSE DESDE FOLDER",
"username": "Antonio Linares"
}
] |
BROWSE DESDE FOLDER
|
[
{
"date": "2007-05-10",
"forum": "FiveWin para Pocket PC",
"text": "Antonio \n\nGracias por responder pero Incluyo la Linea TWBrowse()\ny sigue generando el mismo error.",
"time": "04:02",
"topic": "BROWSE DESDE FOLDER",
"username": "mag071"
}
] |
BROWSE DESDE FOLDER
|
[
{
"date": "2007-05-10",
"forum": "FiveWin para Pocket PC",
"text": "Mario,\n\nAsi funciona bien:\n[code:31igu480]\n#include \"FWCE.ch\"\n\nfunction Main()\n\n local oWnd, cValue, cText := \"Hello world!\", oLbx\n \n DEFINE WINDOW oWnd TITLE \"Folders\"\n \n USE ( CurDir() + \"\\Customer\" )\n \n oLbx := TWBrowse():New( 100, 100 ) \n oLbx:End()\n \n @ 0.5, 1 FOLDER oFld PROMPTS \"One\", \"Two\", \"Three\" ;\n DIALOGS \"sub1\", \"sub2\", \"sub3\" ;\n SIZE 225, 245\n\n REDEFINE COMBOBOX cValue ID 100 OF oFld:aDialogs[ 1 ] ;\n ITEMS { \"Red\", \"Green\", \"Blue\" }\n \n REDEFINE BUTTON ID 110 OF oFld:aDialogs[ 1 ] ACTION MsgInfo( \"click\" )\n\n REDEFINE BUTTON ID 120 OF oFld:aDialogs[ 1 ] ACTION MsgInfo( cValue )\n\n REDEFINE BUTTON ID 104 OF oFld:aDialogs[ 2 ] ACTION MsgInfo( \"Second dialog\" )\n \n REDEFINE GET cText ID 106 OF oFld:aDialogs[ 2 ] COLOR \"GR+/G\"\n\n REDEFINE LISTBOX oLbx FIELDS First, Last ID 10 OF oFld:aDialogs[ 3 ] \n \n oFld:InitDialogs() // required to initialize the resources dialogs !\n \n ACTIVATE WINDOW oWnd\n \nreturn nil \n[/code:31igu480]\n[url=http://imageshack.us:31igu480][img:31igu480]http://img149.imageshack.us/img149/6872/browsefx8.png[/img:31igu480][/url:31igu480]",
"time": "11:09",
"topic": "BROWSE DESDE FOLDER",
"username": "Antonio Linares"
}
] |
BROWSE DESDE FOLDER
|
[
{
"date": "2007-05-10",
"forum": "FiveWin para Pocket PC",
"text": "Muy Agradecido \nahora si funciona Ok.",
"time": "22:00",
"topic": "BROWSE DESDE FOLDER",
"username": "mag071"
}
] |
BROWSE DESDE FOLDER
|
[
{
"date": "2007-05-14",
"forum": "FiveWin para Pocket PC",
"text": "bien <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "11:18",
"topic": "BROWSE DESDE FOLDER",
"username": "Antonio Linares"
}
] |
BROWSE DESDE FOLDER
|
[
{
"date": "2010-03-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Amigos,\n\nTenho uma tabela de produtos com muitos registros, e vou acessar este banco MYSQL remotamente.\n\nAlguem teria uma dica de como criar uma consulta com TSBROWSE/TWBROWSE + SQLRDD, de modo que esta consulta não fique lenta?\n\nMuito Obrigado",
"time": "22:23",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "MGA"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2010-03-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola,,\nCon TWBROWSE y EAGLE1 lo hago asi:\n\n[code=fw:2sayqujl]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />oDatos := TMSQuery<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span> oMySQL <span style=\"color: #000000;\">)</span><br />oDatos:<span style=\"color: #000000;\">Open</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"SELECT * FROM productos ORDER BY detalle\"</span> <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">If</span> oDatos:<span style=\"color: #000000;\">RecCount</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> > <span style=\"color: #000000;\">0</span><br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">LISTBOX</span> oLbx ;<br /> FIELDS oDatos:<span style=\"color: #000000;\">FieldGet</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">)</span>, ;<br /> oDatos:<span style=\"color: #000000;\">FieldGet</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span>, ;<br /> oDatos:<span style=\"color: #000000;\">FieldGet</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">3</span><span style=\"color: #000000;\">)</span> ;<br /> HEADERS <span style=\"color: #ff0000;\">\"Codigo\"</span>, ;<br /> <span style=\"color: #ff0000;\">\"detalle\"</span>, ;<br /> <span style=\"color: #ff0000;\">\"precio\"</span> ;<br /> SIZES <span style=\"color: #000000;\">80</span>,<span style=\"color: #000000;\">350</span>,<span style=\"color: #000000;\">100</span> ;<br /> <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">101</span> <span style=\"color: #0000ff;\">OF</span> oDlg<br /><br /> MySetBrowse<span style=\"color: #000000;\">(</span>oLbx, oDatos<span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">EndIf</span><br /> <br /><br /><br /> </div>[/code:2sayqujl]",
"time": "02:52",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "Willi Quintana"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2010-03-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Willi,\n\nobrigado por ter respondido.\n\nestou usando o SQLRDD, e da maneira como postou não ficaria lento? pois todo o conteudo da tabela seria carregado no browse!\n\nObrigado",
"time": "12:33",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "MGA"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2010-03-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Prueba a usar XBROWSE + ADO, va muy bién. Pues ADO crea en forma local un array denominado recordset con los datos de nuestra consulta. imagínate si es un array será rápido. Únicamente al inicio de la carga se siente un poco la espera, después todo OK.\n\nUn saludo\nMarcelo Jingo",
"time": "14:47",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "sjingo"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2010-03-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Marcelo,\n\nPor favor, teria um exemplo de como usar ADO e um exemplo de browse com ADO?\n\nMuito obrigado",
"time": "14:51",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "MGA"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2010-03-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "1.- Bajar de la página de Mysql [url:3s5h0cqc]http://www.mysql.com[/url:3s5h0cqc] el conector ODBC la versión que esté disponible. Si tienes problemas te puedo enviar a tu correo.\n\n2. Ejecutar el programa de instalación del conector.\n\n3. Asegurarte que en el servidor no haya restricciones para el puerto del Mysql (supongo ya lo tienes resuelto)\n\n4. Aqui va el código de ejemplo:\n[code=fw:3s5h0cqc]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">//Crear el objeto conexión</span><br /><span style=\"color: #B900B9;\">//--------------------------------------------------</span><br /><span style=\"color: #00C800;\">TRY</span><br /> oCon := TOleAuto<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">new</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"adodb.connection\"</span><span style=\"color: #000000;\">)</span><br />CATCH oError<br /> MsgStop<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"No se pudo crear el objeto conexión !\"</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">RETURN</span><span style=\"color: #000000;\">(</span>.F.<span style=\"color: #000000;\">)</span><br />END<br /><br />cdrive:=<span style=\"color: #ff0000;\">\"MySQL ODBC 5.1 DRIVER\"</span><br />cserver:=<span style=\"color: #ff0000;\">\"tu IP\"</span><br />cDB:=<span style=\"color: #ff0000;\">\"nombre_BDatos\"</span><br />cUser:=<span style=\"color: #ff0000;\">\"nombre_usuario\"</span><br />cPasw:=<span style=\"color: #ff0000;\">\"clave\"</span><br /><span style=\"color: #B900B9;\">//Abrir la conexión usando el objeto connection creado</span><br /><span style=\"color: #B900B9;\">//----------------------------------------------------</span><br />oCon:<span style=\"color: #000000;\">ConnectionString</span> :=<span style=\"color: #ff0000;\">\"Driver={\"</span>+alltrim<span style=\"color: #000000;\">(</span>cDrive<span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\"};Server=\"</span> + ALLTRIM<span style=\"color: #000000;\">(</span>cServer<span style=\"color: #000000;\">)</span> + ;<br /><span style=\"color: #ff0000;\">\";Port=3306;Database=\"</span> + ALLTRIM<span style=\"color: #000000;\">(</span>cDB<span style=\"color: #000000;\">)</span> + ;<br /><span style=\"color: #ff0000;\">\";User=\"</span> + ALLTRIM<span style=\"color: #000000;\">(</span>cUser<span style=\"color: #000000;\">)</span>+;<br /><span style=\"color: #ff0000;\">\"; Password=\"</span> + ALLTRIM<span style=\"color: #000000;\">(</span>cPasW<span style=\"color: #000000;\">)</span> + <span style=\"color: #ff0000;\">\";Option=3;\"</span><br /><br /><span style=\"color: #00C800;\">TRY</span><br /> oCon:<span style=\"color: #000000;\">Open</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br />CATCH oError<br /> <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Falló el intento de conexión con la cuenta \"</span>+cuser+<span style=\"color: #ff0000;\">\" , REVISE LA CONEXION DE SU RED O LA CONEXION A INTERNET !\"</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">RETURN</span><span style=\"color: #000000;\">(</span>.F.<span style=\"color: #000000;\">)</span><br />END<br /><br /><span style=\"color: #B900B9;\">//Creamos el objeto recodset</span><br /> <span style=\"color: #00C800;\">TRY</span><br /> ::<span style=\"color: #000000;\">oRsBrw</span>= TOleAuto<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"adodb.recordset\"</span><span style=\"color: #000000;\">)</span><br /> CATCH oError<br /> MsgStop<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"No se ha podido crear el RECORDSET de la Tabla Seleccionada!\"</span>, <span style=\"color: #000000;\">)</span><br /> ShowError<span style=\"color: #000000;\">(</span>oError<span style=\"color: #000000;\">)</span><br /> ::<span style=\"color: #000000;\">oRsBrw</span> := <span style=\"color: #00C800;\">NIL</span><br /> <span style=\"color: #00C800;\">RETURN</span><span style=\"color: #000000;\">(</span>.F.<span style=\"color: #000000;\">)</span><br /> END<br /> <br /><span style=\"color: #B900B9;\">//Configuramos el recordset</span><br /> ::<span style=\"color: #000000;\">oRsBrw</span>:<span style=\"color: #000000;\">CursorLocation</span> := adUseClient<br /> ::<span style=\"color: #000000;\">oRsBrw</span>:<span style=\"color: #000000;\">LockType</span> := adLockOptimistic<br /> ::<span style=\"color: #000000;\">oRsBrw</span>:<span style=\"color: #000000;\">CursorType</span> := adOpenKeyset<span style=\"color: #B900B9;\">//adOpenDynamic</span><br /> ::<span style=\"color: #000000;\">oRsBrw</span>:<span style=\"color: #000000;\">Source</span> := <span style=\"color: #ff0000;\">\"SELECT * FROM MITABLA\"</span><br /> ::<span style=\"color: #000000;\">oRsBrw</span>:<span style=\"color: #000000;\">ActiveConnection</span><span style=\"color: #000000;\">(</span>oCon<span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//abrimos el recordset </span><br /> <span style=\"color: #00C800;\">TRY</span><br /> ::<span style=\"color: #000000;\">oRsBrw</span>:<span style=\"color: #000000;\">Open</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> CATCH oError<br /> MsgStop<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"No se pudo abrir La Tabla Seleccionada!\"</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">RETURN</span><span style=\"color: #000000;\">(</span>.F.<span style=\"color: #000000;\">)</span><br /> END/</div>[/code:3s5h0cqc]\n\n\nAqui va la creacion del xbrowse de forma basica:\n[code=fw:3s5h0cqc]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> ::<span style=\"color: #000000;\">oBrw</span> := TXBrowse<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;\">oWnd</span> <span style=\"color: #000000;\">)</span> <br /> ::<span style=\"color: #000000;\">oBrw</span>:<span style=\"color: #000000;\">nleft</span>:=<span style=\"color: #000000;\">0</span><br /> ::<span style=\"color: #000000;\">oBrw</span>:<span style=\"color: #000000;\">ntop</span>:=<span style=\"color: #000000;\">30</span><br /> ::<span style=\"color: #000000;\">oBrw</span>:<span style=\"color: #000000;\">lFastEdit</span>:= .t.<br /> ::<span style=\"color: #000000;\">oBrw</span>:<span style=\"color: #000000;\">lEditmode</span>:= .t.<br /> ::<span style=\"color: #000000;\">oBrw</span>:<span style=\"color: #000000;\">nMarqueeStyle</span> := MARQSTYLE_HIGHLCELL<br /> ::<span style=\"color: #000000;\">oBrw</span>:<span style=\"color: #000000;\">nColDividerStyle</span> = LINESTYLE_DARKGRAY<br /><br /> ::<span style=\"color: #000000;\">oBrw</span>:<span style=\"color: #000000;\">SetAdo</span><span style=\"color: #000000;\">(</span>::<span style=\"color: #000000;\">oRsBrw</span>,.t.,.t.<span style=\"color: #000000;\">)</span><br /> ::<span style=\"color: #000000;\">oBrw</span>:<span style=\"color: #000000;\">CreateFromCode</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> ::<span style=\"color: #000000;\">oBrw</span>:<span style=\"color: #000000;\">bpastEof</span>=<span style=\"color: #000000;\">{</span>||MsgBeep<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">}</span><br /> </div>[/code:3s5h0cqc]\nEspero te sirva\n\nUn saludo\nMarcelo Jingo",
"time": "16:11",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "sjingo"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2010-03-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Muito obrigado Marcelo.",
"time": "18:06",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "MGA"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2010-03-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Marcelo,\n\n1) De onde baixo o ADORDD?\n\n2) Poderia enviar para o meu email:\nBajar de la página de Mysql <!-- m --><a class=\"postlink\" href=\"http://www.mysql.com\">http://www.mysql.com</a><!-- m --> el conector ODBC la versión que esté disponible. Si tienes problemas te puedo enviar a tu correo.\n\n<!-- e --><a href=\"mailto:santosuj@bol.com.br\">santosuj@bol.com.br</a><!-- e -->\n\nobrigado",
"time": "18:45",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "MGA"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2010-03-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Marcelo,\n\neu consegui fazer os testes e como você disse ele demora um pouco mais para carregar mais depois fica muito bom para navegar no browse.\n\nporém, fiquei com algumas dúvidas:\n\n1)Imagine o usuário fazendo uma venda, ele vai consultar na mesma venda varios produto, em cada consulta o sistema vai carregar a base(objeto RECORDERSET). Isso vai gerar demora! Como você faz?\n\n2)Pensei em carregar no inicio do sistema o objeto RECORDERSET, desse modo não vai gerar a demora citada acima, porque os dados já estão carregados, mais o problema é: Imagine que o usuário adicione um novo produto ou altere algum campo, eu teria que prever isso para recarregar o objeto RECORDERSET.\n\nDesde já te agradeço",
"time": "21:49",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "MGA"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2010-03-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "1)Imagine o usuário fazendo uma venda, ele vai consultar na mesma venda varios produto, em cada consulta o sistema vai carregar a base(objeto RECORDERSET). Isso vai gerar demora! Como você faz?\n\nEntiendo que te refieres a que el usuario está facturando. Si no son muchos productos se podría hacer la consulta de toda la tabla y bajarlo al Recordset, y si hay cambios en la tabla sea con insert delete o update se puede usar el método requery() para refrescar el Recordset\n\nIden para la segunda pregunta.\n\nAdo da la oportunidad de usar varias formas de hacer los cambios a las tablas, bien puedes hacer usando los métodos del recordset o ejecutando una sentencia SQL directamente a la tabla mediante el objeto Comand o mediante el método Execute() del objeto Conexión que es la forma que yo lo hago.\n\nPersonalmente cargo todas las tablas(recordsets) que necesito al inicio de la aplicación. Lo importante es cargar sólo lo necesario usando las colunltas SELECT.\n\nAl momento estoy desarrollando un sistema de control de vehículos donde inicialmente cargo 20 tablas que no son muy grandes, hoy por hoy no se nota mucha la lentitud, veremos que pasa luego cuando aumenten los datos.\n\nLo que nos queda es PROBAR.\n\nSaluditos\n\nMarcelo Jingo",
"time": "22:53",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "sjingo"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2010-03-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Marcelo, \n\nvocê poderia me enviar a sua ADORDD.PRG/LIB? a que consegui é muito antiga!\n\nMarcelo: y si hay cambios en la tabla sea con insert delete o update se puede usar el método requery() para refrescar el Recordset\nVocê teria exemplos (PRG) de como usar INSERT/DELETE/UPDATE/REQUERY, me ajudaria muito.\n\nMarcelo, uma duvida:\nImagine que um usuario(1) carrega a tabela de produtos ao iniciar, outro usuario(2) entra e carrega toda tabela de produto tambem, se o usuario(1) adicionar um produto, este novo produto nao estara visivel para o usuario(2)?\n\nObrigado\n\n<!-- e --><a href=\"mailto:santosuj@bol.com.br\">santosuj@bol.com.br</a><!-- e -->",
"time": "12:10",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "MGA"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2010-03-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estimado Santos\nNo uso ADORDD, lo hago directamente con las instrucciones propias.\n\nLo que quieres hacer depende del tipo de cursor que implementes, cada uno tiene sus ventajas y desventajas. Debemos estar claros que se quiere hacer, si se quiere solo consultar o una edición en línea. De acuerdo al tipo será más lento o más velóz.\n\n*******************\nTipo de cursor: adOpenForwardOnly,sólo permite desplazarse hacia adelante en los registros \nAdOpenKeyset, Igual que un cursor dinámico, excepto que no se pueden ver los registros que agregan otros usuarios \nadOpenDynamic, Las incorporaciones, cambios y eliminaciones que hacen otros usuarios permanecen visibles, y se admiten todo tipo de movimientos entre registros \nadOpenStatic, Cursor estático. Una copia estática de un conjunto de registros que se puede usar para buscar datos o generar informes. Las incorporaciones, cambios o eliminaciones que hacen otros usuarios no son visibles. \nTipo de bloqueo: adLockReadOnly, Predeterminado. Sólo lectura- no puede modificar los datos \nAdLockPessimistic, Bloqueo pesimista, registro a registro: el provedor hace lo necesario para asegurar la modificación correcta de los registros, generalmente bloqueando registros en el origen de datos durante el preceso de modificación \nAdLockOptimistic, Bloqueo optimista, registro a registro: el provedor usa bloqueo optimista, bloqueando registros sólo cuando llama al método Update. \nAdLockBatchOptimistic, Actualizaciones optimistas por lotes: requirido para el modo de actualización por lotes como contraposición al modo de actualización inmediata. \n****************\n\nEjemplos de como hago para insertar y eliminar\n//----------------------------------------------------------------------------//\n//Inserto Un registro vacío para luego rellenar en el los datos\n//Esto es conveniente así tenemos el registro con el siguiente numero autoincrementado\n//oRs Recordset que maneja la tabla\n//tabla nombre de la tabla donde se va a insertar\n//is_auto indica si el registro es autoincremental, por defecto es verdadero\n//akey_ext array con el nombre y valor del campo con clave externa\nMETHOD InsIt(oRs,tabla,is_auto,akey_ext) CLASS TVehic\nlocal cQuery,nobra\nlocal i\ndefault is_auto:=.t.\n\nCursorWait()\nif is_auto\n\tif akey_ext!=nil\n\t\tcQuery :=\"insert into \" + tabla + \"(\" + oRs:Fields(0):Name + \",\"+ akey_ext[1] +\") values(0,\"+str(akey_ext[2])+\")\"\n\telse\n\t\tcQuery :=\"insert into \" + tabla + \"(\" + oRs:Fields(0):Name + \") values(0)\"\n\tendif\nelse\n\tif akey_ext!=nil\n\t\tcQuery :=\"insert into \" + tabla + \"(\" + oRs:Fields(0):Name + \",\"+ akey_ext[1] + \") values('\" + space(20) + \"',\" + akey_ext[2]+\")\"\n\telse\n\t\tcQuery :=\"insert into \" + tabla + \"(\" + oRs:Fields(0):Name + \") values('\"+space(20)+\"')\" //ojo si el campo es numerico puede dar error\n\tendif\nendif\noCon:Execute(cQuery,\"INSERT\")\noRs:Requery()\noRs:Movelast()\n\nreturn .t.\n\nMETHOD DelIt(oRs,ctabla) CLASS TVehic\nlocal cQuery,nrec,nlen\nlocal uclave //Registro actual //asumimos que el campo clave es el primero\nlocal cfield\n\nCursorWait()\nif !oRs:BOF .and. !oRs:EOF\n\tuclave:=oRs:Fields(0):Value //Registro actual //asumimos que el campo clave es el primero\n\tcfield:=oRs:Fields(0):Name\n\tcQuery :=\"delete from \" + ctabla + \" where \"+ cfield +\" = \" +if(valtype(uclave)=\"N\",str(uclave),\"'\"+alltrim(uclave)+\"'\")\n\n\tnrec:=oRs:AbsolutePosition\n\toCon:Execute(cQuery,\"DELETE\")\n\toRs:Requery()\n\tnLen:=oRs:RecordCount()\n\tif !oRs:BOF .and. !oRs:EOF\n\t\tif nrec > nLen\n\t\t\toRs:Movelast()\n\t\telse\n\t\t\toRs:Move(nrec-1)\n\t\tendif\n\tendif\nelse\n\tmsgstop(\"No hay nada para borrar\")\nendif\nreturn nil\n\nPara los cambios de la fila el mismo Xbrowse lo hace automaticamente indicando el tipo de edicion a la columna:\n\nfor n := nini to Len( ::oBrw:aCols )\n \toCol:nEditType := EDIT_GET\n next\n\nEspero te sirva\n\nSaludos\n\nMarcelo Jingo",
"time": "16:14",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "sjingo"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2010-03-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ok,\n\nMarcelo muito obrigado amigo, agora vou fazer varios testes referente as informações que você me forneceu.\n\nMuito obrigado",
"time": "21:07",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "MGA"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2010-03-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "SGS\n\nVisita este blog\n\n<!-- m --><a class=\"postlink\" href=\"http://sqlcmd.blogspot.com/\">http://sqlcmd.blogspot.com/</a><!-- m -->\n\nAhí encontraras casí todo sobre ADO y MySql\n\nSaludos",
"time": "23:14",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "Armando"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2010-03-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Obrigado Armando!",
"time": "18:02",
"topic": "BROWSE com muitos registros - MYSQL remoto",
"username": "MGA"
}
] |
BROWSE com muitos registros - MYSQL remoto
|
[
{
"date": "2021-02-01",
"forum": "mod_harbour",
"text": "Estimados\n\nalguna forma de que el browse se vea en varias pagina con TWEB\nresulta que demora en mostrar los resultados\n\nlo estoy haciendo de esta manera \n\n[code=fw:2gyhxsna]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> ROWGROUP o<br /> <span style=\"color: #0000ff;\">DEFINE</span> BROWSE oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'ringo'</span>HEIGHT <span style=\"color: #000000;\">800</span> EXPORT SEARCH TOOLS <span style=\"color: #0000ff;\">OF</span> o<br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'ite'</span> HEADER <span style=\"color: #ff0000;\">'item'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'emi'</span> HEADER <span style=\"color: #ff0000;\">'fecha'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'tip'</span> HEADER <span style=\"color: #ff0000;\">'Tipo'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'doc'</span> HEADER <span style=\"color: #ff0000;\">'Doc.'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'rut'</span> HEADER <span style=\"color: #ff0000;\">'Rut'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'nom'</span> HEADER <span style=\"color: #ff0000;\">'Nombre'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'net'</span> HEADER <span style=\"color: #ff0000;\">'Neto'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'iva'</span> HEADER <span style=\"color: #ff0000;\">'Iva'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'tot'</span> HEADER <span style=\"color: #ff0000;\">'Total'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'cre'</span> HEADER <span style=\"color: #ff0000;\">'Crédito'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'con'</span> HEADER <span style=\"color: #ff0000;\">'Contado'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'ven'</span> HEADER <span style=\"color: #ff0000;\">'Vendedor'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'efe'</span> HEADER <span style=\"color: #ff0000;\">'Efectivo'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'tar'</span> HEADER <span style=\"color: #ff0000;\">'Tarjeta'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'che'</span> HEADER <span style=\"color: #ff0000;\">'Cheque'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'tra'</span> HEADER <span style=\"color: #ff0000;\">'Trans.'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'ncr'</span> HEADER <span style=\"color: #ff0000;\">'Nota NCR'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'res'</span> HEADER <span style=\"color: #ff0000;\">'Reserva'</span><br /> ADD oCol <span style=\"color: #0000ff;\">TO</span> oBrw <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #ff0000;\">'hor'</span> HEADER <span style=\"color: #ff0000;\">'Hora'</span><br /> END o<br /> </div>[/code:2gyhxsna]\n\nno veo la forma que se puede ver los datos en paginas",
"time": "15:15",
"topic": "BROWSE con varias paginas",
"username": "Patricio Avalos Aguirre"
}
] |
BROWSE con varias paginas
|
[
{
"date": "2021-02-01",
"forum": "mod_harbour",
"text": "Hola,\n\nTWeb no tiene todavia paginación, está pendiente de de implmentación. Si te tarda mucho es que debes enviar muchos datos. Mi consejo es que busques la manera de optimizar una busqueda y acotes la cantidad de registros.\n\nSaludos.\nC.",
"time": "19:56",
"topic": "BROWSE con varias paginas",
"username": "Carles"
}
] |
BROWSE con varias paginas
|
[
{
"date": "2021-02-01",
"forum": "mod_harbour",
"text": "gracias\n\nlo he solucionado con esta linea en el archivo twebbrowse.prg\n\n[b:1i57a704]data-pagination=\"{{ IF( oThis:lPagination, 'true', 'false') }}\"[/b:1i57a704]\n\nsi que cree una variable en la clase y esta funcionando\n\n[code=fw:1i57a704]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> data-row-<span style=\"color: #0000ff;\">style</span>=<span style=\"color: #ff0000;\">\"{{ oThis:cRowStyle }}\"</span><br /> data-pagination=<span style=\"color: #ff0000;\">\"{{ IF( oThis:lPagination, 'true', 'false') }}\"</span><br /> data-virtual-<span style=\"color: #0000ff;\">scroll</span>=<span style=\"color: #ff0000;\">\"{{ IF( oThis:lVirtualScroll, 'true', 'false') }}\"</span><br /> </div>[/code:1i57a704]",
"time": "23:25",
"topic": "BROWSE con varias paginas",
"username": "Patricio Avalos Aguirre"
}
] |
BROWSE con varias paginas
|
[
{
"date": "2021-02-02",
"forum": "mod_harbour",
"text": "Patricio,\n\nSi esta opcion te sirve perfecto, pero recuerda que lo que haces es activar una paginacion \"client-side\", que no es lo mismo que la \"server-side\" que es la que para mi tiene sentido. Si tienes los datos ya en el navegador, para que quieres paginarlos ? <!-- s:roll: --><img src=\"{SMILIES_PATH}/icon_rolleyes.gif\" alt=\":roll:\" title=\"Rolling Eyes\" /><!-- s:roll: -->",
"time": "15:37",
"topic": "BROWSE con varias paginas",
"username": "Carles"
}
] |
BROWSE con varias paginas
|
[
{
"date": "2010-02-22",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Sr. Antonio é possível browse editavel com FIVELINUX?\n\nobrigado",
"time": "14:59",
"topic": "BROWSE editavel com FIVELINUX?",
"username": "MGA"
}
] |
BROWSE editavel com FIVELINUX?
|
[
{
"date": "2010-02-23",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "SGS,\n\nAún no está implementado. Lo más sencillo es que abras un diálogo encima del browse y que ahí realices la edición.",
"time": "08:57",
"topic": "BROWSE editavel com FIVELINUX?",
"username": "Antonio Linares"
}
] |
BROWSE editavel com FIVELINUX?
|
[
{
"date": "2010-02-23",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "obrigado Sr. Antonio",
"time": "12:10",
"topic": "BROWSE editavel com FIVELINUX?",
"username": "MGA"
}
] |
BROWSE editavel com FIVELINUX?
|
[
{
"date": "2007-01-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "In testtcbr.prg in the fwh\\samples folder, it calls the function BROWSE()\n\nThe MODIFY, DELETE and PRINT buttons work, and I can't see what functions are called.\n\nWhen I put BROWSE() in my app, none of the buttons do anything.\n\nWhy?",
"time": "15:24",
"topic": "BROWSE() in testtcbr.prg",
"username": "Ollie"
}
] |
BROWSE() in testtcbr.prg
|
[
{
"date": "2007-01-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ollie,\n\nFWH function Browse() source code is located at source\\function\\browse.prg. There you will see that those actions have to be supplied as codeblocks when calling Browse():\n\nfunction Browse( cTitle, cListName, bNew, bModify, bDelete, bSearch, bList, aColSizes )",
"time": "01:12",
"topic": "BROWSE() in testtcbr.prg",
"username": "Antonio Linares"
}
] |
BROWSE() in testtcbr.prg
|
[
{
"date": "2007-01-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I know, but in that sample it is simply called as browse().\n\nSo my question is - why it is working - without specifying code blocks?",
"time": "07:21",
"topic": "BROWSE() in testtcbr.prg",
"username": "Ollie"
}
] |
BROWSE() in testtcbr.prg
|
[
{
"date": "2007-01-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ollie,\n\nBecause inside function Browse() some codeblocks are defined by default:\n[code:27779bgv]\n DEFAULT cTitle := \"Browse\", cListName := \"Fields\",;\n bNew := { || oLbx:RecAdd(), oLbx:Refresh() },;\n bDelete := { || RecDelete( oLbx ) },;\n bModify := { || RecModify( oLbx ) },;\n bList := { || Report( oLbx ) }\n[/code:27779bgv]",
"time": "08:31",
"topic": "BROWSE() in testtcbr.prg",
"username": "Antonio Linares"
}
] |
BROWSE() in testtcbr.prg
|
[
{
"date": "2008-05-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I used BRW and the show error message when I duplicate Dialog as follow; \r\n1st Error Message from BRW.\r\n----------------------------------\r\n\"New field instance fail\"\r\n\r\n2nd Error Message from BRW.\r\n----------------------------------\r\n\"Could not allocate memory\"\r\n\r\nThe size file of DLL is 910Kb and when save to RC format is 2216Kb.\r\n\r\nRegards,\r\nDutch",
"time": "06:10",
"topic": "BRW Error \"Could not allocate memory\"",
"username": "dutch"
}
] |
BRW Error "Could not allocate memory"
|
[
{
"date": "2008-05-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Can you send the offending resource file to my private email?\r\n\r\nEMG",
"time": "08:03",
"topic": "BRW Error \"Could not allocate memory\"",
"username": "Enrico Maria Giordano"
}
] |
BRW Error "Could not allocate memory"
|
[
{
"date": "2008-05-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I've got the problem with .RC file. It has the limitation size of file. When I create a DLL file almost 1 Mb, it will alway show error. \r\n\r\nI will try to split for 2 RC files but when I use xBuild and add 2 RC. The second file has not used when I refer from second RC file. \r\n\r\nCan I add 2 RC in xBuilder (xHb.com)? If so, how?\r\n\r\nRegards,\r\nDutch",
"time": "15:14",
"topic": "BRW Error \"Could not allocate memory\"",
"username": "dutch"
}
] |
BRW Error "Could not allocate memory"
|
[
{
"date": "2008-05-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I think not. If I remember correctly, it is a limitation of the C tools used with xBuilder. But please ask to xHarbour.com.\r\n\r\nEMG",
"time": "15:39",
"topic": "BRW Error \"Could not allocate memory\"",
"username": "Enrico Maria Giordano"
}
] |
BRW Error "Could not allocate memory"
|
[
{
"date": "2008-05-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dutch \r\n\r\nit is very easy, \r\n\r\nif you have 2 or more rc files example rc1.rc and rc2.rc\r\n\r\ncreate a rc file example myrc.rc\r\n\r\nin this file add\r\n#include rc1.rc\r\n#include rc2.rc\r\n\r\nand you are done\r\n\r\ni use 7 rc files with my app, no problem with Xharbour or Borland (note i use borland now)\r\n\r\nHTH\r\n\r\nRichard",
"time": "15:51",
"topic": "BRW Error \"Could not allocate memory\"",
"username": "Richard Chidiak"
}
] |
BRW Error "Could not allocate memory"
|
[
{
"date": "2008-05-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr.Richard\r\n\r\nGood tip.\r\n\r\n- Ramesh Babu P",
"time": "16:11",
"topic": "BRW Error \"Could not allocate memory\"",
"username": "RAMESHBABU"
}
] |
BRW Error "Could not allocate memory"
|
[
{
"date": "2008-06-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Richard,\r\n\r\nI've used xHb.com + FWH 8.04.\r\nI'm not successful with 2 rc files as your recommendation. I try by copy screen32.dll from fwh\\dll and save to rc file and add 2 lines as following. It doesn't work.\r\nWhat I did wrong?\r\n\r\nRegards,\r\nDutch\r\n[code:qm2w5tty]\n/***********************************************************\n\nez4fo5.rc\n\nproduced by Borland Resource Workshop\n\n************************************************************/\n#include 'ez4fo.rc'\n#include 'ez4bmp.rc'\n\nDVCLAL RCDATA \n{\n '23 78 5D 23 B6 A5 F3 19 43 F3 40 02 26 D1 11 C7'\n}\n\n[/code:qm2w5tty]\r\n[quote=\"Richard Chidiak\":qm2w5tty]Dutch \n\nit is very easy, \n\nif you have 2 or more rc files example rc1.rc and rc2.rc\n\ncreate a rc file example myrc.rc\n\nin this file add\n#include rc1.rc\n#include rc2.rc\n\nand you are done\n\ni use 7 rc files with my app, no problem with Xharbour or Borland (note i use borland now)\n\nHTH\n\nRichard[/quote:qm2w5tty]",
"time": "18:31",
"topic": "BRW Error \"Could not allocate memory\"",
"username": "dutch"
}
] |
BRW Error "Could not allocate memory"
|
[
{
"date": "2008-06-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Mr.Dutch \r\n\r\n[code:srw7yvum]\nYours :\n\n#include 'ez4fo.rc'\n#include 'ez4bmp.rc'\n\nMr.Richard's\n\n#include rc1.rc \n#include rc2.rc \n[/code:srw7yvum]\r\n\r\n\r\nPlease check that you have included your rc files in quotes. Mr.Richard\r\nhas included the rc files without quotes. This might be reason for your\r\nerrors.\r\n\r\n- Ramesh Babu P",
"time": "08:32",
"topic": "BRW Error \"Could not allocate memory\"",
"username": "RAMESHBABU"
}
] |
BRW Error "Could not allocate memory"
|
[
{
"date": "2013-12-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear All,\n\nI converted RC to DLL32 and it has RCDATA->DVCLAL. I try to delete and save, because it cannot build if it exist.\n\nBut it will show an error while save (BRW error)\nWORKSHOP\nAn error has occurred in your application.\n\nThanks in advance,\nDutch",
"time": "04:44",
"topic": "BRW Error while save after delete DVCLAL in DLL",
"username": "dutch"
}
] |
BRW Error while save after delete DVCLAL in DLL
|
[
{
"date": "2013-12-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Can't you delete that section manually from the RC ?",
"time": "17:23",
"topic": "BRW Error while save after delete DVCLAL in DLL",
"username": "Antonio Linares"
}
] |
BRW Error while save after delete DVCLAL in DLL
|
[
{
"date": "2013-12-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Antonio,\n\nYes, I can. I used to delete and save in DLL but many I cannot save in DLL. I don't know why.",
"time": "04:44",
"topic": "BRW Error while save after delete DVCLAL in DLL",
"username": "dutch"
}
] |
BRW Error while save after delete DVCLAL in DLL
|
[
{
"date": "2013-12-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Maybe by the time that the resource workshop was created, Borland was not supporting (its) DVCLAL yet.\n\nAnyhow if you can do it manually, then you have a solution <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "20:52",
"topic": "BRW Error while save after delete DVCLAL in DLL",
"username": "Antonio Linares"
}
] |
BRW Error while save after delete DVCLAL in DLL
|
[
{
"date": "2014-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Antonio,\n\nOk, I've got it. I understood that this are a lot of question posts in here but could you tell me. Which is the best resource editor and fully compatible with BRW (replacement)?\n\nAnyway, Happy New Year and hope all of Fivewiners are healthy and happy in New Year 2014... ; )",
"time": "02:04",
"topic": "BRW Error while save after delete DVCLAL in DLL",
"username": "dutch"
}
] |
BRW Error while save after delete DVCLAL in DLL
|
[
{
"date": "2014-01-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dutch,\n\n[quote:17hr544g]Which is the best resource editor and fully compatible with BRW (replacement)?[/quote:17hr544g]\n\nyou can use the resource editor of Pelles C. I´m using it since years.",
"time": "15:33",
"topic": "BRW Error while save after delete DVCLAL in DLL",
"username": "StefanHaupt"
}
] |
BRW Error while save after delete DVCLAL in DLL
|
[
{
"date": "2014-01-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Stefan,\n\nThanks a lot, it is good choice. \nFirstly, It is compatible with BRW but not all. Some file can open by BRW but Pelle C unable to open it. \n\nSecondly, Are All object compatible with FWH? I don't test it all yet.\n\nAnyway, it can replace BRW and free of charge.",
"time": "03:45",
"topic": "BRW Error while save after delete DVCLAL in DLL",
"username": "dutch"
}
] |
BRW Error while save after delete DVCLAL in DLL
|
[
{
"date": "2014-01-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Dutch,\n\n[quote:d2yexxet]Secondly, Are All object compatible with FWH? I don't test it all yet.[/quote:d2yexxet]\n\nI didn´t find any incompatible controls so far, if they are supported by fwh.",
"time": "15:02",
"topic": "BRW Error while save after delete DVCLAL in DLL",
"username": "StefanHaupt"
}
] |
BRW Error while save after delete DVCLAL in DLL
|
[
{
"date": "2014-01-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Stefan,\n\nThanks for your valuable information.",
"time": "00:20",
"topic": "BRW Error while save after delete DVCLAL in DLL",
"username": "dutch"
}
] |
BRW Error while save after delete DVCLAL in DLL
|
[
{
"date": "2011-05-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe\n\nI am using the Pixelformer program to import alpha chanel .bmp and .png and exporting them back as alpha chanel .bmp as a reduced size .. 256 x 256 to 40 x 40 .. The conversion goes well and I can use the converted .bmp with the following syntax :\n\n[code=fw:i9pbd8i8]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> oButt1 <span style=\"color: #0000ff;\">OF</span> oBar FILE c_path + <span style=\"color: #ff0000;\">\"GLOBE1.BMP\"</span> ;<br /><span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Search Vendors for Parts Availibility\"</span> ;<br /><span style=\"color: #0000ff;\">ACTION</span> _Search<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> ;<br /><span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Search\"</span><br /> </div>[/code:i9pbd8i8]\n\nhowever when I try to import the .bmp into borland resource workshop .. BRW can not seem to read the format. I have used BRW to import other alpha chanel bitmaps without any problems .. any idea why the import fails ??\n\nRick Lipkin\n\n[url=http://imageshack.us/photo/my-images/705/globe2.jpg/:i9pbd8i8][img:i9pbd8i8]http://img705.imageshack.us/img705/6145/globe2.jpg[/img:i9pbd8i8][/url:i9pbd8i8]\n\n[url=http://imageshack.us/photo/my-images/593/import.jpg/:i9pbd8i8][img:i9pbd8i8]http://img593.imageshack.us/img593/9974/import.jpg[/img:i9pbd8i8][/url:i9pbd8i8]\n\n[url=http://imageshack.us/photo/my-images/854/errorcb.jpg/:i9pbd8i8][img:i9pbd8i8]http://img854.imageshack.us/img854/4743/errorcb.jpg[/img:i9pbd8i8][/url:i9pbd8i8]",
"time": "19:08",
"topic": "BRW gpf when importing an alpha chanel ( uwe )",
"username": "Rick Lipkin"
}
] |
BRW gpf when importing an alpha chanel ( uwe )
|
[
{
"date": "2011-05-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Rick,\n\nthere seems to be a Problem, using Alphachannel-BMP's to import with Workshop ( unknown Format-message ).\nI tested < Adduser.bmp > from Fivewin-samples.\nNext I converted the BMP to 24 Bit without Alpachannel ( can be done with Pixelformer => Properties )\nAfter that, I replaced the transparent-area with Color ( used on Listboxes 16 x 16 ).\nThe Import with Workshop was OK, but You will have no Shadow-effect ( only black border ).\n\nYour Post :\nhowever when I try to import the .bmp into borland resource workshop .. BRW can not seem to read the format.\n[color=#0040FF:12bswcbx]I have used BRW to import other alpha chanel bitmaps without any problems [/color:12bswcbx].. any idea why the import fails ??\n\nCan You send me one of these BMP's, to detect the difference ?\n\n[img:12bswcbx]http://www.pflegeplus.com/pictures/workshop1.jpg[/img:12bswcbx]\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "07:07",
"topic": "BRW gpf when importing an alpha chanel ( uwe )",
"username": "ukoenig"
}
] |
BRW gpf when importing an alpha chanel ( uwe )
|
[
{
"date": "2011-05-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "uwe\n\nGive me your e-mail address and I will send you the original 256x256 and the modified bitmap that fails.\n\nThanks\nRick Lipkin\n<!-- e --><a href=\"mailto:r1.1955@live.com\">r1.1955@live.com</a><!-- e -->",
"time": "13:21",
"topic": "BRW gpf when importing an alpha chanel ( uwe )",
"username": "Rick Lipkin"
}
] |
BRW gpf when importing an alpha chanel ( uwe )
|
[
{
"date": "2011-05-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n\nEmail to : <!-- e --><a href=\"mailto:Esckoenig@aol.com\">Esckoenig@aol.com</a><!-- e -->\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "13:35",
"topic": "BRW gpf when importing an alpha chanel ( uwe )",
"username": "ukoenig"
}
] |
BRW gpf when importing an alpha chanel ( uwe )
|
[
{
"date": "2011-05-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n\nit seems, Pixelformer changes the BMP-structure, saving a resized BMP.\nLoading as a external File, there is no Problem only with Workshop-import. \nI [color=#FF0000:bqj4nak8]resized Globe.bmp with MS-paint [/color:bqj4nak8]und Workshop accepts the Format without Error-message.\nAlpha-chanel is still working ( tested )\n\n[img:bqj4nak8]http://www.pflegeplus.com/pictures/Alphabmp1.jpg[/img:bqj4nak8]\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "21:12",
"topic": "BRW gpf when importing an alpha chanel ( uwe )",
"username": "ukoenig"
}
] |
BRW gpf when importing an alpha chanel ( uwe )
|
[
{
"date": "2011-05-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe\n\nIt seems BRW does not like 32 bpp .. I re-sized and exported the bitmap as 24 bpp and Resource workshop accepted the file .. re-sizing with paint did not work for me .. however the bitmap did load in Workshop but would not display in my application ..\n\nThe 24 bpp is not as crisp as using the file reference with 32 bbp but I would rather have my resources compiled into my app and not as a file reference.\n\nThanks for your help !\nRick Lipkin\n\n[url=http://imageshack.us/photo/my-images/703/pixf.jpg/:3h8w6fzi][img:3h8w6fzi]http://img703.imageshack.us/img703/599/pixf.jpg[/img:3h8w6fzi][/url:3h8w6fzi]\n\n[url=http://imageshack.us/photo/my-images/64/pix1c.jpg/:3h8w6fzi][img:3h8w6fzi]http://img64.imageshack.us/img64/6268/pix1c.jpg[/img:3h8w6fzi][/url:3h8w6fzi]\n\n[url=http://imageshack.us/photo/my-images/9/brw1.jpg/:3h8w6fzi][img:3h8w6fzi]http://img9.imageshack.us/img9/3006/brw1.jpg[/img:3h8w6fzi][/url:3h8w6fzi]\n\n[url=http://imageshack.us/photo/my-images/801/brw2.jpg/:3h8w6fzi][img:3h8w6fzi]http://img801.imageshack.us/img801/9201/brw2.jpg[/img:3h8w6fzi][/url:3h8w6fzi]",
"time": "13:52",
"topic": "BRW gpf when importing an alpha chanel ( uwe )",
"username": "Rick Lipkin"
}
] |
BRW gpf when importing an alpha chanel ( uwe )
|
[
{
"date": "2011-05-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n\nI tested from Resource ( Workshop ).\nConverted from 32 to 24 Bit ( no Alpha-chanel ) with Pixelformer and included in RC-file :\n\nREDEFINE BUTTONBMP oBtn50 ID 30 OF oDlg5 ;\nACTION ( oDlg5:End() ) ;\nBITMAP [color=#FF0000:y1o4kfxk]\"Alert\" [/color:y1o4kfxk]PROMPT \" Exit\" TEXTRIGHT\noBtn50:cToolTip = { \"Close\" + CRLF + ;\n\"the Dialog\",\"Background-Test\", 1, CLR_BLACK, 14089979 } \n[img:y1o4kfxk]http://www.pflegeplus.com/pictures/res10.jpg[/img:y1o4kfxk]\n\nThe BMP :\n[code=fw:y1o4kfxk]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />Alert BITMAP <br /><span style=\"color: #000000;\">{</span><br /> <span style=\"color: #ff0000;\">'42 4D 52 1B 00 00 00 00 00 00 36 00 00 00 28 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 30 00 00 00 30 00 00 00 01 00 18 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 1B 00 00 13 0B 00 00 13 0B 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 05 05 05 28'</span><br /> <span style=\"color: #ff0000;\">'25 25 2E 2B 2B 30 2C 2C 30 2E 2E 32 2E 2E 32 2F'</span><br /> <span style=\"color: #ff0000;\">'2F 34 30 30 34 30 30 35 32 32 36 32 32 37 34 34'</span><br /> <span style=\"color: #ff0000;\">'37 34 34 38 35 35 39 37 37 39 37 37 3A 38 38 3B'</span><br /> <span style=\"color: #ff0000;\">'39 39 3B 3A 3A 3D 3A 3A 3D 3B 3B 3E 3C 3C 3E 3D'</span><br /> <span style=\"color: #ff0000;\">'3D 3F 3E 3E 3F 3E 3E 41 3F 3F 42 40 40 42 41 41'</span><br /> <span style=\"color: #ff0000;\">'43 42 42 44 43 43 45 44 44 46 44 44 46 46 46 47'</span><br /> <span style=\"color: #ff0000;\">'46 46 48 48 48 48 48 48 48 47 47 47 46 46 46 46'</span><br /> <span style=\"color: #ff0000;\">'46 46 44 44 45 44 44 43 42 42 24 24 24 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 05 04 04 82 77 77 AF'</span><br /> <span style=\"color: #ff0000;\">'A3 A4 B2 A6 A6 B3 A8 A8 B4 AA AA B6 AB AB B8 AD'</span><br /> <span style=\"color: #ff0000;\">'AD B9 AF AF BB B0 B0 BC B2 B2 BE B4 B4 C0 B5 B6'</span><br /> <span style=\"color: #ff0000;\">'C1 B7 B8 C3 B9 B9 C4 BB BB C5 BD BD C7 BF BE C8'</span><br /> <span style=\"color: #ff0000;\">'C0 C0 CA C2 C2 CB C3 C3 CC C4 C4 CD C5 C5 CE C6'</span><br /> <span style=\"color: #ff0000;\">'C6 CF C7 C7 D0 C8 C8 D1 C9 C9 D2 CA CA D2 CB CB'</span><br /> <span style=\"color: #ff0000;\">'D3 CC CC D4 CD CD D5 CE CE D6 CF CF D7 D0 D0 D8'</span><br /> <span style=\"color: #ff0000;\">'D1 D1 D8 D2 D2 D7 D1 D1 D5 CE CF D3 CC CC D0 C9'</span><br /> <span style=\"color: #ff0000;\">'C9 CE C7 C7 CB C4 C4 CA C3 C3 DC D8 D8 4B 4A 4A'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 1D 1B 1B AD A1 A1 5E'</span><br /> <span style=\"color: #ff0000;\">'8F BC 30 8C D3 2E 92 D5 2B 98 D7 29 9E DA 26 A4'</span><br /> <span style=\"color: #ff0000;\">'DC 24 AB DE 22 B1 E0 1F B7 E2 1D BB E4 1D BD E4'</span><br /> <span style=\"color: #ff0000;\">'1D BD E3 1D BE E3 1D C1 E3 1C C5 E3 1C C8 E3 1C'</span><br /> <span style=\"color: #ff0000;\">'CC E3 1C CF E3 1C D3 E3 1C D6 E2 1B D9 E2 1B DC'</span><br /> <span style=\"color: #ff0000;\">'E1 1B DF E1 1F E0 E1 2B E0 E0 36 E0 E0 42 DF DF'</span><br /> <span style=\"color: #ff0000;\">'4D DF DF 57 DF DF 62 DE DE 6C DE DE 77 DD DD 80'</span><br /> <span style=\"color: #ff0000;\">'DD DD 88 DC DD 90 DC DC 97 DC DC 9C DB DB 9F DB'</span><br /> <span style=\"color: #ff0000;\">'DB A0 DA DA A0 DA DA 98 CF CF A9 A7 A7 99 96 96'</span><br /> <span style=\"color: #ff0000;\">'01 01 01 00 00 00 00 00 00 0D 0C 0C A1 95 95 83'</span><br /> <span style=\"color: #ff0000;\">'A0 BD 1A 8D E6 16 96 EB 12 9E EE 0F A5 F1 0C AD'</span><br /> <span style=\"color: #ff0000;\">'F4 09 B5 F7 06 BD F9 03 C4 FC 01 CB FF 00 CD FF'</span><br /> <span style=\"color: #ff0000;\">'00 CE FF 00 CF FF 00 D2 FF 00 D7 FF 00 DC FF 00'</span><br /> <span style=\"color: #ff0000;\">'E0 FF 00 E5 FF 00 E9 FF 00 EE FF 00 F2 FF 00 F7'</span><br /> <span style=\"color: #ff0000;\">'FF 00 FB FF 02 FF FF 10 FF FF 1E FF FF 2D FF FF'</span><br /> <span style=\"color: #ff0000;\">'3B FF FF 49 FF FF 56 FF FF 64 FF FF 70 FF FF 7B'</span><br /> <span style=\"color: #ff0000;\">'FF FF 86 FF FF 90 FF FF 98 FF FF 9E FF FF A3 FF'</span><br /> <span style=\"color: #ff0000;\">'FF A4 FF FF A4 FF FF 8E CC CC C1 BA BA 72 6F 6F'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 4E 49 49 B6'</span><br /> <span style=\"color: #ff0000;\">'AD AE 41 8F CD 16 94 EA 13 9C ED 10 A4 F0 0D AB'</span><br /> <span style=\"color: #ff0000;\">'F3 0A B3 F6 07 BB F9 04 C2 FC 01 CA FE 00 CD FF'</span><br /> <span style=\"color: #ff0000;\">'00 CE FF 00 CF FF 00 D1 FF 00 D5 FF 00 DA FF 00'</span><br /> <span style=\"color: #ff0000;\">'DF FF 00 E3 FF 00 E8 FF 00 EC FF 00 F0 FF 00 F5'</span><br /> <span style=\"color: #ff0000;\">'FF 00 F9 FF 00 FD FF 08 FF FF 16 FF FF 24 FF FF'</span><br /> <span style=\"color: #ff0000;\">'32 FF FF 3F FF FF 4B FF FF 58 FF FF 63 FF FF 6E'</span><br /> <span style=\"color: #ff0000;\">'FF FF 78 FF FF 81 FF FF 88 FF FF 8E FF FF 91 FF'</span><br /> <span style=\"color: #ff0000;\">'FF 93 FF FF 90 F5 F6 97 A0 A1 CE C9 C9 0D 0D 0D'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 06 05 05 9E'</span><br /> <span style=\"color: #ff0000;\">'93 93 9C AA B9 1C 91 E3 14 9A ED 11 A2 EF 0E A9'</span><br /> <span style=\"color: #ff0000;\">'F2 0B B1 F5 08 B9 F8 05 C1 FB 02 C8 FE 00 CC FF'</span><br /> <span style=\"color: #ff0000;\">'00 CE FF 00 CF FF 00 D0 FF 00 D4 FF 00 D8 FF 00'</span><br /> <span style=\"color: #ff0000;\">'DD FF 00 E1 FF 00 E5 FE 09 CF E0 18 AE B8 16 BB'</span><br /> <span style=\"color: #ff0000;\">'C2 05 E6 ED 00 FB FF 02 FF FF 0D FF FF 1A FF FF'</span><br /> <span style=\"color: #ff0000;\">'28 FF FF 34 FF FF 40 FF FF 4C FF FF 57 FF FF 61'</span><br /> <span style=\"color: #ff0000;\">'FF FF 6B FF FF 73 FF FF 79 FF FF 7E FF FF 81 FF'</span><br /> <span style=\"color: #ff0000;\">'FF 83 FF FF 7B B9 B9 CD C7 C7 55 53 53 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 38'</span><br /> <span style=\"color: #ff0000;\">'35 35 B8 AF AF 58 97 C6 15 98 EC 12 A0 EF 0F A7'</span><br /> <span style=\"color: #ff0000;\">'F2 0C AF F4 09 B6 F7 06 BE FA 03 C6 FD 00 CC FF'</span><br /> <span style=\"color: #ff0000;\">'00 CD FF 00 CE FF 00 D0 FF 00 D2 FF 00 D7 FF 00'</span><br /> <span style=\"color: #ff0000;\">'DB FF 00 DF FF 18 A3 B4 47 50 51 5A 59 59 6E 6D'</span><br /> <span style=\"color: #ff0000;\">'6D 61 7E 7E 0F D4 D8 00 FD FF 04 FF FF 10 FF FF'</span><br /> <span style=\"color: #ff0000;\">'1D FF FF 29 FF FF 35 FF FF 40 FF FF 4A FF FF 54'</span><br /> <span style=\"color: #ff0000;\">'FF FF 5D FF FF 64 FF FF 6A FF FF 6E FF FF 71 FF'</span><br /> <span style=\"color: #ff0000;\">'FF 70 EF EF A7 A6 A6 AF AA AA 07 06 06 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02'</span><br /> <span style=\"color: #ff0000;\">'02 02 87 80 80 B4 B3 B7 20 93 DF 13 9E EE 10 A5'</span><br /> <span style=\"color: #ff0000;\">'F0 0D AD F4 0A B4 F6 07 BB F9 04 C3 FC 01 CA FE'</span><br /> <span style=\"color: #ff0000;\">'00 CD FF 00 CE FF 00 CF FF 00 D1 FF 00 D5 FF 00'</span><br /> <span style=\"color: #ff0000;\">'D9 FF 01 D6 F7 3D 47 47 39 38 38 4E 4E 4E 64 63'</span><br /> <span style=\"color: #ff0000;\">'63 74 73 73 4A 87 89 00 FA FF 00 FD FF 06 FF FF'</span><br /> <span style=\"color: #ff0000;\">'12 FF FF 1D FF FF 28 FF FF 33 FF FF 3C FF FF 45'</span><br /> <span style=\"color: #ff0000;\">'FF FF 4D FF FF 54 FF FF 5A FF FF 5E FF FF 60 FD'</span><br /> <span style=\"color: #ff0000;\">'FD 75 A9 A9 D5 D0 D0 30 2F 2F 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 1F 1D 1D BA B1 B1 73 A0 C1 14 9B EC 11 A2'</span><br /> <span style=\"color: #ff0000;\">'F0 0E AA F2 0B B1 F5 08 B9 F8 05 C0 FB 02 C8 FD'</span><br /> <span style=\"color: #ff0000;\">'00 CC FF 00 CD FF 00 CE FF 00 D0 FF 00 D3 FF 00'</span><br /> <span style=\"color: #ff0000;\">'D7 FF 04 BF DD 3E 3D 3C 31 30 30 43 42 42 54 54'</span><br /> <span style=\"color: #ff0000;\">'54 5E 5E 5E 52 6A 6A 00 F8 FF 00 FA FF 00 FE FF'</span><br /> <span style=\"color: #ff0000;\">'06 FF FF 11 FF FF 1B FF FF 26 FF FF 2F FF FF 37'</span><br /> <span style=\"color: #ff0000;\">'FF FF 3F FF FF 45 FF FF 4A FF FF 4E FF FF 55 DA'</span><br /> <span style=\"color: #ff0000;\">'DA BA B8 B8 8A 86 86 02 02 02 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 70 6B 6B BE BA BD 31 96 D6 12 9F'</span><br /> <span style=\"color: #ff0000;\">'EF 0F A7 F1 0C AE F4 09 B6 F7 07 BD F9 04 C5 FC'</span><br /> <span style=\"color: #ff0000;\">'01 CB FF 00 CD FF 00 CE FF 00 CF FF 00 D1 FF 00'</span><br /> <span style=\"color: #ff0000;\">'D4 FF 01 D2 F7 3C 47 49 2C 2B 2B 34 33 33 40 3F'</span><br /> <span style=\"color: #ff0000;\">'3F 49 49 49 3A 7A 7D 00 F4 FF 00 F7 FF 00 FA FF'</span><br /> <span style=\"color: #ff0000;\">'00 FE FF 05 FF FF 0E FF FF 18 FF FF 21 FF FF 28'</span><br /> <span style=\"color: #ff0000;\">'FF FF 30 FF FF 35 FF FF 3A FF FF 3E FC FC 82 A9'</span><br /> <span style=\"color: #ff0000;\">'A9 D0 CA CA 18 17 17 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 0B 0A 0A BB B3 B3 93 AB BE 15 9B'</span><br /> <span style=\"color: #ff0000;\">'EA 10 A4 F0 0D AB F3 0B B2 F5 08 BA F8 05 C1 FB'</span><br /> <span style=\"color: #ff0000;\">'02 C8 FD 00 CC FF 00 CE FF 00 CF FF 00 D0 FF 00'</span><br /> <span style=\"color: #ff0000;\">'D2 FF 00 D6 FF 15 A4 BC 3B 49 4B 38 37 37 3B 39'</span><br /> <span style=\"color: #ff0000;\">'39 3C 5C 5F 0A CB DA 00 F0 FF 00 F4 FF 00 F7 FF'</span><br /> <span style=\"color: #ff0000;\">'00 FA FF 00 FD FF 02 FF FF 0A FF FF 12 FF FF 19'</span><br /> <span style=\"color: #ff0000;\">'FF FF 20 FF FF 25 FF FF 29 FF FF 48 C7 C7 C9 C4'</span><br /> <span style=\"color: #ff0000;\">'C4 66 63 63 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 51 4E 4E C6 C1 C1 4A 9A'</span><br /> <span style=\"color: #ff0000;\">'CD 11 A1 EF 0F A8 F2 0C AF F5 09 B7 F7 07 BD FA'</span><br /> <span style=\"color: #ff0000;\">'04 C4 FC 01 CB FF 00 CD FF 00 CE FF 00 CF FF 00'</span><br /> <span style=\"color: #ff0000;\">'D0 FF 00 D3 FF 00 D7 FE 06 C7 E7 12 A9 BF 10 B1'</span><br /> <span style=\"color: #ff0000;\">'C5 03 D8 EF 00 EA FF 00 ED FF 00 F0 FF 00 F3 FF'</span><br /> <span style=\"color: #ff0000;\">'00 F6 FF 00 F9 FF 00 FC FF 01 FE FF 04 FF FF 0A'</span><br /> <span style=\"color: #ff0000;\">'FF FF 11 FF FF 15 FF FF 1D F6 F6 9B AC AC B4 AE'</span><br /> <span style=\"color: #ff0000;\">'AE 0B 0B 0B 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 05 05 05 AA A4 A4 AF B6'</span><br /> <span style=\"color: #ff0000;\">'BE 16 9B E7 10 A4 F1 0D AB F3 0B B3 F6 08 BA F8'</span><br /> <span style=\"color: #ff0000;\">'05 C0 FB 03 C8 FD 00 CC FF 00 CD FF 00 CE FF 00'</span><br /> <span style=\"color: #ff0000;\">'CF FF 00 D1 FF 00 D5 FF 00 D9 FF 00 DC FF 00 E0'</span><br /> <span style=\"color: #ff0000;\">'FF 00 E4 FF 00 E7 FF 00 E9 FF 00 ED FF 00 F0 FF'</span><br /> <span style=\"color: #ff0000;\">'00 F2 FF 00 F5 FF 00 F8 FF 00 FA FF 00 FC FF 00'</span><br /> <span style=\"color: #ff0000;\">'FE FF 03 FF FF 06 FF FF 47 B8 B8 D2 CC CC 43 41'</span><br /> <span style=\"color: #ff0000;\">'41 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 2F 2D 2D CF C9'</span><br /> <span style=\"color: #ff0000;\">'C9 64 9F C4 11 A1 EF 0F A8 F1 0C AF F4 09 B6 F7'</span><br /> <span style=\"color: #ff0000;\">'07 BC F9 04 C3 FC 02 CA FE 00 CD FF 00 CE FF 00'</span><br /> <span style=\"color: #ff0000;\">'CF FF 00 D0 FF 31 41 43 2C 2A 2A 35 33 33 3F 3E'</span><br /> <span style=\"color: #ff0000;\">'3D 48 47 47 34 78 7F 00 E6 FF 00 E9 FF 00 EC FF'</span><br /> <span style=\"color: #ff0000;\">'00 EE FF 00 F1 FF 00 F3 FF 00 F6 FF 00 F8 FF 00'</span><br /> <span style=\"color: #ff0000;\">'F9 FF 00 FB FF 12 E3 E5 B3 B9 B9 97 93 93 03 03'</span><br /> <span style=\"color: #ff0000;\">'03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 01 01 01 8E 8A'</span><br /> <span style=\"color: #ff0000;\">'8A C0 C1 C6 29 9B DD 10 A4 F0 0E AB F3 0B B2 F5'</span><br /> <span style=\"color: #ff0000;\">'08 B8 F8 06 BF FA 03 C5 FD 01 CB FF 00 CD FF 00'</span><br /> <span style=\"color: #ff0000;\">'CE FF 00 CF FF 29 2A 2A 12 12 12 22 22 22 36 36'</span><br /> <span style=\"color: #ff0000;\">'36 47 47 47 3D 71 77 00 E2 FF 00 E5 FF 00 E8 FF'</span><br /> <span style=\"color: #ff0000;\">'00 EA FF 00 ED FF 00 EF FF 00 F1 FF 00 F3 FF 00'</span><br /> <span style=\"color: #ff0000;\">'F5 FF 01 F5 FD 69 B3 B5 CD C6 C6 24 23 23 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 18 17'</span><br /> <span style=\"color: #ff0000;\">'17 D4 CE CE 82 A8 C2 12 9F EE 0F A7 F1 0D AD F4'</span><br /> <span style=\"color: #ff0000;\">'0A B4 F6 08 BA F8 05 C1 FB 03 C7 FD 01 CC FF 00'</span><br /> <span style=\"color: #ff0000;\">'CD FF 00 CB FB 29 27 27 12 12 12 22 22 22 37 37'</span><br /> <span style=\"color: #ff0000;\">'37 47 47 47 40 6A 70 00 DF FF 00 E1 FF 00 E4 FF'</span><br /> <span style=\"color: #ff0000;\">'00 E6 FF 00 E9 FF 00 EB FF 00 ED FF 00 EF FF 00'</span><br /> <span style=\"color: #ff0000;\">'F0 FF 21 CD D6 C4 C2 C3 7D 79 79 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 72 6F 6F D1 CE D0 4D A2 D5 1E A7 F1 12 AA F2'</span><br /> <span style=\"color: #ff0000;\">'0C AF F4 09 B5 F7 07 BC F9 05 C2 FB 02 C8 FE 00'</span><br /> <span style=\"color: #ff0000;\">'CC FF 01 C4 F4 27 25 25 0F 0F 0F 1D 1D 1D 2E 2E'</span><br /> <span style=\"color: #ff0000;\">'2E 3D 3D 3D 40 61 67 00 DB FF 00 DD FF 00 E0 FF'</span><br /> <span style=\"color: #ff0000;\">'00 E2 FF 00 E4 FF 00 E6 FF 00 E8 FF 00 EA FF 02'</span><br /> <span style=\"color: #ff0000;\">'E8 FB 91 B1 B4 BA B3 B3 11 10 10 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 0A 09 09 C5 C2 C2 B3 BD C7 56 B7 F0 4E BB F4'</span><br /> <span style=\"color: #ff0000;\">'41 BC F5 31 BD F7 22 BF F8 15 C1 FA 0C C5 FC 06'</span><br /> <span style=\"color: #ff0000;\">'CA FE 05 BD EB 24 23 23 0A 0A 0A 14 14 14 20 20'</span><br /> <span style=\"color: #ff0000;\">'20 2A 2A 2A 39 53 58 00 D7 FF 00 D9 FF 00 DC FF'</span><br /> <span style=\"color: #ff0000;\">'00 DE FF 02 E0 FF 04 E3 FF 08 E5 FF 0E E7 FF 43'</span><br /> <span style=\"color: #ff0000;\">'BC C9 D0 C9 C9 52 4F 4F 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 4B 4A 4A E0 DB DB 7B AF D0 55 BA F3'</span><br /> <span style=\"color: #ff0000;\">'54 BF F5 53 C4 F6 53 C9 F8 52 CD FA 4E D1 FB 47'</span><br /> <span style=\"color: #ff0000;\">'D3 FD 3C BF E1 22 21 21 05 05 05 0B 0B 0B 13 13'</span><br /> <span style=\"color: #ff0000;\">'13 19 19 19 36 45 48 33 DC FF 36 DE FF 3A E1 FF'</span><br /> <span style=\"color: #ff0000;\">'41 E3 FF 47 E6 FF 4D E8 FF 55 EA FF 61 E1 F2 B8'</span><br /> <span style=\"color: #ff0000;\">'C0 C2 A4 9D 9D 07 07 07 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 02 02 02 B3 B2 B2 C6 C9 CE 5E B3 E7'</span><br /> <span style=\"color: #ff0000;\">'54 BB F3 53 C0 F5 52 C4 F7 52 C8 F8 51 CD FA 50'</span><br /> <span style=\"color: #ff0000;\">'D1 FB 48 B8 D9 26 26 25 04 03 03 03 03 03 08 08'</span><br /> <span style=\"color: #ff0000;\">'08 0B 0B 0B 2F 35 36 54 E0 FF 55 E0 FF 56 E2 FF'</span><br /> <span style=\"color: #ff0000;\">'57 E4 FF 58 E5 FF 59 E7 FF 5A E7 FF 8A BD C6 CC'</span><br /> <span style=\"color: #ff0000;\">'C5 C5 30 2E 2E 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 27 27 27 E7 E4 E4 91 B3 CB'</span><br /> <span style=\"color: #ff0000;\">'54 B6 F1 53 BB F3 52 C0 F5 51 C4 F7 51 C9 F8 50'</span><br /> <span style=\"color: #ff0000;\">'CD FA 46 AE D0 2E 2D 2C 0D 0D 0C 06 06 05 03 03'</span><br /> <span style=\"color: #ff0000;\">'03 03 03 03 27 29 29 52 DF FF 53 DF FF 54 DF FF'</span><br /> <span style=\"color: #ff0000;\">'55 E1 FF 56 E2 FF 57 E3 FF 64 D0 E5 C4 C3 C4 8B'</span><br /> <span style=\"color: #ff0000;\">'85 85 01 01 01 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 9D 9B 9B D6 D5 D8'</span><br /> <span style=\"color: #ff0000;\">'64 AD DE 53 B6 F2 52 BB F4 51 BF F5 51 C4 F7 50'</span><br /> <span style=\"color: #ff0000;\">'C8 F8 44 A4 C7 33 33 31 1A 19 17 13 12 11 0D 0D'</span><br /> <span style=\"color: #ff0000;\">'0C 0A 09 08 28 27 26 50 DC FD 52 DE FF 53 DF FF'</span><br /> <span style=\"color: #ff0000;\">'54 DF FF 55 E0 FF 56 E0 FF 9C BA C1 BE B7 B7 1C'</span><br /> <span style=\"color: #ff0000;\">'1B 1B 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 11 11 11 E2 E0 E0'</span><br /> <span style=\"color: #ff0000;\">'AA BA C9 52 B1 EF 52 B6 F2 51 BB F3 51 BF F5 50'</span><br /> <span style=\"color: #ff0000;\">'C3 F6 43 9A BE 33 32 30 1E 1D 1B 1D 1C 1A 1B 1A'</span><br /> <span style=\"color: #ff0000;\">'18 19 18 16 31 2F 2E 4C D3 F5 50 DD FF 51 DE FF'</span><br /> <span style=\"color: #ff0000;\">'52 DE FF 53 DF FF 6A C2 D8 CC C5 C5 62 5E 5E 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 68 68 68'</span><br /> <span style=\"color: #ff0000;\">'E4 E1 E1 71 AA D4 52 B1 F0 51 B6 F2 50 BA F3 50'</span><br /> <span style=\"color: #ff0000;\">'BE F5 45 95 B9 2F 2E 2C 1E 1D 1B 1E 1D 1B 1E 1D'</span><br /> <span style=\"color: #ff0000;\">'1B 1E 1D 1B 34 33 31 4A CA EB 4E DB FF 4F DC FF'</span><br /> <span style=\"color: #ff0000;\">'50 DD FF 55 D7 F6 AE BD C3 AA A2 A2 0C 0B 0B 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 06 06 06'</span><br /> <span style=\"color: #ff0000;\">'CE CD CD B9 C0 CA 57 AB E9 51 B0 F0 51 B5 F1 50'</span><br /> <span style=\"color: #ff0000;\">'B9 F3 47 90 B5 2C 2B 29 1E 1D 1B 1E 1D 1B 1E 1D'</span><br /> <span style=\"color: #ff0000;\">'1B 1E 1D 1B 34 33 31 48 BF E2 4E D7 FE 4E D9 FE'</span><br /> <span style=\"color: #ff0000;\">'4E DB FF 7A BE CF C8 C0 C0 42 3F 3F 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'38 38 38 E5 E1 E1 86 AB CC 51 AB EE 51 AF EF 50'</span><br /> <span style=\"color: #ff0000;\">'B3 F1 49 89 AE 28 27 25 1E 1D 1B 1E 1D 1B 1E 1D'</span><br /> <span style=\"color: #ff0000;\">'1B 1E 1D 1B 34 33 31 46 B4 D9 4E D1 FB 4E D4 FC'</span><br /> <span style=\"color: #ff0000;\">'58 CA EC BD BF C1 97 90 90 02 02 02 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'01 01 01 AD AA AA C9 CA CE 5F A4 DF 51 AA EE 50'</span><br /> <span style=\"color: #ff0000;\">'AE EF 4C 85 AA 24 23 21 1E 1D 1B 1E 1D 1B 1E 1D'</span><br /> <span style=\"color: #ff0000;\">'1B 1E 1D 1B 34 33 31 45 A8 CF 4E CB FA 4F CE FA'</span><br /> <span style=\"color: #ff0000;\">'91 B8 C7 BC B3 B3 26 24 24 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 1E 1D 1D D9 D5 D5 99 AF C7 51 A4 EC 51'</span><br /> <span style=\"color: #ff0000;\">'A8 ED 4F 81 A7 20 1F 1D 1E 1D 1B 1E 1D 1B 1E 1D'</span><br /> <span style=\"color: #ff0000;\">'1B 1E 1D 1B 33 33 31 44 9E C5 4F C6 F8 5F BA DF'</span><br /> <span style=\"color: #ff0000;\">'C6 BE BF 74 6E 6E 01 01 01 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 74 72 72 D6 D0 D0 67 A1 D6 51'</span><br /> <span style=\"color: #ff0000;\">'A3 EC 4F 7B A0 1E 1D 1B 1E 1D 1B 1E 1D 1B 1E 1D'</span><br /> <span style=\"color: #ff0000;\">'1B 1E 1D 1B 33 32 30 43 94 BD 52 BD F1 A5 B8 C2'</span><br /> <span style=\"color: #ff0000;\">'AE A5 A5 11 10 10 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 0B 0B 0B C6 C0 C0 AC B7 C6 53'</span><br /> <span style=\"color: #ff0000;\">'A1 E7 4C 75 9A 31 31 30 31 31 30 31 31 30 30 31'</span><br /> <span style=\"color: #ff0000;\">'30 31 31 30 3F 3F 3F 45 91 BC 74 AF D1 C2 BA BB'</span><br /> <span style=\"color: #ff0000;\">'4F 4B 4B 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 4A 49 49 D3 CD CC 76'</span><br /> <span style=\"color: #ff0000;\">'A5 D0 4B 97 DB 48 89 C2 49 8A C2 4A 8B C3 49 8E'</span><br /> <span style=\"color: #ff0000;\">'C4 49 90 C5 49 92 C5 54 A8 E0 B4 B8 BF A2 9B 9B'</span><br /> <span style=\"color: #ff0000;\">'06 06 06 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 02 02 02 AF A9 A9 BC'</span><br /> <span style=\"color: #ff0000;\">'BE C4 55 A0 E2 4D A1 EB 4E A1 EB 4F A2 EB 50 A3'</span><br /> <span style=\"color: #ff0000;\">'EB 50 A5 EC 50 A8 ED 89 AA C7 BC B3 B3 31 2F 2F'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 28 27 27 C9'</span><br /> <span style=\"color: #ff0000;\">'C2 C2 8B AA C8 4C A0 EB 4C A0 EB 4E A1 EB 4F A2'</span><br /> <span style=\"color: #ff0000;\">'EB 4F A2 EB 5D A0 DC BF B9 BB 7F 78 78 02 02 02'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 01 01 01 82'</span><br /> <span style=\"color: #ff0000;\">'7E 7E C6 C0 C2 59 9E DC 4B A0 EB 4C A0 EB 4D A1'</span><br /> <span style=\"color: #ff0000;\">'EB 4F A1 E9 9A AE C4 B3 AA AA 1B 1A 1A 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10'</span><br /> <span style=\"color: #ff0000;\">'0F 0F BD B5 B5 9F B0 C4 4B 9E E8 4A 9F EA 4B A0'</span><br /> <span style=\"color: #ff0000;\">'EB 6B A1 D3 BF B7 B7 5C 57 57 01 01 01 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 56 53 53 C5 BD BE 6B A1 D3 49 9E EA 4E 9E'</span><br /> <span style=\"color: #ff0000;\">'E5 AB B3 BF A6 9C 9C 0A 0A 0A 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 04 04 04 AF A6 A6 AE B5 C1 4C 9C E4 7A A4'</span><br /> <span style=\"color: #ff0000;\">'CC B9 B1 B1 42 3E 3E 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 33 30 30 BC B3 B3 9C B0 C6 BB B7'</span><br /> <span style=\"color: #ff0000;\">'BB 88 80 80 04 04 04 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 01 01 01 62 5C 5C A8 9E 9E 92 89'</span><br /> <span style=\"color: #ff0000;\">'89 19 18 18 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 08 07 07 03 03'</span><br /> <span style=\"color: #ff0000;\">'03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00'</span><br /><span style=\"color: #000000;\">}</span><br /> </div>[/code:y1o4kfxk]\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "18:13",
"topic": "BRW gpf when importing an alpha chanel ( uwe )",
"username": "ukoenig"
}
] |
BRW gpf when importing an alpha chanel ( uwe )
|
[
{
"date": "2015-05-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "un pequeño cambio en brush.prg \nen el metodo new...linea 183 +-\n\n[code=fw:196djkw3]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><span style=\"color: #00C800;\">local</span> hGDIBmp<br /> ........<br /><br /> <span style=\"color: #00C800;\">case</span> cBmpFile != <span style=\"color: #00C800;\">nil</span><br /> <span style=\"color: #00C800;\">if</span> File<span style=\"color: #000000;\">(</span> cBmpFile <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">if</span> Lower<span style=\"color: #000000;\">(</span> cFileExt<span style=\"color: #000000;\">(</span> cBmpFile <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> == <span style=\"color: #ff0000;\">'bmp'</span><br /> ::<span style=\"color: #000000;\">hBitMap</span> = ReadBitmap<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">0</span>, cBmpFile <span style=\"color: #000000;\">)</span><br /> elseif UseGDI<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> .AND. UPPER<span style=\"color: #000000;\">(</span> cFileExt<span style=\"color: #000000;\">(</span> cBmpFile <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> $ <span style=\"color: #ff0000;\">\"PNG,JPG,EMF,WMF,JPEG\"</span> <span style=\"color: #B900B9;\">// nuevo</span><br /> hGDIBmp:= GdiPlusImageLoadCachedFile<span style=\"color: #000000;\">(</span> cBmpFile <span style=\"color: #000000;\">)</span><br /> ::<span style=\"color: #000000;\">hBitmap</span> := GdiPlusCreateHBitmapImage<span style=\"color: #000000;\">(</span> hGDIBmp <span style=\"color: #000000;\">)</span><br /> GdiPlusImageDispose<span style=\"color: #000000;\">(</span> hGDIBmp <span style=\"color: #000000;\">)</span> <br /> <span style=\"color: #00C800;\">else</span> <span style=\"color: #B900B9;\">// fin nuevo </span><br /> ::<span style=\"color: #000000;\">hBitmap</span> = FILoadImg<span style=\"color: #000000;\">(</span> cBmpFile, @nFormat <span style=\"color: #000000;\">)</span><br /> ::<span style=\"color: #000000;\">nBmpFormat</span> = nFormat<br /> <span style=\"color: #00C800;\">endif</span><br /> ::<span style=\"color: #000000;\">hBrush</span> = <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hBitmap</span> != <span style=\"color: #000000;\">0</span>, CreatePatternBrush<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hBitmap</span> <span style=\"color: #000000;\">)</span>, <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /><br /> </div>[/code:196djkw3]",
"time": "09:39",
"topic": "BRush.prg ( poder excluir freeimage.dll )",
"username": "mastintin"
}
] |
BRush.prg ( poder excluir freeimage.dll )
|
[
{
"date": "2015-05-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "y un par de tips para cuellar ....\nsi quieres tener el brush dentro de un blob ( como las fotos ) .\nSe recuperaria facilmente de esta forma \n\n[code=fw:1q5zrmhe]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><span style=\"color: #00C800;\">local</span> cStr := oFONDOS:<span style=\"color: #000000;\">FONDO</span><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BRUSH</span> oBrush GRADIENT hbmpGDIStr<span style=\"color: #000000;\">(</span> cStr <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">FUNCTION</span> hbmpGDIStr<span style=\"color: #000000;\">(</span> cStr <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> hGDIBmp := GdiPlusImageLFromStr<span style=\"color: #000000;\">(</span> cStr, len<span style=\"color: #000000;\">(</span> cStr <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> hBitmap := GdiPlusCreateHBitmapImage<span style=\"color: #000000;\">(</span> hGDIBmp <span style=\"color: #000000;\">)</span><br /> GdiPlusImageDispose<span style=\"color: #000000;\">(</span> hGDIBmp <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">RETURN</span> hBitmap<br /><br /> </div>[/code:1q5zrmhe]\n\nSi quieres evitar tener que introducir los cambios propuestos en el brush.prg y asi todo saltar el uso de freeimage en los brush existe una alternativa.\n\nDEFINE BRUSH oBrush GRADIENT GDIcFileResizehBmp ( cFileImage )\n\n <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->",
"time": "10:33",
"topic": "BRush.prg ( poder excluir freeimage.dll )",
"username": "mastintin"
}
] |
BRush.prg ( poder excluir freeimage.dll )
|
[
{
"date": "2015-05-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Instead of making small changes like this to use GDI+, I prefer to adopt GDI+ everywhere for all image formats and then change all FWH libraries. \n\nSurely I need your help. I am about to write email to you personally.\n\nI am badly stuck up with handling AlphaBitmaps. Once we cross this hurdle, with your help, we can make good progress in adopting GDI+.",
"time": "12:02",
"topic": "BRush.prg ( poder excluir freeimage.dll )",
"username": "nageswaragunupudi"
}
] |
BRush.prg ( poder excluir freeimage.dll )
|
[
{
"date": "2015-05-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Muchas Gracias Manuel\n\nCon:\n[code=fw:1oqudlzm]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BRUSH</span> oBrush FILE <span style=\"color: #ff0000;\">\"D:<span style=\"color: #000000;\">\\S</span>istemas<span style=\"color: #000000;\">\\I</span>MAGENES<span style=\"color: #000000;\">\\B</span>ITMAPS<span style=\"color: #000000;\">\\O</span>RIENTE.BMP\"</span> STRETCH <span style=\"color: #B900B9;\">//No pide freeimage.dll con RESOURCE también</span><br /> </div>[/code:1oqudlzm]\n\nSaludos,\n\nAdhemar",
"time": "16:55",
"topic": "BRush.prg ( poder excluir freeimage.dll )",
"username": "acuellar"
}
] |
BRush.prg ( poder excluir freeimage.dll )
|
[
{
"date": "2015-05-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Manuel\n\nMe topé con otro.\nEn un xBrowse cargo un listado para su vista previa y en los saltos de página Chr(12) pide freeimage.dll\n\nGracias por la ayuda.\n\nSaludos,\n\nAdhemar",
"time": "19:00",
"topic": "BRush.prg ( poder excluir freeimage.dll )",
"username": "acuellar"
}
] |
BRush.prg ( poder excluir freeimage.dll )
|
[
{
"date": "2015-05-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"acuellar\":e1f5zkpe]Manuel\n\nMe topé con otro.\nEn un xBrowse cargo un listado para su vista previa y en los saltos de página Chr(12) pide freeimage.dll\n\nGracias por la ayuda.\n\nSaludos,\n\nAdhemar[/quote:e1f5zkpe]\nWe shall take care of this in future releases.",
"time": "00:23",
"topic": "BRush.prg ( poder excluir freeimage.dll )",
"username": "nageswaragunupudi"
}
] |
BRush.prg ( poder excluir freeimage.dll )
|
[
{
"date": "2007-10-30",
"forum": "Off Topic / Otros temas",
"text": "<!-- m --><a class=\"postlink\" href=\"http://www.theregister.co.uk/2007/10/27/leopard_install_problems/\">http://www.theregister.co.uk/2007/10/27 ... _problems/</a><!-- m -->\n\n<!-- m --><a class=\"postlink\" href=\"http://discussions.apple.com/thread.jspa?threadID=1195031&tstart=0\">http://discussions.apple.com/thread.jsp ... 1&tstart=0</a><!-- m -->\n\nno comments <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "11:52",
"topic": "BSOD on Leopard",
"username": "Antonio Linares"
}
] |
BSOD on Leopard
|
[
{
"date": "2010-07-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Bom Dia a todos..\n\nComo faço para aumentar a distancia entre a imagem e o texto da BtnBmp ??\n\n[img:20xgkfei]http://img809.imageshack.us/img809/8131/btnbmp.png[/img:20xgkfei]\n\nA imagem está muito junto com o texto...\n\nEu gostaria que ficasse com os espaços igual aos buttons da ButtonBar\n[img:20xgkfei]http://img441.imageshack.us/img441/7710/imagemylx.png[/img:20xgkfei]\n\n\nDesde Já Obrigado..",
"time": "15:55",
"topic": "BTNBMP",
"username": "ICO"
}
] |
BTNBMP
|
[
{
"date": "2010-07-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola amigo...\nPrueba así:\n[code=fw:n9oem90a]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">BTNBMP</span> Btn2 <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">201</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"CANCELAR22\"</span> BOTTOM;<br /> <span style=\"color: #0000ff;\">ACTION</span> oWnd1:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> </div>[/code:n9oem90a]\nTienes 4 opciones para probar: LEFT, RIGHT, TOP y BOTTOM.\nEspero te sirva.",
"time": "17:40",
"topic": "BTNBMP",
"username": "jrestojeda"
}
] |
BTNBMP
|
[
{
"date": "2010-07-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ola Ojeda.. Obrigado por responder\n\nVeja bem, Eu já estou usando BOTTOM, e mesmo usando o TOP o espaço entre a imagem e o texto são muitos próximos como mostra na 1ª imagem. e não quero usar LEFT nem RIGHT\n\nEstou Fazendo assim;\n[code=fw:2svl8l8b]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #0000ff;\">Redefine</span> <span style=\"color: #0000ff;\">BTNBMP</span> obtn<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">Prompt</span> <span style=\"color: #ff0000;\">\"&Sair\"</span> ;<br /> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"#8005\"</span>,<span style=\"color: #ff0000;\">\"#8002\"</span>,<span style=\"color: #ff0000;\">\"#8004\"</span> ;<br /> <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">4005</span> <span style=\"color: #0000ff;\">Of</span> oDlg ;<br /> BOTTOM ;<br /> <span style=\"color: #0000ff;\">Action</span> oDlg:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> ;<br /> NOBORDER</div>[/code:2svl8l8b]\n\nO button fica assim;\n[img:2svl8l8b]http://img809.imageshack.us/img809/8131/btnbmp.png[/img:2svl8l8b]\n\ne eu quero com este espaço\n[img:2svl8l8b]http://img441.imageshack.us/img441/7710/imagemylx.png[/img:2svl8l8b]\n\nAbraços..",
"time": "18:25",
"topic": "BTNBMP",
"username": "ICO"
}
] |
BTNBMP
|
[
{
"date": "2010-07-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola...\nEntonces prueba poner un renglón en blanco en el botton.\n[code=fw:2ua86zb0]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\" \"</span>+CHR<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">13</span><span style=\"color: #000000;\">)</span>+CHR<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\"&Sair\"</span><br /> </div>[/code:2ua86zb0]\n\nDe todas formas no entiendo por qué tienes varios recursos en el mismo bottón. \n[code=fw:2ua86zb0]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"#8005\"</span>,<span style=\"color: #ff0000;\">\"#8002\"</span>,<span style=\"color: #ff0000;\">\"#8004\"</span><br /> </div>[/code:2ua86zb0]\nNo me queda claro eso en tu REDEFINE.\n\nEspero te sirva.\nSaludos, Esteban",
"time": "18:46",
"topic": "BTNBMP",
"username": "jrestojeda"
}
] |
BTNBMP
|
[
{
"date": "2010-07-08",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Bom Dia Ojeda..\nNão Resolveu..\n\nTenho 3 imagens no button porque ao pressionar o button a imagem troca, e quando ela está disable tb. mostra outra imagem..\n\n\nAbraços..",
"time": "12:48",
"topic": "BTNBMP",
"username": "ICO"
}
] |
BTNBMP
|
[
{
"date": "2010-07-08",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Resolvido desta forma ;\n[code=fw:3ectafej]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #0000ff;\">Redefine</span> <span style=\"color: #0000ff;\">BTNBMP</span> obtn<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #0000ff;\">Prompt</span> Space<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\"&Fechar\"</span> ;<br /> <span style=\"color: #0000ff;\">Resource</span>....</div>[/code:3ectafej]\n\nObrigado..",
"time": "14:40",
"topic": "BTNBMP",
"username": "ICO"
}
] |
BTNBMP
|
[
{
"date": "2014-03-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi to all <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> \n How to obtain a vertical center and horizontal center in BTNBMP buttons?\nMy goal is to display only a coloured button without a bmp contained in it\nin other words a coloured Button it's ok\nBest regards\nMarco\n\n\n[code=fw:r5kp8fpu]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><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<br /><br /><span style=\"color: #00C800;\">LOCAL</span> oBtn1<br /><span style=\"color: #00C800;\">LOCAL</span> oBtn2<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;\">100</span> , <span style=\"color: #000000;\">100</span> <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">500</span> , <span style=\"color: #000000;\">500</span> <span style=\"color: #0000ff;\">PIXEL</span><br /><br />@ <span style=\"color: #000000;\">40</span> , <span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBtn1 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Button &1\"</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">60</span> , <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"1\"</span> <span style=\"color: #000000;\">)</span><br /><br />@ <span style=\"color: #000000;\">70</span> , <span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBtn2 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Button &2\"</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">60</span> , <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"2\"</span> <span style=\"color: #000000;\">)</span><br />oBtn2:<span style=\"color: #000000;\">setcolor</span><span style=\"color: #000000;\">(</span> CLR_WHITE, CLR_HRED <span style=\"color: #000000;\">)</span><br /><span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg<br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span> <br /> </div>[/code:r5kp8fpu]",
"time": "15:29",
"topic": "BTNBMP",
"username": "MarcoBoschi"
}
] |
BTNBMP
|
[
{
"date": "2014-03-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marco,\n\ndo You mean a GRADIENT painted horizontal or vertical ?\n\n[color=#0000FF:2aid5i41][b:2aid5i41]oBtn1:bClrGrad = { | lMouseOver | If( ! lMouseOver,;\n{ { 0.50, 11513775, 16777215 }, ;\n{ 0.50, 16777215, 11513775 } }, ;\n{ { 0.50, 16761992, 16777215 }, ;\n{ 0.50, 16777215, 16761992 } } ) }[/b:2aid5i41][/color:2aid5i41]\n\nbest regards\nUwe <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->",
"time": "16:03",
"topic": "BTNBMP",
"username": "ukoenig"
}
] |
BTNBMP
|
[
{
"date": "2014-03-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[code=fw:2raqs7j0]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><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<br /><br /> <span style=\"color: #00C800;\">LOCAL</span> oBtn1<br /> <span style=\"color: #00C800;\">LOCAL</span> oBtn2<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;\">100</span> , <span style=\"color: #000000;\">100</span> <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">500</span> , <span style=\"color: #000000;\">500</span> <span style=\"color: #0000ff;\">PIXEL</span><br /><br /> <span style=\"color: #B900B9;\">// LEFT, CENTER OR RIGHT</span><br /><br /> @ <span style=\"color: #000000;\">40</span> , <span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBtn1 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Button &1\"</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">60</span> , <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">RIGHT</span> ;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"1\"</span> <span style=\"color: #000000;\">)</span><br /><br /> @ <span style=\"color: #000000;\">70</span> , <span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBtn2 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Button &2\"</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">60</span> , <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">CENTER</span> ;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"2\"</span> <span style=\"color: #000000;\">)</span><br /><br /> oBtn2:<span style=\"color: #000000;\">setcolor</span><span style=\"color: #000000;\">(</span> CLR_WHITE, CLR_HRED <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg<br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br /> </div>[/code:2raqs7j0]\n\u001a",
"time": "16:10",
"topic": "BTNBMP",
"username": "karinha"
}
] |
BTNBMP
|
[
{
"date": "2014-03-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear friends,\n I want to obtain a simple Button with a different colour\n\nIs it possible to colour a BUTTON?\nText is centered in a perfect way!\n\n\n[img:256cwjs5]http://www.marcoboschi.it/public/cattura.png[/img:256cwjs5]\n\n[code=fw:256cwjs5]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><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<br /><br /> <span style=\"color: #00C800;\">LOCAL</span> oBut<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;\">FROM</span> <span style=\"color: #000000;\">100</span> , <span style=\"color: #000000;\">100</span> <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">500</span> , <span style=\"color: #000000;\">500</span> <span style=\"color: #0000ff;\">PIXEL</span><br /><br /> <span style=\"color: #B900B9;\">// LEFT, CENTER OR RIGHT</span><br /><br /> @ <span style=\"color: #000000;\">40</span> , <span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">BUTTON</span> oBut <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Button\"</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">60</span> , <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">PIXEL</span><br /><br /> @ <span style=\"color: #000000;\">70</span> , <span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBtn <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"BtnBmp\"</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">60</span> , <span style=\"color: #000000;\">20</span><br /> oBtn:<span style=\"color: #000000;\">setcolor</span><span style=\"color: #000000;\">(</span> CLR_WHITE, CLR_HRED <span style=\"color: #000000;\">)</span><br /><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg<br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span></div>[/code:256cwjs5]",
"time": "16:31",
"topic": "BTNBMP",
"username": "MarcoBoschi"
}
] |
BTNBMP
|
[
{
"date": "2014-03-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marco,\nI changed the two buttons as a test :\n\n[img:3nfzaapa]http://www.pflegeplus.com/pictures/Btncolor1.jpg[/img:3nfzaapa]\n\n\n@ nSHeight - 685, nSWidth - 105 BTNBMP oSBtn[2] OF oWnd ;\nSIZE 95, 65 PIXEL 2007 ;\nNOBORDER ;\nPROMPT \" &Window\" + CRLF + \"painter\" ;\nACTION ( W_PAINTER(oSay1), oWnd:Refresh() ) ;\nFONT oFont1 ;\nCENTER\noSBtn[2]:bClrGrad = { | lMouseOver | If( ! lMouseOver,;\n{ { 1, 11513775, 11513775 }, { 1, 11513775, 11513775 } }, ;\n{ { 1, 16761992, 16761992 }, { 1, 16761992, 16761992 } } ) }\noSBtn[2]:cToolTip = { \"Select the\" + CRLF + \"Window-painter\",\"SELECT\", 1, CLR_BLACK, 14089979 }\noSBtn[2]:SetColor( 0, )\n\n\n@ nSHeight - 610, nSWidth - 105 BTNBMP oSBtn[3] OF oWnd ;\nSIZE 95, 65 PIXEL 2007 ;\nNOBORDER ;\nPROMPT \" &Dialog\" + CRLF + \"painter\" ;\nACTION D_PAINTER(oSay1) ;\nFONT oFont1 ;\nCENTER\noSBtn[3]:bClrGrad = { | lMouseOver | If( ! lMouseOver,;\n{ { 1, 255, 255 }, { 1, 255, 255 } }, ;\n{ { 1, 16761992, 16761992 }, { 1, 16761992, 16761992 } } ) }\noSBtn[3]:SetColor( 16777215, )\noSBtn[3]:cToolTip = { \"Select the\" + CRLF + \"Dialog-painter\",\"SELECT\", 1, CLR_BLACK, 14089979 }\n\nbest regards\nUwe <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->",
"time": "16:48",
"topic": "BTNBMP",
"username": "ukoenig"
}
] |
BTNBMP
|
[
{
"date": "2014-03-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe and karinha\nMany thanks\nmarco",
"time": "18:02",
"topic": "BTNBMP",
"username": "MarcoBoschi"
}
] |
BTNBMP
|
[
{
"date": "2014-03-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Another problem using BTNBMP\nIf I click using Mouse on btnbmp I can see that settext method works fine\nIf I press \"1\" or \"2\" on keyboard I cannot see changes into buttons.\nI can't understand the reason\n\nHelp needed\n\nBest regars\nMarco \n\n[code=fw:1pd68j0r]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><br /><span style=\"color: #00C800;\">FUNCTION</span> MAIN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">LOCAL</span> oDlg<br /><span style=\"color: #00C800;\">LOCAL</span> oBut1<br /><span style=\"color: #00C800;\">LOCAL</span> oBut2<br /><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;\">100</span> , <span style=\"color: #000000;\">100</span> <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">500</span> , <span style=\"color: #000000;\">500</span> <span style=\"color: #0000ff;\">PIXEL</span><br /><br />@ <span style=\"color: #000000;\">1</span> , <span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBut1 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"&1.First\"</span> <span style=\"color: #0000ff;\">OF</span> oDlg ;<br /> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">100</span> , <span style=\"color: #000000;\">20</span> ;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span> oBut1:<span style=\"color: #000000;\">settext</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Pressed...\"</span> <span style=\"color: #000000;\">)</span> , ;<br /> sysrefresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> , ;<br /> <span style=\"color: #0000ff;\">sleep</span><span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">1000</span> <span style=\"color: #000000;\">)</span> , ;<br /> oBut1:<span style=\"color: #000000;\">settext</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"&1.First\"</span> <span style=\"color: #000000;\">)</span> , ;<br /> sysrefresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> , <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"OK1\"</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">CENTER</span><br />oBut1:<span style=\"color: #000000;\">setcolor</span><span style=\"color: #000000;\">(</span> CLR_WHITE , CLR_HBLUE <span style=\"color: #000000;\">)</span><br /><br />@ <span style=\"color: #000000;\">30</span> , <span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBut2 <span style=\"color: #0000ff;\">OF</span> oDlg ;<br /> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">100</span> , <span style=\"color: #000000;\">20</span> ;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span> oBut2:<span style=\"color: #000000;\">settext</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Pressed...\"</span> <span style=\"color: #000000;\">)</span> , ;<br /> sysrefresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> , ;<br /> <span style=\"color: #0000ff;\">sleep</span><span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">1000</span> <span style=\"color: #000000;\">)</span> , ;<br /> oBut2:<span style=\"color: #000000;\">settext</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"&2.Second\"</span> <span style=\"color: #000000;\">)</span> , ;<br /> sysrefresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> , <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"OK2\"</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">CENTER</span><br />oBut2:<span style=\"color: #000000;\">setcolor</span><span style=\"color: #000000;\">(</span> CLR_WHITE , CLR_HRED <span style=\"color: #000000;\">)</span><br /><br /><br />oDlg:<span style=\"color: #000000;\">bKeyDown</span> := <span style=\"color: #000000;\">{</span> |nKey| Premi<span style=\"color: #000000;\">(</span> nKey , oBut1 , oBut2 <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /><br /><br /><span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">CENTER</span> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">INIT</span> <span style=\"color: #000000;\">(</span> oBut1:<span style=\"color: #000000;\">settext</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"&1.First\"</span> <span style=\"color: #000000;\">)</span> , oBut2:<span style=\"color: #000000;\">settext</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"&2.Second\"</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: #00C800;\">FUNCTION</span> PREMI<span style=\"color: #000000;\">(</span> nKey , oBut1 , oBut2 <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">LOCAL</span> cPressed := UPPER<span style=\"color: #000000;\">(</span> CHR<span style=\"color: #000000;\">(</span> nKey <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">DO</span> <span style=\"color: #00C800;\">CASE</span><br /> <span style=\"color: #00C800;\">CASE</span> cPressed = <span style=\"color: #ff0000;\">\"1\"</span><br /> oBut1:<span style=\"color: #0000ff;\">Click</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">CASE</span> cPressed = <span style=\"color: #ff0000;\">\"2\"</span><br /> oBut2:<span style=\"color: #0000ff;\">Click</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">ENDCASE</span><br /><span style=\"color: #00C800;\">RETURN</span> .T.</div>[/code:1pd68j0r]",
"time": "16:58",
"topic": "BTNBMP",
"username": "MarcoBoschi"
}
] |
BTNBMP
|
[
{
"date": "2014-03-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marco,\n\ntry these changes :\n\n[code=fw:3u7nz1gm]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><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 /><span style=\"color: #00C800;\">LOCAL</span> oDlg<br /><span style=\"color: #00C800;\">LOCAL</span> oBut1<br /><span style=\"color: #00C800;\">LOCAL</span> oBut2<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;\">100</span> , <span style=\"color: #000000;\">100</span> <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">500</span> , <span style=\"color: #000000;\">500</span> <span style=\"color: #0000ff;\">PIXEL</span><br /><br />@ <span style=\"color: #000000;\">1</span> , <span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBut1 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"&1.First\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">100</span> , <span style=\"color: #000000;\">20</span> ;<br /><span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span> <span style=\"color: #0000ff;\">sleep</span><span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">1000</span> <span style=\"color: #000000;\">)</span>, ;<br /> <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"OK1\"</span> <span style=\"color: #000000;\">)</span>, ;<br /> oBut1:<span style=\"color: #000000;\">cCaption</span> := <span style=\"color: #ff0000;\">\"&1.First\"</span>, ; <span style=\"color: #B900B9;\">// back to original promttext</span><br /> oBut1:<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;\">CENTER</span><br />oBut1:<span style=\"color: #000000;\">setcolor</span><span style=\"color: #000000;\">(</span> CLR_WHITE , CLR_HBLUE <span style=\"color: #000000;\">)</span><br /><br />@ <span style=\"color: #000000;\">30</span> , <span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBut2 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"&2.Second\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">100</span> , <span style=\"color: #000000;\">20</span> ;<br /><span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span> <span style=\"color: #0000ff;\">sleep</span><span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">1000</span> <span style=\"color: #000000;\">)</span>, ;<br /> <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"OK1\"</span> <span style=\"color: #000000;\">)</span>, ;<br /> oBut2:<span style=\"color: #000000;\">cCaption</span> := <span style=\"color: #ff0000;\">\"&2.Second\"</span>, ; <span style=\"color: #B900B9;\">// back to original promttext</span><br /> oBut2:<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;\">CENTER</span><br />oBut2:<span style=\"color: #000000;\">setcolor</span><span style=\"color: #000000;\">(</span> CLR_WHITE , CLR_HRED <span style=\"color: #000000;\">)</span><br /><br />oDlg:<span style=\"color: #000000;\">bKeyDown</span> := <span style=\"color: #000000;\">{</span> |nKey| Premi<span style=\"color: #000000;\">(</span> nKey , oBut1 , oBut2 <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /><br /><span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">CENTER</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> PREMI<span style=\"color: #000000;\">(</span> nKey , oBut1 , oBut2 <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">LOCAL</span> cPressed := UPPER<span style=\"color: #000000;\">(</span> CHR<span style=\"color: #000000;\">(</span> nKey <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">DO</span> <span style=\"color: #00C800;\">CASE</span><br /> <span style=\"color: #00C800;\">CASE</span> cPressed = <span style=\"color: #ff0000;\">\"1\"</span><br /> oBut1:<span style=\"color: #000000;\">cCaption</span> := <span style=\"color: #ff0000;\">\"Pressed...\"</span><br /> oBut1:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> oBut1:<span style=\"color: #0000ff;\">Click</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">CASE</span> cPressed = <span style=\"color: #ff0000;\">\"2\"</span><br /> oBut2:<span style=\"color: #000000;\">cCaption</span> := <span style=\"color: #ff0000;\">\"Pressed...\"</span><br /> oBut2:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> oBut2:<span style=\"color: #0000ff;\">Click</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">ENDCASE</span><br /><br /><span style=\"color: #00C800;\">RETURN</span> .T. <br /> </div>[/code:3u7nz1gm]\n\nBest regards\nUwe <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->",
"time": "17:55",
"topic": "BTNBMP",
"username": "ukoenig"
}
] |
BTNBMP
|
[
{
"date": "2014-03-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ok,\n many thanks\n <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->",
"time": "17:40",
"topic": "BTNBMP",
"username": "MarcoBoschi"
}
] |
BTNBMP
|
[
{
"date": "2014-09-19",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio\n\nBTNBMP muestra de manera diferente debido la versión FWH\n\n@ 11, 138 BTNBMP OF oDlg SIZE 40, 15 PIXEL 2007 NOBORDER PROMPT \" &Ok\" FONT oFont LEFT RESOURCE \"BMP_BTOK\" ACTION (lOk:=.t., oDlg:End())\n@ 179, 2 BTNBMP OF oDlg SIZE 180, 18 PIXEL 2007 NOBORDER PROMPT \" SISTEM INFORMÁTICA \" FONT oFont4 LEFT RESOURCE \"BMP_INF2\" ACTION SobreInfo2()\n\nOK [FWH1402]\n[img:1wnhn9eq]http://imagizer.imageshack.us/v2/640x680q90/538/rwfNjZ.jpg[/img:1wnhn9eq]\n\nNO OK [FWH1408]\n[img:1wnhn9eq]http://imagizer.imageshack.us/v2/640x680q90/673/P0XzYr.jpg[/img:1wnhn9eq]",
"time": "01:51",
"topic": "BTNBMP FWH1402 X FWH1408",
"username": "Sistem"
}
] |
BTNBMP FWH1402 X FWH1408
|
[
{
"date": "2014-09-19",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Vamos a revisarlo de inmediato, gracias",
"time": "01:57",
"topic": "BTNBMP FWH1402 X FWH1408",
"username": "Antonio Linares"
}
] |
BTNBMP FWH1402 X FWH1408
|
[
{
"date": "2014-09-19",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Por favor modifica estos métodos con este código:\n\n[code=fw:4vx9ep2k]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">METHOD</span> PaintCaption<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TBtnBmp<br /><br /> <span style=\"color: #00C800;\">local</span> nStyle, nClr<br /> <span style=\"color: #00C800;\">local</span> hOldFont, aRect, lMultiline, cWord, cWord2<br /> <span style=\"color: #00C800;\">local</span> nOffset, nMaxWidth, nLine<br /> <span style=\"color: #00C800;\">local</span> nTxtTop, nTxtLeft, nTxtRight<br /> <span style=\"color: #00C800;\">local</span> nTxtHeight, nAdjust := <span style=\"color: #000000;\">0</span><br /> <span style=\"color: #00C800;\">local</span> nLayOut := ::<span style=\"color: #000000;\">nLayOut</span><br /><br /> <span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">cCaption</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">oFont</span> == <span style=\"color: #00C800;\">nil</span><br /> ::<span style=\"color: #000000;\">GetFont</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> lMultiLine = ! Empty<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">cCaption</span> <span style=\"color: #000000;\">)</span> .and. CRLF $ ::<span style=\"color: #000000;\">cCaption</span><br /><br /> <span style=\"color: #00C800;\">if</span> lMultiLine<br /> cWord = cStrWord<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">cCaption</span>, nOffset, CRLF <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">while</span> nOffset < Len<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">cCaption</span> <span style=\"color: #000000;\">)</span><br /> nMaxWidth = <span style=\"color: #0000ff;\">Max</span><span style=\"color: #000000;\">(</span> nMaxWidth,;<br /> Len<span style=\"color: #000000;\">(</span> cWord2 := cStrWord<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">cCaption</span>, @nOffset, CRLF <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">if</span> Len<span style=\"color: #000000;\">(</span> cWord <span style=\"color: #000000;\">)</span> < nMaxWidth<br /> cWord = cWord2<br /> <span style=\"color: #00C800;\">endif</span><br /> end<br /><br /> nLine = MLCount<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">cCaption</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">else</span><br /> cWord = ::<span style=\"color: #000000;\">cCaption</span><br /> nTxtHeight = GetTextHeight<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hWnd</span>, ::<span style=\"color: #000000;\">hDC</span> <span style=\"color: #000000;\">)</span><br /> nTxtTop = ::<span style=\"color: #000000;\">nHeight</span> / <span style=\"color: #000000;\">2</span> - nTxtHeight / <span style=\"color: #000000;\">2</span><br /> nMaxWidth = GetTextWidth<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">0</span>, cWord, ::<span style=\"color: #000000;\">oFont</span>:<span style=\"color: #000000;\">hFont</span> <span style=\"color: #000000;\">)</span><br /> nTxtLeft = ::<span style=\"color: #000000;\">nWidth</span> / <span style=\"color: #000000;\">2</span> - nMaxWidth / <span style=\"color: #000000;\">2</span> <br /> nTxtRight = ::<span style=\"color: #000000;\">nWidth</span> / <span style=\"color: #000000;\">2</span> + nMaxWidth / <span style=\"color: #000000;\">2</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">nLayOut</span> == <span style=\"color: #000000;\">1</span> <span style=\"color: #B900B9;\">// TOP</span><br /> nTxtLeft -= <span style=\"color: #000000;\">3</span><br /> <span style=\"color: #00C800;\">endif</span> <br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">nLayout</span> == <span style=\"color: #000000;\">2</span> <span style=\"color: #B900B9;\">// LEFT</span><br /> nTxtLeft += <span style=\"color: #000000;\">5</span><br /> nTxtRight += nBmpWidth<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hBmp</span> <span style=\"color: #000000;\">)</span> / <span style=\"color: #000000;\">2</span> - <span style=\"color: #000000;\">5</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">nLayout</span> == <span style=\"color: #000000;\">4</span> <span style=\"color: #B900B9;\">// RIGHT</span><br /> nTxtLeft -= nBmpWidth<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hBmp</span> <span style=\"color: #000000;\">)</span> / <span style=\"color: #000000;\">2</span> - <span style=\"color: #000000;\">5</span><br /> nTxtRight -= nBmpWidth<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hBmp</span> <span style=\"color: #000000;\">)</span> / <span style=\"color: #000000;\">2</span> - <span style=\"color: #000000;\">5</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> nStyle = nOr<span style=\"color: #000000;\">(</span> <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">nLayOut</span> == <span style=\"color: #000000;\">0</span>, DT_CENTER, nLayOut <span style=\"color: #000000;\">)</span>, DT_WORDBREAK,;<br /> <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">nLayOut</span> % <span style=\"color: #000000;\">2</span> == <span style=\"color: #000000;\">0</span>, DT_VCENTER, DT_TOP <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /> nClr = <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> IsWindowEnabled<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hWnd</span> <span style=\"color: #000000;\">)</span>, ::<span style=\"color: #000000;\">nClrText</span>,;<br /> <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">lDisColor</span>, CLR_HGRAY, ::<span style=\"color: #000000;\">nClrTextDis</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /> SetTextColor<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hDC</span>, <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> ValType<span style=\"color: #000000;\">(</span> nClr <span style=\"color: #000000;\">)</span> == <span style=\"color: #ff0000;\">\"B\"</span>, Eval<span style=\"color: #000000;\">(</span> nClr, ::<span style=\"color: #000000;\">lMOver</span> <span style=\"color: #000000;\">)</span>, nClr <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> SetBkMode<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hDC</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">oWnd</span>:<span style=\"color: #000000;\">oFont</span> != <span style=\"color: #00C800;\">nil</span> .or. ::<span style=\"color: #000000;\">oFont</span> != <span style=\"color: #00C800;\">nil</span><br /> hOldFont = SelectObject<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hDC</span>, ::<span style=\"color: #000000;\">oFont</span>:<span style=\"color: #000000;\">hFont</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">oPopup</span> != <span style=\"color: #00C800;\">nil</span><br /> nTxtRight -= <span style=\"color: #000000;\">12</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> aRect = <span style=\"color: #000000;\">{</span> nTxtTop, nTxtLeft, ::<span style=\"color: #000000;\">nHeight</span> - <span style=\"color: #000000;\">4</span>, nTxtRight <span style=\"color: #000000;\">}</span><br /><br /> lMultiLine = <span style=\"color: #000000;\">(</span> nTxtHeight := DrawText<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hDC</span>, ::<span style=\"color: #000000;\">cCaption</span>, aRect,;<br /> nOr<span style=\"color: #000000;\">(</span> DT_WORDBREAK, DT_CALCRECT <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> > ;<br /> DrawText<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hDC</span>, ::<span style=\"color: #000000;\">cCaption</span>, aRect, nOr<span style=\"color: #000000;\">(</span> DT_SINGLELINE, DT_CALCRECT <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">nLayOut</span> == <span style=\"color: #000000;\">1</span> <span style=\"color: #B900B9;\">// TOP</span><br /> nStyle = nOr<span style=\"color: #000000;\">(</span> DT_CENTER, DT_WORDBREAK <span style=\"color: #000000;\">)</span><br /> aRect<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> = aRect<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">3</span> <span style=\"color: #000000;\">]</span> - nTxtHeight<br /> <span style=\"color: #00C800;\">endif</span><br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">nLayOut</span> == <span style=\"color: #000000;\">3</span><br /> aRect<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> = <span style=\"color: #000000;\">2</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">lPressed</span><br /> aRect<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span>++<br /> aRect<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span>++<br /> aRect<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">3</span> <span style=\"color: #000000;\">]</span>++<br /> aRect<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">4</span> <span style=\"color: #000000;\">]</span>++<br /> <span style=\"color: #00C800;\">endif</span><br /><br /> DrawText<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hDC</span>, ::<span style=\"color: #000000;\">cCaption</span>, aRect, nStyle <span style=\"color: #000000;\">)</span><br /><br /> SelectObject<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hDC</span>, hOldFont <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> </div>[/code:4vx9ep2k]\n\n[code=fw:4vx9ep2k]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">METHOD</span> PaintBitmap<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TBtnBmp<br /><br /> <span style=\"color: #00C800;\">local</span> hBmp := ::<span style=\"color: #000000;\">hBmp</span><br /> <span style=\"color: #00C800;\">local</span> nTop := <span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">nHeight</span> / <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">)</span> - <span style=\"color: #000000;\">(</span> nBmpHeight<span style=\"color: #000000;\">(</span> hBmp <span style=\"color: #000000;\">)</span> / <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> nLeft := <span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">nWidth</span> / <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">)</span> - <span style=\"color: #000000;\">(</span> nBmpWidth<span style=\"color: #000000;\">(</span> hBmp <span style=\"color: #000000;\">)</span> / <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">oFont</span> != <span style=\"color: #00C800;\">nil</span> .and. ! Empty<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">cCaption</span> <span style=\"color: #000000;\">)</span> .and. ::<span style=\"color: #000000;\">nLayOut</span> == <span style=\"color: #000000;\">2</span> <span style=\"color: #B900B9;\">// LEFT</span><br /> nLeft -= GetTextWidth<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">0</span>, ::<span style=\"color: #000000;\">cCaption</span>, ::<span style=\"color: #000000;\">oFont</span>:<span style=\"color: #000000;\">hFont</span> <span style=\"color: #000000;\">)</span> / <span style=\"color: #000000;\">2</span> - <span style=\"color: #000000;\">5</span><br /> <span style=\"color: #00C800;\">endif</span> <br /><br /> <span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">cCaption</span> <span style=\"color: #000000;\">)</span><br /> nTop -= <span style=\"color: #000000;\">10</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">oPopup</span> != <span style=\"color: #00C800;\">nil</span><br /> nLeft -= <span style=\"color: #000000;\">6</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">nLayOut</span> == <span style=\"color: #000000;\">2</span> <span style=\"color: #B900B9;\">// LEFT</span><br /> nTop += <span style=\"color: #000000;\">10</span><br /> nLeft -= <span style=\"color: #000000;\">10</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">nLayOut</span> == <span style=\"color: #000000;\">4</span> <span style=\"color: #B900B9;\">// RIGHT</span><br /> nTop += <span style=\"color: #000000;\">10</span><br /> nLeft += <span style=\"color: #000000;\">35</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> <span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">(</span> hBmp <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">lBmpTransparent</span><br /> <span style=\"color: #00C800;\">if</span> SetAlpha<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> .and. ::<span style=\"color: #000000;\">aAlpha</span><span style=\"color: #000000;\">[</span> ::<span style=\"color: #000000;\">nBtn</span> <span style=\"color: #000000;\">]</span><br /> ABPaint<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hDC</span>, nTop + <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">lPressed</span>, <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">)</span>,;<br /> nLeft + <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">lPressed</span>, <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">)</span>, hBmp, ::<span style=\"color: #000000;\">nAlphaLevel</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">else</span><br /> DrawTransBmp<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hDC</span>, hBmp, nTop + <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">lPressed</span>, <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">)</span>,;<br /> nLeft + <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">lPressed</span>, <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">)</span>, nBmpWidth<span style=\"color: #000000;\">(</span> hBmp <span style=\"color: #000000;\">)</span>,;<br /> nBmpHeight<span style=\"color: #000000;\">(</span> hBmp <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /> <span style=\"color: #00C800;\">else</span><br /> DrawBitmap<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hDC</span>, hBmp, nTop + <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">lPressed</span>, <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">)</span>,;<br /> nLeft + <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">lPressed</span>, <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">)</span>, nBmpWidth<span style=\"color: #000000;\">(</span> hBmp <span style=\"color: #000000;\">)</span>,;<br /> nBmpHeight<span style=\"color: #000000;\">(</span> hBmp <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /> </div>[/code:4vx9ep2k]",
"time": "14:49",
"topic": "BTNBMP FWH1402 X FWH1408",
"username": "Antonio Linares"
}
] |
BTNBMP FWH1402 X FWH1408
|
[
{
"date": "2014-09-19",
"forum": "FiveWin para Harbour/xHarbour",
"text": "ahora \nesta bien\n\ngracias",
"time": "18:27",
"topic": "BTNBMP FWH1402 X FWH1408",
"username": "Sistem"
}
] |
BTNBMP FWH1402 X FWH1408
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.