messages
listlengths 1
1
| topic
stringlengths 2
60
|
---|---|
[
{
"date": "2013-09-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio, primero gracias por la atención tan rápida y completa. \nProbé la librerías que me enviaste, pero sigue dando el mismo error.\nTe adjunto el .bat de compilación por si me falta o sobra alguna librería. Este .bat funcionaba perfecto, pero tene en cuenta que la ultima versión que tenia era creo de enero del 2012\n[code=fw:29cvh0bo]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">@ECHO OFF<br />CLS<br />ECHO +----------------------------------------------------------------------------+<br />ECHO | FWH <span style=\"color: #000000;\">64</span> <span style=\"color: #00C800;\">for</span> Harbour <span style=\"color: #000000;\">11.03</span> <span style=\"color: #000000;\">(</span>MSVC++<span style=\"color: #000000;\">)</span> Mar. <span style=\"color: #000000;\">2011</span> Harbour development <span style=\"color: #0000ff;\">power</span> |-<br />ECHO | <span style=\"color: #000000;\">(</span>c<span style=\"color: #000000;\">)</span> FiveTech, <span style=\"color: #000000;\">1993</span><span style=\"color: #000000;\">-2011</span> <span style=\"color: #00C800;\">for</span> Microsoft Windows 9X/NT/200X/ME/XP/Vista/<span style=\"color: #000000;\">7</span> |-<br />ECHO +----------------------------------------------------------------------------+-<br />ECHO -----------------------------------------------------------------------------<br /><br /><span style=\"color: #00C800;\">if</span> A%<span style=\"color: #000000;\">1</span> == A GOTO :<span style=\"color: #000000;\">SINTAX</span><br /><span style=\"color: #00C800;\">if</span> NOT EXIST %<span style=\"color: #000000;\">1</span>.prg GOTO :<span style=\"color: #000000;\">NOEXIST</span><br /><br /><span style=\"color: #00C800;\">if</span> <span style=\"color: #ff0000;\">\"%FWDIR%\"</span> == <span style=\"color: #ff0000;\">\"\"</span> set FWDIR=F:\\wFH64\\FWH64<br /><span style=\"color: #00C800;\">if</span> <span style=\"color: #ff0000;\">\"%HBDIR%\"</span> == <span style=\"color: #ff0000;\">\"\"</span> set HBDIR=F:\\wFH64\\Harbour64<br /><br />ECHO Compiling...<br /><br />set hdir=%HBDIR%<br />set hdirl=%hdir%\\lib\\vc64<br />set vcdir=F:\\wFH64\\vc64<br />set include=%vcdir%\\include;%hdir%\\include;%include%<br />set lib=%vcdir%\\lib;%hdir%\\lib;%lib%<br /><br />%hdir%\\bin\\harbour %<span style=\"color: #000000;\">1</span> /n /i%fwdir%\\include;%hdir%\\include /w /p %<span style=\"color: #000000;\">2</span> %<span style=\"color: #000000;\">3</span> <span style=\"color: #000000;\">2</span>>comp.log<br /><span style=\"color: #00C800;\">IF</span> ERRORLEVEL <span style=\"color: #000000;\">1</span> GOTO COMPILEERROR<br />@type comp.log<br /><br />ECHO _______________________________________________________________________________<br /><br />%vcdir%\\bin\\cl -TP -W3 -c %<span style=\"color: #000000;\">1</span>.c<br />:<span style=\"color: #000000;\">ENDCOMPILE</span><br /><br /><span style=\"color: #00C800;\">IF</span> EXIST %<span style=\"color: #000000;\">1</span>.rc %vcdir%\\bin\\rc -r -D__64__ %<span style=\"color: #000000;\">1</span><br /><br />echo %<span style=\"color: #000000;\">1</span>.obj > msvc.tmp<br /><br />echo %fwdir%\\lib\\FiveH64.lib %fwdir%\\lib\\FiveHC64.lib >> msvc.tmp<br /><br />echo %hdirl%\\hbrtl.lib >> msvc.tmp<br />echo %hdirl%\\hbvm.lib >> msvc.tmp<br />echo %hdirl%\\gtgui.lib >> msvc.tmp<br />echo %hdirl%\\hblang.lib >> msvc.tmp<br />echo %hdirl%\\hbmacro.lib >> msvc.tmp<br />echo %hdirl%\\hbrdd.lib >> msvc.tmp<br />echo %hdirl%\\rddntx.lib >> msvc.tmp<br />echo %hdirl%\\rddcdx.lib >> msvc.tmp<br />echo %hdirl%\\rddfpt.lib >> msvc.tmp<br />echo %hdirl%\\hbsix.lib >> msvc.tmp<br />echo %hdirl%\\hbdebug.lib >> msvc.tmp<br />echo %hdirl%\\hbcommon.lib >> msvc.tmp<br />echo %hdirl%\\hbpp.lib >> msvc.tmp<br />echo %hdirl%\\hbcpage.lib >> msvc.tmp<br />echo %hdirl%\\hbwin.lib >> msvc.tmp<br />echo %hdirl%\\hbcplr.lib >> msvc.tmp<br />echo %hdirl%\\hbpcre.lib >> msvc.tmp<br />echo %hdirl%\\hbct.lib >> msvc.tmp<br />echo %hdirl%\\hbziparc.lib >> msvc.tmp<br />echo %hdirl%\\hbmzip.lib >> msvc.tmp<br />echo %hdirl%\\hbzlib.lib >> msvc.tmp<br />echo %hdirl%\\minizip.lib >> msvc.tmp<br />echo %hdirl%\\xhb.lib >> msvc.tmp<br />echo %hdirl%\\png.lib >> msvc.tmp<br /><br />rem Uncomment these two lines <span style=\"color: #0000ff;\">to</span> use Advantage RDD<br />rem echo %hdirl%\\rddads.lib >> msvc.tmp<br />rem echo %hdirl%\\ace32.lib >> msvc.tmp<br /><br />echo %vcdir%\\lib\\kernel32.lib >> msvc.tmp<br />echo %vcdir%\\lib\\user32.lib >> msvc.tmp<br />echo %vcdir%\\lib\\gdi32.lib >> msvc.tmp<br />echo %vcdir%\\lib\\winspool.lib >> msvc.tmp<br />echo %vcdir%\\lib\\comctl32.lib >> msvc.tmp<br />echo %vcdir%\\lib\\comdlg32.lib >> msvc.tmp<br />echo %vcdir%\\lib\\advapi32.lib >> msvc.tmp<br />echo %vcdir%\\lib\\shell32.lib >> msvc.tmp<br />echo %vcdir%\\lib\\ole32.lib >> msvc.tmp<br />echo %vcdir%\\lib\\oleaut32.lib >> msvc.tmp<br />echo %vcdir%\\lib\\uuid.lib >> msvc.tmp<br />echo %vcdir%\\lib\\odbc32.lib >> msvc.tmp<br />echo %vcdir%\\lib\\odbccp32.lib >> msvc.tmp<br />echo %vcdir%\\lib\\iphlpapi.lib >> msvc.tmp<br />echo %vcdir%\\lib\\mpr.lib >> msvc.tmp<br />echo %vcdir%\\lib\\version.lib >> msvc.tmp<br />echo %vcdir%\\lib\\wsock32.lib >> msvc.tmp<br />echo %vcdir%\\lib\\msimg32.lib >> msvc.tmp<br />echo %vcdir%\\lib\\oledlg.lib >> msvc.tmp<br />echo %vcdir%\\lib\\PsApi.lib >> msvc.tmp<br /><br /><span style=\"color: #00C800;\">IF</span> EXIST %<span style=\"color: #000000;\">1</span>.res echo %<span style=\"color: #000000;\">1</span>.res >> msvc.tmp<br /><br />ECHO _______________________________________________________________________________<br /><br />%vcdir%\\bin\\link @msvc.tmp /nologo /subsystem:<span style=\"color: #000000;\">windows</span> /force:<span style=\"color: #000000;\">multiple</span> /NODEFAULTLIB:<span style=\"color: #000000;\">libc</span><br /><br /><span style=\"color: #00C800;\">IF</span> ERRORLEVEL <span style=\"color: #000000;\">1</span> GOTO LINKERROR<br />ECHO +----------------------------------------------------------------------------+<br />ECHO | |<br />ECHO | Aplicacion %<span style=\"color: #000000;\">1</span> compilada satisfactoriamente |<br />ECHO | |<br />ECHO +----------------------------------------------------------------------------+<br />::%<span style=\"color: #000000;\">1</span><br />@del %<span style=\"color: #000000;\">1</span>.obj<br />@del %<span style=\"color: #000000;\">1</span>.ppo<br />@del %<span style=\"color: #000000;\">1</span>.c<br />@del msvc.tmp<br />@del comp.log<br /><br />mshta vbscript&#<span style=\"color: #000000;\">058</span>;CreateObject<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"SAPI.SpVoice\"</span><span style=\"color: #000000;\">)</span>.Speak<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Ok Application\"</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">(</span><span style=\"color: #0000ff;\">Window</span>.close<span style=\"color: #000000;\">)</span><br /><br />rem mshta m = vbscript&#<span style=\"color: #000000;\">058</span>;CreateObject<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"SAPI.SpVoice\"</span><span style=\"color: #000000;\">)</span>.Voice m.GetVoices<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"gender=male;language=34\"</span> <span style=\"color: #000000;\">)</span>.Item<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br />rem mshta m.Speak<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Ok Application\"</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">(</span><span style=\"color: #0000ff;\">Window</span>.close<span style=\"color: #000000;\">)</span><br /><br />GOTO EXIT<br />::<span style=\"color: #000000;\">ECHO</span><br /><br />rem delete temporary files<br />@del %<span style=\"color: #000000;\">1</span>.c<br />@del msvc.tmp<br /><br />:<span style=\"color: #000000;\">COMPILEERROR</span><br />@type comp.log<br />ECHO * Compiling errors *<br />GOTO EXIT<br /><br />:<span style=\"color: #000000;\">LINKERROR</span><br />ECHO * Linking errors *<br />GOTO EXIT<br /><br />:<span style=\"color: #000000;\">SINTAX</span><br />ECHO SYNTAX: <span style=\"color: #000000;\">Build</span> <span style=\"color: #000000;\">[</span>Program<span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">{</span>-- No especifiques la extensión PRG<br />ECHO <span style=\"color: #000000;\">{</span>-- Don<span style=\"color: #ff0000;\">'t specify .PRG extension<br />GOTO EXIT<br /><br />:NOEXIST<br />ECHO The specified PRG %1 does not exist<br /><br />:EXIT<br /><br />Pause<br /></span></div>[/code:29cvh0bo]\n \nMuchísimas gracias por tu apoyo.\nUn gran abrazo. Miguel",
"time": "20:09",
"topic": "2 preguntas 2",
"username": "El Loco"
}
] | 2 preguntas 2 |
[
{
"date": "2013-09-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Miguel Angel,\n\nEstas usando esta versión de Harbour 64 bits ?\n[url:14vq6sne]https://code.google.com/p/harbour-and-xharbour-builds/downloads/detail?name=harbour64_vc64_20130710.zip[/url:14vq6sne]",
"time": "20:15",
"topic": "2 preguntas 2",
"username": "Antonio Linares"
}
] | 2 preguntas 2 |
[
{
"date": "2013-09-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Me fijo Antonio, pero es la misma que baje con el FTDN.\nAbrazo.",
"time": "21:09",
"topic": "2 preguntas 2",
"username": "El Loco"
}
] | 2 preguntas 2 |
[
{
"date": "2013-09-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "No. Son versiones totalmente distintas.\nLa que baje con el FTDN son del 28/03/2013. Las que vos me preguntas son del 02/07/2013.\nDe todas maneras sigue repitiéndose el mismo error.\n\nAbrazo.",
"time": "21:15",
"topic": "2 preguntas 2",
"username": "El Loco"
}
] | 2 preguntas 2 |
[
{
"date": "2013-09-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Miguel Angel,\n\nHas comprobado que no tengas alguna otra version de FWH 64 en el ordenador que este enlazándose por error ?\n\nCon las librerias que te he enviado por email y esa versión de Harbour 64 debería funcionar todo correctamente",
"time": "21:49",
"topic": "2 preguntas 2",
"username": "Antonio Linares"
}
] | 2 preguntas 2 |
[
{
"date": "2013-09-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Si Antonio comprobé todo y estaría todo ok.\nVoy a seguir mirando haber si encuentro algo.\nTe aviso.\nUn gran abrazo y gracias.\nMiguel",
"time": "23:17",
"topic": "2 preguntas 2",
"username": "El Loco"
}
] | 2 preguntas 2 |
[
{
"date": "2013-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio, volví a revisar todos lo patch, y esta todo correcto.\nVolví a bajar el FTDN (3ra. revisión), instale y sigue igual.\nSobre la nueva instalación pegue las librerías de FiveWin que me enviaste por correo (que la FiveHC64.lib es distinta) y sigue igual.\nAhora estoy chequeando las librerías de harbour que cargo en bat (por si falta o sobra algo) pero por ahora parece estar bien.\n\nUn abrazo. Miguel",
"time": "01:59",
"topic": "2 preguntas 2",
"username": "El Loco"
}
] | 2 preguntas 2 |
[
{
"date": "2013-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Miguel Angel,\n\nEl error sigue siendo el mismo ?\n\n[quote:1srl8e76]FiveHC64.lib(RICHEDIT.obj) : error LNK2019: unresolved external symbol hb_extIsNil referenced in function HB_FUN_RELOADAS[/quote:1srl8e76]",
"time": "06:37",
"topic": "2 preguntas 2",
"username": "Antonio Linares"
}
] | 2 preguntas 2 |
[
{
"date": "2013-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Si exactamente el mismo.",
"time": "13:28",
"topic": "2 preguntas 2",
"username": "El Loco"
}
] | 2 preguntas 2 |
[
{
"date": "2013-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Miguel Angel,\n\nConectémonos por TeamViewer y asi reviso que pueda estar sucediendo en tu ordenador, gracias <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "13:44",
"topic": "2 preguntas 2",
"username": "Antonio Linares"
}
] | 2 preguntas 2 |
[
{
"date": "2013-09-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mil disculpas Antonio por no haberte contestado antes, pero justo en estos días tengo todos los procesos mensuales y el lunes si o si tengo que entregar. \nPero la semana que viene, si te parece lo hacemos.\nDesde ya muchísimas gracias por tu disposición y sobre todo por tu buena onda. Lo tuyo si es servicio de \"PRIMERA\" =>))\nUn gran abrazo.\nMiguel",
"time": "19:33",
"topic": "2 preguntas 2",
"username": "El Loco"
}
] | 2 preguntas 2 |
[
{
"date": "2013-09-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Miguel Angel,\n\nNo hay prisa, cuando puedas. \n\nAvisame por email y nos conectamos y lo reviso <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "23:32",
"topic": "2 preguntas 2",
"username": "Antonio Linares"
}
] | 2 preguntas 2 |
[
{
"date": "2013-10-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio, primero mil disculpas por mi tardanza, pero fueron estas dos ultimas semanas unos días de locos.\nTe cuento, este ultimo fin de semana instale FW64 todo en una nueva ruta, y milagro funciono todo de maravillas.\nQue pasaba antes ??? Ni la más remota idea, pero evidentemente algo estaba jorobando.\nMe parecía extraño, ya que más de, no se, pero 16 o 17 años que uso FiveWin, nunca me había pasado.\nIgual mil gracias por tu apoyo, soporte y ayuda.\n\nAhora te quiero hacer tres consultas.\n1 - Revisando el Build64.bat veo que no tiene las llamadas a HBMISC.LIB y a la HBNF.LIB. Yo las saque. Estoy en lo correcto ???\n2 - También note que tiene una llamada a la HBPCRE.LIB. La incorpore. Estoy en lo correcto ??? Para que sirve esta librería ??? \n3 - Por ultimo y no jorobo más, la nueva clase de Daniel TLayout, que si esta en 32bits, cuando calculas que estara disponible para 64Bits ???\n\nNuevamente mil gracias.\nUn gran abrazo.\nMiguel\n\nPD. Gracias, Gracias, Gracias",
"time": "17:44",
"topic": "2 preguntas 2",
"username": "El Loco"
}
] | 2 preguntas 2 |
[
{
"date": "2013-10-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Miguel,\n\nPosiblemente se tratase de algún path incorrecto y de ahi los errores. Me alegro de que esté funcionando bien <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\n1. Te refieres a que has incluido esas librerias ? No hay problema. Normalmente no incluimos todas, pero no pasa nada por añadirlas.\n\n2. Si no recuerdo mal esa librería es para el soporte de las \"expresiones regulares\".\n\n3. Se me olvidó incluir la Clase TLayout en FWH 64 <!-- s:-( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":-(\" title=\"Sad\" /><!-- s:-( --> Incluida para el próximo build <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) --> De todas formas, acabo de probarla y esta funcionando bien en 64 bits, por lo que puedes tomar los ejemplos de Daniel, incluirlos junto con la clase en tu aplicación y funcionará bien <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "20:05",
"topic": "2 preguntas 2",
"username": "Antonio Linares"
}
] | 2 preguntas 2 |
[
{
"date": "2013-10-17",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio gracias por responder.\nA lo que me refería en el punto 1, es que anteriormente estaban incluidas, entonces yo las saque, nadas más que a titulo de comentario.\nSabes donde puedo fijarme para saber que hace cada una de las librerías de (x)Harbour ???\nEn cuanta a la clase TLayout, no hay drama, espero el próximo build.\nUn gran abrazo.\nMiguel",
"time": "01:24",
"topic": "2 preguntas 2",
"username": "El Loco"
}
] | 2 preguntas 2 |
[
{
"date": "2013-10-17",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Miguel,\n\nPara saber que hace cada librería tendrías que revisar el propio make de Harbour/xHarbour y ver que módulos van a cada librería y revisar su código fuente para saber que funciones contienen y que hace cada una de ellas.\n\nEn la documentación que se ha ido recopilando hay bastante información, pero no esta organizado por librerías que yo recuerde:\n[url:gayo8ylj]http://www.fivetechsoft.com/harbour-docs/harbour-reference-guide.htm[/url:gayo8ylj]",
"time": "08:34",
"topic": "2 preguntas 2",
"username": "Antonio Linares"
}
] | 2 preguntas 2 |
[
{
"date": "2013-10-17",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Si, justamente empece por ahí, pregunte por la dudas que hubiese alguna información al respecto.\nUn gran abrazo.\nMiguel",
"time": "08:37",
"topic": "2 preguntas 2",
"username": "El Loco"
}
] | 2 preguntas 2 |
[
{
"date": "2006-06-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gente, quisiera saber como puedo hacer lo siguiente\n1- Que todos los controles tengan el estilo FLAT. No quiero ninguno con el estilo 3D. Como lo puedo hacer ??? Debo modificar todas las clases ???\n\n2- Hay alguna manera de cargar un theme especifico, al margen del que tenga el Windows XP en ese momento ???\n\nDesde ya mucisimas gracias.\nUn abrazo. El Loco =>))",
"time": "01:19",
"topic": "2 pruguntas 2",
"username": "El Loco"
}
] | 2 pruguntas 2 |
[
{
"date": "2006-06-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "1. Tendrías que crear controles definidos por el usuario que reemplazasen a los estandard de Windows, ó modificar el método Paint() de todos ellos para que se dibujasen de otra forma.\n\n2. No que yo sepa <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "11:18",
"topic": "2 pruguntas 2",
"username": "Antonio Linares"
}
] | 2 pruguntas 2 |
[
{
"date": "2006-06-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias Antonio, tendre que ponerme a modificar nomas.....\nPense que podria ser mas facil. \n\nAhora otra duda Antonio, en el ejemplo FiveDemo que viene en Samples veo que los Get/Browse son FLAT, y por mas que revise el prg como la dll, no pude encontrar el truco.....\nPodrias pasarme el secreto ???\n\nUn abrazo. El Loco =>))\n\n[/url]",
"time": "11:48",
"topic": "2 pruguntas 2",
"username": "El Loco"
}
] | 2 pruguntas 2 |
[
{
"date": "2006-06-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Revisa samples\\FiveDe32.rc. Posiblemente sea el estilo STYLE WS_CHILD de los diálogos.",
"time": "12:45",
"topic": "2 pruguntas 2",
"username": "Antonio Linares"
}
] | 2 pruguntas 2 |
[
{
"date": "2006-06-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":t7t0hl74]Revisa samples\\FiveDe32.rc. Posiblemente sea el estilo STYLE WS_CHILD de los diálogos.[/quote:t7t0hl74]\n\nmmmmmm...... me parece que no. Ya lo probe y creo que tampoco viene por ahi, fijate el otro ejemplo FwRes.prg llama a TestClient() con el dialogo \"client\" y este tiene el style \"Popup\" y sale con los get/browse e include un combobox con el estilo flat.\n\nSigo investigando.\nUn abrazo. El Loco =>))",
"time": "13:03",
"topic": "2 pruguntas 2",
"username": "El Loco"
}
] | 2 pruguntas 2 |
[
{
"date": "2006-01-31",
"forum": "FiveWin for CA-Clipper",
"text": "What are each of the parameters for [b:2n088zmh]ShellExecute[/b:2n088zmh] and with [b:2n088zmh]tImage[/b:2n088zmh] which uses nViewLib16 can you Zoom in and out.",
"time": "01:26",
"topic": "2 questions",
"username": "grumpy"
}
] | 2 questions |
[
{
"date": "2006-01-31",
"forum": "FiveWin for CA-Clipper",
"text": "[quote=\"grumpy\":6481jawf]What are each of the parameters for [b:6481jawf]ShellExecute[/b:6481jawf][/quote:6481jawf]\n\nFrom the MSDN:\n\n[quote:6481jawf]ShellExecute\nPerforms an operation on a specified file. \n\n\n\nHINSTANCE ShellExecute(\n HWND hwnd, \n LPCTSTR lpOperation,\n LPCTSTR lpFile, \n LPCTSTR lpParameters, \n LPCTSTR lpDirectory,\n INT nShowCmd\n);\n\nParameters\nhwnd \n[in] Handle to a parent window. This window receives any message boxes that an application produces, such as error reporting. \nlpOperation \n[in] Pointer to a null-terminated string, referred to in this case as a verb, that specifies the action to be performed. The set of available verbs depends on the particular file or folder. Generally, the actions available from an object's shortcut menu are available verbs. For more information about verbs and their availability, see Object Verbs. See Extending Shortcut Menus for further discussion of shortcut menus. The following verbs are commonly used. \n\nVerb Description \nedit Launches an editor and opens the document for editing. If lpFile is not a document file, the function will fail. \nexplore Explores the folder specified by lpFile. \nfind Initiates a search starting from the specified directory. \nopen Opens the file specified by the lpFile parameter. The file can be an executable file, a document file, or a folder. \nprint Prints the document file specified by lpFile. If lpFile is not a document file, the function will fail. \n\nIf you set this parameter to NULL:\n\nFor systems prior to Microsoft® Windows® 2000, the default verb is used if it is valid and available in the registry. If not, the \"open\" verb is used. \nFor Windows 2000 and later systems, the default verb is used if available. If not, the \"open\" verb is used. If neither verb is available, the system uses the first verb listed in the registry. \nlpFile \n[in] Pointer to a null-terminated string that specifies the file or object on which to execute the specified verb. To specify a Shell namespace object, pass the fully-qualified parse name. Note that not all verbs are supported on all objects. For example, not all document types support the \"print\" verb. \nlpParameters \n[in] If the lpFile parameter specifies an executable file, lpParameters is a pointer to a null-terminated string that specifies the parameters to be passed to the application. The format of this string is determined by the verb that is to be invoked. If lpFile specifies a document file, lpParameters should be NULL. \nlpDirectory \n[in] Pointer to a null-terminated string that specifies the default directory. \nnShowCmd \n[in] Flags that specify how an application is to be displayed when it is opened. If lpFile specifies a document file, the flag is simply passed to the associated application. It is up to the application to decide how to handle it. \n\nSW_HIDE Hides the window and activates another window. \nSW_MAXIMIZE Maximizes the specified window. \nSW_MINIMIZE Minimizes the specified window and activates the next top-level window in the z-order. \nSW_RESTORE Activates and displays the window. If the window is minimized or maximized, Windows restores it to its original size and position. An application should specify this flag when restoring a minimized window. \nSW_SHOW Activates the window and displays it in its current size and position. \nSW_SHOWDEFAULT Sets the show state based on the SW_ flag specified in the STARTUPINFO structure passed to the CreateProcess function by the program that started the application. An application should call ShowWindow with this flag to set the initial show state of its main window. \nSW_SHOWMAXIMIZED Activates the window and displays it as a maximized window. \nSW_SHOWMINIMIZED Activates the window and displays it as a minimized window. \nSW_SHOWMINNOACTIVE Displays the window as a minimized window. The active window remains active. \nSW_SHOWNA Displays the window in its current state. The active window remains active. \nSW_SHOWNOACTIVATE Displays a window in its most recent size and position. The active window remains active. \nSW_SHOWNORMAL Activates and displays a window. If the window is minimized or maximized, Windows restores it to its original size and position. An application should specify this flag when displaying the window for the first time. \n\nReturn Values\nReturns a value greater than 32 if successful, or an error value that is less than or equal to 32 otherwise. The following table lists the error values. The return value is cast as an HINSTANCE for backward compatibility with 16-bit Microsoft® Windows® applications. It is not a true HINSTANCE, however. The only thing that can be done with the returned HINSTANCE is to cast it to an integer and compare it with the value 32 or one of the error codes below.\n\n0 The operating system is out of memory or resources. \nERROR_FILE_NOT_FOUND The specified file was not found. \nERROR_PATH_NOT_FOUND The specified path was not found. \nERROR_BAD_FORMAT The .exe file is invalid (non-Win32® .exe or error in .exe image). \nSE_ERR_ACCESSDENIED The operating system denied access to the specified file. \nSE_ERR_ASSOCINCOMPLETE The file name association is incomplete or invalid. \nSE_ERR_DDEBUSY The DDE transaction could not be completed because other DDE transactions were being processed. \nSE_ERR_DDEFAIL The DDE transaction failed. \nSE_ERR_DDETIMEOUT The DDE transaction could not be completed because the request timed out. \nSE_ERR_DLLNOTFOUND The specified dynamic-link library was not found. \nSE_ERR_FNF The specified file was not found. \nSE_ERR_NOASSOC There is no application associated with the given file name extension. This error will also be returned if you attempt to print a file that is not printable. \nSE_ERR_OOM There was not enough memory to complete the operation. \nSE_ERR_PNF The specified path was not found. \nSE_ERR_SHARE A sharing violation occurred. \n\nRemarks\nThis method allows you to execute any commands in a folder's shortcut menu or stored in the registry. \n\nTo open a folder, use either of the following calls: \n\nShellExecute(handle, NULL, path_to_folder, NULL, NULL, SW_SHOWNORMAL);\n\nor \n\nShellExecute(handle, \"open\", path_to_folder, NULL, NULL, SW_SHOWNORMAL);\n\nTo explore a folder, use: \n\nShellExecute(handle, \"explore\", path_to_folder, NULL, NULL, SW_SHOWNORMAL);\n\nTo launch the Shell's Find utility for a directory, use:\n\nShellExecute(handle, \"find\", path_to_folder, NULL, NULL, 0);\n\nIf lpOperation is NULL, the function opens the file specified by lpFile. If lpOperation is \"open\" or \"explore\", the function will attempt to open or explore the folder. \n\nTo obtain information about the application that is launched as a result of calling ShellExecute, use ShellExecuteEx. \n\nWindows 95/98/Me: ShellExecute is supported by the Microsoft Layer for Unicode. To use this, you must add certain files to your application, as outlined in Microsoft Layer for Unicode on Windows 95/98/Me Systems.\n\nSee Also\nIShellExecuteHook\n\nRequirements \n Windows NT/2000: Requires Windows NT 3.1 or later. \n Windows 95/98/Me: Requires Windows 95 or later. \n Header: Declared in Shellapi.h. \n Import Library: Shell32.lib.[/quote:6481jawf]\n\n[quote=\"grumpy\":6481jawf]and with [b:6481jawf]tImage[/b:6481jawf] which uses nViewLib16 can you Zoom in and out.[/quote:6481jawf]\n\nTry using TImage:Zoom() method.\n\nEMG",
"time": "08:58",
"topic": "2 questions",
"username": "Enrico Maria Giordano"
}
] | 2 questions |
[
{
"date": "2006-01-31",
"forum": "FiveWin for CA-Clipper",
"text": "Thank you for the detail on Shellexecute. Much Appreciated. As to tImage:Zoom there is no such method in the class?\n\ntBitMap has zoom which tImage is inherited from, so how does one use it.\n\nCheers\nGerry",
"time": "10:12",
"topic": "2 questions",
"username": "grumpy"
}
] | 2 questions |
[
{
"date": "2006-01-31",
"forum": "FiveWin for CA-Clipper",
"text": "Gerry,\n\nYou have a working sample in samples\\TestBmp1.prg",
"time": "11:00",
"topic": "2 questions",
"username": "Antonio Linares"
}
] | 2 questions |
[
{
"date": "2006-01-31",
"forum": "FiveWin for CA-Clipper",
"text": "I am sorry I do not understand I am using tImage not tBitmap I understand tImage is inherited from tBitmap but the command oImage:Zoom(2) has no effect. I am refreshing the image. How can one use a class command that isn't within the class but the class it was inherited from?",
"time": "11:48",
"topic": "2 questions",
"username": "grumpy"
}
] | 2 questions |
[
{
"date": "2006-01-31",
"forum": "FiveWin for CA-Clipper",
"text": "Gerry,\n\nYou may change BITMAP into IMAGE in samples\\TestBmp1.prg and the sample workd ok too.\n\nIt properly zooms in and out. You have to call oImage:Refresh() after setting its new zoom value.",
"time": "11:55",
"topic": "2 questions",
"username": "Antonio Linares"
}
] | 2 questions |
[
{
"date": "2006-01-31",
"forum": "FiveWin for CA-Clipper",
"text": "Antonio, I am sorry but I dont understand. I am loading the file and displaying it in a REDEFINE IMAGE should I first load it then convert to bitmap somehow and then use REDEFINE BITMAP instead.\n\nConfused.\n\nGerry\n\nP.S. Thanks for the speedy replies",
"time": "12:58",
"topic": "2 questions",
"username": "grumpy"
}
] | 2 questions |
[
{
"date": "2006-02-01",
"forum": "FiveWin for CA-Clipper",
"text": "Also I am loading a JPG file.\n\nCheers",
"time": "02:11",
"topic": "2 questions",
"username": "grumpy"
}
] | 2 questions |
[
{
"date": "2006-02-01",
"forum": "FiveWin for CA-Clipper",
"text": "Please post a reduced and self-contained sample of the problem. Anyway no, you don't have to convert your image to bitmap format.\n\nEMG",
"time": "08:51",
"topic": "2 questions",
"username": "Enrico Maria Giordano"
}
] | 2 questions |
[
{
"date": "2006-02-01",
"forum": "FiveWin for CA-Clipper",
"text": "A Sample of what? I am loading an image (jpg) using tImage and I want to know if there is any way I can Zoom in or out? I have looked into the class and its inherited from tBitmap but does not have any Zoom methods and I was wondering if there was some other way?\n\n REDEFINE IMAGE oImage1 FILE cImage1 SCROLL ID 100 OF oDlg UPDATE",
"time": "09:12",
"topic": "2 questions",
"username": "grumpy"
}
] | 2 questions |
[
{
"date": "2006-02-01",
"forum": "FiveWin for CA-Clipper",
"text": "Gerry,\n\nClass TImage inherits from Class TBitmap which provides a METHOD Zoom( nZoom ), so you can do on a oImage:\n\noImage:Zoom( 0.5 )\noImage:Refresh()",
"time": "10:24",
"topic": "2 questions",
"username": "Antonio Linares"
}
] | 2 questions |
[
{
"date": "2006-02-01",
"forum": "FiveWin for CA-Clipper",
"text": "Thanks Antonio,\n\nI tried that but it didn't seem to work - must have been the size I selected, going down Zooming out showed it was working.\n\nThanks again.",
"time": "11:27",
"topic": "2 questions",
"username": "grumpy"
}
] | 2 questions |
[
{
"date": "2006-02-01",
"forum": "FiveWin for CA-Clipper",
"text": "Gerry,\n\nok, glad to know it is working <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "11:56",
"topic": "2 questions",
"username": "Antonio Linares"
}
] | 2 questions |
[
{
"date": "2006-02-02",
"forum": "FiveWin for CA-Clipper",
"text": "For Information of others using tImage/tBitmap. When you use the REDEFINE method from a Resource you MUST specify in the STyle of the the tImage Control WS_VSCROLL and WS_HSCROLL if you do not and load an image that is smaller than the defined control size (Height and Width) then the control generates the following error. By defining the scrolls this error disappears.\n\nApplication\n===========\n Path and name: C:\\GENEAL\\ANCESTOR.EXE (16 bits)\n Size: 456,768 bytes\n Max files handles permited: ( SetHandleCount() ) 121\n Time from start: 0 hours 0 mins 4 secs \n Error ocurred at: 01/02/2006, 23:27:58\n Error description: Error Objects/8 No Object Msg.: UNDEFINED:SETRANGE\n\nStack Calls\n===========\n Called from SETRANGE(0)\n Called from TIMAGE:SCROLLADJU(0)\n Called from (b)TBITMAP(0)\n Called from TIMAGE:HANDLEEVEN(0)\n Called from SETSCROLLR(0)\n Called from (b)TSCROLLBAR(0)\n Called from TIMAGE:SCROLLADJU(0)\n Called from (b)TBITMAP(0)\n Called from TIMAGE:HANDLEEVEN(0)\n Called from SETSCROLLR(0)\n Called from (b)TSCROLLBAR(0)\n Called from TSCROLLBAR:WINNEW(0)\n Called from TIMAGE:DEFAULT(0)\n Called from (b)TBITMAP(0)\n Called from ASEND(0)\n Called from TDIALOG:INITIATE(572)\n Called from TDIALOG:HANDLEEVEN(0)\n Called from DIALOGBOX(0)\n Called from TDIALOG:ACTIVATE(244)\n Called from VUEPICT(2118)",
"time": "05:10",
"topic": "2 questions",
"username": "grumpy"
}
] | 2 questions |
[
{
"date": "2006-02-02",
"forum": "FiveWin for CA-Clipper",
"text": "Gerry,\n\nThanks for your feedback,",
"time": "09:10",
"topic": "2 questions",
"username": "Antonio Linares"
}
] | 2 questions |
[
{
"date": "2005-11-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "1 - When I paint a bitmap in a dialog with @ x, y bitmap command it appears into a rectangle. How can I hide this border were the bitmap is painted?\n\n2 - How can I draw a rectangle in a dialog or window? How can I fill it with a color?\n\nI did this:\ndefine pen oPen width 1.5 color CLR_BLUE\nRectangle(oDlg:hDC, 35, 68, 200, 318, oPen:hPen)\n\nThis way I can change the border color according with color of pen but I couldn't fill the rectangle with any color else white.\n\nRegards,\nMaurilio",
"time": "16:36",
"topic": "2 questions: @ x, y bitmap and draw rectangle",
"username": "Maurilio Viana"
}
] | 2 questions: @ x, y bitmap and draw rectangle |
[
{
"date": "2005-11-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "1) Use NOBORDER clause.\n\n2) Try FloodFill( nRow, nCol, nRGBColor ) method.\n\nEMG",
"time": "23:23",
"topic": "2 questions: @ x, y bitmap and draw rectangle",
"username": "Enrico Maria Giordano"
}
] | 2 questions: @ x, y bitmap and draw rectangle |
[
{
"date": "2005-11-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks a lot, Enrico!\nI'll try it!\n\nRegards,\nMaurilio",
"time": "12:40",
"topic": "2 questions: @ x, y bitmap and draw rectangle",
"username": "Maurilio Viana"
}
] | 2 questions: @ x, y bitmap and draw rectangle |
[
{
"date": "2006-07-31",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Amigos:\n\nTengo 2 Radio desde recursos:\nLOCAL oRadio1,oRadio2,nRadio1:=1,nRadio2:=2\n\nDEFINE RADIO oRadio1 VAR nRadio1 ID 120,13,140 of......\n\nDEFINE RADIO oRadio2 VAR nRadio2 ID 150,160,170 OF...\n\nAl inicio del dialogo se muestran bien, pero cuando\ncambio algun o de ellos el otro radio se desmarca.\nSi doy click en el radio1 el radio 2 se desmarca y si doy \nclick en el radio 2 el radio1 se desmarca.\n\nAlguna sugerencia o a alguien le ha pasado?\n\nSaludos y gracias.\n\nRuben Fernandez.\nFWH 2.7 Julio, Harbour y Borland.",
"time": "20:00",
"topic": "2 radio",
"username": "RuFer"
}
] | 2 radio |
[
{
"date": "2006-07-31",
"forum": "FiveWin para Harbour/xHarbour",
"text": "debes en los recursos agrugar cada juego de radio, es decir marcas los botones del radio 1 y en las propiedades le das agrupar, luego haces lo mismo con los del raio 2, espero te sirva, asi lo resolvi...",
"time": "20:36",
"topic": "2 radio",
"username": "joseluisysturiz"
}
] | 2 radio |
[
{
"date": "2006-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "En workshop el Radio se define automaticamente como \nAUTO RADIO BUTTON y debe ser RADIO BUTTON unicamente\n\nEspero te sirva",
"time": "03:36",
"topic": "2 radio",
"username": "Marco Augusto"
}
] | 2 radio |
[
{
"date": "2006-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias Jose Luis y Marco Augusto:\n\nLo resolvi marcando como Radiobutton en el PellesC\n\nMuchas gracias a ambos.\n\nSaludos\n\nRuben Fernandez.",
"time": "05:22",
"topic": "2 radio",
"username": "RuFer"
}
] | 2 radio |
[
{
"date": "2006-05-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\n If I put 2 txbrowse into 1 dialog, after dblclick on one txbrowse, click each of the 2 txbrowses ,the 2 txbrowse will cause worng refresh/display/confused.\n Any suggestion ?\nBest regard!\nShuming Wang",
"time": "08:49",
"topic": "2 txbrowse in 1 dialog, bdblclick cause browse display wrong",
"username": "ShumingWang"
}
] | 2 txbrowse in 1 dialog, bdblclick cause browse display wrong |
[
{
"date": "2006-05-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I change into below, porblem still,\n\n\nobrow1\n\nobrow2\n\n obrow2:BLDBLClick:={||msginfo(\"aaa\")}\n\n\nMETHOD LDblClick( nRow, nCol, nKeyFlags ) CLASS TXBrowse\n\n local oCol\n local nColPos, nRowPos\n \n // add\n if ::BLDBLClick<>nil\n return Super:LDblClick( nRow, nCol, nKeyFlags )\n end\n //add \n \n ::CancelEdit()\n ::Seek()\n\nBest regard! \nShuming Wang",
"time": "02:51",
"topic": "2 txbrowse in 1 dialog, bdblclick cause browse display wrong",
"username": "ShumingWang"
}
] | 2 txbrowse in 1 dialog, bdblclick cause browse display wrong |
[
{
"date": "2008-04-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Antonio,\n\nI have problem with 2 xbrowse in one dialog. I've used TWbrowse for this dialog without problem. This is the following code and .RC file. \nTWbrowse is work ok.\n[url=http://img371.imageshack.us/my.php?image=twowbrwcf4.jpg:3ppnz4bz][img:3ppnz4bz]http://img371.imageshack.us/img371/6816/twowbrwcf4.th.jpg[/img:3ppnz4bz][/url:3ppnz4bz]\nTXbrowse is not work.\n[url=http://img356.imageshack.us/my.php?image=twoxbrwyq2.jpg:3ppnz4bz][img:3ppnz4bz]http://img356.imageshack.us/img356/9741/twoxbrwyq2.th.jpg[/img:3ppnz4bz][/url:3ppnz4bz]\n\n[code:3ppnz4bz]\n#include 'fivewin.ch'\n#include 'xbrowse.ch'\n\nFunction main\nlocal oDlg, oBrw1, oBrw2, oSay\n\nRequest DBFCDX, DBFFPT\nRddSetDefault('DBFCDX')\n\nUSE CCRCODE ALIAS SUB SHARED NEW\nSUB->(DBSETORDER(1))\nSUB->(DbGoTop())\n\nUSE CCRCODE ALIAS MAN SHARED NEW\nMAN->(DBSETORDER(1))\n MAN->(cmxSetScope(0,'M '))\n MAN->(cmxSetScope(1,'M '))\n MAN->(Dbgotop())\n\nDEFINE DIALOG oDlg RESOURCE 'CONMCODE'\n\n SELECT('MAN')\n REDEFINE XBROWSE oBrw1 FIELDS MAN->COD_CODE, MAN->COD_DESC ;\n HEADERS TE('????','Code'), TE('??????','Description') ;\n FIELDSIZES 50, 180 ;\n UPDATE ;\n ID 101 \n\n oBrw1:bChange := { || ( Brow_sCode( oBrw1 , oBrw2 , .F. ), oBrw1:Refresh() ) }\n\n SELECT('SUB')\n SUB->(DBseek(MAN->COD_CODE))\n REDEFINE XBROWSE oBrw2 FIELDS SUB->COD_CODE, SUB->COD_DESC ;\n HEADERS TE('????','Code'), TE('??????','Description') ;\n FIELDSIZES 50, 180 ;\n UPDATE ;\n ID 102 \n\nACTIVATE DIALOG oDlg ON INIT (Eval( oBrw1:bChange ) ) RESIZE16\n\nClose all\nSET RESOURCES TO\nResAllFree()\nreturn .T.\n\nfunction TE(T,E)\nreturn E\n\n*-----------------*\nFunction Brow_sCode( oBrw1 , oBrw2 , lDelete )\nSelect SUB\n\nSUB->(cmxClrScope(0))\nSUB->(cmxClrScope(1))\n\nif lDelete\n MsgAlert( 'Code : '+MAN->COD_CODE+' was deleted' )\nend\n\nSUB->(DbSeek(MAN->COD_CODE))\nSUB->(cmxSetScope(0,MAN->COD_CODE))\nSUB->(cmxSetScope(1,MAN->COD_CODE))\n\nif SUB->(cmxKeyCount()) > 0\n oBrw2:GoTop()\nend\noBrw2:Refresh(.T.)\n\nSELECT('MAN')\noBrw1:Refresh()\nreturn nil\n\n\nFunction cmxSetScope( nScope, xVal )\nreturn if(PCount() <= 1, OrdScope( nScope ), OrdScope( nScope, xVal ))\n\nFunction cmxClrScope( nScope )\nreturn OrdScope( nScope, Nil)\n\nFunction cmxKeyNo()\nreturn OrdKeyNo()\n\nFunction cmxKeyCount()\nreturn OrdKeyCount()\n\nFunction cmxKeyCoun()\nreturn OrdKeyCount()\n\nFunction cmxKeyGoTo(nKey)\nreturn OrdKeyGoTo(nKey)\n\n/*\nCONMCODE DIALOG 6, 15, 393, 203\nSTYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU\nCAPTION \"User Define Pick Box\"\nFONT 8, \"MS Sans Serif\"\n{\n CONTROL \"\", 101, \"TXBrowse\", 0 | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_VSCROLL | WS_TABSTOP, 2, 14, 190, 152\n CONTROL \"\", 102, \"TXBrowse\", 0 | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_VSCROLL | WS_TABSTOP, 199, 14, 190, 152\n LTEXT \"Main Group Code\", 109, 2, 2, 65, 10\n LTEXT \"Pick Up Code\", 110, 199, 2, 65, 10\n PUSHBUTTON \"&New Group\", 11, 2, 169, 45, 30\n PUSHBUTTON \"&Edit Group\", 12, 48, 169, 45, 30\n PUSHBUTTON \"&Delete Group\", 13, 94, 169, 45, 30\n PUSHBUTTON \"Ne&w Code\", 14, 199, 169, 45, 30\n PUSHBUTTON \"E&dit Code\", 15, 245, 169, 45, 30\n PUSHBUTTON \"Delete &Code\", 16, 291, 169, 45, 30\n CONTROL \"\", -1, \"STATIC\", SS_BLACKFRAME | WS_CHILD | WS_VISIBLE, 195, 2, 1, 197\n}\n*/[/code:3ppnz4bz]",
"time": "18:38",
"topic": "2 xbrowse is strange behavier!",
"username": "dutch"
}
] | 2 xbrowse is strange behavier! |
[
{
"date": "2008-04-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You forgot to tell use what the problem is.\n\nWhy are you redefining the names of the database functions? Is this so you don't have to change existing source code?\n\nIf this is not for an existing program, then I would strongly suggest using a database object.\n\nJames",
"time": "20:52",
"topic": "2 xbrowse is strange behavier!",
"username": "James Bott"
}
] | 2 xbrowse is strange behavier! |
[
{
"date": "2008-04-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr Dutch\n\nTheoretically there should not be any difference whatever be the Browse. I would like to test your code on wbrowse and xbrowse. If you like, you may please send to my private email, a copy of your CCRCODE.DBF, CCRCODE.CDX and CCRCODE.FPT ? You may send a sample of the table instead of the actual table.",
"time": "01:55",
"topic": "2 xbrowse is strange behavier!",
"username": "nageswaragunupudi"
}
] | 2 xbrowse is strange behavier! |
[
{
"date": "2008-04-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I tested with similar tables and it is working fine for me.\n[code:hhqmhcuk]\nFunction main\nlocal oDlg, oBrw1, oBrw2, oSay\n\nRequest DBFCDX, DBFFPT\nRddSetDefault('DBFCDX')\n\nUSE CCRCODE ALIAS SUB SHARED NEW\nSUB->(DBSETORDER(1))\nSUB->(DbGoTop())\n\nUSE MANCODE ALIAS MAN SHARED NEW\nMAN->(DBSETORDER(1))\nMAN->(Dbgotop())\n\nDEFINE DIALOG oDlg RESOURCE 'CONMCODE'\n\nREDEFINE XBROWSE oBrw1 FIELDS MAN->COD_CODE, MAN->COD_DESC ;\n HEADERS 'Code', 'Description' ;\n ALIAS \"MAN\" uPDATE ;\n ID 101\n\noBrw1:bChange := { || ( Brow_sCode( oBrw1 , oBrw2 , .F. ), oBrw1:Refresh() ) }\n\nSUB->(DBseek(MAN->COD_CODE))\nREDEFINE XBROWSE oBrw2 FIELDS SUB->COD_CODE, SUB->COD_DESC ;\n HEADERS 'Code', 'Description' ;\n ALIAS \"SUB\" UPDATE ;\n ID 102\n\nACTIVATE DIALOG oDlg ON INIT (Eval( oBrw1:bChange ) ) RESIZE16\n\nClose all\nSET RESOURCES TO\nResAllFree()\n\nreturn nil\n\nFunction Brow_sCode( oBrw1 , oBrw2 , lDelete )\nSelect SUB\n\n\nif lDelete\n MsgAlert( 'Code : '+MAN->COD_CODE+' was deleted' )\nend\n\nSUB->(OrdScope(0,MAN->COD_CODE))\nSUB->(OrdScope(1,MAN->COD_CODE))\nSUB->(dbGotop())\n\noBrw2:GoTop()\noBrw2:Refresh(.T.)\noBrw1:Refresh()\n\nreturn nil\n[/code:hhqmhcuk]\nI am getting the desired results with the above code.",
"time": "03:25",
"topic": "2 xbrowse is strange behavier!",
"username": "nageswaragunupudi"
}
] | 2 xbrowse is strange behavier! |
[
{
"date": "2008-04-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear James & nageswaragunupudi,\n\nThe problem is the first browse (Main/Left) is not show correctly. It should show 4 main group but it show 1 main group with 4 lines. It has not problem with Twbrowse (the same code). \n\nThis is the sample code, database files and .RC (1 TWbrowse/ 1 TXbrowse). \n[url:3pd2v0lj]http://rapidshare.com/files/107430839/samples.zip.html[/url:3pd2v0lj]\n\n[quote=\"nageswaragunupudi\":3pd2v0lj]Mr Dutch\n\nTheoretically there should not be any difference whatever be the Browse. I would like to test your code on wbrowse and xbrowse. If you like, you may please send to my private email, a copy of your CCRCODE.DBF, CCRCODE.CDX and CCRCODE.FPT ? You may send a sample of the table instead of the actual table.[/quote:3pd2v0lj]\n\nRegards,\nDutch",
"time": "16:05",
"topic": "2 xbrowse is strange behavier!",
"username": "dutch"
}
] | 2 xbrowse is strange behavier! |
[
{
"date": "2008-04-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dutch\n\nI had a smiliar problem with several nested xbrowse, it was fixed by adding to each browse\n\nobrw:bBookMark := {| n | iif( n == nil,aliasxxx->(RecNo()), aliasxxx->(dbgoto(n)) ) } // Required!\n\nIn theory this is not needed anymore in fwh 8.04, but give it a try. My nested xbrowse (4) work OK\n\nHth\n\nRichard",
"time": "16:19",
"topic": "2 xbrowse is strange behavier!",
"username": "Richard Chidiak"
}
] | 2 xbrowse is strange behavier! |
[
{
"date": "2008-04-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Richard,\n\nNow I use xHb.com (Nov 07) and FWH 8.04. It is the same.\n\nCould you try my code? If you change XBROWSE with LISTBOX and change in .RC file with TWbrowse. You will see what it is. \n\nRegards,\nDutch",
"time": "16:42",
"topic": "2 xbrowse is strange behavier!",
"username": "dutch"
}
] | 2 xbrowse is strange behavier! |
[
{
"date": "2008-04-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr Duch\n\nThe solution is simple. You have to use ALIAS 'MAN' or ALIAS 'SUB' compulsorily. Here is the modification to your code.\n[code:5ualyrcp]\n SELECT('MAN') // optional\n REDEFINE XBROWSE oBrw1 FIELDS MAN->COD_CODE, MAN->COD_DESC ;\n HEADERS TE('????','Code'), TE('??????','Description') ;\n FIELDSIZES 50, 180 ;\n UPDATE ;\n ID 101 ;\n ALIAS 'MAN' // This is necessary\n\n oBrw1:bChange := { || ( Brow_sCode( oBrw1 , oBrw2 , .F. ), oBrw1:Refresh() ) }\n\n SELECT('SUB') // Optional\n SUB->(DBseek(MAN->COD_CODE))\n REDEFINE XBROWSE oBrw2 FIELDS SUB->COD_CODE, SUB->COD_DESC ;\n HEADERS TE('????','Code'), TE('??????','Description') ;\n FIELDSIZES 50, 180 ;\n UPDATE ;\n ID 102 ;\n ALIAS 'SUB' // This is necessary\n\n[/code:5ualyrcp]\n\nWith these modifications, the same code works the same way both on wbrowse and xbrowse.\n\nYou may like to know why the ALIAS '???' is \"Necessary\".\nWbrowse initializes its setup soon after the command is executed. If alias is specified it uses the alias and if no alias is specified, it uses the current work area. But it is always recommended practice to specify ALIAS even with wbrowse.\n\nIn contrast, xBrowse initializes its setup while executing oBrw:CreateFromCode() / oBrw:CreateFromResource(). In case of resources, if oBrw:CreateFromResource is not specified, it initializes while activating the dialog.\n\nIf ALIAS clause is specified with the browse definition, it uses the specified alias. If it is not specified ( as in this case) it uses the current wokarea when the dialog is activated. In this case it is 'SUB'. So the same alias is used to set up both browses.\n\nIt is always desirable to specify the workarea as ALIAS 'MAN' or ALIAS 'SUB' along with the command.",
"time": "19:28",
"topic": "2 xbrowse is strange behavier!",
"username": "nageswaragunupudi"
}
] | 2 xbrowse is strange behavier! |
[
{
"date": "2008-04-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr Richard Chidiak\n\n[quote=\"Richard Chidiak\":1fnshev4]Dutch\n\nI had a smiliar problem with several nested xbrowse, it was fixed by adding to each browse\n\nobrw:bBookMark := {| n | iif( n == nil,aliasxxx->(RecNo()), aliasxxx->(dbgoto(n)) ) } // Required!\n\nIn theory this is not needed anymore in fwh 8.04, but give it a try. My nested xbrowse (4) work OK\n\nHth\n\nRichard[/quote:1fnshev4]\n\nKindly do not mistake me that I am repeating this for the second time. Bookmark assignment is really not necessary. XBrowse makes the same assignment. It is not only in 8.04. This assignment was there the same way since very long time ( from the time I started 32 bit programming).\n\nThe real reason for your problem if any must be different. Particularly please check up if you assigned the oBrw:cAlias correctly for each browse. Real solution is not this bBookMark codeblock but should be something else.",
"time": "19:35",
"topic": "2 xbrowse is strange behavier!",
"username": "nageswaragunupudi"
}
] | 2 xbrowse is strange behavier! |
[
{
"date": "2008-04-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear nageswaragunupudi,\n\nThanks a lot, it works as expectation. \n\nThank for your help and give me an idea of it.\n\nRegards,\nDutch\n[quote=\"nageswaragunupudi\":1rofs7r4]Mr Duch\n\nThe solution is simple. You have to use ALIAS 'MAN' or ALIAS 'SUB' compulsorily. Here is the modification to your code.\n\nWith these modifications, the same code works the same way both on wbrowse and xbrowse.\n\nYou may like to know why the ALIAS '???' is \"Necessary\".\nWbrowse initializes its setup soon after the command is executed. If alias is specified it uses the alias and if no alias is specified, it uses the current work area. But it is always recommended practice to specify ALIAS even with wbrowse.\n\nIn contrast, xBrowse initializes its setup while executing oBrw:CreateFromCode() / oBrw:CreateFromResource(). In case of resources, if oBrw:CreateFromResource is not specified, it initializes while activating the dialog.\n\nIf ALIAS clause is specified with the browse definition, it uses the specified alias. If it is not specified ( as in this case) it uses the current wokarea when the dialog is activated. In this case it is 'SUB'. So the same alias is used to set up both browses.\n\nIt is always desirable to specify the workarea as ALIAS 'MAN' or ALIAS 'SUB' along with the command.[/quote:1rofs7r4]",
"time": "02:10",
"topic": "2 xbrowse is strange behavier!",
"username": "dutch"
}
] | 2 xbrowse is strange behavier! |
[
{
"date": "2011-10-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\n\n Stupid question - waht is easiest way to direct scope for second alias from first alias xbrowse ? <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) --> ... I allways worked with some related alias in folders enviroment - tipycally such - pressing on other folder I directed needful scope . But in this situaction it's needful to view 2 xbrowses at the same time and managing 1-st browse records , change scopes on the 2-nd browse . Can't find how to do that .... <!-- s:oops: --><img src=\"{SMILIES_PATH}/icon_redface.gif\" alt=\":oops:\" title=\"Embarassed\" /><!-- s:oops: --> \n\n With best regards !",
"time": "17:45",
"topic": "2 xbrowses on the same window ...",
"username": "Rimantas"
}
] | 2 xbrowses on the same window ... |
[
{
"date": "2011-10-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Rimantas\":38xo3mra]Hi,\n\n Stupid question - waht is easiest way to direct scope for second alias from first alias xbrowse ? <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) --> ... I allways worked with some related alias in folders enviroment - tipycally such - pressing on other folder I directed needful scope . But in this situaction it's needful to view 2 xbrowses at the same time and managing 1-st browse records , change scopes on the 2-nd browse . Can't find how to do that .... <!-- s:oops: --><img src=\"{SMILIES_PATH}/icon_redface.gif\" alt=\":oops:\" title=\"Embarassed\" /><!-- s:oops: --> \n\n With best regards ![/quote:38xo3mra]\n\n Solution found - code block for xBrowse method bChange... <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) --> Excuse me !",
"time": "18:43",
"topic": "2 xbrowses on the same window ...",
"username": "Rimantas"
}
] | 2 xbrowses on the same window ... |
[
{
"date": "2009-10-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I must create 20 buttons with numbers and when I click on each buttons must be clicked\n\nbut I must create it for each letters \n\nsample :\n \na . 1 2 3 4 5 6 7 8 9 10 11 11 12 13 14 15 16 17 18 19 20\nb. 1 2 3 4 5 6 7 8 9 10 11 11 12 13 14 15 16 17 18 19 20\nc. 1 2 3 4 5 6 7 8 9 10 11 11 12 13 14 15 16 17 18 19 20\nd. 1 2 3 4 5 6 7 8 9 10 11 11 12 13 14 15 16 17 18 19 20\n\nand for each letters I must show with button is clicked \n\nsample :\nLetter Number buttons result\nc. 1 2 3 4 5 6 7 8 9 10 11 11 12 13 14 15 16 17 18 19 20 11\n\n\nHow I can create it ?\n\n\n\nI",
"time": "22:53",
"topic": "20 buttons with numbers",
"username": "Silvio"
}
] | 20 buttons with numbers |
[
{
"date": "2009-10-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[code=fw:1fzttacj]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg ;<br /> <span style=\"color: #0000ff;\">FROM</span> <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">290</span>,<span style=\"color: #000000;\">590</span>;<br /> <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"lalala\"</span> ;<br /> <span style=\"color: #0000ff;\">Of</span> oWnd;<br /> <span style=\"color: #0000ff;\">Pixel</span><br /><br /> MultiButton<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">4</span>, <span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">Activate</span> <span style=\"color: #0000ff;\">Dialog</span> oDlg;<br /> <span style=\"color: #0000ff;\">CENTERED</span><br /><br /><span style=\"color: #00C800;\">Function</span> MultiButton<span style=\"color: #000000;\">(</span>nChar, nNumber<span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">Local</span> x := <span style=\"color: #000000;\">0</span>, y := <span style=\"color: #000000;\">0</span>, cChar := <span style=\"color: #ff0000;\">\"\"</span><br /><br /> <span style=\"color: #00C800;\">For</span> x := <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> nChar<br /><br /> <span style=\"color: #00C800;\">For</span> y := <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> nNumber<br /><br /> cChar := Chr<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">64</span> + x <span style=\"color: #000000;\">)</span><br /><br /> @ x*<span style=\"color: #000000;\">25</span>, y*<span style=\"color: #000000;\">25</span> ButtonBmp;<br /> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">20</span>, <span style=\"color: #000000;\">20</span>;<br /> <span style=\"color: #0000ff;\">ACTION</span> Alert<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Button: \"</span> + cChar + AllTrim<span style=\"color: #000000;\">(</span> Str<span style=\"color: #000000;\">(</span> y <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>;<br /> <span style=\"color: #0000ff;\">OF</span> oDlg;<br /> <span style=\"color: #0000ff;\">prompt</span> cChar + AllTrim<span style=\"color: #000000;\">(</span> Str<span style=\"color: #000000;\">(</span> y <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>;<br /> <span style=\"color: #0000ff;\">Pixel</span><br /> end<br /> <br /> end<br /><br /><span style=\"color: #00C800;\">Return</span><br /> </div>[/code:1fzttacj]",
"time": "23:59",
"topic": "20 buttons with numbers",
"username": "sambomb"
}
] | 20 buttons with numbers |
[
{
"date": "2009-10-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I not Know How Make the buttons \nbut I Not Know How show the buttons clicked\nfor sample the clausole on change of buttons not exist",
"time": "07:30",
"topic": "20 buttons with numbers",
"username": "Silvio"
}
] | 20 buttons with numbers |
[
{
"date": "2009-10-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I'd edited the sample, try it now",
"time": "12:47",
"topic": "20 buttons with numbers",
"username": "sambomb"
}
] | 20 buttons with numbers |
[
{
"date": "2009-10-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Silvio...\n\nit a little modification of sambomb's sample\n[code=fw:3rx7dwf1]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><br /><br /><span style=\"color: #00C800;\">function</span> main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg ;<br /> <span style=\"color: #0000ff;\">FROM</span> <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">290</span>,<span style=\"color: #000000;\">590</span>;<br /> <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"lalala\"</span> ;<br /> <span style=\"color: #0000ff;\">Pixel</span><br /><br /> MultiButton<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">4</span>, <span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">Activate</span> <span style=\"color: #0000ff;\">Dialog</span> oDlg;<br /> <span style=\"color: #0000ff;\">CENTERED</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #00C800;\">Function</span> MultiButton<span style=\"color: #000000;\">(</span>nChar, nNumber<span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">Local</span> x := <span style=\"color: #000000;\">0</span>, y := <span style=\"color: #000000;\">0</span>, cChar := <span style=\"color: #ff0000;\">\"\"</span><br /><span style=\"color: #00C800;\">local</span> oBtn<br /><br /> <span style=\"color: #00C800;\">For</span> x := <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> nChar<br /><br /> <span style=\"color: #00C800;\">For</span> y := <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> nNumber<br /><br /> cChar := Chr<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">64</span> + x <span style=\"color: #000000;\">)</span><br /><br /> @ x*<span style=\"color: #000000;\">25</span>, y*<span style=\"color: #000000;\">25</span> ButtonBmp oBtn;<br /> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">20</span>, <span style=\"color: #000000;\">20</span>;<br /> <span style=\"color: #0000ff;\">OF</span> oDlg;<br /> <span style=\"color: #0000ff;\">prompt</span> cChar + AllTrim<span style=\"color: #000000;\">(</span> Str<span style=\"color: #000000;\">(</span> y <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>;<br /> <span style=\"color: #0000ff;\">Pixel</span><br /> <br /> oBtn:<span style=\"color: #000000;\">bAction</span> = BtnAction<span style=\"color: #000000;\">(</span> cChar, y <span style=\"color: #000000;\">)</span> <br /> <br /> end<br /> <br /> end<br /><br /><span style=\"color: #00C800;\">Return</span><br /> <br /><span style=\"color: #00C800;\">function</span> BtnAction<span style=\"color: #000000;\">(</span> cChar, y <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">{</span> | |Alert<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Button: \"</span> + cChar + AllTrim<span style=\"color: #000000;\">(</span> Str<span style=\"color: #000000;\">(</span> y <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /> </div>[/code:3rx7dwf1]",
"time": "13:00",
"topic": "20 buttons with numbers",
"username": "Daniel Garcia-Gil"
}
] | 20 buttons with numbers |
[
{
"date": "2009-10-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Daniel, with this modification you duplicate the button when assign to the same var each button, you must use something like it:\n\nLocal oBtn := Array(nChar*nNumber)\n\noBtn[ ( ( nchar - 1 ) * x ) + y ] \n\nThis way you assign each button to a different var... [;)]",
"time": "14:04",
"topic": "20 buttons with numbers",
"username": "sambomb"
}
] | 20 buttons with numbers |
[
{
"date": "2009-10-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "thanks but perhaps I not explain good to YOU\nI made this small sample : \n[code=fw:16ldi5z3]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><br /><br /><br /><span style=\"color: #00D7D7;\">#define</span> BTN_WIDTH <span style=\"color: #000000;\">10</span><br /><span style=\"color: #00D7D7;\">#define</span> BTN_HEIGHT <span style=\"color: #000000;\">10</span><br /><br /><span style=\"color: #00C800;\">function</span> test<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Local</span> oDlg<br /> <span style=\"color: #00C800;\">Local</span> obtn<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">200</span><span style=\"color: #000000;\">]</span><br /> <span style=\"color: #00C800;\">Local</span> nRow,Row,t,k ,xCol<br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">from</span> <span style=\"color: #000000;\">1</span>,<span style=\"color: #000000;\">2</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #000000;\">28</span>,<span style=\"color: #000000;\">78</span><br /> Xrow:=<span style=\"color: #000000;\">1</span><br /> xCol:=<span style=\"color: #000000;\">1</span><br /> row:=<span style=\"color: #000000;\">1</span><br /> <span style=\"color: #00C800;\">For</span> t=<span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #000000;\">10</span><br /> @ Xrow,xCol <span style=\"color: #0000ff;\">say</span> alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>t<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\".\"</span> <span style=\"color: #0000ff;\">SIZE</span> BTN_WIDTH,BTN_HEIGHT<br /> col:=<span style=\"color: #000000;\">03</span><br /> <span style=\"color: #00C800;\">For</span> k=<span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #000000;\">20</span><br /> @ row,col <span style=\"color: #0000ff;\">BUTTON</span> obtn<span style=\"color: #000000;\">[</span>k<span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">PROMPT</span> alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>k<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">SIZE</span> BTN_WIDTH,BTN_HEIGHT<br /> col :=col<span style=\"color: #000000;\">+2</span><br /> <span style=\"color: #00C800;\">next</span> k<br /> @ row<span style=\"color: #000000;\">+1.2</span>,Col<span style=\"color: #000000;\">+2</span> <span style=\"color: #0000ff;\">say</span> <span style=\"color: #ff0000;\">\"Result:\"</span><br /> Xrow:=xRow<span style=\"color: #000000;\">+1.2</span><br /> row:=row<span style=\"color: #000000;\">+1</span><br /> <span style=\"color: #00C800;\">next</span> t<br /><span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg<br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span></div>[/code:16ldi5z3]\n\n\n\nOn the word \"result\" I must write wich button is clicked\nOn each Line of button must be clicked one of 20 buttons\nand If I press with the mouse on a button this button must be clicked\n\nthe prg must give me a string as \" 1 2 3 4 5 6 7 8 9 10\" - only ten number , one for each line \n\nor an array with the numbers selected ( only ten numbers)\n\nit is hard to make it ?\nthanks in advance",
"time": "18:06",
"topic": "20 buttons with numbers",
"username": "Silvio"
}
] | 20 buttons with numbers |
[
{
"date": "2009-10-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Let me understand better... \n\nYou'll have 200 buttons, 20 cols * 10 row.\n\nFor each row you want only the last pressed?\nAnd at the end of the program you want a return of each row last button?\n\nExample:\nLine 1: Last Button = 1\nLine 2: Last Button = 2\nLine 3: Last Button = 5\nLine 4: Last Button = 8\nLine 5: Last Button = 9\nLine 6: Last Button = 9\nLine 7: Last Button = 9\nLine 8: Last Button = 9\nLine 9: Last Button = 9\nLine 10: Last Button = 9\n\nReturn {1,2,5,8,9,9,9,9,9}\n\nRight?",
"time": "19:01",
"topic": "20 buttons with numbers",
"username": "sambomb"
}
] | 20 buttons with numbers |
[
{
"date": "2009-10-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "yes \nand that button I click must be pressed toshow on dialog with button ( of each line) is clicked or we can change color ...",
"time": "21:27",
"topic": "20 buttons with numbers",
"username": "Silvio"
}
] | 20 buttons with numbers |
[
{
"date": "2009-10-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Silvio...\n\nyou can use new button class ( TRBbtn )\nthis is a example...\n[code=fw:3rnw2r5k]<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;\">\"ribbon.ch\"</span><br /><br /><br /><span style=\"color: #00D7D7;\">#define</span> BTN_WIDTH <span style=\"color: #000000;\">12</span><br /><span style=\"color: #00D7D7;\">#define</span> BTN_HEIGHT <span style=\"color: #000000;\">12</span><br /><br /><span style=\"color: #00C800;\">function</span> test<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Local</span> oDlg<br /> <span style=\"color: #00C800;\">Local</span> xCol, xRow<br /> <span style=\"color: #00C800;\">local</span> t, k, nTotRow, nTotCol<br /> <span style=\"color: #00C800;\">local</span> aSay<br /> <span style=\"color: #00C800;\">local</span> aBtn, nPos<br /> <span style=\"color: #00C800;\">local</span> nMaxVal := <span style=\"color: #000000;\">10</span><br /> <br /> nTotCol = <span style=\"color: #000000;\">20</span><br /> nTotRow = <span style=\"color: #000000;\">10</span><br /> <br /> aBtn = Array<span style=\"color: #000000;\">(</span> nTotRow * nTotCol <span style=\"color: #000000;\">)</span><br /> aSay = Array<span style=\"color: #000000;\">(</span> nTotRow <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">size</span> <span style=\"color: #000000;\">850</span>, <span style=\"color: #000000;\">600</span> <span style=\"color: #0000ff;\">pixel</span><br /> xRow:=<span style=\"color: #000000;\">1</span><br /> xCol:=<span style=\"color: #000000;\">10</span><br /><br /> <span style=\"color: #00C800;\">For</span> t=<span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> nTotRow<br /> @ xRow, <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">say</span> alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>t<span style=\"color: #000000;\">)</span>,<span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\".\"</span> <span style=\"color: #0000ff;\">SIZE</span> BTN_WIDTH,BTN_HEIGHT <span style=\"color: #0000ff;\">pixel</span><br /> <span style=\"color: #00C800;\">For</span> k=<span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> nTotCol<br /> nPos = nTotCol * <span style=\"color: #000000;\">(</span> t - <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> + k<br /> @ xRow, xCol rbbtn aBtn<span style=\"color: #000000;\">[</span> nPos <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">PROMPT</span> alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>k, <span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">SIZE</span> BTN_WIDTH,BTN_HEIGHT <span style=\"color: #0000ff;\">CENTER</span> <span style=\"color: #0000ff;\">ROUND</span> BORDER<br /> xCol += BTN_WIDTH + <span style=\"color: #000000;\">5</span><br /> aBtn<span style=\"color: #000000;\">[</span> nPos <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">bAction</span> = BtnAction<span style=\"color: #000000;\">(</span> k, t, nTotCol, aBtn, aSay, nMaxVal <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">next</span> k<br /> @ xRow + <span style=\"color: #000000;\">5</span>, xCol <span style=\"color: #0000ff;\">say</span> aSay<span style=\"color: #000000;\">[</span> t <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Result:\"</span> <span style=\"color: #0000ff;\">pixel</span><br /> xRow += BTN_HEIGHT + <span style=\"color: #000000;\">5</span><br /> xCol = <span style=\"color: #000000;\">10</span><br /> <span style=\"color: #00C800;\">next</span> t<br /><span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg<br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br /><br /><span style=\"color: #00C800;\">function</span> BtnAction<span style=\"color: #000000;\">(</span> x, y, nTotCol, aBtn, aSay, nMaxVal<span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">{</span> | oSelf | CheckStatus<span style=\"color: #000000;\">(</span> oSelf, x, y, nTotCol, aBtn, aSay, nMaxVal <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <br /> <br /><span style=\"color: #00C800;\">Function</span> CheckStatus<span style=\"color: #000000;\">(</span> oSelf, x, y, nTotCol, aBtn, aSay, nMaxVal <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> nCount := <span style=\"color: #000000;\">0</span><br /> <br /> <br /> AEval<span style=\"color: #000000;\">(</span> aBtn, <span style=\"color: #000000;\">{</span>| oSelf | <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> oSelf:<span style=\"color: #000000;\">lSelected</span>, nCount++, <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span>, <span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> y - <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> * nTotCol <span style=\"color: #000000;\">)</span> + <span style=\"color: #000000;\">1</span>, nTotCol <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">if</span> nCount <= nMaxVal<br /> aSay<span style=\"color: #000000;\">[</span> y <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">Cargo</span> := <span style=\"color: #ff0000;\">\"Result: \"</span><br /> <span style=\"color: #00C800;\">if</span> oSelf:<span style=\"color: #000000;\">lSelected</span><br /> oSelf:<span style=\"color: #000000;\">lSelected</span> := .F.<br /> <span style=\"color: #00C800;\">else</span><br /> oSelf:<span style=\"color: #000000;\">lSelected</span> := .T. .and. nCount < nMaxVal <br /> <span style=\"color: #00C800;\">if</span> ! oSelf:<span style=\"color: #000000;\">lSelected</span><br /> MsgStop<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"You can't Select\"</span> + CRLF + <span style=\"color: #ff0000;\">\"Max: \"</span> + Str<span style=\"color: #000000;\">(</span> nMaxVal <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /> <span style=\"color: #00C800;\">endif</span><br /> AEval<span style=\"color: #000000;\">(</span> aBtn, <span style=\"color: #000000;\">{</span>| oSelf, nIdx | aSay<span style=\"color: #000000;\">[</span> y <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">Cargo</span> += <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> oSelf:<span style=\"color: #000000;\">lSelected</span>, Str<span style=\"color: #000000;\">(</span> nIdx - <span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> y - <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> * nTotCol <span style=\"color: #000000;\">)</span>, <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">)</span> + <span style=\"color: #ff0000;\">\" \"</span>, <span style=\"color: #ff0000;\">\"\"</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span>, ;<br /> <span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> y - <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> * nTotCol <span style=\"color: #000000;\">)</span> + <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> nTotCol <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> aSay<span style=\"color: #000000;\">[</span> y <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">SetText</span><span style=\"color: #000000;\">(</span> aSay<span style=\"color: #000000;\">[</span> y <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">Cargo</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> </div>[/code:3rnw2r5k]",
"time": "21:56",
"topic": "20 buttons with numbers",
"username": "Daniel Garcia-Gil"
}
] | 20 buttons with numbers |
[
{
"date": "2009-10-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Silvio...\n\nNew sample...\n[code=fw:26s5dc2k]<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;\">\"ribbon.ch\"</span><br /><br /><br /><span style=\"color: #00D7D7;\">#define</span> BTN_WIDTH <span style=\"color: #000000;\">12</span><br /><span style=\"color: #00D7D7;\">#define</span> BTN_HEIGHT <span style=\"color: #000000;\">12</span><br /><br /><span style=\"color: #00C800;\">function</span> test<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Local</span> oDlg<br /> <span style=\"color: #00C800;\">Local</span> xCol, xRow<br /> <span style=\"color: #00C800;\">local</span> t, k, nTotRow, nTotCol<br /> <span style=\"color: #00C800;\">local</span> aSay<br /> <span style=\"color: #00C800;\">local</span> aBtn, nPos<br /> <span style=\"color: #00C800;\">local</span> nMaxVal := <span style=\"color: #000000;\">1</span><br /> <br /> nTotCol = <span style=\"color: #000000;\">20</span><br /> nTotRow = <span style=\"color: #000000;\">10</span><br /> <br /> aBtn = Array<span style=\"color: #000000;\">(</span> nTotRow * nTotCol <span style=\"color: #000000;\">)</span><br /> aSay = Array<span style=\"color: #000000;\">(</span> nTotRow <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">size</span> <span style=\"color: #000000;\">850</span>, <span style=\"color: #000000;\">600</span> <span style=\"color: #0000ff;\">pixel</span><br /> xRow:=<span style=\"color: #000000;\">1</span><br /> xCol:=<span style=\"color: #000000;\">10</span><br /><br /> <span style=\"color: #00C800;\">For</span> t=<span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> nTotRow<br /> @ xRow, <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">say</span> alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>t<span style=\"color: #000000;\">)</span>,<span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\".\"</span> <span style=\"color: #0000ff;\">SIZE</span> BTN_WIDTH,BTN_HEIGHT <span style=\"color: #0000ff;\">pixel</span><br /> <span style=\"color: #00C800;\">For</span> k=<span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> nTotCol<br /> nPos = nTotCol * <span style=\"color: #000000;\">(</span> t - <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> + k<br /> @ xRow, xCol rbbtn aBtn<span style=\"color: #000000;\">[</span> nPos <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">PROMPT</span> alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>k, <span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">SIZE</span> BTN_WIDTH,BTN_HEIGHT <span style=\"color: #0000ff;\">CENTER</span> <span style=\"color: #0000ff;\">ROUND</span> BORDER<br /> xCol += BTN_WIDTH + <span style=\"color: #000000;\">5</span><br /> aBtn<span style=\"color: #000000;\">[</span> nPos <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">bAction</span> = BtnAction<span style=\"color: #000000;\">(</span> k, t, nTotCol, nTotRow, aBtn, aSay, nMaxVal <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">next</span> k<br /> @ xRow + <span style=\"color: #000000;\">5</span>, xCol <span style=\"color: #0000ff;\">say</span> aSay<span style=\"color: #000000;\">[</span> t <span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Result:\"</span> <span style=\"color: #0000ff;\">pixel</span><br /> xRow += BTN_HEIGHT + <span style=\"color: #000000;\">5</span><br /> xCol = <span style=\"color: #000000;\">10</span><br /> <span style=\"color: #00C800;\">next</span> t<br /><span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg<br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br /><br /><span style=\"color: #00C800;\">function</span> BtnAction<span style=\"color: #000000;\">(</span> x, y, nTotCol, nTotRow, aBtn, aSay, nMaxVal<span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">{</span> | oSelf | CheckStatus<span style=\"color: #000000;\">(</span> oSelf, x, y, nTotCol, nTotRow, aBtn, aSay, nMaxVal <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <br /> <br /><span style=\"color: #00C800;\">Function</span> CheckStatus<span style=\"color: #000000;\">(</span> oSelf, x, y, nTotCol, nTotRow, aBtn, aSay, nMaxVal <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> nCount := <span style=\"color: #000000;\">0</span><br /> <span style=\"color: #00C800;\">local</span> j<br /> <br /> <br /> AEval<span style=\"color: #000000;\">(</span> aBtn, <span style=\"color: #000000;\">{</span>| oSelf | <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> oSelf:<span style=\"color: #000000;\">lSelected</span>, nCount++, <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span>, <span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> y - <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> * nTotCol <span style=\"color: #000000;\">)</span> + <span style=\"color: #000000;\">1</span>, nTotCol <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">if</span> nCount <= nMaxVal<br /> aSay<span style=\"color: #000000;\">[</span> y <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">Cargo</span> := <span style=\"color: #ff0000;\">\"Result: \"</span><br /> <span style=\"color: #00C800;\">if</span> oSelf:<span style=\"color: #000000;\">lSelected</span><br /> oSelf:<span style=\"color: #000000;\">lSelected</span> := .F.<br /> <span style=\"color: #00C800;\">else</span><br /> oSelf:<span style=\"color: #000000;\">lSelected</span> := .T. .and. nCount < nMaxVal <br /> <span style=\"color: #00C800;\">if</span> ! oSelf:<span style=\"color: #000000;\">lSelected</span><br /> MsgStop<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"You can't Select\"</span> + CRLF + <span style=\"color: #ff0000;\">\"Max: \"</span> + Str<span style=\"color: #000000;\">(</span> nMaxVal <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">else</span><br /> <span style=\"color: #00C800;\">for</span> j = <span style=\"color: #000000;\">0</span> <span style=\"color: #0000ff;\">to</span> nTotRow - <span style=\"color: #000000;\">1</span><br /> <span style=\"color: #00C800;\">if</span> aBtn<span style=\"color: #000000;\">[</span> j * nTotCol + x <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">lSelected</span> .and. <span style=\"color: #000000;\">(</span> j + <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span>#y<br /> MsgStop<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"You can't Select this number\"</span> + CRLF + <span style=\"color: #ff0000;\">\"was selected in Row: \"</span> + Str<span style=\"color: #000000;\">(</span> j + <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> aBtn<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">(</span>y - <span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">)</span> * nTotCol + x <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">lSelected</span> = .F.<br /> aBtn<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">(</span>y - <span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">)</span> * nTotCol + x <span style=\"color: #000000;\">]</span>:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> exit<br /> <span style=\"color: #00C800;\">endif</span><br /> <span style=\"color: #00C800;\">next</span><br /> <span style=\"color: #00C800;\">endif</span><br /> <span style=\"color: #00C800;\">endif</span><br /> AEval<span style=\"color: #000000;\">(</span> aBtn, <span style=\"color: #000000;\">{</span>| oSelf, nIdx | aSay<span style=\"color: #000000;\">[</span> y <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">Cargo</span> += <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> oSelf:<span style=\"color: #000000;\">lSelected</span>, Str<span style=\"color: #000000;\">(</span> nIdx - <span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> y - <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> * nTotCol <span style=\"color: #000000;\">)</span>, <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">)</span> + <span style=\"color: #ff0000;\">\" \"</span>, <span style=\"color: #ff0000;\">\"\"</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span>, ;<br /> <span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> y - <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> * nTotCol <span style=\"color: #000000;\">)</span> + <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> nTotCol <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> aSay<span style=\"color: #000000;\">[</span> y <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">SetText</span><span style=\"color: #000000;\">(</span> aSay<span style=\"color: #000000;\">[</span> y <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">Cargo</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /> <br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> </div>[/code:26s5dc2k]",
"time": "00:18",
"topic": "20 buttons with numbers",
"username": "Daniel Garcia-Gil"
}
] | 20 buttons with numbers |
[
{
"date": "2009-10-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "thankssssssssssssss it was that I am searching\nGood Mr D",
"time": "09:01",
"topic": "20 buttons with numbers",
"username": "Silvio"
}
] | 20 buttons with numbers |
[
{
"date": "2013-05-13",
"forum": "Off Topic / Otros temas",
"text": "Dear friends,\n\nWe have reached 2000 users on these forums <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nand growing...",
"time": "11:44",
"topic": "2000 registered users",
"username": "Antonio Linares"
}
] | 2000 registered users |
[
{
"date": "2013-05-13",
"forum": "Off Topic / Otros temas",
"text": "Great.\nLet's make a party. All Fivewinners to Antonio's home this evening <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "16:50",
"topic": "2000 registered users",
"username": "Massimo Linossi"
}
] | 2000 registered users |
[
{
"date": "2013-05-13",
"forum": "Off Topic / Otros temas",
"text": "That would be great! <!-- s:wink: --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\":wink:\" title=\"Wink\" /><!-- s:wink: -->",
"time": "20:03",
"topic": "2000 registered users",
"username": "Antonio Linares"
}
] | 2000 registered users |
[
{
"date": "2020-09-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola, me da este error al conectarme. Como lo evito.\n\nQuiero detectar cuando no se conecta....\nHe hecho \nFWCONNECT oCn HOST chost USER cUser PASSWORD cPassword DB cDatabase\nif ocn == nil\n msginfo()\nelseif ocn:nError <> 0 \n MsgInfo()\nEndif\n\nAntes de entrar en el if, me muestra el mensaje de error.\n\nGracias.",
"time": "22:41",
"topic": "2003 Can't connect to Mysql server on 'localhost' (10061)",
"username": "D.Fernandez"
}
] | 2003 Can't connect to Mysql server on 'localhost' (10061) |
[
{
"date": "2020-09-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "En qué puerto tienes configurado la conexión? ( no veo la clausula PORT )",
"time": "23:12",
"topic": "2003 Can't connect to Mysql server on 'localhost' (10061)",
"username": "cnavarro"
}
] | 2003 Can't connect to Mysql server on 'localhost' (10061) |
[
{
"date": "2020-09-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola Sr. Navarro. \nTengo la conexión en el puerto 3306, pero no hago la conexion a propósito para detectar el error.\n\nGracias.",
"time": "23:22",
"topic": "2003 Can't connect to Mysql server on 'localhost' (10061)",
"username": "D.Fernandez"
}
] | 2003 Can't connect to Mysql server on 'localhost' (10061) |
[
{
"date": "2020-09-17",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Una idea \n\n[url:2jhwb69w]http://forums.fivetechsupport.com/viewtopic.php?f=3&t=39167&hilit=FW_OpenAdoConnection#p234174[/url:2jhwb69w]",
"time": "11:41",
"topic": "2003 Can't connect to Mysql server on 'localhost' (10061)",
"username": "leandro"
}
] | 2003 Can't connect to Mysql server on 'localhost' (10061) |
[
{
"date": "2008-07-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr.Antonio\r\n\r\n[code:1g1b0gj2]\nDEFINE BUTTONBAR oBar OF oWnd SIZE 60, 40 //2007\n\nDEFINE BUTTON oBtn1 OF oBar ACTION New() ;\n RESOURCE \"new\" ;\n PROMPT \"New\" GROUP TOOLTIP \"New\" LEFT \n\n[/code:1g1b0gj2]\n\nI gave below the results of BUTTONBAR with and without 2007 Clause\n\nLEFT clause in BUTTON statement is not respected with 2007 clause.\n\nHow can I get it with 2007 clause ?\n\n[url=http://img292.imageshack.us/my.php?image=btnbmpld4.png:1g1b0gj2][img:1g1b0gj2]http://img292.imageshack.us/img292/5213/btnbmpld4.th.png[/img:1g1b0gj2][/url:1g1b0gj2][code:1g1b0gj2]\n\nRegards,\n\n- Ramesh Babu P\n[/code:1g1b0gj2]",
"time": "13:57",
"topic": "2007 CLAUSE OF BUTTON BAR NOT PAITING TEXT RIGHT TO BUTTONS",
"username": "RAMESHBABU"
}
] | 2007 CLAUSE OF BUTTON BAR NOT PAITING TEXT RIGHT TO BUTTONS |
[
{
"date": "2008-07-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Right, Left and Bottom are not implemented in 2007 style.",
"time": "15:30",
"topic": "2007 CLAUSE OF BUTTON BAR NOT PAITING TEXT RIGHT TO BUTTONS",
"username": "nageswaragunupudi"
}
] | 2007 CLAUSE OF BUTTON BAR NOT PAITING TEXT RIGHT TO BUTTONS |
[
{
"date": "2008-07-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr.Nageswara Rao\r\n\r\nThank you for your advise.\r\n\r\nMr.Antonio\r\n\r\nI Hope that this will be implemented soon.\r\n\r\n- Ramesh Babu P",
"time": "18:00",
"topic": "2007 CLAUSE OF BUTTON BAR NOT PAITING TEXT RIGHT TO BUTTONS",
"username": "RAMESHBABU"
}
] | 2007 CLAUSE OF BUTTON BAR NOT PAITING TEXT RIGHT TO BUTTONS |
[
{
"date": "2007-12-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Is there a way to check if someone uses \"classical windows\" desighn in XP or Vista ?\nIsAppThemed() still returns .T.\nIn this case menu and messagebar are 2007 style, dialogs look \"old\" which gives a strange look in that combination.\n\nRegards,\nDietmar",
"time": "09:52",
"topic": "2007 style question",
"username": "Dietmar Jahnel"
}
] | 2007 style question |
[
{
"date": "2007-12-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dietmar,\n\n> IsAppThemed() still returns .T. \n\nIsAppThemed() just checks is the themes manifest file is included in the EXE\n\nWe need to find a way to detect if the user has the classic look",
"time": "11:33",
"topic": "2007 style question",
"username": "Antonio Linares"
}
] | 2007 style question |
[
{
"date": "2007-12-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "We need to find a way to detect if the user has the classic look\n\nThat's what I was looking for <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) --> !\n\nHope you can find a way!\n\nRegards,\nDietmar",
"time": "14:14",
"topic": "2007 style question",
"username": "Dietmar Jahnel"
}
] | 2007 style question |
[
{
"date": "2007-12-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dietmar,\n\nGoogle is our friend <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\n>\nOne possibility would be to check the value of ThemeActive in the registry under: HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\ThemeManager\n\nI believe a value of 0 means that no themes are in use (Windows Classic Style) and a value of 1 means that themes are in use (Windows XP style).\n>",
"time": "16:14",
"topic": "2007 style question",
"username": "Antonio Linares"
}
] | 2007 style question |
[
{
"date": "2007-12-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dietmar,\n\nMore results <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n>\nCall OpenThemeData. This will return a handle to the theme, which, if NULL indicates that the visual style manager is disabled or there is no information for that control, which means that you should continue to draw using your default routines.\n>",
"time": "16:18",
"topic": "2007 style question",
"username": "Antonio Linares"
}
] | 2007 style question |
[
{
"date": "2007-12-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\n>Call OpenThemeData\n\nIs that an existing FW or Harbour function, or is it an API?\n\nJames",
"time": "17:22",
"topic": "2007 style question",
"username": "James Bott"
}
] | 2007 style question |
[
{
"date": "2007-12-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": ">Call OpenThemeData \n\nAntonio,\ncould you please post the code to do that.\nWe are about to release a new version of our software...\n\nThanks,\nDietmar",
"time": "17:48",
"topic": "2007 style question",
"username": "Dietmar Jahnel"
}
] | 2007 style question |
[
{
"date": "2007-12-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"James Bott\":1ygo1c5k]Is that an existing FW or Harbour function, or is it an API?[/quote:1ygo1c5k]\n\nIt's an API:\n\n[code:1ygo1c5k]HTHEME OpenThemeData( HWND hwnd, LPCWSTR pszClassList );[/code:1ygo1c5k]\n\nEMG",
"time": "23:46",
"topic": "2007 style question",
"username": "Enrico Maria Giordano"
}
] | 2007 style question |
[
{
"date": "2007-12-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dietmar,\n\nHere you have a working sample:\n[code:37g49j3j]\nfunction Main()\n\n MsgInfo( IsThemeActive() )\n\nreturn nil\n\n#pragma BEGINDUMP\n\n#include <windows.h>\n#include <hbapi.h>\n\ntypedef BOOL ( * PFISTHEMEACTIVE ) ( void );\n\nHB_FUNC( ISTHEMEACTIVE )\n{\n HINSTANCE hDLL = LoadLibrary( \"UxTheme.dll\" );\n PFISTHEMEACTIVE IsThemeActive;\n \n if( hDLL == NULL )\n {\n hb_retl( FALSE );\n return;\n }\n else\n IsThemeActive = ( void * ) GetProcAddress( hDLL, \"IsThemeActive\" );\n \n if( IsThemeActive )\n hb_retl( IsThemeActive() );\n else\n hb_retl( FALSE ); \n \n FreeLibrary( hDLL );\n} \n \n#pragma ENDDUMP\n[/code:37g49j3j]",
"time": "00:59",
"topic": "2007 style question",
"username": "Antonio Linares"
}
] | 2007 style question |
[
{
"date": "2007-12-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "nice - that's it!\n\nBut I noticed that there seems to be a little painting problem with bars without themes. Right of the bitmaps there is a darker grey...\n\nI send the image to your per mail\n\nRegards,\nDietmar",
"time": "16:53",
"topic": "2007 style question",
"username": "Dietmar Jahnel"
}
] | 2007 style question |
[
{
"date": "2007-12-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dietmar,\n\nIf you don't use the 2007 clause then you have to use the 3D clause to get the colors and painting that you want <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "18:26",
"topic": "2007 style question",
"username": "Antonio Linares"
}
] | 2007 style question |
[
{
"date": "2007-12-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Many Thanks, now the look is consistent with and without themes! <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \nDietmar",
"time": "19:27",
"topic": "2007 style question",
"username": "Dietmar Jahnel"
}
] | 2007 style question |
[
{
"date": "2011-05-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello:\n\nis a big pleasure present to all the next release of fivewin with style 2010\n\nRibbon, Menu and Message Bar\n\nRibbon, no change is required, only add 2010 to comamnd, new clause STARTBTN <nOpcion>, will show a \"start\" button (blue)\n\n[code=fw:29972coe]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <span style=\"color: #0000ff;\">DEFINE</span> RIBBONBAR ::<span style=\"color: #000000;\">oRBar</span> <span style=\"color: #0000ff;\">WINDOW</span> ::<span style=\"color: #000000;\">oWnd</span> ;<br /> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Archivo\"</span>, ;<br /> <span style=\"color: #ff0000;\">\"Configuración\"</span>, ;<br /> <span style=\"color: #ff0000;\">\"Ficheros\"</span>, ;<br /> <span style=\"color: #ff0000;\">\"Informes\"</span>, ;<br /> <span style=\"color: #ff0000;\">\"Ayudas\"</span> HEIGHT <span style=\"color: #000000;\">133</span> OPTION <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">2010</span> STARTBTN <span style=\"color: #000000;\">1</span></div>[/code:29972coe]\n\n[img:29972coe]http://www.sitasoft.net/fivewin/screen/rb2010.png[/img:29972coe]\n\nMenu: is possible combine both style 2010 and 2007\n\n[code=fw:29972coe]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <span style=\"color: #0000ff;\">MENU</span> oMenu <span style=\"color: #000000;\">2010</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"&Archivo\"</span><br /> <span style=\"color: #0000ff;\">MENU</span> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 1\"</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 2\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 2\"</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span><br /><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"&Edicion\"</span><br /> <span style=\"color: #0000ff;\">MENU</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 1 \"</span> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 2\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 2 \"</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 3\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 3\"</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 4\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 4\"</span> <br /> <span style=\"color: #0000ff;\">SEPARATOR</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 5\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 5\"</span> <br /> <span style=\"color: #0000ff;\">MENU</span> <span style=\"color: #000000;\">2007</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 1\"</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 2\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 2\"</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span> <br /> <span style=\"color: #0000ff;\">ENDMENU</span></div>[/code:29972coe]\n\n[img:29972coe]http://www.sitasoft.net/fivewin/screen/menu2010_1.png[/img:29972coe]\n\n[img:29972coe]http://www.sitasoft.net/fivewin/screen/menu2010_2.png[/img:29972coe]\n\nMessageBar: only add 2010 to command\n\n[code=fw:29972coe]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">SET <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #0000ff;\">OF</span> ::<span style=\"color: #000000;\">oWnd</span> <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #ff0000;\">\"Testing Class RibbonBar Style 2010 and Message Bar 2010 colors\"</span> ;<br /> <span style=\"color: #0000ff;\">CENTERED</span> CLOCK KEYBOARD <span style=\"color: #000000;\">2010</span></div>[/code:29972coe]\n\n[img:29972coe]http://www.sitasoft.net/fivewin/screen/msgbar_2010.png[/img:29972coe]",
"time": "15:50",
"topic": "2010 style",
"username": "Daniel Garcia-Gil"
}
] | 2010 style |
[
{
"date": "2011-05-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Sample\n\n[url:af3mhwvh]http://www.sitasoft.net/fivewin/samples/rb2010.zip[/url:af3mhwvh]",
"time": "16:24",
"topic": "2010 style",
"username": "Daniel Garcia-Gil"
}
] | 2010 style |
[
{
"date": "2011-05-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Daniel,\n\nThank you. Great news!!!.\n\nWhat about Buttonbmp and Skinbuttons?\n\nAlso. in your sample, I click con Archivo and I get an error:\n\n[code=fw:ov5qkh39]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">Application<br />===========<br /> Path and <span style=\"color: #0000ff;\">name</span>: <span style=\"color: #000000;\">C</span>:\\Users\\REPC~<span style=\"color: #000000;\">1</span>\\AppData\\<span style=\"color: #00C800;\">Local</span>\\Temp\\Rar$EX00<span style=\"color: #000000;\">.466</span>\\ribbon.exe <span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">32</span> bits<span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">Size</span>: <span style=\"color: #000000;\">2</span>,<span style=\"color: #000000;\">035</span>,<span style=\"color: #000000;\">712</span> bytes<br /> Time <span style=\"color: #0000ff;\">from</span> start: <span style=\"color: #000000;\">0</span> hours <span style=\"color: #000000;\">0</span> mins <span style=\"color: #000000;\">1</span> secs <br /> Error occurred <span style=\"color: #00C800;\">at</span>: <span style=\"color: #000000;\">05</span>/<span style=\"color: #000000;\">21</span>/<span style=\"color: #000000;\">11</span>, <span style=\"color: #000000;\">13</span>:<span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">37</span><br /> Error description: <span style=\"color: #000000;\">Error</span> BASE/<span style=\"color: #000000;\">1004</span> No exported <span style=\"color: #00C800;\">method</span>: <span style=\"color: #000000;\">HIDE</span><br /> Args:<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">]</span> = U <br /><br />Stack Calls<br />===========<br /> Called <span style=\"color: #0000ff;\">from</span>: => HIDE<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: <span style=\"color: #000000;\">ribbon</span>.prg => <span style=\"color: #000000;\">(</span>b<span style=\"color: #000000;\">)</span>TAPPLICATION_BACKSTAGE<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">522</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\prg\\TRIBBON.PRG => TRIBBONBAR:<span style=\"color: #000000;\">BACKSTAGE</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">788</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: <span style=\"color: #000000;\">ribbon</span>.prg => <span style=\"color: #000000;\">(</span>b<span style=\"color: #000000;\">)</span>TAPPLICATION_BUILDRIBBON<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">245</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\prg\\TRIBBON.PRG => TRIBBONBAR:<span style=\"color: #000000;\">SETOPTION</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1002</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\prg\\TRIBBON.PRG => TRIBBONBAR:<span style=\"color: #000000;\">LBUTTONDOWN</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">881</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\source\\classes\\CONTROL.PRG => TCONTROL:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1492</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\prg\\TRIBBON.PRG => TRIBBONBAR:<span style=\"color: #000000;\">HANDLEEVENT</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1030</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\prg\\<span style=\"color: #0000ff;\">WINDOW</span>.PRG => _FWH<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">3428</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: => WINRUN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: .\\prg\\<span style=\"color: #0000ff;\">WINDOW</span>.PRG => TWINDOW:<span style=\"color: #0000ff;\">ACTIVATE</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">992</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: <span style=\"color: #000000;\">ribbon</span>.prg => TAPPLICATION:<span style=\"color: #000000;\">RUN</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">70</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span>: <span style=\"color: #000000;\">ribbon</span>.prg => MAIN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">19</span><span style=\"color: #000000;\">)</span><br /><br />System<br />======<br /> CPU type: <span style=\"color: #000000;\">Pentium</span><span style=\"color: #000000;\">(</span>R<span style=\"color: #000000;\">)</span> Dual-Core CPU E5500 @ <span style=\"color: #000000;\">2</span>.80GHz <span style=\"color: #000000;\">2800</span> Mhz<br /> Hardware memory: <span style=\"color: #000000;\">1920</span> megs<br /><br /> Free System resources: <span style=\"color: #000000;\">90</span> %<br /> GDI resources: <span style=\"color: #000000;\">90</span> %<br /> User resources: <span style=\"color: #000000;\">90</span> %<br /><br /> Compiler version: <span style=\"color: #000000;\">Harbour</span> <span style=\"color: #000000;\">2.1</span>.0rc2 <span style=\"color: #000000;\">(</span>Rev. <span style=\"color: #000000;\">16334</span><span style=\"color: #000000;\">)</span><br /> Windows version: <span style=\"color: #000000;\">6.1</span>, Build <span style=\"color: #000000;\">7600</span> <br /><br /> Windows total applications running: <span style=\"color: #000000;\">4</span><br /> <span style=\"color: #000000;\">1</span> <br /> <span style=\"color: #000000;\">2</span> AutoComplete<br /> <span style=\"color: #000000;\">3</span> SysFader<br /> <span style=\"color: #000000;\">4</span> <span style=\"color: #00C800;\">Default</span> IME<br /> <br /> Procedure Type Value<br /> ==========================<br /> HIDE<br /> Param <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">O</span> <span style=\"color: #00C800;\">Class</span>: <span style=\"color: #000000;\">ERROR</span><br /> <span style=\"color: #000000;\">(</span>b<span style=\"color: #000000;\">)</span>TAPPLICATION_BACKSTAGE<br /> <span style=\"color: #00C800;\">Local</span> <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">U</span> <br /> <span style=\"color: #00C800;\">Local</span> <span style=\"color: #000000;\">2</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">0</span><br /> TRIBBONBAR:<span style=\"color: #000000;\">BACKSTAGE</span><br /> Param <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">O</span> <span style=\"color: #00C800;\">Class</span>: <span style=\"color: #000000;\">TRIBBONBAR</span><br /> <span style=\"color: #000000;\">(</span>b<span style=\"color: #000000;\">)</span>TAPPLICATION_BUILDRIBBON<br /> TRIBBONBAR:<span style=\"color: #000000;\">SETOPTION</span><br /> Param <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">1</span><br /> Param <span style=\"color: #000000;\">2</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">2</span><br /> TRIBBONBAR:<span style=\"color: #000000;\">LBUTTONDOWN</span><br /> Param <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">1</span><br /> <span style=\"color: #00C800;\">Local</span> <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">2</span><br /> TCONTROL:<span style=\"color: #000000;\">HANDLEEVENT</span><br /> Param <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">17</span><br /> Param <span style=\"color: #000000;\">2</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">52</span><br /> Param <span style=\"color: #000000;\">3</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">1</span><br /> <span style=\"color: #00C800;\">Local</span> <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">1</span><br /> <span style=\"color: #00C800;\">Local</span> <span style=\"color: #000000;\">2</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">15</span><br /> TRIBBONBAR:<span style=\"color: #000000;\">HANDLEEVENT</span><br /> Param <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">513</span><br /> Param <span style=\"color: #000000;\">2</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">1</span><br /> Param <span style=\"color: #000000;\">3</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">1114164</span><br /> <span style=\"color: #00C800;\">Local</span> <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">U</span> <br /> _FWH<br /> Param <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">513</span><br /> Param <span style=\"color: #000000;\">2</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">1</span><br /> Param <span style=\"color: #000000;\">3</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">1114164</span><br /> <span style=\"color: #00C800;\">Local</span> <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">O</span> <span style=\"color: #00C800;\">Class</span>: <span style=\"color: #000000;\">TRIBBONBAR</span><br /> WINRUN<br /> Param <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">1114164</span><br /> Param <span style=\"color: #000000;\">2</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">513</span><br /> Param <span style=\"color: #000000;\">3</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">1</span><br /> Param <span style=\"color: #000000;\">4</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">1114164</span><br /> Param <span style=\"color: #000000;\">5</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">2</span><br /> <span style=\"color: #00C800;\">Local</span> <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">O</span> <span style=\"color: #00C800;\">Class</span>: <span style=\"color: #000000;\">TRIBBONBAR</span><br /> TWINDOW:<span style=\"color: #0000ff;\">ACTIVATE</span><br /> Param <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">N</span> <span style=\"color: #000000;\">918886</span><br /> TAPPLICATION:<span style=\"color: #000000;\">RUN</span><br /> Param <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">C</span> <span style=\"color: #ff0000;\">\"MAXIMIZED\"</span><br /> Param <span style=\"color: #000000;\">2</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">3</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">4</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">5</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">6</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">7</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">8</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">9</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">10</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">11</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">12</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">13</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">14</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">15</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">16</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">17</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">18</span>: <span style=\"color: #000000;\">U</span> <br /> Param <span style=\"color: #000000;\">19</span>: <span style=\"color: #000000;\">U</span> <br /> <span style=\"color: #00C800;\">Local</span> <span style=\"color: #000000;\">1</span>: <span style=\"color: #000000;\">O</span> <span style=\"color: #00C800;\">Class</span>: <span style=\"color: #000000;\">TWINDOW</span><br /> <span style=\"color: #00C800;\">Local</span> <span style=\"color: #000000;\">2</span>: <span style=\"color: #000000;\">U</span> <br /> <span style=\"color: #00C800;\">Local</span> <span style=\"color: #000000;\">3</span>: <span style=\"color: #000000;\">U</span> <br /> MAIN<br /><br />Linked RDDs<br />===========<br /> DBF<br /> DBFFPT<br /> DBFBLOB<br /> DBFNTX<br /><br />DataBases in use<br />================<br /><br />Classes in use:<br />===============<br /> <span style=\"color: #000000;\">1</span> ERROR<br /> <span style=\"color: #000000;\">2</span> HBCLASS<br /> <span style=\"color: #000000;\">3</span> HBOBJECT<br /> <span style=\"color: #000000;\">4</span> TAPPLICATION<br /> <span style=\"color: #000000;\">5</span> TWINDOW<br /> <span style=\"color: #000000;\">6</span> TMENU<br /> <span style=\"color: #000000;\">7</span> TMENUITEM<br /> <span style=\"color: #000000;\">8</span> TBRUSH<br /> <span style=\"color: #000000;\">9</span> TFONT<br /> <span style=\"color: #000000;\">10</span> TCONTROL<br /> <span style=\"color: #000000;\">11</span> TRIBBONBAR<br /> <span style=\"color: #000000;\">12</span> TRPANEL<br /> <span style=\"color: #000000;\">13</span> TBACKSTAGE<br /> <span style=\"color: #000000;\">14</span> TBACKSTAGEOPTION<br /> <span style=\"color: #000000;\">15</span> TRBGROUP<br /> <span style=\"color: #000000;\">16</span> TRBTN<br /> <span style=\"color: #000000;\">17</span> TMSGBAR<br /> <span style=\"color: #000000;\">18</span> TRECT<br /> <span style=\"color: #000000;\">19</span> TMSGITEM<br /> <span style=\"color: #000000;\">20</span> TTIMER<br /> <span style=\"color: #000000;\">21</span> TREG32<br /><br />Memory Analysis<br />===============<br /> <span style=\"color: #000000;\">266</span> <span style=\"color: #00C800;\">Static</span> variables<br /><br /> Dynamic memory consume:<br /> <span style=\"color: #000000;\">Actual</span> Value: <span style=\"color: #000000;\">0</span> bytes<br /> Highest Value: <span style=\"color: #000000;\">0</span> bytes<br />\u001a</div>[/code:ov5qkh39]",
"time": "12:14",
"topic": "2010 style",
"username": "ukservice"
}
] | 2010 style |
[
{
"date": "2011-05-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello\n\nyes is a mistake in sample, no in source code... i'll fix and upload the new sample",
"time": "13:20",
"topic": "2010 style",
"username": "Daniel Garcia-Gil"
}
] | 2010 style |
[
{
"date": "2011-05-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you very much for quick support and reaction.\n\nWhat about Buttonbmp and Skinbuttons?.\n\n<!-- s;) --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\";)\" title=\"Wink\" /><!-- s;) --> <!-- s;) --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\";)\" title=\"Wink\" /><!-- s;) -->",
"time": "13:38",
"topic": "2010 style",
"username": "ukservice"
}
] | 2010 style |
[
{
"date": "2011-05-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "que tal Daniel,\n\ncomp puedo ponerle un degradado a una message bar?\nsalu2\npaco",
"time": "16:39",
"topic": "2010 style",
"username": "Francisco Horta"
}
] | 2010 style |
[
{
"date": "2011-05-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Francisco\n\nEl nuevo estilo estara disponible en la proxima version de fivewin... <!-- s:-D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":-D\" title=\"Very Happy\" /><!-- s:-D -->",
"time": "16:43",
"topic": "2010 style",
"username": "Daniel Garcia-Gil"
}
] | 2010 style |
[
{
"date": "2011-05-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"ukservice\":1e65qm0r]Thank you very much for quick support and reaction.\n\nWhat about Buttonbmp and Skinbuttons?.\n[/quote:1e65qm0r]\n\nwhat do you know about it?\n\nyou can build your own skin, is very easy with skinbutton",
"time": "22:25",
"topic": "2010 style",
"username": "Daniel Garcia-Gil"
}
] | 2010 style |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.