messages
listlengths
1
1
topic
stringlengths
2
60
[ { "date": "2008-04-09", "forum": "FiveWin para Pocket PC", "text": "Gracias Antonio....", "time": "13:14", "topic": "Como pongo un radiobutton en horizontal??", "username": "Elias Torres" } ]
Como pongo un radiobutton en horizontal??
[ { "date": "2009-03-09", "forum": "FiveWin para Harbour/xHarbour", "text": "[b:1d0g0f8u]Vladimir:[/b:1d0g0f8u]\n\nIntenta de la Siguiente manera:\n\n[code=fw:1d0g0f8u]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">STATIC</span> <span style=\"color: #00C800;\">FUNCTION</span> texto<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">LOCAL</span> oFont1, oFont2, oDlgd<br /><br />    <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlgd <span style=\"color: #0000ff;\">FROM</span> <span style=\"color: #000000;\">2</span>, <span style=\"color: #000000;\">2</span> <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">40</span>,<span style=\"color: #000000;\">40</span> <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"Texto en Dialogos\"</span><br />    <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont1 <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"Arial\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">-36</span> NESCAPEMENT <span style=\"color: #000000;\">90</span>*<span style=\"color: #000000;\">10</span> <br />    <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont2 <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"Arial\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">-24</span> BOLD NESCAPEMENT <span style=\"color: #000000;\">45</span>*<span style=\"color: #000000;\">10</span> <br /><br />    <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlgd <span style=\"color: #0000ff;\">CENTERED</span> ; <br />             <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">PAINT</span><span style=\"color: #000000;\">&#40;</span> SayRotated<span style=\"color: #000000;\">&#40;</span> oDlgd, <span style=\"color: #000000;\">260</span>, <span style=\"color: #000000;\">10</span>, <span style=\"color: #ff0000;\">\"Texto 1 \"</span>, oFont1, CLR_HBLUE, CLR_GREEN, .T. <span style=\"color: #000000;\">&#41;</span>,; <br />                             SayRotated<span style=\"color: #000000;\">&#40;</span> oDlgd, <span style=\"color: #000000;\">150</span>, <span style=\"color: #000000;\">50</span>, <span style=\"color: #ff0000;\">\"Texto 2\"</span>,  oFont2, CLR_HRED,  CLR_YELLOW, .F. <span style=\"color: #000000;\">&#41;</span><span style=\"color: #000000;\">&#41;</span> <br /><br /><span style=\"color: #00C800;\">Return</span> <span style=\"color: #00C800;\">nil</span></div>[/code:1d0g0f8u]\n\nAki el codigo fuente:\n\n[code=fw:1d0g0f8u]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #B900B9;\">//---------------------------------------------------------------------------// </span><br /><span style=\"color: #00C800;\">FUNCTION</span> SayRotated<span style=\"color: #000000;\">&#40;</span>oWnd,Y,X,cPrompt,oFont,nClrText,nClrPane,l3D<span style=\"color: #000000;\">&#41;</span> <br /><br />  <span style=\"color: #00C800;\">LOCAL</span> hDC := oWnd:<span style=\"color: #000000;\">hDC</span> <br /><br />  <span style=\"color: #00C800;\">DEFAULT</span> nClrText := CLR_HRED, l3D := .T. <br />                       <br />  <span style=\"color: #00C800;\">IF</span> l3D <br />    DrawRotated<span style=\"color: #000000;\">&#40;</span> hdc, cPrompt, Y + <span style=\"color: #000000;\">1</span>, X + <span style=\"color: #000000;\">1</span>, CLR_BLACK, nClrPane, oFont <span style=\"color: #000000;\">&#41;</span> <br />    DrawRotated<span style=\"color: #000000;\">&#40;</span> hdc, cPrompt, Y - <span style=\"color: #000000;\">1</span>, X - <span style=\"color: #000000;\">1</span>, nClrText, nClrPane, oFont <span style=\"color: #000000;\">&#41;</span> <br />  <span style=\"color: #00C800;\">ENDIF</span> <br /><br />  DrawRotated<span style=\"color: #000000;\">&#40;</span> hdc, cPrompt, Y , X , nClrText, nClrPane, oFont <span style=\"color: #000000;\">&#41;</span> <br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">Nil</span> <br /><br /><span style=\"color: #B900B9;\">//---------------------------------------------------------------------------- </span><br /><span style=\"color: #00C800;\">STATIC</span> <span style=\"color: #00C800;\">FUNCTION</span> DrawRotated<span style=\"color: #000000;\">&#40;</span>hDC,cPrompt,Y,X,nClrText,nClrPane,oFont<span style=\"color: #000000;\">&#41;</span> <br /><br /><span style=\"color: #00C800;\">LOCAL</span> hOldFont, nOldMode, nOldClrText, nOldClrPane, nOldBkMode <br /><br />nOldClrText:= SetTextColor<span style=\"color: #000000;\">&#40;</span> hDC, nClrText <span style=\"color: #000000;\">&#41;</span> <br /><br />     <span style=\"color: #00C800;\">IF</span> nClrPane <> <span style=\"color: #00C800;\">Nil</span> <br />        nOldClrPane := SetBkColor<span style=\"color: #000000;\">&#40;</span> hDC, nClrPane <span style=\"color: #000000;\">&#41;</span> <br />   <span style=\"color: #00C800;\">ELSE</span> <br />        nOldBkMode := SetBkMode<span style=\"color: #000000;\">&#40;</span> hDC,<span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#41;</span> <br />  <span style=\"color: #00C800;\">ENDIF</span> <br /><br />  hOldFont:= SelectObject<span style=\"color: #000000;\">&#40;</span> hDC, oFont:<span style=\"color: #000000;\">hFont</span> <span style=\"color: #000000;\">&#41;</span> <br /><br />  TextOut<span style=\"color: #000000;\">&#40;</span> hDC, Y, X, cPrompt, LEN<span style=\"color: #000000;\">&#40;</span> cPrompt <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span> <br />  SelectObject<span style=\"color: #000000;\">&#40;</span> hDC, hOldFont <span style=\"color: #000000;\">&#41;</span> <br /><br />    <span style=\"color: #00C800;\">IF</span> nClrPane<>nil <br />       SetBkColor<span style=\"color: #000000;\">&#40;</span> hDC, nOldClrPane <span style=\"color: #000000;\">&#41;</span> <br />  <span style=\"color: #00C800;\">ELSE</span> <br />       SetBkMode<span style=\"color: #000000;\">&#40;</span> hDC, nOldBkMode <span style=\"color: #000000;\">&#41;</span> <br />  <span style=\"color: #00C800;\">ENDIF</span> <br /><br />  SetTextColor<span style=\"color: #000000;\">&#40;</span> hDC, nOldClrText <span style=\"color: #000000;\">&#41;</span> <br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">Nil</span> <br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span></div>[/code:1d0g0f8u]\n\nPuedes Revisar el post que deje hace unas semanas:\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=6&t=14659\">viewtopic.php?f=6&t=14659</a><!-- l -->\n\nEspero te Sirva. un saludo..", "time": "18:43", "topic": "Como pongo un texto en vertical usando TSAY", "username": "cuatecatl82" } ]
Como pongo un texto en vertical usando TSAY
[ { "date": "2009-03-07", "forum": "FiveWin para Harbour/xHarbour", "text": "Amigos\n\nComo pongo un texto en vertical usando TSAY ya que no puedo hacerlo con XBROWSE\n\n\nMil gracias", "time": "22:59", "topic": "Como pongo un texto en vertical usando TSAY", "username": "Vladimir Zorrilla" } ]
Como pongo un texto en vertical usando TSAY
[ { "date": "2014-10-27", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola.\n\nNecesito que esto tenga otra fuente. como lo hago?\ngraciias.\n\n[code=fw:2iqx4dbz]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">oR: <span style=\"color: #0000ff;\">say</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">3</span>,<span style=\"color: #ff0000;\">\"Total final:\"</span><span style=\"color: #000000;\">&#41;</span></div>[/code:2iqx4dbz]", "time": "19:33", "topic": "Como pongo una fuente en treport cuando...", "username": "goosfancito" } ]
Como pongo una fuente en treport cuando...
[ { "date": "2014-10-27", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola...\nComo primera medida, define los Fonts que necesites.\n\n[code=fw:1d8r0zs4]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont0 <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"ARIAL\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">-9</span><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont1 <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"ARIAL\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">-10</span><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont2 <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"ARIAL\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">-10</span> BOLD<br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont3 <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"ARIAL\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">-14</span> BOLD</div>[/code:1d8r0zs4]\n\nDefinición:\n[code=fw:1d8r0zs4]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">REPORT oReport <span style=\"color: #0000ff;\">TITLE</span> Titulo <span style=\"color: #0000ff;\">CENTER</span>;<br />          HEADER <span style=\"color: #ff0000;\">\"aca va la info del header\"</span> <span style=\"color: #0000ff;\">LEFT</span>;<br />          FOOTER <span style=\"color: #ff0000;\">\"Info del footer\"</span>;<br />          <span style=\"color: #0000ff;\">FONT</span> oFont0,oFont1,oFont2,oFont3;<br />          PREVIEW;<br />          CAPTION <span style=\"color: #ff0000;\">\"Vista previa del listado\"</span></div>[/code:1d8r0zs4]\n\nLuego en los Say debes hacer asi: \n\n[code=fw:1d8r0zs4]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">oReport:<span style=\"color: #0000ff;\">Say</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">1</span>,<span style=\"color: #ff0000;\">\"TU INFO\"</span>,nFont,nAlineacion<span style=\"color: #000000;\">&#41;</span></div>[/code:1d8r0zs4] \nnFont es el número de orden en el que están definidos en el objeto Report.\n\nEspero te sirva la ayuda.\nSaludos,", "time": "20:23", "topic": "Como pongo una fuente en treport cuando...", "username": "jrestojeda" } ]
Como pongo una fuente en treport cuando...
[ { "date": "2014-10-27", "forum": "FiveWin para Harbour/xHarbour", "text": "[code=fw:3twojjf3]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">// Sample showing how to manage the printer object</span><br /><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"FiveWin.ch\"</span><br /><br /><span style=\"color: #00C800;\">static</span> oWnd<br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> oPrn, oFont, oFntFinal<br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> nRowStep, nColStep<br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> nRow := <span style=\"color: #000000;\">0</span>, nCol := <span style=\"color: #000000;\">0</span>, n, m<br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">PRINT</span> oPrn <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"Testing the printer object from FiveWin\"</span> PREVIEW<br /><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">if</span> Empty<span style=\"color: #000000;\">&#40;</span> oPrn:<span style=\"color: #000000;\">hDC</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #B900B9;\">// Printer was not installed or ready</span><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">endif</span><br /><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont &nbsp; &nbsp; <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"Ms Sans Serif\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">-14</span> &nbsp; &nbsp; &nbsp;<span style=\"color: #0000ff;\">OF</span> oPrn<br />&nbsp; &nbsp; &nbsp; <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFntFinal <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"Ms Sans Serif\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">-26</span> BOLD <span style=\"color: #0000ff;\">OF</span> oPrn<br /><br />&nbsp; &nbsp; &nbsp; nRowStep = oPrn:<span style=\"color: #000000;\">nVertRes</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> / <span style=\"color: #000000;\">20</span> &nbsp; <span style=\"color: #B900B9;\">// We want 20 rows</span><br />&nbsp; &nbsp; &nbsp; nColStep = oPrn:<span style=\"color: #000000;\">nHorzRes</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> / <span style=\"color: #000000;\">15</span> &nbsp; <span style=\"color: #B900B9;\">// We want 15 cols</span><br /><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #0000ff;\">PAGE</span><br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">for</span> n = <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #000000;\">20</span> &nbsp;<span style=\"color: #B900B9;\">// rows</span><br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;nCol = <span style=\"color: #000000;\">0</span><br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oPrn:<span style=\"color: #0000ff;\">Say</span><span style=\"color: #000000;\">&#40;</span> nRow, nCol, Str<span style=\"color: #000000;\">&#40;</span> n, <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#41;</span>, oFont <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;nCol += nColStep<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;nRow += nRowStep<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">next</span><br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;nRow -= nRowStep<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #B900B9;\">//oR: say(3,\"Total final:\")</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oPrn:<span style=\"color: #0000ff;\">Say</span><span style=\"color: #000000;\">&#40;</span> nRow, nCol, <span style=\"color: #ff0000;\">\"Total final:\"</span>, oFntFinal <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #0000ff;\">ENDPAGE</span><br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">ENDPRINT</span><br /><br />&nbsp; &nbsp;oFont:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> &nbsp; &nbsp; &nbsp;<span style=\"color: #B900B9;\">// Destroy the font object</span><br />&nbsp; &nbsp;oFntFinal:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br />&nbsp;</div>[/code:3twojjf3]\n\u001a", "time": "20:26", "topic": "Como pongo una fuente en treport cuando...", "username": "karinha" } ]
Como pongo una fuente en treport cuando...
[ { "date": "2014-10-27", "forum": "FiveWin para Harbour/xHarbour", "text": "graciias a ambos", "time": "21:19", "topic": "Como pongo una fuente en treport cuando...", "username": "goosfancito" } ]
Como pongo una fuente en treport cuando...
[ { "date": "2005-10-21", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola,\n\nComo se puede postear una imagen (pequeña) en el mensaje ??\n\n\n\nAtte,\nLautaro", "time": "15:33", "topic": "Como postear imagenes ???", "username": "Lautaro" } ]
Como postear imagenes ???
[ { "date": "2005-10-21", "forum": "FiveWin para Harbour/xHarbour", "text": "[quote=\"Lautaro\":q2k3ses6]Hola,\n\nComo se puede postear una imagen (pequeña) en el mensaje ??\n\n\n\nAtte,\nLautaro[/quote:q2k3ses6]\n\nPrimero, necesitas un HOST para subirla, siempre se recomienda. Uno MUY BUENO es <!-- m --><a class=\"postlink\" href=\"http://imageshack.us/\">http://imageshack.us/</a><!-- m --> . Subes el JPG o lo que fuera. Luego te propone muchos formatos ese host, para foros <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->\nSi tiene una URL directa es bien simple debes usar [img]URL[/img] \npor ejemplo la gif del ojito <!-- m --><a class=\"postlink\" href=\"http://fivetechsoft.com/forums/templates/subSilver/images/logo_phpBB.gif\">http://fivetechsoft.com/forums/template ... _phpBB.gif</a><!-- m -->\nse publicaria asi\n[img:q2k3ses6]http&#58;//fivetechsoft&#46;com/forums/templates/subSilver/images/logo_phpBB&#46;gif[/img:q2k3ses6]\n\nSalu2", "time": "18:39", "topic": "Como postear imagenes ???", "username": "Hernan Diego Ceccarelli" } ]
Como postear imagenes ???
[ { "date": "2005-10-21", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias,\n\nAtte,\nLautaro", "time": "20:16", "topic": "Como postear imagenes ???", "username": "Lautaro" } ]
Como postear imagenes ???
[ { "date": "2007-08-29", "forum": "FiveWin para Pocket PC", "text": "Hola a todos\nTengo una tabla con referencias a archivos de imagenes, la idea es hacer una función que despliegue una imagen a partir del nombre del archivo que la contiene.", "time": "01:45", "topic": "Como presentar imagenes JPG", "username": "Arturo Lopesoria" } ]
Como presentar imagenes JPG
[ { "date": "2007-08-29", "forum": "FiveWin para Pocket PC", "text": "De momento no hay soporte a otro tipo de formato que no sea BMP.\n\nPara visualizar otro tipo de formato grafico en FiveWin para Windows se requiere de una DLL de terceros que no existe para Pocket PC.\n\nIgnoro si alguien haya encontrado una lib para desplegar otros formatos de archivos distintos a BMP", "time": "02:47", "topic": "Como presentar imagenes JPG", "username": "R.F." } ]
Como presentar imagenes JPG
[ { "date": "2007-08-29", "forum": "FiveWin para Pocket PC", "text": "Arturo,\n\nEl ejemplo samples\\Tutor11.prg te permite mostrar una imagen BMP en una ventana.", "time": "08:30", "topic": "Como presentar imagenes JPG", "username": "Antonio Linares" } ]
Como presentar imagenes JPG
[ { "date": "2007-08-29", "forum": "FiveWin para Pocket PC", "text": "Gracias Antonio y Rene por sus comentarios. \nPara mi es importante el formato JPG debido al volumen de datos.\nSi llego a tener la solucion se las hare saber.\nSaludos.", "time": "16:57", "topic": "Como presentar imagenes JPG", "username": "Arturo Lopesoria" } ]
Como presentar imagenes JPG
[ { "date": "2007-04-27", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola Amigos:\n\nNecesito una orientación Anticopia.\n\nComo pueden proteger o [b:20jd4q65]ocultar[/b:20jd4q65] mis recursos bmp , para que no sean vistos al examinar el ejecutable, con programas como el:\n\n - Resource Explorer , resource hacker o similares.\n\nLo que necesito es tratar de que no me copien mis figuras bmp.\n\nLo intente con comprimir el EXE, pero igual se pueden ver.\n\nAlguna idea, he visto algunos programas, a las cuales no se les puede \nver los bmp que tienen. Como hacen eso ??.\n\nCualquier ayuda es bienvenida <!-- s:wink: --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\":wink:\" title=\"Wink\" /><!-- s:wink: --> \n\nSaludos,", "time": "23:57", "topic": "Como proteger los Recursos", "username": "jcaro" } ]
Como proteger los Recursos
[ { "date": "2007-04-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola.\nProbaste trabajar los recursos (bmps, dialogos, etc) con el PellesC ?, y luego comprimir con upx?? como lo hace VerCe??\nal ,menos yo probe con el Resource Explorer y me dice \"Invalid Format\"..\nseria de que pruebes,,,\n\nSalu2\nWilli", "time": "00:40", "topic": "Como proteger los Recursos", "username": "Willi Quintana" } ]
Como proteger los Recursos
[ { "date": "2007-04-30", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias Willi, \n\nPero igual se ven. \n\nEspero que alguien conozca alguna otra forma.\n\nSaludos,", "time": "15:10", "topic": "Como proteger los Recursos", "username": "jcaro" } ]
Como proteger los Recursos
[ { "date": "2007-04-30", "forum": "FiveWin para Harbour/xHarbour", "text": "Juan,\n\nAunque consiguieses proteger el EXE, cuando las imágenes son mostradas por tu programa se puede hacer un \"impr-Pant\" y la imagen se captura en el porta-papeles de donde se puede pasar a un programa de manejo de gráficos que salve las imágenes.", "time": "18:39", "topic": "Como proteger los Recursos", "username": "Antonio Linares" } ]
Como proteger los Recursos
[ { "date": "2007-05-02", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola Antonio:\n\nSi te entiendo, eso es lo malo, pero de todas formas les va ha costar mucho mas copiarlos.\n\nPero piendo que igual debe existir algo, pues he visto programas , donde\nno se pueden ver los recursos usados, examino los exe y nada.\n\nAun no logro saber como, seguiré investigando, \n\nSaludos.", "time": "14:50", "topic": "Como proteger los Recursos", "username": "jcaro" } ]
Como proteger los Recursos
[ { "date": "2007-05-03", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola\n\nHace ya tiempo atras, encontre un programa : Armadillo\n\nLo que hace, es que te \"envuelve\" tu archivo EXE con algunas \"capas\" para que no se pueda accesar a el, y sobre todo segun, para evitar una posible ingenieria inversa al mismo.\n\nNo te sabria decir si funciona, debido a que en aquel entonces estaba en los 16 bits y este programa funciona solo con 32.\n\nSeguro que hay muchas mas opciones similares a este programa.\n\nSaludos", "time": "15:08", "topic": "Como proteger los Recursos", "username": "Raymundo Islas M." } ]
Como proteger los Recursos
[ { "date": "2006-08-25", "forum": "FiveWin para Pocket PC", "text": "Ya tengo mi primera aplicacion, solo que para comercializarla me falta alguna manera de proteccion.\n\nAlguien tiene alguna idea? <!-- s:roll: --><img src=\"{SMILIES_PATH}/icon_rolleyes.gif\" alt=\":roll:\" title=\"Rolling Eyes\" /><!-- s:roll: -->", "time": "01:59", "topic": "Como proteger una aplicacion para PPC", "username": "creswinman" } ]
Como proteger una aplicacion para PPC
[ { "date": "2006-08-25", "forum": "FiveWin para Pocket PC", "text": "Ignacio,\n\nPuedes usar la función SerialNumber() de FWPPC, que te devuelve el identificador único de un Pocket PC. Tienes un ejemplo de uso en samples\\TestSeri.prg\n\nPor favor usa el foro en español de FWPPC para mensajes en español. Gracias.", "time": "07:14", "topic": "Como proteger una aplicacion para PPC", "username": "Antonio Linares" } ]
Como proteger una aplicacion para PPC
[ { "date": "2006-08-25", "forum": "FiveWin para Pocket PC", "text": "Gracias Antonio, eso era lo que necesitaba....", "time": "14:50", "topic": "Como proteger una aplicacion para PPC", "username": "creswinman" } ]
Como proteger una aplicacion para PPC
[ { "date": "2011-01-26", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola amigos del foro, \n\nDeseo saber en que forma puedo mostrar el contenido de una carpeta al hacer un clic en un boton del programa, es decir, si en mi aplicacion existe una carpeta \\PROG\\ARCHIVOS deseo ver el contenido del ARCHIVOS pero como una ventana de Windows...\n\nGracias por su ayuda", "time": "17:46", "topic": "Como puede hacer esto:", "username": "JoseGS" } ]
Como puede hacer esto:
[ { "date": "2011-01-26", "forum": "FiveWin para Harbour/xHarbour", "text": "J,\n\n[code=fw:2s4ofbu3]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">'fivewin.ch'</span><br /><br /><span style=\"color: #00C800;\">FUNCTION</span> Main<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp; &nbsp;<span style=\"color: #0000ff;\">xBrowse</span><span style=\"color: #000000;\">&#40;</span> Directory<span style=\"color: #000000;\">&#40;</span> cGetDir<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span><br /><br />retu <span style=\"color: #00C800;\">nil</span></div>[/code:2s4ofbu3]", "time": "18:11", "topic": "Como puede hacer esto:", "username": "Carles" } ]
Como puede hacer esto:
[ { "date": "2011-01-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola Carles, gracias por contestar\n\nLo que intento hacer es lo siguiente:\n\nTengo un programa que utilizo para controlar las diferentes tareas de un proyecto. Generalmente los proyectos pueden tener archivos de diversa naturaleza Word, XLS, MP3, etc los cuales quiero tener agrupados en folders que el programa automaticamente abra para cada proyecto definido... Lo unico que deseo es que el usuario por medio de un boton pueda abrir una ventana de explorador con el contenido de esos archivos (o en blanco en caso de no tener nada) para que facilmente pueda copiar en dicha ventana todos los documentos relacionados con el proyecto.\n\nGracias", "time": "04:51", "topic": "Como puede hacer esto:", "username": "JoseGS" } ]
Como puede hacer esto:
[ { "date": "2011-01-28", "forum": "FiveWin para Harbour/xHarbour", "text": "J,\n\nNo entiendo lo q quieres hacer pero por si te sirve, en este ejemplo muestras en un browse el contenido de una carpeta (por defecto la unidad en la q estas, pero puedes indicarles la carpeta q quieras), y mediante drag&drop puedes arrastras mas ficheros desde el explorador u otra aplicacion y procesarlos posteriormente... no se q es lo q quieres exactamente....\n\n[code=fw:u9lsudwa]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">'fivewin.ch'</span><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">'xBrowse.ch'</span><br /><br />*--------------<br /><span style=\"color: #00C800;\">FUNCTION</span> Main<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />*--------------<br />   <span style=\"color: #00C800;\">LOCAL</span> oWnd, oBrw<br />   <span style=\"color: #00C800;\">LOCAL</span> aDir := Directory<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />   <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">'Arrastra ficheros desde el explorador'</span><br /><br />     @<span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">0</span> <span style=\"color: #0000ff;\">XBROWSE</span> oBrw ARRAY aDir<br /><br />     oBrw:<span style=\"color: #000000;\">CreateFromCode</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />     oWnd:<span style=\"color: #000000;\">oClient</span>      := oBrw<br /><br />   <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">ON</span> DROPFILES MyDrop<span style=\"color: #000000;\">&#40;</span> nRow, nCol, aFiles, oBrw <span style=\"color: #000000;\">&#41;</span><br /><br />retu <span style=\"color: #00C800;\">nil</span><br /><br /><br />*-------------------------------------------------<br /><span style=\"color: #00C800;\">STATIC</span> <span style=\"color: #00C800;\">FUNCTION</span> MyDrop<span style=\"color: #000000;\">&#40;</span> nRow, nCol, aFiles, oBrw <span style=\"color: #000000;\">&#41;</span><br />*-------------------------------------------------<br />  <span style=\"color: #00C800;\">LOCAL</span> nI<br />  <span style=\"color: #00C800;\">LOCAL</span> cTxt := <span style=\"color: #ff0000;\">''</span><br /><br />  <span style=\"color: #00C800;\">FOR</span> nI := <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">TO</span> Len<span style=\"color: #000000;\">&#40;</span> aFiles <span style=\"color: #000000;\">&#41;</span><br />      cTxt += aFiles<span style=\"color: #000000;\">&#91;</span>nI<span style=\"color: #000000;\">&#93;</span> + CRLF<br />      Aadd<span style=\"color: #000000;\">&#40;</span> oBrw:<span style=\"color: #000000;\">aArrayData</span>, <span style=\"color: #000000;\">&#123;</span> aFiles<span style=\"color: #000000;\">&#91;</span>nI<span style=\"color: #000000;\">&#93;</span>, <span style=\"color: #000000;\">0</span>, CToD<span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">''</span><span style=\"color: #000000;\">&#41;</span>, <span style=\"color: #ff0000;\">''</span>, <span style=\"color: #ff0000;\">''</span> <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#41;</span><br />  <span style=\"color: #00C800;\">NEXT</span><br /><br />  oBrw:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />  <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">&#40;</span> cTxt, <span style=\"color: #ff0000;\">'Procesar estos ficheros'</span> <span style=\"color: #000000;\">&#41;</span><br /><br />RETU <span style=\"color: #00C800;\">NIL</span></div>[/code:u9lsudwa]", "time": "09:29", "topic": "Como puede hacer esto:", "username": "Carles" } ]
Como puede hacer esto:
[ { "date": "2011-01-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias por tu respuesta Carles seguro la voy a aplicar aunque lo que necesito es algo mucho mas simple.\n\nVeras, es como cuando abres una nueva carpeta en el disco duro y luego hacer doble clic en ella y el windows abre una ventana que muestra el contenido de la misma. Alli incluso al hacer clic derecho se abre un menu contextual que permite entre otras cosas crear nuevos archivos... Eso es lo unico que deseo, que el sistema abra la pantalla (de Windows) que muestre el contenido de una X carpeta...\nGracias", "time": "14:07", "topic": "Como puede hacer esto:", "username": "JoseGS" } ]
Como puede hacer esto:
[ { "date": "2011-01-28", "forum": "FiveWin para Harbour/xHarbour", "text": "José:\n\nTal vez la función GetFile32() te puede servir. échale una mirada.\n\nSaludos", "time": "16:37", "topic": "Como puede hacer esto:", "username": "Armando" } ]
Como puede hacer esto:
[ { "date": "2011-01-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias Armando\n\nEs casi perfecta para lo que requiero y digo casi debido a que me muestra todos los archivos que necesito pero al hacer doble clic en alguno de ellos no se abre (seria lo deseable) aunque haciendo clic derecho puedo usar la opcion Abrir del menu contextual asi que me funciona bien asi....\nGracias", "time": "17:51", "topic": "Como puede hacer esto:", "username": "JoseGS" } ]
Como puede hacer esto:
[ { "date": "2008-12-22", "forum": "FiveWin para Harbour/xHarbour", "text": "Quiero obtener en tiempo de ejecución con que versión de FW fué compilado un sistema, existe una variable de instancia de donde sacarla\r\n(para presentarlo por pantalla)", "time": "20:00", "topic": "Como puedo Obtener la Versión de fw", "username": "ADBLANCO" } ]
Como puedo Obtener la Versión de fw
[ { "date": "2008-12-22", "forum": "FiveWin para Harbour/xHarbour", "text": "Angel:\r\n\r\nA ver si esto es lo que buscas.\r\n\r\nMsgInfo(FwVersion)\r\n\r\nSaludos", "time": "20:16", "topic": "Como puedo Obtener la Versión de fw", "username": "Armando" } ]
Como puedo Obtener la Versión de fw
[ { "date": "2008-12-22", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola\r\n\r\nMsgInfo( FWVERSION )\r\n\r\nEsta se encuentra en fivewin.ch", "time": "20:16", "topic": "Como puedo Obtener la Versión de fw", "username": "Patricio Avalos Aguirre" } ]
Como puedo Obtener la Versión de fw
[ { "date": "2008-12-22", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias, <!-- s:oops: --><img src=\"{SMILIES_PATH}/icon_redface.gif\" alt=\":oops:\" title=\"Embarassed\" /><!-- s:oops: -->", "time": "20:43", "topic": "Como puedo Obtener la Versión de fw", "username": "ADBLANCO" } ]
Como puedo Obtener la Versión de fw
[ { "date": "2009-07-02", "forum": "FiveWin para Harbour/xHarbour", "text": "Hay alguna forma de que mi programa en FW abra una pagina y luego la cierre.\n\n\nGracias", "time": "17:14", "topic": "Como puedo abrir y cerrra una pagina en el navegador", "username": "Vladimir Zorrilla" } ]
Como puedo abrir y cerrra una pagina en el navegador
[ { "date": "2009-07-02", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola amigo...\nPara abrir la página puedes usar los URLLINK que andan bien.\n\nEn el dialogo lo que hago es utilizar un Say y redefinirlo como URLLINK de la siguiente manera.\n[code=fw:2vfj1748]<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: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"URLLink.ch\"</span><br /><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg ..... <br />   ...<br />   ...<br />   <span style=\"color: #0000ff;\">REDEFINE</span> URLLINK oUrl2 <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">102</span> URL <span style=\"color: #ff0000;\">\"www.google.com\"</span> <span style=\"color: #0000ff;\">OF</span> oDlg;<br />      TOOLTIP <span style=\"color: #ff0000;\">\"Ir al site de Google\"</span><br />   ...<br />   ...<br /><br /><span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg<br /> </div>[/code:2vfj1748]\nDe esta forma se abrirá la página. (Nunca intenté cerrarla con mi sistema)\nEspero te sirva...\nSaludos,", "time": "20:44", "topic": "Como puedo abrir y cerrra una pagina en el navegador", "username": "jrestojeda" } ]
Como puedo abrir y cerrra una pagina en el navegador
[ { "date": "2006-09-13", "forum": "FiveWin para CA-Clipper", "text": "Estimados Colegas\n\nNecesito agrandar una imagen (zoom out) cuando hago click con el\nraton sobre ella ,alguien me puede orientar como hacerlo\n\ndesde ya muchas gracias\nFabian\n<!-- e --><a href=\"mailto:[email protected]\">[email protected]</a><!-- e -->", "time": "15:14", "topic": "Como puedo agrandar (hacer un zoomout) sobre JPG", "username": "Databaselab2002" } ]
Como puedo agrandar (hacer un zoomout) sobre JPG
[ { "date": "2006-09-13", "forum": "FiveWin para Harbour/xHarbour", "text": "Estimados Colegas \n\nNecesito agrandar una imagen (zoom out) cuando hago click con el \nraton sobre ella ,alguien me puede orientar como hacerlo \n\ndesde ya muchas gracias \nFabian \n<!-- e --><a href=\"mailto:[email protected]\">[email protected]</a><!-- e -->", "time": "15:18", "topic": "Como puedo agrandar un jpg haciendo click con el raton", "username": "Databaselab2002" } ]
Como puedo agrandar un jpg haciendo click con el raton
[ { "date": "2006-09-14", "forum": "FiveWin para Harbour/xHarbour", "text": "Fabian,\n\nRevisa samples\\TestBmp1.prg", "time": "07:08", "topic": "Como puedo agrandar un jpg haciendo click con el raton", "username": "Antonio Linares" } ]
Como puedo agrandar un jpg haciendo click con el raton
[ { "date": "2006-09-14", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio\n\nPara imagenes jpg funciona igual ?\n\nGracias\nFabian", "time": "14:23", "topic": "Como puedo agrandar un jpg haciendo click con el raton", "username": "Databaselab2002" } ]
Como puedo agrandar un jpg haciendo click con el raton
[ { "date": "2006-09-15", "forum": "FiveWin para Harbour/xHarbour", "text": "Fabian,\n\nSí, porque la Clase TImage los usa como bitmaps.", "time": "08:33", "topic": "Como puedo agrandar un jpg haciendo click con el raton", "username": "Antonio Linares" } ]
Como puedo agrandar un jpg haciendo click con el raton
[ { "date": "2009-01-20", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola amigos del foro \n\nComo puedo arreglar una tabla dbf que esta totalmente corrupta \n\n\n\n\nSaludos, \nErick", "time": "06:03", "topic": "Como puedo arreglar un archivo dbf dañado ?", "username": "Erick Almanza" } ]
Como puedo arreglar un archivo dbf dañado ?
[ { "date": "2009-01-20", "forum": "FiveWin para Harbour/xHarbour", "text": "Prueba el viejo FILEFIX DE las Norton Utilities...", "time": "18:43", "topic": "Como puedo arreglar un archivo dbf dañado ?", "username": "jrestojeda" } ]
Como puedo arreglar un archivo dbf dañado ?
[ { "date": "2009-01-20", "forum": "FiveWin para Harbour/xHarbour", "text": "Con Prometheus2000 he logrado abrir algunos dbf dañados, he eliminado toda la basura, y no se ha perdido información alguna. Por probar, nada se pierte.", "time": "19:23", "topic": "Como puedo arreglar un archivo dbf dañado ?", "username": "Manuel Aranda" } ]
Como puedo arreglar un archivo dbf dañado ?
[ { "date": "2007-08-14", "forum": "FiveWin para Pocket PC", "text": "Como puedo borrar un archivo de la pokect", "time": "09:18", "topic": "Como puedo borrar un archivo de la pokect", "username": "mjcc" } ]
Como puedo borrar un archivo de la pokect
[ { "date": "2007-08-14", "forum": "FiveWin para Pocket PC", "text": "FErase( cPath + \"\\\" + cNombreFichero )\n\nEjemplo:\n\nFErase( CurDir() + \"\\error.log\" )", "time": "09:50", "topic": "Como puedo borrar un archivo de la pokect", "username": "Antonio Linares" } ]
Como puedo borrar un archivo de la pokect
[ { "date": "2007-08-14", "forum": "FiveWin para Pocket PC", "text": "gracias", "time": "21:56", "topic": "Como puedo borrar un archivo de la pokect", "username": "mjcc" } ]
Como puedo borrar un archivo de la pokect
[ { "date": "2007-05-27", "forum": "FiveWin para Harbour/xHarbour", "text": "Estimados Colegas\n\nTengo un dialogo creado desde codigo como puedo hacer para centrarlo\nen las diferentes resoluciones\n\ndesde ya muchisimas gracias\n<!-- e --><a href=\"mailto:[email protected]\">[email protected]</a><!-- e -->\nFabian", "time": "19:44", "topic": "Como puedo centrar Dialogo creado desde codigo", "username": "Databaselab2002" } ]
Como puedo centrar Dialogo creado desde codigo
[ { "date": "2007-05-27", "forum": "FiveWin para Harbour/xHarbour", "text": "ACTIVATE DIALOG oDlg CENTERED", "time": "23:40", "topic": "Como puedo centrar Dialogo creado desde codigo", "username": "Antonio Linares" } ]
Como puedo centrar Dialogo creado desde codigo
[ { "date": "2007-06-02", "forum": "FiveWin para Harbour/xHarbour", "text": "Estimado Antonio \n\nEn 800 x 600 me lo centra perfecto pero si cambio la resolucion\na 1024 no qque puedo hacer\n\n\n\nDEFINE DIALOG oDlg1 from 10,35 to 20,70 STYLE nStyle COLOR CLR_BLUE,CLR_6 of oDlg\n\n @ 0 ,06 say ofecha Prompt \"CLAVE DE ACCESO \" FONT OFONT of oDlg1 COLOR CLR_BLACK,CLR_6\n\t \n @ 1.5 ,04 say ofecha Prompt \"Usuario \" FONT OFONT of oDlg1 COLOR CLR_BLACK,CLR_6\n\n @ 2.8 ,04 say ofecha Prompt oemtoansi(\"Contrase¤a \") FONT OFONT of oDlg1 COLOR CLR_BLACK,CLR_6\n \n @ 1.7 ,8 get user of odlg1\n @ 3.0 ,8 get pass password of odlg1\n\n\n\n @ 5 ,07 sbutton b resource \"ok\" PROMPT \"Continuar\" size 40,10 OF oDlg1 LOOK W97 TEXT ON_RIGHT action (Chkpass(user,pass), ODLG1:END)\n\n\nACTIVATE DIALOG oDlg1 CENTERED\n\nreturn nil\n\nDesde ya muchas gracias\nFabian\n<!-- e --><a href=\"mailto:[email protected]\">[email protected]</a><!-- e -->", "time": "03:51", "topic": "Como puedo centrar Dialogo creado desde codigo", "username": "Databaselab2002" } ]
Como puedo centrar Dialogo creado desde codigo
[ { "date": "2007-06-02", "forum": "FiveWin para Harbour/xHarbour", "text": "La función WndCenter() en source\\winapi\\wndcente.c es la encargada de hacer el centrado. Podrías modificarla un poco para que se ajuste a tus necesidades.", "time": "05:29", "topic": "Como puedo centrar Dialogo creado desde codigo", "username": "Antonio Linares" } ]
Como puedo centrar Dialogo creado desde codigo
[ { "date": "2021-03-28", "forum": "FiveWin para Harbour/xHarbour", "text": "Y en el caso de querer centrar despues de cambiar el ancho...\n\n[code=fw:2aimscne]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> &nbsp; WITH OBJECT oDlg<br />&nbsp; &nbsp; &nbsp; :<span style=\"color: #000000;\">nWidth</span>:= <span style=\"color: #000000;\">770</span><br />&nbsp; &nbsp; &nbsp; :<span style=\"color: #000000;\">WndCenter</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <------------- esto quiero saber como hacerlo.<br />&nbsp; &nbsp;ENDWITH<br />&nbsp;</div>[/code:2aimscne]\n\ncomo lo hago?", "time": "22:24", "topic": "Como puedo centrar Dialogo creado desde codigo", "username": "goosfancito" } ]
Como puedo centrar Dialogo creado desde codigo
[ { "date": "2021-03-29", "forum": "FiveWin para Harbour/xHarbour", "text": "Prueba este código\n\n[code=fw:3p03s0gq]<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: #00D7D7;\">#define</span> SM_CXSCREEN <span style=\"color: #000000;\">0</span><br /><span style=\"color: #00D7D7;\">#define</span> SM_CYSCREEN <span style=\"color: #000000;\">1</span><br /><br /><span style=\"color: #00C800;\">function</span> main<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; <span style=\"color: #00C800;\">Local</span> oDlg<br /><br />&nbsp; <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;\">TITLE</span> <span style=\"color: #ff0000;\">\"Pruebas de centrado\"</span> <span style=\"color: #0000ff;\">PIXEL</span><br /><br />&nbsp; @ <span style=\"color: #000000;\">1</span>,<span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #ff0000;\">\"Centrar\"</span> <span style=\"color: #0000ff;\">ACTION</span> CenterDialog <span style=\"color: #000000;\">&#40;</span> oDlg <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg<br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">&#40;</span> <span style=\"color: #00C800;\">nil</span> <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">function</span> CenterDialog <span style=\"color: #000000;\">&#40;</span> oDlg <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; <span style=\"color: #00C800;\">Local</span> nLeft := <span style=\"color: #000000;\">&#40;</span> GetSysMetrics <span style=\"color: #000000;\">&#40;</span> SM_CXSCREEN <span style=\"color: #000000;\">&#41;</span> / <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#41;</span> - <span style=\"color: #000000;\">&#40;</span> oDlg:<span style=\"color: #000000;\">nWidth</span> / <span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; <span style=\"color: #00C800;\">Local</span> nTop := &nbsp;<span style=\"color: #000000;\">&#40;</span> GetSysMetrics <span style=\"color: #000000;\">&#40;</span> SM_CYSCREEN <span style=\"color: #000000;\">&#41;</span> / <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#41;</span> - <span style=\"color: #000000;\">&#40;</span> oDlg:<span style=\"color: #000000;\">nHeight</span> / <span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; oDlg:<span style=\"color: #0000ff;\">Move</span> <span style=\"color: #000000;\">&#40;</span> nTop, nLeft <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">&#40;</span> <span style=\"color: #00C800;\">nil</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp;</div>[/code:3p03s0gq]", "time": "09:54", "topic": "Como puedo centrar Dialogo creado desde codigo", "username": "AngelSalom" } ]
Como puedo centrar Dialogo creado desde codigo
[ { "date": "2021-03-29", "forum": "FiveWin para Harbour/xHarbour", "text": "[code=fw:5xls0u5u]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"FiveWin.ch\"</span><br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; <span style=\"color: #00C800;\">local</span> oDlg<br /><br />&nbsp; <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;\">TITLE</span> <span style=\"color: #ff0000;\">\"Pruebas de centrado\"</span> <span style=\"color: #0000ff;\">PIXEL</span><br /><br />&nbsp; @ <span style=\"color: #000000;\">1</span>,<span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #ff0000;\">\"Centrar\"</span> <span style=\"color: #0000ff;\">ACTION</span> oDlg:<span style=\"color: #0000ff;\">Center</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; <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:5xls0u5u]", "time": "09:59", "topic": "Como puedo centrar Dialogo creado desde codigo", "username": "Antonio Linares" } ]
Como puedo centrar Dialogo creado desde codigo
[ { "date": "2013-05-06", "forum": "FiveWin para Harbour/xHarbour", "text": "Amigos del foro, quisiera recompilar fivewin.lib para xharbour versión 12.04, y la verdad, no sé como hacerlo, agradeceré toda ayuda.", "time": "23:17", "topic": "Como puedo compilar una classe?", "username": "Leo" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-07", "forum": "FiveWin para Harbour/xHarbour", "text": "<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?p=120609#p120609\">viewtopic.php?p=120609#p120609</a><!-- l -->", "time": "00:12", "topic": "Como puedo compilar una classe?", "username": "Antonio Linares" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-07", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias Antonio, lamentablemente no me sirve de mucho, puesto que hice algunas modificaciones a la TXBrowse y este bat me compila todo, y aún así me deja fuera algunas funciones. Seguiré investigando.", "time": "22:47", "topic": "Como puedo compilar una classe?", "username": "Leo" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-07", "forum": "FiveWin para Harbour/xHarbour", "text": "[quote=\"Leo\":231nvwkk]Gracias Antonio, lamentablemente no me sirve de mucho, puesto que hice algunas modificaciones a la TXBrowse y este bat me compila todo, y aún así me deja fuera algunas funciones. Seguiré investigando.[/quote:231nvwkk]\n\nLeo, quizas pueda servirte esto:\n\n\\borland\\bcc582\\bin\\TLIB FIVEWIN.LIB -+ TXBROWSE.OBJ (tu modulo)", "time": "23:10", "topic": "Como puedo compilar una classe?", "username": "cnavarro" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-07", "forum": "FiveWin para Harbour/xHarbour", "text": "Cristobal, gracias por responder, el tema es que tengo un bat que hace eso, el problema es que me deja algunas librerías fuera, y no sé como hacerlo.\n\n[code=fw:1hozf0r8]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">@ECHO OFF<br /><br /><span style=\"color: #00C800;\">IF</span> EXIST FIVEHX.LOG DEL FIVEHX.LOG<br /><br />ECHO Classes &nbsp;-TXBrowse<br />G:\\xharbour\\bin\\harbour.exe <span style=\"color: #0000ff;\">xBrowse</span> /n/a/v/w /ic:\\fwh\\include;c:\\xharbour\\include >> FIVEHX.LOG<br /><span style=\"color: #00C800;\">if</span> errorlevel <span style=\"color: #000000;\">1</span> GOTO ERROR<br />ECHO -O2 -Ic:\\xharbour\\include -tW <span style=\"color: #0000ff;\">xBrowse</span>.C > b32.bc<br />G:\\bcc582\\bin\\bcc32.exe -tWM -DHB_GUI -DHB_API_MACROS -DHB_STACK_MACROS -DHB_FM_STATISTICS_OFF -d -a8 -OS -O2 <span style=\"color: #000000;\">-5</span> -c @b32.bc >> FIVEHX.LOG<br />G:\\bcc582\\bin\\tlib.exe FiveHX -+<span style=\"color: #0000ff;\">XBrowse</span> >> FIVEHX.LOG<br />Rem DEL <span style=\"color: #0000ff;\">Brush</span>.C >> FIVEHX.LOG<br />Rem DEL <span style=\"color: #0000ff;\">Brush</span>.OBJ >> FIVEHX.LOG<br /><br />goto end<br /><br />:<span style=\"color: #000000;\">error</span><br />echo error de compilacion >> FIVEHX.LOG<br />notepad FIVEHX.LOG<br /><br />:<span style=\"color: #000000;\">end</span><br /><br /><span style=\"color: #00C800;\">PAUSE</span></div>[/code:1hozf0r8]\n\nLa lib resultante pesa 3 kb menos que el original y el resultado es el siguiente:\n\n[code=fw:1hozf0r8]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">Lines <span style=\"color: #000000;\">1043</span>, Functions/Procedures <span style=\"color: #000000;\">33</span><br />Generating C source output <span style=\"color: #0000ff;\">to</span> <span style=\"color: #ff0000;\">'rmail.c'</span>...<br />Done.<br />Borland C++ <span style=\"color: #000000;\">5.82</span> <span style=\"color: #00C800;\">for</span> Win32 Copyright <span style=\"color: #000000;\">&#40;</span>c<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">1993</span>, <span style=\"color: #000000;\">2005</span> Borland<br />rmail.c:<br /><span style=\"color: #000000;\">Turbo</span> Incremental Link <span style=\"color: #000000;\">5.69</span> Copyright <span style=\"color: #000000;\">&#40;</span>c<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">1997</span><span style=\"color: #000000;\">-2005</span> Borland<br />Error: <span style=\"color: #000000;\">Unresolved</span> external <span style=\"color: #ff0000;\">'_HB_FUN_HB_HKEYAT'</span> referenced <span style=\"color: #0000ff;\">from</span> C:\\FWH\\LIB\\FIVEHX<br />.LIB|XBrowse<br />Error: <span style=\"color: #000000;\">Unresolved</span> external <span style=\"color: #ff0000;\">'_HB_FUN_HB_HVALUEAT'</span> referenced <span style=\"color: #0000ff;\">from</span> C:\\FWH\\LIB\\FIVE<br />HX.LIB|XBrowse<br />Error: <span style=\"color: #000000;\">Unresolved</span> external <span style=\"color: #ff0000;\">'_HB_FUN_HB_HCASEMATCH'</span> referenced <span style=\"color: #0000ff;\">from</span> C:\\FWH\\LIB\\FI<br />VEHX.LIB|XBrowse<br />* Linking errors *</div>[/code:1hozf0r8]", "time": "23:27", "topic": "Como puedo compilar una classe?", "username": "Leo" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Se me ocurre que copies los fuentes de fivewin a otra carpeta, y sobre esa copies los fuentes que modificaste, y ahí compiles como dice Antonio para compilar todo", "time": "02:59", "topic": "Como puedo compilar una classe?", "username": "quique" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Quique, gracias por la idea, creo que mejoró, sólo que el método de compilación que me entregó Antonio me arrojó el siguiente error:\n\n[code=fw:25k00vnf]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">Borland C++ <span style=\"color: #000000;\">5.82</span> <span style=\"color: #00C800;\">for</span> Win32 Copyright <span style=\"color: #000000;\">&#40;</span>c<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">1993</span>, <span style=\"color: #000000;\">2005</span> Borland<br /><span style=\"color: #0000ff;\">xbrowse</span>.c:<br /><br /><span style=\"color: #000000;\">G</span>:\\FWH\\NewLibs>for %f in <span style=\"color: #000000;\">&#40;</span>*.obj<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #00C800;\">do</span> g:\\bcc582\\bin\\tlib fivehx.lib -+ %f /<span style=\"color: #000000;\">0</span> /P32,<br />,<br /><br />G:\\FWH\\NewLibs>g:\\bcc582\\bin\\tlib fivehx.lib -+ <span style=\"color: #0000ff;\">btnbmp</span>.obj /<span style=\"color: #000000;\">0</span> /P32,,<br />TLIB <span style=\"color: #000000;\">4.5</span> Copyright <span style=\"color: #000000;\">&#40;</span>c<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">1987</span>, <span style=\"color: #000000;\">1998</span> Borland International<br /><br /><br />Warning: <span style=\"color: #0000ff;\">library</span> was too large <span style=\"color: #00C800;\">for</span> <span style=\"color: #0000ff;\">page</span> <span style=\"color: #0000ff;\">size</span>, rebuilt with <span style=\"color: #0000ff;\">page</span> <span style=\"color: #0000ff;\">size</span> <span style=\"color: #000000;\">64</span><br />Warning: <span style=\"color: #000000;\">results</span> are safe in file <span style=\"color: #ff0000;\">'libtmp0c.t90'</span><br />DOS-reported error: <span style=\"color: #000000;\">Permission</span> denied<br />renaming <span style=\"color: #ff0000;\">'fivehx.lib'</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #ff0000;\">'fivehx.BAK'</span><br /><br />G:\\FWH\\NewLibs>g:\\bcc582\\bin\\tlib fivehx.lib -+ <span style=\"color: #0000ff;\">xbrowse</span>.obj /<span style=\"color: #000000;\">0</span> /P32,,<br />TLIB <span style=\"color: #000000;\">4.5</span> Copyright <span style=\"color: #000000;\">&#40;</span>c<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">1987</span>, <span style=\"color: #000000;\">1998</span> Borland International<br /><br /><br />Warning: <span style=\"color: #0000ff;\">library</span> was too large <span style=\"color: #00C800;\">for</span> <span style=\"color: #0000ff;\">page</span> <span style=\"color: #0000ff;\">size</span>, rebuilt with <span style=\"color: #0000ff;\">page</span> <span style=\"color: #0000ff;\">size</span> <span style=\"color: #000000;\">64</span><br />Warning: <span style=\"color: #000000;\">results</span> are safe in file <span style=\"color: #ff0000;\">'libtmp00.p00'</span><br />DOS-reported error: <span style=\"color: #000000;\">Permission</span> denied<br />renaming <span style=\"color: #ff0000;\">'fivehx.lib'</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #ff0000;\">'fivehx.BAK'</span><br /><br />G:\\FWH\\NewLibs></div>[/code:25k00vnf]\n\nCambié el parametro /p32 por /p64 y compiló, pero me sigue arrojando este error al compilar con la nueva lib:\n\n[code=fw:25k00vnf]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">Borland C++ <span style=\"color: #000000;\">5.82</span> <span style=\"color: #00C800;\">for</span> Win32 Copyright <span style=\"color: #000000;\">&#40;</span>c<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">1993</span>, <span style=\"color: #000000;\">2005</span> Borland<br />azteccode.c:<br /><span style=\"color: #000000;\">Borland</span> <span style=\"color: #0000ff;\">Resource</span> Compiler &nbsp;Version <span style=\"color: #000000;\">5.40</span><br />Copyright <span style=\"color: #000000;\">&#40;</span>c<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">1990</span>, <span style=\"color: #000000;\">1999</span> Inprise Corporation. &nbsp;All rights reserved.<br />Turbo Incremental Link <span style=\"color: #000000;\">5.69</span> Copyright <span style=\"color: #000000;\">&#40;</span>c<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">1997</span><span style=\"color: #000000;\">-2005</span> Borland<br />Error: <span style=\"color: #000000;\">Unresolved</span> external <span style=\"color: #ff0000;\">'_png_set_longjmp_fn'</span> referenced <span style=\"color: #0000ff;\">from</span> C:\\FWH\\LIB\\FIVEHC.LIB|FWPNG<br />Error: <span style=\"color: #000000;\">Unresolved</span> external <span style=\"color: #ff0000;\">'_HB_FUN_HB_HKEYAT'</span> referenced <span style=\"color: #0000ff;\">from</span> C:\\FWH\\LIB\\FIVEHX.LIB|xbrowse<br />Error: <span style=\"color: #000000;\">Unresolved</span> external <span style=\"color: #ff0000;\">'_HB_FUN_HB_HVALUEAT'</span> referenced <span style=\"color: #0000ff;\">from</span> C:\\FWH\\LIB\\FIVEHX.LIB|xbrowse<br />Error: <span style=\"color: #000000;\">Unresolved</span> external <span style=\"color: #ff0000;\">'_HB_FUN_HB_HCASEMATCH'</span> referenced <span style=\"color: #0000ff;\">from</span> C:\\FWH\\LIB\\FIVEHX.LIB|xbrowse<br />* Linking errors *</div>[/code:25k00vnf]", "time": "14:24", "topic": "Como puedo compilar una classe?", "username": "Leo" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias Quique, el tema es ¿Cómo enlazo las librerías que me faltan?", "time": "15:37", "topic": "Como puedo compilar una classe?", "username": "Leo" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Sin contar _png_set_longjmp_fn que NPI de donde sale esa función, las otras tres son funciones de harbour, así que el problema es que te falta enlazar las librerías correspondientes, no es problema de FW.", "time": "15:19", "topic": "Como puedo compilar una classe?", "username": "quique" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Eso depende de que utilería utilices para compilar tu programa, tienes que agregarlas ahí.", "time": "16:05", "topic": "Como puedo compilar una classe?", "username": "quique" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-08", "forum": "FiveWin para Harbour/xHarbour", "text": "simplemente una bat xharbour, bcc582", "time": "16:36", "topic": "Como puedo compilar una classe?", "username": "Leo" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-08", "forum": "FiveWin para Harbour/xHarbour", "text": "<!-- m --><a class=\"postlink\" href=\"http://fivetechsupport.com/forums/viewtopic.php?f=6&t=15365\">http://fivetechsupport.com/forums/viewt ... =6&t=15365</a><!-- m -->\n\ndonde bajar HARB2LIB.EXE\n\n<!-- m --><a class=\"postlink\" href=\"http://ar.groups.yahoo.com/group/DesarrolloClipper/attachments/folder/1279710484/item/list\">http://ar.groups.yahoo.com/group/Desarr ... /item/list</a><!-- m -->\n\n<!-- m --><a class=\"postlink\" href=\"http://alanart.net/fivewin/index.php?/topic/20936-recompilar-a-lib-do-fw/\">http://alanart.net/fivewin/index.php?/t ... lib-do-fw/</a><!-- m -->\n\nsalu2", "time": "16:41", "topic": "Como puedo compilar una classe?", "username": "karinha" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Entonces, revisa dentro del bat en que parte se agregan las librerías y ahi es donde tienes que agregar las que faltan", "time": "16:46", "topic": "Como puedo compilar una classe?", "username": "quique" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Este es el bat:\n\n[code=fw:b8jjapso]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">for</span> %%f in <span style=\"color: #000000;\">&#40;</span>*.prg<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #00C800;\">do</span> g:\\xharbour\\bin\\harbour %%f /n /ig:\\fwh\\include;g:\\xharbour\\include<br /><span style=\"color: #00C800;\">for</span> %%f in <span style=\"color: #000000;\">&#40;</span>*.c<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #00C800;\">do</span> g:\\bcc582\\bin\\bcc32 -c -Ig:\\bcc582\\include;g:\\xharbour\\include %%f<br /><span style=\"color: #00C800;\">for</span> %%f in <span style=\"color: #000000;\">&#40;</span>*.obj<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #00C800;\">do</span> g:\\bcc582\\bin\\tlib fivehx.lib -+ %%f /<span style=\"color: #000000;\">0</span> /P64,,</div>[/code:b8jjapso]", "time": "17:51", "topic": "Como puedo compilar una classe?", "username": "Leo" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Según entiendo, los Unresolved external se dan cuando compilas el ejecutable, pero en este caso se trata de una librería, pero tal vez Antonio o algún experto en el tema pueda dar otra respuesta", "time": "17:59", "topic": "Como puedo compilar una classe?", "username": "quique" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-08", "forum": "FiveWin para Harbour/xHarbour", "text": "La librería que te falta es xhb.lib de Harbour, pero lo que me sorprende es que estas usando xHarbour, si ?", "time": "19:59", "topic": "Como puedo compilar una classe?", "username": "Antonio Linares" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Tienes #include \"hbcompat.ch\" dentro de source/classes/xbrowse.prg ?", "time": "20:13", "topic": "Como puedo compilar una classe?", "username": "Antonio Linares" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Añade esta función a tu PRG principal y debería desaparecer una de esas referencias sin resolver:\n\nfunction hb_HKeyAt( x, y )\n\nreturn HGetKeyAt( x, y )", "time": "18:21", "topic": "Como puedo compilar una classe?", "username": "Antonio Linares" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Tambien esta:\n\nfunction HB_HVALUEAT( x, y, z )\n\nreturn HGetValueAt( x, y, z )", "time": "18:26", "topic": "Como puedo compilar una classe?", "username": "Antonio Linares" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Compilo con xHarbour y hbcompat.ch está en las cabeceras de xbrowse.", "time": "17:53", "topic": "Como puedo compilar una classe?", "username": "Leo" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-10", "forum": "FiveWin para Harbour/xHarbour", "text": "Antonio, gracias por la respuesta, ha mejorado el tema, ahora son sólo dos funciones que no sé de dónde engancharlas.\n\n[code=fw:2g41n442]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">Borland C++ <span style=\"color: #000000;\">5.82</span> <span style=\"color: #00C800;\">for</span> Win32 Copyright <span style=\"color: #000000;\">&#40;</span>c<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">1993</span>, <span style=\"color: #000000;\">2005</span> Borland<br />rmail.c:<br /><span style=\"color: #000000;\">Turbo</span> Incremental Link <span style=\"color: #000000;\">5.69</span> Copyright <span style=\"color: #000000;\">&#40;</span>c<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">1997</span><span style=\"color: #000000;\">-2005</span> Borland<br />Error: <span style=\"color: #000000;\">Unresolved</span> external <span style=\"color: #ff0000;\">'_png_set_longjmp_fn'</span> referenced <span style=\"color: #0000ff;\">from</span> C:\\FWH\\LIB\\FIVEHC.LIB|FWPNG<br />Error: <span style=\"color: #000000;\">Unresolved</span> external <span style=\"color: #ff0000;\">'_HB_FUN_HB_HCASEMATCH'</span> referenced <span style=\"color: #0000ff;\">from</span> C:\\FWH\\LIB\\FIVEHX.LIB|xbrowse<br />* Linking errors *</div>[/code:2g41n442]\n\nGracias.", "time": "14:45", "topic": "Como puedo compilar una classe?", "username": "Leo" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-10", "forum": "FiveWin para Harbour/xHarbour", "text": "Añade esta tambien:\n\nfunction HCASEMATCH( x, y )\n\nreturn HGetCaseMatch( x, y )", "time": "14:51", "topic": "Como puedo compilar una classe?", "username": "Antonio Linares" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-10", "forum": "FiveWin para Harbour/xHarbour", "text": "Estas enlazando png.lib de xHarbour ?\n\nme da la sensación de que tienes mezcladas librerias antiguas y nuevas...", "time": "14:53", "topic": "Como puedo compilar una classe?", "username": "Antonio Linares" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-10", "forum": "FiveWin para Harbour/xHarbour", "text": "He agregado las 3 funciones que me has descrito en el código de xBrowse\n\n[code=fw:2do1xr3y]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> hb_HKeyAt<span style=\"color: #000000;\">&#40;</span> x, y <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">return</span> HGetKeyAt<span style=\"color: #000000;\">&#40;</span> x, y <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> HB_HVALUEAT<span style=\"color: #000000;\">&#40;</span> x, y, z <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">return</span> HGetValueAt<span style=\"color: #000000;\">&#40;</span> x, y, z <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> HCASEMATCH<span style=\"color: #000000;\">&#40;</span> x, y <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">return</span> HGetCaseMatch<span style=\"color: #000000;\">&#40;</span> x, y <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br />&nbsp;</div>[/code:2do1xr3y]\n\ny aún así, e incluyendo la xhb.lib el resultado es el mismo anterior. Sigue reclamando la función _HB_FUN_HB_HCASEMATCH", "time": "15:00", "topic": "Como puedo compilar una classe?", "username": "Leo" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-10", "forum": "FiveWin para Harbour/xHarbour", "text": "Prueba a usar este xHarbour:\n\n[url:jwqb43c7]https&#58;//code&#46;google&#46;com/p/harbour-and-xharbour-builds/downloads/detail?name=xharbour_20130327&#46;zip[/url:jwqb43c7]", "time": "15:02", "topic": "Como puedo compilar una classe?", "username": "Antonio Linares" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-10", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias Antonio, al final lo logré, un poco duro de cabeza el alumno... Muchas gracias.\n\nPregunta: Tengo FWH 12.04, y agregué una modificación publicada para cargar png en los btnbmp, sólo me funciona en botones y no en una btnbar ¿Qué me falta?\n\nEl código cambiado es el siguiente:\n\n[code=fw:yhrso7nh]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #B900B9;\">/*METHOD LoadBitmaps( cResName1, cResName2, cBmpFile1, cBmpFile2,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cResName3, cBmpFile3, cResName4, cBmpFile4 ) CLASS TBtnBmp<br /><br />&nbsp; &nbsp;local aBmpPal<br /><br />&nbsp; &nbsp;if ! Empty( cResName1 )<br />&nbsp; &nbsp; &nbsp; aBmpPal = PalBmpLoad( cResName1 )<br />&nbsp; &nbsp; &nbsp; ::hBitmap1 &nbsp;= aBmpPal[ 1 ]<br />&nbsp; &nbsp; &nbsp; ::hPalette1 = aBmpPal[ 2 ]<br />&nbsp; &nbsp; &nbsp; ::HasAlpha( ::hBitmap1, BTN_UP )<br />&nbsp; &nbsp;endif<br /><br />&nbsp; &nbsp;if ! Empty( cResName2 )<br />&nbsp; &nbsp; &nbsp; aBmpPal = PalBmpLoad( cResName2 )<br />&nbsp; &nbsp; &nbsp; ::hBitmap2 &nbsp;= aBmpPal[ 1 ]<br />&nbsp; &nbsp; &nbsp; ::hPalette2 = aBmpPal[ 2 ]<br />&nbsp; &nbsp; &nbsp; ::HasAlpha( ::hBitmap2, BTN_DOWN )<br />&nbsp; &nbsp;endif<br /><br />&nbsp; &nbsp;if ! Empty( cResName3 )<br />&nbsp; &nbsp; &nbsp; aBmpPal = PalBmpLoad( cResName3 )<br />&nbsp; &nbsp; &nbsp; ::hBitmap3 &nbsp;= aBmpPal[ 1 ]<br />&nbsp; &nbsp; &nbsp; ::hPalette3 = aBmpPal[ 2 ]<br />&nbsp; &nbsp; &nbsp; ::HasAlpha( ::hBitmap3, BTN_DISABLE )<br />&nbsp; &nbsp;endif<br /><br />&nbsp; &nbsp;if ! Empty( cResName4 )<br />&nbsp; &nbsp; &nbsp; aBmpPal = PalBmpLoad( cResName4 )<br />&nbsp; &nbsp; &nbsp; ::hBitmap4 &nbsp;= aBmpPal[ 1 ]<br />&nbsp; &nbsp; &nbsp; ::hPalette4 = aBmpPal[ 2 ]<br />&nbsp; &nbsp; &nbsp; ::HasAlpha( ::hBitmap4, BTN_OVERMOUSE )<br />&nbsp; &nbsp;endif<br /><br /><br />&nbsp; &nbsp;if ! Empty( cBmpFile1 )<br />&nbsp; &nbsp; &nbsp; if File( cBmpFile1 )<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::cBmpFile1 = cBmpFile1<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;aBmpPal &nbsp; &nbsp; = PalBmpRead( ::GetDC(), cBmpFile1 )<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::hBitmap1 &nbsp;= aBmpPal[ 1 ]<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::hPalette1 = aBmpPal[ 2 ]<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::HasAlpha( ::hBitmap1, BTN_UP )<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::ReleaseDC()<br />&nbsp; &nbsp; &nbsp; endif<br />&nbsp; &nbsp;endif<br /><br />&nbsp; &nbsp;if ! Empty( cBmpFile2 )<br />&nbsp; &nbsp; &nbsp; if File( cBmpFile2 )<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::cBmpFile2 = cBmpFile2<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;aBmpPal &nbsp; &nbsp; = PalBmpRead( ::GetDC(), cBmpFile2 )<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::hBitmap2 &nbsp;= aBmpPal[ 1 ]<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::hPalette2 = aBmpPal[ 2 ]<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::HasAlpha( ::hBitmap2, BTN_DOWN )<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::ReleaseDC()<br />&nbsp; &nbsp; &nbsp; endif<br />&nbsp; &nbsp;endif<br /><br />&nbsp; &nbsp;if ! Empty( cBmpFile3 )<br />&nbsp; &nbsp; &nbsp; if File( cBmpFile3 )<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::cBmpFile3 = cBmpFile3<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;aBmpPal &nbsp; &nbsp; = PalBmpRead( ::GetDC(), cBmpFile3 )<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::hBitmap3 &nbsp;= aBmpPal[ 1 ]<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::hPalette3 = aBmpPal[ 2 ]<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::HasAlpha( ::hBitmap3, BTN_DISABLE )<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::ReleaseDC()<br />&nbsp; &nbsp; &nbsp; endif<br />&nbsp; &nbsp;endif<br /><br />&nbsp; &nbsp;if ! Empty( cBmpFile4 )<br />&nbsp; &nbsp; &nbsp; if File( cBmpFile4 )<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::cBmpFile4 = cBmpFile4<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;aBmpPal &nbsp; &nbsp; = PalBmpRead( ::GetDC(), cBmpFile4 )<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::hBitmap4 &nbsp;= aBmpPal[ 1 ]<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::hPalette4 = aBmpPal[ 2 ]<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::HasAlpha( ::hBitmap4, BTN_OVERMOUSE )<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::ReleaseDC()<br />&nbsp; &nbsp; &nbsp; endif<br />&nbsp; &nbsp;endif<br /><br /><br />&nbsp; &nbsp;if ! Empty( ::hBitmap1 )<br />&nbsp; &nbsp; &nbsp; PalBmpNew( ::hWnd, ::hBitmap1, ::hPalette1 )<br /><br />&nbsp; &nbsp;endif<br /><br />&nbsp; &nbsp;if ! Empty( ::hBitmap2 )<br />&nbsp; &nbsp; &nbsp; PalBmpNew( ::hWnd, ::hBitmap2, ::hPalette2 )<br />&nbsp; &nbsp;endif<br /><br />&nbsp; &nbsp;if ! Empty( ::hBitmap3 )<br />&nbsp; &nbsp; &nbsp; PalBmpNew( ::hWnd, ::hBitmap3, ::hPalette3 )<br />&nbsp; &nbsp;endif<br /><br />&nbsp; &nbsp;if ! Empty( ::hBitmap4 )<br />&nbsp; &nbsp; &nbsp; PalBmpNew( ::hWnd, ::hBitmap4, ::hPalette4 )<br />&nbsp; &nbsp;endif<br /><br />return nil*/</span><br /><span style=\"color: #00C800;\">METHOD</span> LoadBitmaps<span style=\"color: #000000;\">&#40;</span> cResName1, cResName2, cBmpFile1, cBmpFile2,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cResName3, cBmpFile3, cResName4, cBmpFile4 <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #00C800;\">CLASS</span> TBtnBmp<br /><br />&nbsp; <span style=\"color: #00C800;\">local</span> aBmpPal<br />&nbsp; *MsgAlert<span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"Estoy en ::LoadBitmaps()\"</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; <span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">&#40;</span> cResName1 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">IF</span> &nbsp;FindResource<span style=\"color: #000000;\">&#40;</span> GetResources<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>, cResName1 , <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">&#41;</span> &nbsp;!= <span style=\"color: #000000;\">0</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hBitmap1</span> &nbsp;= &nbsp;FILoadFromMemory<span style=\"color: #000000;\">&#40;</span> cResToStr<span style=\"color: #000000;\">&#40;</span> cResName1, <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">&#41;</span>, <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hPalette1</span> = <span style=\"color: #000000;\">0</span><br />&nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">ELSE</span><br />&nbsp; &nbsp; &nbsp; &nbsp; aBmpPal = PalBmpLoad<span style=\"color: #000000;\">&#40;</span> cResName1 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">hBitmap1</span> &nbsp;= aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">hPalette1</span> = aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br />&nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">HasAlpha</span><span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hBitmap1</span>, BTN_UP <span style=\"color: #000000;\">&#41;</span><br />&nbsp; <span style=\"color: #00C800;\">endif</span><br /><br />&nbsp; <span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">&#40;</span> cResName2 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">IF</span> &nbsp;FindResource<span style=\"color: #000000;\">&#40;</span> GetResources<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>, cResName2 , <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">&#41;</span> &nbsp;!= <span style=\"color: #000000;\">0</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hBitmap2</span> &nbsp;= &nbsp;FILoadFromMemory<span style=\"color: #000000;\">&#40;</span> cResToStr<span style=\"color: #000000;\">&#40;</span> cResName2, <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">&#41;</span>, <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hPalette2</span> = <span style=\"color: #000000;\">0</span><br />&nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">ELSE</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;aBmpPal = PalBmpLoad<span style=\"color: #000000;\">&#40;</span> cResName2 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hBitmap2</span> &nbsp;= aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hPalette2</span> = aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br />&nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">HasAlpha</span><span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hBitmap2</span>, BTN_DOWN <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">&#40;</span> cResName3 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">IF</span> &nbsp;FindResource<span style=\"color: #000000;\">&#40;</span> GetResources<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>, cResName3 , <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">&#41;</span> &nbsp;!= <span style=\"color: #000000;\">0</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hBitmap3</span> &nbsp;= &nbsp;FILoadFromMemory<span style=\"color: #000000;\">&#40;</span> cResToStr<span style=\"color: #000000;\">&#40;</span> cResName3, <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">&#41;</span>, <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hPalette3</span> = <span style=\"color: #000000;\">0</span><br />&nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">ELSE</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;aBmpPal = PalBmpLoad<span style=\"color: #000000;\">&#40;</span> cResName3 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hBitmap3</span> &nbsp;= aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hPalette3</span> = aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br />&nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">HasAlpha</span><span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hBitmap3</span>, BTN_DISABLE <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">&#40;</span> cResName4 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">IF</span> &nbsp;FindResource<span style=\"color: #000000;\">&#40;</span> GetResources<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>, cResName4 , <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">&#41;</span> &nbsp;!= <span style=\"color: #000000;\">0</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hBitmap4</span> &nbsp;= &nbsp;FILoadFromMemory<span style=\"color: #000000;\">&#40;</span> cResToStr<span style=\"color: #000000;\">&#40;</span> cResName4, <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">&#41;</span>, <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hPalette4</span> = <span style=\"color: #000000;\">0</span><br />&nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">ELSE</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;aBmpPal = PalBmpLoad<span style=\"color: #000000;\">&#40;</span> cResName4 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hBitmap4</span> &nbsp;= aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hPalette4</span> = aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br />&nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">HasAlpha</span><span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hBitmap4</span>, BTN_OVERMOUSE <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">&#40;</span> cBmpFile1 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">if</span> File<span style=\"color: #000000;\">&#40;</span> cBmpFile1 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">cBmpFile1</span> = cBmpFile1<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">IF</span> upper<span style=\"color: #000000;\">&#40;</span><span style=\"color: #0000ff;\">right</span><span style=\"color: #000000;\">&#40;</span>cBmpFile1,<span style=\"color: #000000;\">3</span><span style=\"color: #000000;\">&#41;</span><span style=\"color: #000000;\">&#41;</span>=<span style=\"color: #ff0000;\">\"PNG\"</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">hBitmap1</span> &nbsp;= FWOpenPngFile<span style=\"color: #000000;\">&#40;</span> cBmpFile1 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">hPalette1</span> = <span style=\"color: #000000;\">0</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">else</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; aBmpPal &nbsp; &nbsp; = PalBmpRead<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">GetDC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>, cBmpFile1 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">hBitmap1</span> &nbsp;= aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">hPalette1</span> = aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">ReleaseDC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">HasAlpha</span><span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hBitmap1</span>, BTN_UP <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">endif</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">&#40;</span> cBmpFile2 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">if</span> File<span style=\"color: #000000;\">&#40;</span> cBmpFile2 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">cBmpFile2</span> = cBmpFile2<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">IF</span> upper<span style=\"color: #000000;\">&#40;</span><span style=\"color: #0000ff;\">right</span><span style=\"color: #000000;\">&#40;</span>cBmpFile2,<span style=\"color: #000000;\">3</span><span style=\"color: #000000;\">&#41;</span><span style=\"color: #000000;\">&#41;</span>=<span style=\"color: #ff0000;\">\"PNG\"</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">hBitmap2</span> &nbsp;= FWOpenPngFile<span style=\"color: #000000;\">&#40;</span> cBmpFile2 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">hPalette2</span> = <span style=\"color: #000000;\">0</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">else</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; aBmpPal &nbsp; &nbsp; = PalBmpRead<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">GetDC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>, cBmpFile2 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">hBitmap2</span> &nbsp;= aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">hPalette2</span> = aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">ReleaseDC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">HasAlpha</span><span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hBitmap2</span>, BTN_DOWN <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">endif</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">&#40;</span> cBmpFile3 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">if</span> File<span style=\"color: #000000;\">&#40;</span> cBmpFile3 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">cBmpFile3</span> = cBmpFile3<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">IF</span> upper<span style=\"color: #000000;\">&#40;</span><span style=\"color: #0000ff;\">right</span><span style=\"color: #000000;\">&#40;</span>cBmpFile3,<span style=\"color: #000000;\">3</span><span style=\"color: #000000;\">&#41;</span><span style=\"color: #000000;\">&#41;</span>=<span style=\"color: #ff0000;\">\"PNG\"</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">hBitmap3</span> &nbsp;= FWOpenPngFile<span style=\"color: #000000;\">&#40;</span> cBmpFile3 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">hPalette3</span> = <span style=\"color: #000000;\">0</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">else</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; aBmpPal &nbsp; &nbsp; = PalBmpRead<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">GetDC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>, cBmpFile3 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hBitmap3</span> &nbsp;= aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hPalette3</span> = aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">ReleaseDC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">HasAlpha</span><span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hBitmap3</span>, BTN_DISABLE <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">endif</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">&#40;</span> cBmpFile4 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">if</span> File<span style=\"color: #000000;\">&#40;</span> cBmpFile4 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">cBmpFile4</span> = cBmpFile4<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">IF</span> upper<span style=\"color: #000000;\">&#40;</span><span style=\"color: #0000ff;\">right</span><span style=\"color: #000000;\">&#40;</span>cBmpFile4,<span style=\"color: #000000;\">3</span><span style=\"color: #000000;\">&#41;</span><span style=\"color: #000000;\">&#41;</span>=<span style=\"color: #ff0000;\">\"PNG\"</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">hBitmap4</span> &nbsp;= FWOpenPngFile<span style=\"color: #000000;\">&#40;</span> cBmpFile4 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">hPalette4</span> = <span style=\"color: #000000;\">0</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">else</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; aBmpPal &nbsp; &nbsp; = PalBmpRead<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">GetDC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>, cBmpFile4 <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hBitmap4</span> &nbsp;= aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">hPalette4</span> = aBmpPal<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ::<span style=\"color: #000000;\">ReleaseDC</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style=\"color: #000000;\">HasAlpha</span><span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hBitmap4</span>, BTN_OVERMOUSE <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">endif</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br /><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hBitmap1</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; PalBmpNew<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hWnd</span>, ::<span style=\"color: #000000;\">hBitmap1</span>, ::<span style=\"color: #000000;\">hPalette1</span> <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hBitmap2</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; PalBmpNew<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hWnd</span>, ::<span style=\"color: #000000;\">hBitmap2</span>, ::<span style=\"color: #000000;\">hPalette2</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hBitmap3</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; PalBmpNew<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hWnd</span>, ::<span style=\"color: #000000;\">hBitmap3</span>, ::<span style=\"color: #000000;\">hPalette3</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hBitmap4</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; PalBmpNew<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hWnd</span>, ::<span style=\"color: #000000;\">hBitmap4</span>, ::<span style=\"color: #000000;\">hPalette4</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span></div>[/code:yhrso7nh]\n\nDe Antemano, Gracias.", "time": "15:28", "topic": "Como puedo compilar una classe?", "username": "Leo" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-10", "forum": "FiveWin para Harbour/xHarbour", "text": "Estas cargando los PNGs desde ficheros ó desde recursos ?", "time": "17:21", "topic": "Como puedo compilar una classe?", "username": "Antonio Linares" } ]
Como puedo compilar una classe?
[ { "date": "2013-05-13", "forum": "FiveWin para Harbour/xHarbour", "text": "Desde Ficheros", "time": "14:28", "topic": "Como puedo compilar una classe?", "username": "Leo" } ]
Como puedo compilar una classe?
[ { "date": "2007-02-05", "forum": "FiveWin para CA-Clipper", "text": "Hola amigos:\n\nNecesito que las columnas de un reporte queden alineadas a la derecha ya que son numeros y el tipo de letra no es monoespaciada. La impresión la hago:\n\nPRINT\nPAGE\noPrn:say(col,row,texto,oFont)\n...\n...\nENDPAGE\nENDPRINT\n\nUn saludo\n\nCarlos", "time": "11:24", "topic": "Como puedo con oPrn:say() justificar a la derecha", "username": "colthop" } ]
Como puedo con oPrn:say() justificar a la derecha
[ { "date": "2007-02-05", "forum": "FiveWin para CA-Clipper", "text": "Un consejo:\n\nNo utilices oPrn:Say(), utiliza mejor oPrn:CmSay() porque enel primer caso, las coordenadas estan en puntos de la imprsora, y cuando cambies el reporte de impresora es altamente probable que el mismo reporte se vea distinto, por la resolucion.\n\nLa solucion a tu problema:\n\nEn el codigo fuente de la clase printer esta la sintaxis:\n\nSay( nRow, nCol, cText, oFont, nWidth, nClrText, nBkMode, nPad )\n\nEl ultimo parametro (nPad) te da la alineacion 0 = Izquierda, 1 = Centro, 2= Derecha", "time": "17:39", "topic": "Como puedo con oPrn:say() justificar a la derecha", "username": "R.F." } ]
Como puedo con oPrn:say() justificar a la derecha
[ { "date": "2007-02-07", "forum": "FiveWin para CA-Clipper", "text": "Hola Rene:\n\nEn primer lugar gracias por la respuesta y orientación de como resolver mi problema.\n\nEl problema de la resolución lo tengo encauzado con otra pregunta que hice y lo solucione poniendo un factor de multiplicacion en las coordenadas dependiendo de la resolucion, creo que me lo contestaste tu o Antonio Linares.\n\nComentarte algo sobre lo que me has escrito:\n\nme has dicho:\n\nSay( nRow, nCol, cText, oFont, nWidth, nClrText, nBkMode, nPad ) \n\nEl ultimo parametro (nPad) te da la alineacion 0 = Izquierda, 1 = Centro, 2= Derecha\n\nYo lo he puesto en 2 el nPad pero no ha funcionado sin embargo lo he cambiado por 1 y lo ha clavado.\n\nUn saludo y gracias de nuevo\n\nCarlos", "time": "10:49", "topic": "Como puedo con oPrn:say() justificar a la derecha", "username": "colthop" } ]
Como puedo con oPrn:say() justificar a la derecha
[ { "date": "2006-08-31", "forum": "FiveWin para Harbour/xHarbour", "text": "Estimados Colegas\n\nExiste alguna manera de saber la/las cuentas de email de la pc\ndesde fivewin\n\nDesde ya muchas Gracias\nFabian\n<!-- e --><a href=\"mailto:[email protected]\">[email protected]</a><!-- e -->", "time": "02:29", "topic": "Como puedo conocer la/las cuentas de email de pc", "username": "Databaselab2002" } ]
Como puedo conocer la/las cuentas de email de pc
[ { "date": "2005-12-05", "forum": "FiveWin para Harbour/xHarbour", "text": "Estimado Colegas\n\nComo puedo Construir la lib para xharbour con la version FWH\nVer OCT 2002 y xharbour .99. 3 simplex, las librerias fivehc,fiveh\nque diferencia tienen con fivehcm,fivehm\n\n\ndesde ya muchisimas gracias\n<!-- e --><a href=\"mailto:[email protected]\">[email protected]</a><!-- e -->", "time": "02:37", "topic": "Como puedo construir lib para Xharbour con FWH VER OCT 2002", "username": "devwin2004" } ]
Como puedo construir lib para Xharbour con FWH VER OCT 2002
[ { "date": "2005-12-05", "forum": "FiveWin para Harbour/xHarbour", "text": "Lo idóneo es que uses la versión más reciente de xHarbour (ya que corrige muchos fallos relacionados con el uso de bases de datos e índices) pero en tal caso las librerías de FWH que usas no sirven, ya que no son compatibles.\n\nLa solución es actualizarse a la versión más reciente de FWH desde <!-- w --><a class=\"postlink\" href=\"http://www.fivetechsoft.com\">www.fivetechsoft.com</a><!-- w --> sección pedidos.", "time": "11:52", "topic": "Como puedo construir lib para Xharbour con FWH VER OCT 2002", "username": "Antonio Linares" } ]
Como puedo construir lib para Xharbour con FWH VER OCT 2002
[ { "date": "2010-12-14", "forum": "FiveWin para Harbour/xHarbour", "text": "Estimados colegas\n\n\nPuedo correr una aplicacion hecha en FWH en Windows CE \ndesde ya muchas gracias\n\nFabian", "time": "22:49", "topic": "Como puedo correr una aplicacion FWh en Windows CE", "username": "Databaselab2002" } ]
Como puedo correr una aplicacion FWh en Windows CE
[ { "date": "2010-12-15", "forum": "FiveWin para Harbour/xHarbour", "text": "Con FWPPC", "time": "01:39", "topic": "Como puedo correr una aplicacion FWh en Windows CE", "username": "pablovidal" } ]
Como puedo correr una aplicacion FWh en Windows CE
[ { "date": "2010-12-15", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola...\nNecesitarías FWPPC y compilar con el compilador correspondiente para Windows CE y Windows Mobile.\nRevisa el subforo de FWPPC que hay aquí.\n\nSaludos,", "time": "16:26", "topic": "Como puedo correr una aplicacion FWh en Windows CE", "username": "jrestojeda" } ]
Como puedo correr una aplicacion FWh en Windows CE
[ { "date": "2012-11-07", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\nComo puedo cortar y pegar muchos archivitos de diferentes nombres que jamas se repiten de una carpeta a otra carpeta \n\nya vi que con \u0001MoveFile() pero es uno por uno y tengo que dar el nombre y eso seria imposible ya que jamas seran los mismos archivos a mover es decir todo el contenido de una carpeta moverlo a otra de una sola pasada \n\nEspero me puedan orientar\n\nMUCHAS GRACIAS\n\nSaluditos <!-- s:wink: --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\":wink:\" title=\"Wink\" /><!-- s:wink: -->", "time": "22:46", "topic": "Como puedo cortar y pegar muchos archivitos ??", "username": "AIDA" } ]
Como puedo cortar y pegar muchos archivitos ??
[ { "date": "2012-11-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Aida, lo primero que debes hacer es leer los archivos de la carpeta de donde vas a mver, puedes agregar los nombres en un array, luego pudes hacer un for n=1 hasta le len del array y dentro de ese for usas el move() con el nombre del archivo segun la posicion que ocupa dentro del array, algo asi como\n\nfor nFor := 1 to len(aArchivos)\n move(aArchivos[nFor] lo demas que venga ya que nunca he usado move()\nnext\n\nasi no tienes que agregar archivo por archivo ya que lo hara el for, espero verte dado alguna idea, cualquier cosa nos contactamos por el msn, saludos... <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: -->", "time": "00:47", "topic": "Como puedo cortar y pegar muchos archivitos ??", "username": "joseluisysturiz" } ]
Como puedo cortar y pegar muchos archivitos ??
[ { "date": "2012-11-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Aida:\n\nEchale una revisada a la función DIRECTORY(), tal vez te sea de ayuda.\n\nSaludos", "time": "00:48", "topic": "Como puedo cortar y pegar muchos archivitos ??", "username": "Armando" } ]
Como puedo cortar y pegar muchos archivitos ??
[ { "date": "2012-11-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola Aida, aqui tienes un ejemplo:\n[code=fw:2pqgw50f]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #B900B9;\">//------------------------</span><br /><span style=\"color: #00C800;\">Function</span> MoverFich<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #00C800;\">local</span> cFuente := <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\\"</span><br />local cDestino := \"</span>C:\\MiNvoFolder<span style=\"color: #ff0000;\">\"<br />local aDirectorio<br /><br />&nbsp; if !lIsDir(cDestino)<br />&nbsp; &nbsp; &nbsp;lmkDir(cDestino)<br />&nbsp; endif<br /><br />&nbsp; aDirectorio:=DIRECTORY(\"</span>*.PRG<span style=\"color: #ff0000;\">\",\"</span>D<span style=\"color: #ff0000;\">\") &nbsp; // \"</span>*.*<span style=\"color: #ff0000;\">\",\"</span>D<span style=\"color: #ff0000;\">\"<br />&nbsp; AEVAL(aDirectorio, {|aFich| MoveFile(cFuente + aFich[F_NAME], cDestino+\"</span>\\<span style=\"color: #ff0000;\">\"+aFich[F_NAME]), SysRefresh() } )<br /><br />Return nil &nbsp;<br /></span></div>[/code:2pqgw50f]\nSaludos.", "time": "01:54", "topic": "Como puedo cortar y pegar muchos archivitos ??", "username": "FranciscoA" } ]
Como puedo cortar y pegar muchos archivitos ??
[ { "date": "2012-11-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Muchísimas gracias a todos <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\npodre quedar bien con el mini programita <!-- s:mrgreen: --><img src=\"{SMILIES_PATH}/icon_mrgreen.gif\" alt=\":mrgreen:\" title=\"Mr. Green\" /><!-- s:mrgreen: --> \n\nse los agradezco que lindos <!-- s:oops: --><img src=\"{SMILIES_PATH}/icon_redface.gif\" alt=\":oops:\" title=\"Embarassed\" /><!-- s:oops: --> \n\n\n\nles cuento despues como quedo <!-- s:roll: --><img src=\"{SMILIES_PATH}/icon_rolleyes.gif\" alt=\":roll:\" title=\"Rolling Eyes\" /><!-- s:roll: --> \n\n\nsaluditos <!-- s:wink: --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\":wink:\" title=\"Wink\" /><!-- s:wink: -->", "time": "06:33", "topic": "Como puedo cortar y pegar muchos archivitos ??", "username": "AIDA" } ]
Como puedo cortar y pegar muchos archivitos ??
[ { "date": "2007-12-02", "forum": "FiveWin para Harbour/xHarbour", "text": "Hoal a todos:\n\nMe gustaria saber como puedo crear un archivo PDF en vez de mandar un reporte a la Impresora.\n\nGracias\n\nCarlos", "time": "13:02", "topic": "Como puedo crear un archivo PDF", "username": "colthop" } ]
Como puedo crear un archivo PDF
[ { "date": "2007-12-02", "forum": "FiveWin para Harbour/xHarbour", "text": "Mira <!-- w --><a class=\"postlink\" href=\"http://www.utilitywarrior.com/\">www.utilitywarrior.com/</a><!-- w -->\n\nFunciona de lujo y soporta harbour!!.", "time": "16:06", "topic": "Como puedo crear un archivo PDF", "username": "MOISES" } ]
Como puedo crear un archivo PDF
[ { "date": "2007-12-02", "forum": "FiveWin para Harbour/xHarbour", "text": "Moises:\n\nParece muy bueno... podrías poner un ejemplo de su uso.\n\nMuchas gracias.\n\nRuben Fernandez.", "time": "16:18", "topic": "Como puedo crear un archivo PDF", "username": "Ruben D. Fernandez" } ]
Como puedo crear un archivo PDF
[ { "date": "2007-12-02", "forum": "FiveWin para Harbour/xHarbour", "text": "En el manual tienes un ejemplo para harbour.", "time": "17:14", "topic": "Como puedo crear un archivo PDF", "username": "MOISES" } ]
Como puedo crear un archivo PDF