messages
listlengths 1
1
| topic
stringlengths 2
60
|
---|---|
[
{
"date": "2021-07-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hello Manuel,\n\nMany thanks. The program now compiles.\nBut when I add the function, the application stops responding.\n\nBest regards,\nOtto",
"time": "11:47",
"topic": "*** Curso de C para programadores Harbour.",
"username": "Otto"
}
] | *** Curso de C para programadores Harbour. |
[
{
"date": "2021-07-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Querido Otto mírate estos dos ejemplos de Harbour:\nprngdi.prg y wingdi.prg de los test",
"time": "13:29",
"topic": "*** Curso de C para programadores Harbour.",
"username": "xmanuel"
}
] | *** Curso de C para programadores Harbour. |
[
{
"date": "2021-07-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Manuel, \nThank you. Best regard, Otto",
"time": "14:03",
"topic": "*** Curso de C para programadores Harbour.",
"username": "Otto"
}
] | *** Curso de C para programadores Harbour. |
[
{
"date": "2021-07-21",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hoy nueva entrega del Curso de C para programadores Harbour.\nTema 19. El FileSys API. De archivos desde C.\n\nComo ejemplo he creado un sistema de LOG Manager genérico que puede ser usado en C directamente y desde PRG.\n\nY posiblemente pondré otro ejemplo creando una clase hecha en C para Harbour para gestionar archivos.\nHay una clase que publiqué en este foro que la rescataré y la pondré también.",
"time": "10:10",
"topic": "*** Curso de C para programadores Harbour.",
"username": "xmanuel"
}
] | *** Curso de C para programadores Harbour. |
[
{
"date": "2021-08-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mañana nueva entrega con una ampliación del Tema 19 y el 20 completo.\n\nCon este tema sabremos que son las librerías y cuantos tipos hay y aprenderemos a crearlas para enlazar con nuestros programas...\n\nAtentos a sus pantallas!!!!\n\n <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->",
"time": "14:00",
"topic": "*** Curso de C para programadores Harbour.",
"username": "xmanuel"
}
] | *** Curso de C para programadores Harbour. |
[
{
"date": "2021-08-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mañana nueva entrega con una ampliación del Tema 19 y el 20 completo.\n\nCon este tema sabremos que son las librerías y cuantos tipos hay y aprenderemos a crearlas para enlazar con nuestros programas...\n\nAtentos a sus pantallas!!!!\n\n <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->",
"time": "14:00",
"topic": "*** Curso de C para programadores Harbour.",
"username": "xmanuel"
}
] | *** Curso de C para programadores Harbour. |
[
{
"date": "2021-10-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":gf9rox5h]Posiblemente, pero correr una maquina virtual encima de otra aún enlenteceria más. Sin embargo podemos conectar con Python y ahi hay un montón enorme de librerias que podriamos usar en nuestras harbour apps...[/quote:gf9rox5h]\n[url:gf9rox5h]https://github.com/diegofazio/hbPy[/url:gf9rox5h]",
"time": "07:17",
"topic": "*** Curso de C para programadores Harbour.",
"username": "Antonio Linares"
}
] | *** Curso de C para programadores Harbour. |
[
{
"date": "2007-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[code:cjcdgbcm]\n//-> Maestro Antonio, Que Falta Hacer, Para Que Siempre Que Jo Tenga un\n\n//-> GET CON PASSWORD en WORKSHOP.EXE O PELLESC.EXE, Venga Siempre un *** ??\n\n// De Esta Forma, Sole Viene en la Entrada de la Window Principal,\n// en los DIALOGOS, Vienes ||||| (chr(149)) y No ****(chr(42)) Ayuda-me!\n//\nMETHOD DispText() CLASS TGet\n\n if ::lPassword .and. ::oGet:Type == \"C\"\n #ifdef __CLIPPER__\n SetWindowText( ::hWnd, Replicate( \"*\", Len( Trim( ::oGet:buffer ) ) ) )\n #else\n\n /* //-> Modifiquei em 26/08/2007 - Para Aparecer um * no PASSWORD-WS\n SetWindowText( ::hWnd, Replicate( If( IsAppThemed(), Chr( 149 ), \"*\" ),;\n Len( Trim( ::oGet:buffer ) ) ) )\n */\n\n SetWindowText( ::hWnd, Replicate( If( IsAppThemed(), Chr( 42 ), \"*\" ),;\n Len( Trim( ::oGet:buffer ) ) ) )\n\n #endif\n else\n SetWindowText( ::hWnd, ::oGet:buffer )\n endif\n\nreturn nil\n\nMuchas Gracias,\n\nRegards, saludos.\n\n[/code:cjcdgbcm]",
"time": "16:06",
"topic": "***** EN PASSWORD COM WORKSHOP.EXE",
"username": "karinha"
}
] | ***** EN PASSWORD COM WORKSHOP.EXE |
[
{
"date": "2007-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola Karina yo utilizo un get y en el código pongo:\n\nREDEFINE GET oGet VAR cLogin id 101 of odlg valid IIF(buscon(cItem,@cLogin,oGet),lreturn := .t.,.f.)\n\noGet:lpassword := .t. \n\nEspero sea la respuest a tu consulta\n\nUtilizó workshop y fwh26 y xharbour 9.61\n\nLuis",
"time": "16:46",
"topic": "***** EN PASSWORD COM WORKSHOP.EXE",
"username": "surGom"
}
] | ***** EN PASSWORD COM WORKSHOP.EXE |
[
{
"date": "2007-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"surGom\":3lay2hun]Hola Karina yo utilizo un get y en el código pongo:\n\nREDEFINE GET oGet VAR cLogin id 101 of odlg valid IIF(buscon(cItem,@cLogin,oGet),lreturn := .t.,.f.)\n\noGet:lpassword := .t. \n\nEspero sea la respuest a tu consulta\n\nUtilizó workshop y fwh26 y xharbour 9.61\n\nLuis[/quote:3lay2hun]\n\n\nGracias Luis, Voy intentar y Reporto. \n\nRegards, saludos.",
"time": "17:03",
"topic": "***** EN PASSWORD COM WORKSHOP.EXE",
"username": "karinha"
}
] | ***** EN PASSWORD COM WORKSHOP.EXE |
[
{
"date": "2007-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Karina,\n\nDesde el workshop te permite definir en tu dialogo los get como pasword asi te convierte lo que digites durante la captura en ******, en las propiedades de text style puedes definie password, con un check y listo.\n\ny en la aplicacion no tienes mas que hacer un get normal\n\nREDEFINE GET oPass Var mPass ID 101 of oDlg \n\nOjala te ayude,\n\nRamon Paredes\nManagua, Nicaragua",
"time": "21:03",
"topic": "***** EN PASSWORD COM WORKSHOP.EXE",
"username": "Ramon Paredes"
}
] | ***** EN PASSWORD COM WORKSHOP.EXE |
[
{
"date": "2007-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"Ramon Paredes\":1qzxg2ol]Karina,\n\nDesde el workshop te permite definir en tu dialogo los get como pasword asi te convierte lo que digites durante la captura en ******, en las propiedades de text style puedes definie password, con un check y listo.\n\ny en la aplicacion no tienes mas que hacer un get normal\n\nREDEFINE GET oPass Var mPass ID 101 of oDlg \n\nOjala te ayude,\n\nRamon Paredes\nManagua, Nicaragua[/quote:1qzxg2ol]\n\nGracias Ramon...\n\nHago asi:\n\nEstá correcto?\n\nDLG_SENHAS_USUARIOS DIALOG 94, 94, 288, 74\nSTYLE DS_ABSALIGN | DS_MODALFRAME | 0x4L | WS_OVERLAPPED | WS_VISIBLE | WS_CAPTION | WS_THICKFRAME\nCAPTION \"Senhas de Acessos\"\nFONT 8, \"MS Sans Serif\"\n{\n EDITTEXT 103, 169, 12, 100, 14, ES_CENTER | ES_PASSWORD | WS_BORDER | WS_TABSTOP\n PUSHBUTTON \"&Gravar Dados\", 301, 67, 46, 90, 17\n PUSHBUTTON \"&Cancelar\", 302, 160, 46, 60, 17\n CTEXT \"Senha do Operador:\", 405, 18, 12, 148, 14, SS_CENTER | WS_BORDER | WS_GROUP\n}",
"time": "21:11",
"topic": "***** EN PASSWORD COM WORKSHOP.EXE",
"username": "karinha"
}
] | ***** EN PASSWORD COM WORKSHOP.EXE |
[
{
"date": "2007-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Karina,\n\nAsi te debe funcionar bien con sus asteriscos,\n\n\nRamon Paredes\nManagua, Nicaragua",
"time": "21:19",
"topic": "***** EN PASSWORD COM WORKSHOP.EXE",
"username": "Ramon Paredes"
}
] | ***** EN PASSWORD COM WORKSHOP.EXE |
[
{
"date": "2007-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"Ramon Paredes\":1jhefo9e]Karina,\n\nAsi te debe funcionar bien con sus asteriscos,\n\n\nRamon Paredes\nManagua, Nicaragua[/quote:1jhefo9e]\n\n\nRamon, en WINDOWS XP, NO!\n\nRegards, saludos.",
"time": "21:34",
"topic": "***** EN PASSWORD COM WORKSHOP.EXE",
"username": "karinha"
}
] | ***** EN PASSWORD COM WORKSHOP.EXE |
[
{
"date": "2007-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Karina,\n\nYo trabajo con XP profesional SP 2 y me funciona bien, que problemas te presenta, o que no funciona ?\n\nRamon Paredes\nManagua, Nicaragua",
"time": "21:50",
"topic": "***** EN PASSWORD COM WORKSHOP.EXE",
"username": "Ramon Paredes"
}
] | ***** EN PASSWORD COM WORKSHOP.EXE |
[
{
"date": "2007-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"Ramon Paredes\":302vclg7]Karina,\n\nYo trabajo con XP profesional SP 2 y me funciona bien, que problemas te presenta, o que no funciona ?\n\nRamon Paredes\nManagua, Nicaragua[/quote:302vclg7]\n\n\nRamon, si és un DIALOGO en el Window Principal, el GET devuelve asi:\n\n****, se és en un DIALOGO normal de otra funcion, me devuelve asi: ||| \n\nMi gusta asi: ***\n\nComprende?",
"time": "22:08",
"topic": "***** EN PASSWORD COM WORKSHOP.EXE",
"username": "karinha"
}
] | ***** EN PASSWORD COM WORKSHOP.EXE |
[
{
"date": "2007-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Karina,\n\nTe envie un correo con un ejemplo practico, en uno de los menu, presento un dialogo con pasword, independiente de la pantalla principal y me devuelve ****** ojala te sirva, te envie el fuente y el recurso para que lo revises ok,\n\nSaludes\n\nRamon Paredes\nManagua, Nicaragua",
"time": "22:26",
"topic": "***** EN PASSWORD COM WORKSHOP.EXE",
"username": "Ramon Paredes"
}
] | ***** EN PASSWORD COM WORKSHOP.EXE |
[
{
"date": "2007-09-25",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias Ramon... Mas és lo que lo dice, en una VENTANA PRINCIPAL, funciona perfecto, cuando estoy en UNA DIALOG de Otra funcion, retorna: |||||, entonces, para que se tenga el efecto de WINDOWS XP, usa-se una FUENTE TAHOMA. Asi, WINDOWS XP, retorna una PELOTA, bien bonita. \n\nRegards, saludos.",
"time": "14:00",
"topic": "***** EN PASSWORD COM WORKSHOP.EXE",
"username": "karinha"
}
] | ***** EN PASSWORD COM WORKSHOP.EXE |
[
{
"date": "2007-09-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Karina, prueba cambiandole el tipo de letra al Dialogo, yo le pongo TAHOMA 10",
"time": "02:11",
"topic": "***** EN PASSWORD COM WORKSHOP.EXE",
"username": "Vital"
}
] | ***** EN PASSWORD COM WORKSHOP.EXE |
[
{
"date": "2007-09-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"Vital\":12cyid7s]Karina, prueba cambiandole el tipo de letra al Dialogo, yo le pongo TAHOMA 10[/quote:12cyid7s]\n\n\nGracias VITAL, és lo que hago. Creo, no és Posible retorno con: ****.\n\nMuchas gracias.\n\nRegards, saludos.",
"time": "13:21",
"topic": "***** EN PASSWORD COM WORKSHOP.EXE",
"username": "karinha"
}
] | ***** EN PASSWORD COM WORKSHOP.EXE |
[
{
"date": "2023-06-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\n\nIs it possible to work with *.docx files in TRichEdit5 ?",
"time": "20:06",
"topic": "*.docx files and TRichEdit5",
"username": "Natter"
}
] | *.docx files and TRichEdit5 |
[
{
"date": "2023-07-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You can't (as far as I've investigated)\nBut you can open the document with Word.Application and save it as .RTF, then open it in the RichEdt control.",
"time": "04:50",
"topic": "*.docx files and TRichEdit5",
"username": "cnavarro"
}
] | *.docx files and TRichEdit5 |
[
{
"date": "2023-07-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks ! Does this mean I can't use VBA in RichEdit5? \nFor example: I highlighted some words/phrases in color. Then I need to extract these words/phrases from the RichEdit5 document. How can this be done ?",
"time": "13:19",
"topic": "*.docx files and TRichEdit5",
"username": "Natter"
}
] | *.docx files and TRichEdit5 |
[
{
"date": "2023-07-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "How to get text colored in a specific color from RichEdit5 ?",
"time": "15:14",
"topic": "*.docx files and TRichEdit5",
"username": "Natter"
}
] | *.docx files and TRichEdit5 |
[
{
"date": "2013-06-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear All,\n\nAfter Upgrade to updated version, I got the problem with MySql.lib and LibMySql.lib.\n\nI found MySql.Lib (William Morales) in the Blog and in many place. I'm not quite sure which are compatible with FWH1305, XHB1.2.3 and BCC582.\n\nHow can I get it?\n\nThanks in advance for any help.",
"time": "05:46",
"topic": "*Fix* MySql.lib and LibMySql.lib are compatible xHB 1.2.3?",
"username": "dutch"
}
] | *Fix* MySql.lib and LibMySql.lib are compatible xHB 1.2.3? |
[
{
"date": "2013-06-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dutch,\n\nYou can get them from the TDolphin website:\n\n[url:1jdl8xls]http://tdolphin.blogspot.com.es/[/url:1jdl8xls]\n\nOn its right side you get the urls to download them <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "09:20",
"topic": "*Fix* MySql.lib and LibMySql.lib are compatible xHB 1.2.3?",
"username": "Antonio Linares"
}
] | *Fix* MySql.lib and LibMySql.lib are compatible xHB 1.2.3? |
[
{
"date": "2013-06-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Antonio,\n\nIt's my stupid, the existing set of MYSQL.LIB, LIBMYSQL.LIB and LIBMYSQL.DLL are working well and compatible with both version (FWH10.01 and FWH13.05). \nFirst time, I try to find the update version but not successful. Then I get back from the previous set, it works fine. Sorry for my stupid problem.\n\nThanks,",
"time": "03:51",
"topic": "*Fix* MySql.lib and LibMySql.lib are compatible xHB 1.2.3?",
"username": "dutch"
}
] | *Fix* MySql.lib and LibMySql.lib are compatible xHB 1.2.3? |
[
{
"date": "2013-06-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "good that it is solved <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "04:45",
"topic": "*Fix* MySql.lib and LibMySql.lib are compatible xHB 1.2.3?",
"username": "Antonio Linares"
}
] | *Fix* MySql.lib and LibMySql.lib are compatible xHB 1.2.3? |
[
{
"date": "2013-06-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dutch,\n\nPlease check that you are creating your main window as MDIFRAME:\n\nDEFINE WINDOW oWnd ... MDIFRAME\n\nas you are creating MDICHILDs from your app, so the main window must be MDIFRAME",
"time": "04:13",
"topic": "*Fixed* BASE/1004 Message not found: TWINDOW:LCHILDAUTOSIZE",
"username": "Antonio Linares"
}
] | *Fixed* BASE/1004 Message not found: TWINDOW:LCHILDAUTOSIZE |
[
{
"date": "2013-06-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Antonio,\n\nI add \"MDI\" in DEFINE command and it works fine now.\n[quote=\"Antonio Linares\":2tnbdzty]Dutch,\n\nPlease check that you are creating your main window as MDIFRAME:\n\nDEFINE WINDOW oWnd ... MDIFRAME\n\nas you are creating MDICHILDs from your app, so the main window must be MDIFRAME[/quote:2tnbdzty]\nThanks.",
"time": "05:30",
"topic": "*Fixed* BASE/1004 Message not found: TWINDOW:LCHILDAUTOSIZE",
"username": "dutch"
}
] | *Fixed* BASE/1004 Message not found: TWINDOW:LCHILDAUTOSIZE |
[
{
"date": "2013-06-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dutch,\n\nYes, sorry, I meant MDI clause (I was thinking in Class TMdiFrame) <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "09:18",
"topic": "*Fixed* BASE/1004 Message not found: TWINDOW:LCHILDAUTOSIZE",
"username": "Antonio Linares"
}
] | *Fixed* BASE/1004 Message not found: TWINDOW:LCHILDAUTOSIZE |
[
{
"date": "2013-06-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear All,\n\nNew Error after upgrade 10.01 -> 13.05.\n\nThis is the CHILDWINDOW error occur. It will not error, if I change back to 10.01.\n[code=fw:31yqitki]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> Error occurred <span style=\"color: #00C800;\">at</span> : <span style=\"color: #000000;\">26</span>/<span style=\"color: #000000;\">06</span>/<span style=\"color: #000000;\">2013</span>, <span style=\"color: #000000;\">09</span>:<span style=\"color: #000000;\">38</span>:<span style=\"color: #000000;\">27</span><br /> Error description : <span style=\"color: #000000;\">Warning</span> BASE/<span style=\"color: #000000;\">1004</span> <span style=\"color: #0000ff;\">Message</span> not found: <span style=\"color: #000000;\">TWINDOW</span>:<span style=\"color: #000000;\">LCHILDAUTOSIZE</span><br /><br />Stack Calls<br />===========<br /> Called <span style=\"color: #0000ff;\">from</span> : <span style=\"color: #000000;\">source</span>\\rtl\\tobject.prg => TWINDOW:<span style=\"color: #000000;\">ERROR</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span> : <span style=\"color: #000000;\">source</span>\\rtl\\tobject.prg => TWINDOW:<span style=\"color: #000000;\">MSGNOTFOUND</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span> : <span style=\"color: #000000;\">source</span>\\rtl\\tobject.prg => TWINDOW:<span style=\"color: #000000;\">LCHILDAUTOSIZE</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span> : .\\source\\classes\\<span style=\"color: #0000ff;\">MDICHILD</span>.PRG => TMDICHILD:<span style=\"color: #00C800;\">NEW</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">150</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span> : <span style=\"color: #000000;\">D</span>:\\V5\\INF\\Adel\\EZADEL.PRG => INFSTATUS<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">162</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span> : <span style=\"color: #000000;\">D</span>:\\V5\\INF\\Adel\\EZADEL.PRG => <span style=\"color: #000000;\">(</span>b<span style=\"color: #000000;\">)</span>MAIN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">145</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span> : .\\source\\classes\\<span style=\"color: #0000ff;\">WINDOW</span>.PRG => TWINDOW:<span style=\"color: #0000ff;\">ACTIVATE</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">986</span><span style=\"color: #000000;\">)</span><br /> Called <span style=\"color: #0000ff;\">from</span> : <span style=\"color: #000000;\">D</span>:\\V5\\INF\\Adel\\EZADEL.PRG => MAIN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">145</span><span style=\"color: #000000;\">)</span><br /> </div>[/code:31yqitki]",
"time": "03:44",
"topic": "*Fixed* BASE/1004 Message not found: TWINDOW:LCHILDAUTOSIZE",
"username": "dutch"
}
] | *Fixed* BASE/1004 Message not found: TWINDOW:LCHILDAUTOSIZE |
[
{
"date": "2008-08-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[color=red:3oq5327u]Someone have a solucion with biometric system to device Microsoft Finger Print, i need it very much, i did a sistem of point but with\ngrfinger.lib and wrfinger.lib I'm having problem.\n\nThanks very much! [/color:3oq5327u]",
"time": "02:53",
"topic": "*Urgent Microsoft Finger Print 'Biometric System'",
"username": "lailton.webmaster"
}
] | *Urgent Microsoft Finger Print 'Biometric System' |
[
{
"date": "2008-08-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "<!-- m --><a class=\"postlink\" href=\"http://www.fivewin.com.br/forum/post.asp?method=TopicQuote&TOPIC_ID=11953&FORUM_ID=8&CAT_ID=1&Forum_Title=Programa%E7%E3o&Topic_Title=Biometria\">http://www.fivewin.com.br/forum/post.as ... =Biometria</a><!-- m -->\r\n\r\nregards\r\nFafi",
"time": "08:11",
"topic": "*Urgent Microsoft Finger Print 'Biometric System'",
"username": "fafi"
}
] | *Urgent Microsoft Finger Print 'Biometric System' |
[
{
"date": "2008-07-01",
"forum": "FiveWin para Pocket PC",
"text": "Maestro,.....Es possible usar algunas Classes del FwH com FwPPC....\r\n\r\nUno ejemplo, gostaria de usar la del FwH\r\n\r\nTTxtFile()\r\n\r\nFwPPc, no ten esta classe.\r\n\r\nComo procederia ?\r\n\r\nOu tiemos que aguardar mesmo las Nuevas Atualizaçoes delFwPPc ???\r\n\r\nInclusivel estas hacendo 9 Meses, sem nenhuma Atualiçao del FwPPc...teras alguna Novidade estes Mês ????\r\n\r\n\r\nSaluds, Ale",
"time": "20:46",
"topic": "+ Classes para FwPPc .....???",
"username": "Ale SB"
}
] | + Classes para FwPPc .....??? |
[
{
"date": "2008-07-01",
"forum": "FiveWin para Pocket PC",
"text": "Ale,\r\n\r\nEstamos trabajando en un nuevo build de FWPPC pero está dando guerra por el momento, ya que han modificado muchas cosas en Harbour ultimamente. La versión actual de FWPPC, aunque tiene algunos meses, es completamente estable.\r\n\r\nMientras tanto, los usuarios de FWH pueden compilar clases de FWH y usarlas con FWPPC, si así lo desean <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "21:59",
"topic": "+ Classes para FwPPc .....???",
"username": "Antonio Linares"
}
] | + Classes para FwPPc .....??? |
[
{
"date": "2008-07-01",
"forum": "FiveWin para Pocket PC",
"text": "Hola Antonio,\r\n\r\nHace unos dias presente un demo para captura de datos en el pocket, y a gustado mucho. Este sería mi primer programa en FWPP. Me ha sorprendido lo fácil que es programar... es lo mismo. Pero más pequeño <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\r\n\r\nSolo una cosa. Tienes contemplado poder meter varios gets en un dialogo, ventana o lo que sea... pero que se desplazen con una scroll... la idea es no usar un folder con muchas pestañas.\r\n\r\nGracias",
"time": "23:19",
"topic": "+ Classes para FwPPc .....???",
"username": "fleal"
}
] | + Classes para FwPPc .....??? |
[
{
"date": "2008-07-03",
"forum": "FiveWin para Pocket PC",
"text": "Fernando,\r\n\r\nRevisa el ejemplo fwppc\\samples\\TestPane.prg\r\n\r\nEs un ejemplo de lo comentas <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "21:51",
"topic": "+ Classes para FwPPc .....???",
"username": "Antonio Linares"
}
] | + Classes para FwPPc .....??? |
[
{
"date": "2005-12-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "From whatsnew.txt:\n\n[quote:19jmxka8]FWH users: We are building Harbour and xHarbour using the -DHB_INCLUDE_WINEXCHANDLER flag.\nIf you build Harbour or xHarbour yourself, please use such flag too.[/quote:19jmxka8]\n\nCan you explain better what is that flag and what could happen without it?\n\nThank you.\n\nEMG",
"time": "10:14",
"topic": "-DHB_INCLUDE_WINEXCHANDLER",
"username": "Enrico Maria Giordano"
}
] | -DHB_INCLUDE_WINEXCHANDLER |
[
{
"date": "2005-12-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nThat flag makes Harbour and xharbour to provide its own GPFs handler.\n\nUp to now, FWH provided its own, but with the recent hb_stack changes, we can't any longer manage hb_stack from outside [x]Harbour.\n\nIf you use a Harbour or xHarbour build, built without such flag, if a GPF happens, then you will not get any information (calls stack) for it.",
"time": "10:37",
"topic": "-DHB_INCLUDE_WINEXCHANDLER",
"username": "Antonio Linares"
}
] | -DHB_INCLUDE_WINEXCHANDLER |
[
{
"date": "2005-12-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Perfectly clear.\n\nThank you.\n\nEMG",
"time": "10:56",
"topic": "-DHB_INCLUDE_WINEXCHANDLER",
"username": "Enrico Maria Giordano"
}
] | -DHB_INCLUDE_WINEXCHANDLER |
[
{
"date": "2005-12-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Other than building [x]Harbour using that flag, do we need to add it in the link script of our applications too?\n\nEMG",
"time": "10:59",
"topic": "-DHB_INCLUDE_WINEXCHANDLER",
"username": "Enrico Maria Giordano"
}
] | -DHB_INCLUDE_WINEXCHANDLER |
[
{
"date": "2005-12-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\n>\nOther than building [x]Harbour using that flag, do we need to add it in the link script of our applications too? \n>\n\nNo. Just when building Harbour/xHarbour.",
"time": "11:48",
"topic": "-DHB_INCLUDE_WINEXCHANDLER",
"username": "Antonio Linares"
}
] | -DHB_INCLUDE_WINEXCHANDLER |
[
{
"date": "2005-12-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ok, thank you.\n\nEMG",
"time": "11:57",
"topic": "-DHB_INCLUDE_WINEXCHANDLER",
"username": "Enrico Maria Giordano"
}
] | -DHB_INCLUDE_WINEXCHANDLER |
[
{
"date": "2014-11-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Anyone with experiences using this dll\nI Think is written in VB, can we call it from Harbour?\nI use Borland as mi C Compiler, would it be better to change to Microsoft C ?\nCan I transform it into a lib with implib and use it as any lib ?\n\n\nAny help will be appreciated",
"time": "16:13",
"topic": "-Use of zkemkeeper.dll",
"username": "Adolfo"
}
] | -Use of zkemkeeper.dll |
[
{
"date": "2014-11-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Adolfo,\n\nI use this .dll as activex.\n\nI use it on my Bio-metric device to retrieve log records.",
"time": "02:22",
"topic": "-Use of zkemkeeper.dll",
"username": "fraxzi"
}
] | -Use of zkemkeeper.dll |
[
{
"date": "2014-11-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nThis dll Works for all biometric devices, or just for a specific manufacturer?.",
"time": "09:40",
"topic": "-Use of zkemkeeper.dll",
"username": "lucasdebeltran"
}
] | -Use of zkemkeeper.dll |
[
{
"date": "2014-11-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Fraxzi\n\nOk, can you give a little example, please.. my email is adolfo point lagos at gmail dot com\n\nThanks in advance\n\nLucas... \nyes almost all Iface,and syscom biometric devices uses a ZK cjip, which can be accessed with this dll",
"time": "11:51",
"topic": "-Use of zkemkeeper.dll",
"username": "Adolfo"
}
] | -Use of zkemkeeper.dll |
[
{
"date": "2014-11-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Adolfo,\n\nIs it so like Griaule?.\n\nIs it free or comercial?.",
"time": "22:17",
"topic": "-Use of zkemkeeper.dll",
"username": "lucasdebeltran"
}
] | -Use of zkemkeeper.dll |
[
{
"date": "2014-11-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Adolfo,\n\nI don't have the leisure of time to re-create a small sample but this is part of my code:\n\nruntime files I'm using are:\n[quote:29tajahu] \n 1. commpro.dll\n 2. comms.dll\n 3. msvcr71.dll\n 4. zkemkeeper.dll\n 5. zkemsdk.dll\n 6. zkemkeeper.oca[/quote:29tajahu]\n\n\nto check if object was registered:\n[code=fw:29tajahu]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <span style=\"color: #00C800;\">IF</span> !IsActiveX<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">'zkemkeeper.ZKEM.1'</span><span style=\"color: #000000;\">)</span><br /> RegisterServer<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">'zkemkeeper.DLL'</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">ENDIF</span><br /> </div>[/code:29tajahu]\n\nto connect:\n[code=fw:29tajahu]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> ...<br /> oBiometric := TActiveX<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span> oWnd,<span style=\"color: #ff0000;\">'zkemkeeper.ZKEM.1'</span><span style=\"color: #000000;\">)</span> <br /> ...<br /> oBiometric:<span style=\"color: #000000;\">SetCommPassword</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">'password'</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">//this is important if you set communication password to your biometric device</span><br /> ...<br /> <br /> <span style=\"color: #00C800;\">IF</span> <span style=\"color: #000000;\">(</span> lGo := oBiometric:<span style=\"color: #000000;\">Connect_Net</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">'ip address'</span>, <span style=\"color: #ff0000;\">'port'</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <br /><br /> <span style=\"color: #00C800;\">IF</span> !oBiometric:<span style=\"color: #000000;\">IsTFTMachine</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">'device_id'</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">//you set this nID in your device, important if you have many devices. this is numeric</span><br /> MsgAlert<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">'non-TFT Device..'</span>, <span style=\"color: #ff0000;\">'COMPATIBILITY ISSUE'</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">ENDIF</span><br /><br /> ...<br /><br /> oBiometric:<span style=\"color: #000000;\">RefreshData</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">'device_id'</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">//some commands you may want to use </span><br /><br /> ...<br /><br /> <span style=\"color: #00C800;\">IF</span> oBiometric:<span style=\"color: #000000;\">ReadGeneralLogData</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">'device_id'</span> <span style=\"color: #000000;\">)</span><br /><br /> j := <span style=\"color: #000000;\">0</span><br /><br /> <span style=\"color: #00C800;\">WHILE</span> oBiometric:<span style=\"color: #000000;\">SSR_GetGeneralLogData</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">'device_id'</span>,,,,,,,,,,<span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">//this is the only way I know how to get number of records from the device.</span><br /> j++ <span style=\"color: #B900B9;\">//if you know a better way please share.</span><br /> END<br /><br /> oBiometric:<span style=\"color: #000000;\">ReadGeneralLogData</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">'device_id'</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">//get ready and position 1st record pointer</span><br /><br /> <span style=\"color: #B900B9;\">//this is how I get every record</span><br /> <span style=\"color: #00C800;\">WHILE</span> oBiometric:<span style=\"color: #000000;\">SSR_GetGeneralLogData</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">'device_id'</span>, @cEnrollID, @nVerifyMO, @nInOutMO, @nYearOUT, @nMoOUT, @nDayOUT, @nHrOUT, <br /> @nMinOUT, @nSecOUT, @nWorkOUT <span style=\"color: #000000;\">)</span><br /><br /> ...<br /> <br /> <span style=\"color: #B900B9;\">//work your way here how to process those data</span><br /><br /> END<br /><br /> <span style=\"color: #00C800;\">ENDIF</span><br /><br /> <span style=\"color: #00C800;\">ELSE</span><br /><br /> nError := <span style=\"color: #000000;\">0</span><br /> oBiometric:<span style=\"color: #000000;\">GetLastError</span><span style=\"color: #000000;\">(</span>@nError<span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">msginfo</span><span style=\"color: #000000;\">(</span> nError <span style=\"color: #000000;\">)</span> <br /><br /> <span style=\"color: #00C800;\">ENDIF</span><br /><br /> </div>[/code:29tajahu]\n\n\n\nPlease share if you have better ways or faster ways to get all those data.\nI hope this helps.",
"time": "01:49",
"topic": "-Use of zkemkeeper.dll",
"username": "fraxzi"
}
] | -Use of zkemkeeper.dll |
[
{
"date": "2014-11-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"lucasdebeltran\":5mzp7x4x]Hello,\n\nThis dll Works for all biometric devices, or just for a specific manufacturer?.[/quote:5mzp7x4x]\n\n\nLucas,\n\nI haven't tried this to other devices. Model I use is FS-800u \"Time and attendance terminal\" made is China.\nI use the .dll from devices CD.",
"time": "01:54",
"topic": "-Use of zkemkeeper.dll",
"username": "fraxzi"
}
] | -Use of zkemkeeper.dll |
[
{
"date": "2015-02-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Esta librería (zkemkeeper.dll) funciona con lectoras USB?\n\nLo digo porque estoy tratando de implementar una Digital Persona 4500 y no lo consigo.",
"time": "21:29",
"topic": "-Use of zkemkeeper.dll",
"username": "Prodix"
}
] | -Use of zkemkeeper.dll |
[
{
"date": "2016-06-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Many years ago there was a program for Clipper called dClip. It provided the power of a . prompt so we could, on the fly, perform command level operations just like in dBase.\n\nWe have many implementations of file editors but sometimes it would be so much easier to be able to use that good old fashioned . prompt. Does anyone know of a code source that we could include within a dbedit program that provides the . prompt ? Maybe it is out there and I just have overlooked it in recent years.\n\nTim",
"time": "18:25",
"topic": ". prompt for FWH",
"username": "TimStone"
}
] | . prompt for FWH |
[
{
"date": "2016-06-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I do not know if I understand correctly\nAs the old DBU?\n\n[url=https://postimage.org/:19xyjv15][img:19xyjv15]https://s32.postimg.org/vxqcpx71h/0057.png[/img:19xyjv15][/url:19xyjv15]",
"time": "18:43",
"topic": ". prompt for FWH",
"username": "cnavarro"
}
] | . prompt for FWH |
[
{
"date": "2016-06-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim,\n\nBoth Fivedit.prg and FiveDBU.prg implement scripting using Harbour library (hbcplr.lib) built-in compiler\n\nYou can write any code and execute it on run time. If you need the .dot interface, I developed one for \nFiveMac that can be used also.",
"time": "19:53",
"topic": ". prompt for FWH",
"username": "Antonio Linares"
}
] | . prompt for FWH |
[
{
"date": "2016-06-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "The old . prompt made some tasks so simple. \n\n. USE olddbf\n. REPLACE ALL var1 WITH .t. FOR var2 = \"Y\" .and. var3 = \"Y\" .and. tDate = CTOD( \"12/01/16\")\n\nThat doesn't always work very well with our edit and dbu programs.\n\nTim",
"time": "20:27",
"topic": ". prompt for FWH",
"username": "TimStone"
}
] | . prompt for FWH |
[
{
"date": "2016-06-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr.Tim,\n\n[quote:1ggs1wrc]\n. USE olddbf\n. REPLACE ALL var1 WITH .t. FOR var2 = \"Y\" .and. var3 = \"Y\" .and. tDate = CTOD( \"12/01/16\")\n[/quote:1ggs1wrc]\n\nYou can try xHarbour's xPrompt. It does the same job.\n\n-Ramesh Babu",
"time": "05:26",
"topic": ". prompt for FWH",
"username": "RAMESHBABU"
}
] | . prompt for FWH |
[
{
"date": "2016-06-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Where Can I Download it?\nMany thanks\nMarco",
"time": "12:17",
"topic": ". prompt for FWH",
"username": "MarcoBoschi"
}
] | . prompt for FWH |
[
{
"date": "2016-06-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr.Marco,\n\nI remember that xHarbour used to provide \"xPrompt.exe\" along with other\nbinaries in xHarbour\\Bin folder. Now it is not seen in Bin folder <!-- s:oops: --><img src=\"{SMILIES_PATH}/icon_redface.gif\" alt=\":oops:\" title=\"Embarassed\" /><!-- s:oops: --> \n\nRefer this link:\n[url:cgtdl5fk]http://forums.fivetechsupport.com/viewtopic.php?f=3&t=24088&start=0[/url:cgtdl5fk]\n\nIn case you want it, plz. email to : aksharasoft at gmail dot com.\n\nI will send my copy.\n\n-Ramesh Babu P",
"time": "13:32",
"topic": ". prompt for FWH",
"username": "RAMESHBABU"
}
] | . prompt for FWH |
[
{
"date": "2016-06-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Why not hbrun ?\n[img:3pvsyaxf]https://s31.postimg.org/ree7fh6ff/hbrun.png[/img:3pvsyaxf]",
"time": "14:54",
"topic": ". prompt for FWH",
"username": "thefull"
}
] | . prompt for FWH |
[
{
"date": "2016-06-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[url:32mkpxf8]http://www.4shared.com/rar/gQq6R04Lce/XDBU.html[/url:32mkpxf8]",
"time": "14:56",
"topic": ". prompt for FWH",
"username": "karinha"
}
] | . prompt for FWH |
[
{
"date": "2011-01-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I'm creating A new Calendar class like office outlook\n\nBut I have several problems If Antonio and Daniel Help me I think it can be ready soon ( I sent the test to Antonio)\n\n\nthis is a preview beta\n\n[img:16q9fzt9]http://img529.imageshack.us/img529/8954/fwcalendar.jpg[/img:16q9fzt9]",
"time": "09:34",
"topic": "..",
"username": "MdaSolution"
}
] | .. |
[
{
"date": "2011-01-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It looks great.\n\nI'm very interested to see the evolution.",
"time": "10:15",
"topic": "..",
"username": "driessen"
}
] | .. |
[
{
"date": "2011-01-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "when I move the mouse it draw a box recdotted but then not draw a rect",
"time": "10:27",
"topic": "..",
"username": "MdaSolution"
}
] | .. |
[
{
"date": "2011-01-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks.\n\nVery good!!!.\n\nHow we can test it?",
"time": "19:47",
"topic": "..",
"username": "mgsoft"
}
] | .. |
[
{
"date": "2011-01-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "it is a beta test...\nI have several problems , I am working to use mousemove method to create the graphics to create appointments\nthe hours you see are array , now I am working to insert xbrowse at left to show hours \nHow I can make to show a xbrowse with different timeline ?\nhave you an idea ?",
"time": "20:35",
"topic": "..",
"username": "MdaSolution"
}
] | .. |
[
{
"date": "2011-01-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "If there is some interest I can publish my planning class.\nBest regards,\nOtto\n[img:17w0w2nx]http://www.atzwanger-software.com/fh/Wellness.jpg[/img:17w0w2nx]",
"time": "21:57",
"topic": "..",
"username": "Otto"
}
] | .. |
[
{
"date": "2011-01-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto,\n\nI'm interested in our class. \n\nTIA and best regards,\n\nToninho.\n\n<!-- e --><a href=\"mailto:[email protected]\">[email protected]</a><!-- e -->",
"time": "22:51",
"topic": "..",
"username": "toninhofwi"
}
] | .. |
[
{
"date": "2011-01-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I uploaded the sourcecode to:\n\n[url:mohcr91e]http://www.atzwanger-software.com/fw/planning.zip[/url:mohcr91e]\n\nBest regards,\nOtto",
"time": "00:18",
"topic": "..",
"username": "Otto"
}
] | .. |
[
{
"date": "2011-01-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "WHAT MEANS WITH RAUM1,RAUM2... \nTHEN WE NOT HAVE TDATA",
"time": "02:59",
"topic": "..",
"username": "MdaSolution"
}
] | .. |
[
{
"date": "2011-01-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Otto,\nI saw your files but they are difficult to understand, for sample when I click with mouse a raum1 I cannot go also to raum2 ( from 080:00 raum1 to 12:00 of raum2)\n\nI 'm thinking someting different from your source as the outlook office or google agenda, where the user with mouse can draw the box vertical\n\nNow I sent my class source prototype to Antonio and daniel I hope they help me .",
"time": "09:40",
"topic": "..",
"username": "MdaSolution"
}
] | .. |
[
{
"date": "2011-01-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto,\n\nThank you for share your code.\n\nBest Regards,\n\nToninho.",
"time": "17:27",
"topic": "..",
"username": "toninhofwi"
}
] | .. |
[
{
"date": "2011-01-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": ">'m thinking someting different from your source as the outlook office or google agenda, where the user with mouse can draw the box vertical\n\nYou have to press the mouse button and kept it pressed while moving down like in outlook.\nThis way you select the time of the appointment.\nBest regards,\nOtto",
"time": "21:02",
"topic": "..",
"username": "Otto"
}
] | .. |
[
{
"date": "2011-01-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Sorry now I saw..\nI wanted make the same but I wanted create this :\nWhen the user click on a row the mouse must create a rectoddet box then the user can select the type of appoint and then it must create the box ( rectangule) on row ( from row to row) \nI made on my prototype\n[code=fw:nargocae]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">METHOD</span> LButtonDown<span style=\"color: #000000;\">(</span> nRow, nCol, nFlags <span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TCalendarOffice<br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">bLClicked</span> != <span style=\"color: #00C800;\">nil</span><br /> Eval<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">bLClicked</span>, nRow, nCol, nFlags <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">else</span><br /> ::<span style=\"color: #000000;\">lBoxDraw</span> = .t.<br /> ::<span style=\"color: #000000;\">nBoxTop</span> = nRow<br /> ::<span style=\"color: #000000;\">nBoxLeft</span> = nCol<br /> ::<span style=\"color: #000000;\">nBoxBottom</span> = nRow<br /> ::<span style=\"color: #000000;\">nBoxRight</span> = nCol<br /> ::<span style=\"color: #000000;\">Capture</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> ::<span style=\"color: #000000;\">DrawBox</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">METHOD</span> MouseMove<span style=\"color: #000000;\">(</span> nRow, nCol, nFlags <span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TCalendarOffice<br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">lBoxDraw</span><br /> ::<span style=\"color: #000000;\">DrawBox</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> ::<span style=\"color: #000000;\">nBoxBottom</span> = nRow<br /> ::<span style=\"color: #000000;\">nBoxRight</span> = nCol<br /><br /><br /><br /> ::<span style=\"color: #000000;\">DrawBox</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><br /> <span style=\"color: #00C800;\">endif</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">Super</span>:<span style=\"color: #000000;\">MouseMove</span><span style=\"color: #000000;\">(</span> nRow, nCol, nFlags <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">METHOD</span> LButtonUp<span style=\"color: #000000;\">(</span> nRow, nCol, nFlags <span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TCalendarOffice<br /><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">lBoxDraw</span><br /> ::<span style=\"color: #000000;\">DrawBox</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> ::<span style=\"color: #000000;\">lBoxDraw</span> = .f.<br /> ReleaseCapture<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #B900B9;\">// ::nWidth := ::nBoxRight - ::nBoxLeft</span><br /> <span style=\"color: #B900B9;\">// ::nHeight := ::nBoxBottom - ::nBoxTop</span><br /><br /> <span style=\"color: #B900B9;\">// Super:ScrollAdjust()</span><br /> <span style=\"color: #B900B9;\">// Super:refresh( .t. )</span><br /><br /><br /><span style=\"color: #00C800;\">endif</span></div>[/code:nargocae]\n\n\ndrawbox is METHOD DrawBox() INLINE RectDotted( ::hWnd, ::nBoxTop, ::nBoxLeft, ::nBoxBottom, ::nBoxRight )\nbut it create the rect dotted but then not create the box , can you write how make it pls",
"time": "21:42",
"topic": "..",
"username": "MdaSolution"
}
] | .. |
[
{
"date": "2011-01-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Otto\":1hav863s]>'m thinking someting different from your source as the outlook office or google agenda, where the user with mouse can draw the box vertical\n\nYou have to press the mouse button and kept it pressed while moving down like in outlook.\nThis way you select the time of the appointment.\nBest regards,\nOtto[/quote:1hav863s]\n\nOtto sorry another...I m trying your class \non your planning How I can to show a week for sample from 17.1.2011 to 23.01.11 instead of RAum1/2/3/4/5 and go to next days with a click ?",
"time": "21:48",
"topic": "..",
"username": "MdaSolution"
}
] | .. |
[
{
"date": "2011-01-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I don’t have this ready. But I think you could do it in a similar mode.\nInstead of raum you could use Monday to Sunday.\nBest regards,\nOtto",
"time": "22:30",
"topic": "..",
"username": "Otto"
}
] | .. |
[
{
"date": "2011-01-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "could say the source I write here please",
"time": "01:51",
"topic": "..",
"username": "MdaSolution"
}
] | .. |
[
{
"date": "2011-01-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr. Otto,\n\nThanks for sharing. I tried your code but a class TData is missing.\n\nThank you <!-- s;) --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\";)\" title=\"Wink\" /><!-- s;) -->",
"time": "22:25",
"topic": "..",
"username": "ukservice"
}
] | .. |
[
{
"date": "2011-01-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "ukservice, the code without the use of TData:\n\n[url:qr31z8tz]http://www.atzwanger-software.com/fw/planning2.zip[/url:qr31z8tz]\n\nBest regards,\nOtto",
"time": "23:40",
"topic": "..",
"username": "Otto"
}
] | .. |
[
{
"date": "2011-01-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto, please\nCan you make a release showing a week instead raum(n)\nsample from 17.01.11 to 23 ? and with the possibility to prex next day or week ofter go out from this window?\nI not know How modify it \nthanks",
"time": "09:59",
"topic": "..",
"username": "MdaSolution"
}
] | .. |
[
{
"date": "2011-01-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "mdasoft - btw how is your real name? - I have no time at the moment.\nBut try at first to make 7 \"raums\" and than with next/previous add 7 or discount 7 days.\n\nBest regards,\nOtto",
"time": "11:06",
"topic": "..",
"username": "Otto"
}
] | .. |
[
{
"date": "2011-01-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto,real name is nico\nHow I can make that modifies I not Know your class good\nI need an appointment week as google or outlook calendar, with scrollbat to move from a week to another week or next day..\nCan I use it on a dialog ? How I can make to insert scrollbar to move times?\ncan you make a minimal sample test for all ?\nI think it is usefull for all community friends",
"time": "21:03",
"topic": "..",
"username": "MdaSolution"
}
] | .. |
[
{
"date": "2011-01-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr Otto,\n\nThank you very much for sharing.\n\nI am asking a friend to translate me the terms from German to English and I will publish the notes in order to help others!!!.\n\nGreat control. If all together develop it we can create a very powerful Agenda for FWH!!! <!-- s;) --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\";)\" title=\"Wink\" /><!-- s;) -->",
"time": "21:22",
"topic": "..",
"username": "ukservice"
}
] | .. |
[
{
"date": "2011-01-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "help me I insert a new message on the forum to create together an agenda ( office like)\n\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=3&t=20710\">viewtopic.php?f=3&t=20710</a><!-- l -->",
"time": "00:25",
"topic": "..",
"username": "MdaSolution"
}
] | .. |
[
{
"date": "2011-01-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Daniel helped me to change scrolling from a sliderbox to a real window scrollbar.\nPlease test how smooth this class now work.\nBest regards,\nOtto\n[url:288sbaz0]http://www.atzwanger-software.com/fw/planning2.zip[/url:288sbaz0]\n[img:288sbaz0]http://www.atzwanger-software.com/fw/planning2.jpg[/img:288sbaz0]",
"time": "18:59",
"topic": "..",
"username": "Otto"
}
] | .. |
[
{
"date": "2011-01-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I did some more work.\nexe to test\n[url:3ta4qxeg]http://www.atzwanger-software.com/fw/planning5.zip[/url:3ta4qxeg]\n\n[img:3ta4qxeg]http://www.atzwanger-software.com/fw/planning5.jpg[/img:3ta4qxeg]",
"time": "18:53",
"topic": "..",
"username": "Otto"
}
] | .. |
[
{
"date": "2011-01-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I did some more tests. I only changed from \n::nShowCols := 7 to ::nShowCols := 1 day or ::nShowCols :=31 (1 month) and have mousesupport for day view and month view too. I also tested with 120 days <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> \n\n\n[img:197u48sr]http://www.atzwanger-software.com/fw/planning7.jpg[/img:197u48sr]\n\n[img:197u48sr]http://www.atzwanger-software.com/fw/planning6.jpg[/img:197u48sr]\n\n[img:197u48sr]http://www.atzwanger-software.com/fw/planning8.jpg[/img:197u48sr]",
"time": "19:20",
"topic": "..",
"username": "Otto"
}
] | .. |
[
{
"date": "2011-01-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr Otto,\n\nI am afraid the link <!-- m --><a class=\"postlink\" href=\"http://www.atzwanger-software.com/fw/planning5.zip\">http://www.atzwanger-software.com/fw/planning5.zip</a><!-- m --> is broken.\n\nThank you.",
"time": "20:43",
"topic": "..",
"username": "ukservice"
}
] | .. |
[
{
"date": "2011-01-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Now it should work.\nBest regards,\nOtto",
"time": "21:01",
"topic": "..",
"username": "Otto"
}
] | .. |
[
{
"date": "2011-01-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto why you not try to insert mouse moviment into Reinaldo class \n\nI believe it can be a starting point for a outlook class \n\nYou class is good but I like more the Reinaldo's Class thanh yours , \n\nIt seem a Outllok class , same colors ,same graphics,\n\nyou can insert your esperiences into this class and sun your class to Reinaldo's Class and create a complete class \n\nDo U think about ?",
"time": "23:18",
"topic": "..",
"username": "MdaSolution"
}
] | .. |
[
{
"date": "2009-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi all,\nI'm ugrading the Rafa Carmona's tscan class with some methods to recognize the 3of9 barcode\nbut adding the method BarcodeRecognize() the error in subject appairs during the compilation.\nAny ideas ? Do I need to declare the method in a differente mode ?\n\nClass source at <!-- m --><a class=\"postlink\" href=\"http://www.softwarexp.co.uk/beta/tscan.prg\">http://www.softwarexp.co.uk/beta/tscan.prg</a><!-- m -->\n\nThanks in advance.",
"time": "14:49",
"topic": ".. no prototype in function ...",
"username": "Marco Turco"
}
] | .. no prototype in function ... |
[
{
"date": "2009-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Can you show us the exact error you are getting?\n\nEMG",
"time": "11:30",
"topic": ".. no prototype in function ...",
"username": "Enrico Maria Giordano"
}
] | .. no prototype in function ... |
[
{
"date": "2009-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Perhaps the problem is the function\n\nBARCODE_Recognize()\n\nAre you sure that you haven't mispelled it?\n\nEMG",
"time": "11:31",
"topic": ".. no prototype in function ...",
"username": "Enrico Maria Giordano"
}
] | .. no prototype in function ... |
[
{
"date": "2009-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Enrico.\nthank for your reply. \n\nI solved the problem. It was due to the fact that this class call eztwain.h and this was an old version without the definition of this function.\n\nI still have some problems but I think these are related to the dll and so I'am writing for these to the dll provider.",
"time": "17:35",
"topic": ".. no prototype in function ...",
"username": "Marco Turco"
}
] | .. no prototype in function ... |
[
{
"date": "2012-10-30",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Habilite un server NFS para compartir mis archivos .DBF al habrir la tabla en modo exclusivo todo funciona OK, pero al abrirla en modo compartido al hacer un append blank se queda pegada la aplicación.\n\nSi alguien me puede ayuda o indicar como poder compartir mis archivos entre varios PC con Linus, se agradeceria.",
"time": "22:01",
"topic": ".DBF sobre NFS",
"username": "jgayoso"
}
] | .DBF sobre NFS |
[
{
"date": "2006-02-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi all,\n\nUntil XHB/FWH Oct. 2005, I was creating and handling memo files\nwith the extension .DBT.\n\nWith Feb 2006 relase of XHB/FWH, the memo files are crated with\nthe extension .FPT.\n\nIn my program I use:\n\n\n REQUEST HB_LANG_EN // _EN\n HB_LANGSELECT('EN') // 'EN'\n\n Request DBFCDX\n RDDSETDEFAULT(\"DBFCDX\")\n\nWhat should I change or add to support existing .DBT files ?\n\nThank you all...\n\nEvans Bartzokas\n\nps. Posting this here and in XHB NG, because I am not sure where \nthe problem is located...",
"time": "18:27",
"topic": ".DBT memo files",
"username": "E. Bartzokas"
}
] | .DBT memo files |
[
{
"date": "2006-02-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "#include \"Dbinfo.ch\"\n\nRDDINFO( RDDI_MEMOTYPE, DB_MEMO_DBT )\n\nEMG",
"time": "21:31",
"topic": ".DBT memo files",
"username": "Enrico Maria Giordano"
}
] | .DBT memo files |
[
{
"date": "2006-02-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"EnricoMaria\":3lq66ts6]#include \"Dbinfo.ch\"\n\nRDDINFO( RDDI_MEMOTYPE, DB_MEMO_DBT )\n\nEMG[/quote:3lq66ts6]\n\nThanks Enrico, it worked!\n\nKind regards\nEvans",
"time": "22:30",
"topic": ".DBT memo files",
"username": "E. Bartzokas"
}
] | .DBT memo files |
[
{
"date": "2006-02-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I saw the more complete Przemek's answer. <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG",
"time": "22:36",
"topic": ".DBT memo files",
"username": "Enrico Maria Giordano"
}
] | .DBT memo files |
[
{
"date": "2006-02-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"EnricoMaria\":2rt9qgln]I saw the more complete Przemek's answer. <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG[/quote:2rt9qgln]\nThe answer from Przemek, confused me a little because I thought he was referring to creating DBF's with .DBT extension, and not really opening a DBF with an existing .DBT file.\nIt worked though, and when I wrote the previous \"Thank You\" post, I really meant it, not that Prezemk was wrong of course.\n\nThanks again.\nps. Please have a look at my post regarding the \"ALT\" key pressed alone on dialogs.\nKind regards\nEvans",
"time": "21:56",
"topic": ".DBT memo files",
"username": "E. Bartzokas"
}
] | .DBT memo files |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.