messages listlengths 1 1 | topic stringlengths 2 60 |
|---|---|
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\r\ncould you please show how we could automatically check how often the delimiter is present?\r\n\r\nThanks in advance\r\nOtto\r\n\r\nPS: O.T. I use so many times for checking if a variable is empty\r\nthis code:\r\nif l... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto,\r\n\r\nUse StrCharCount( cText, cChar ). Its also implemented in C code so it is very fast. Example:\r\n[code:bol2xibg]\n#include \"FiveWin.ch\"\n\nfunction Main()\n\n local cText := \"C813354668;1063567698... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":37vkogfj]Otto,\nUse StrCharCount( cText, cChar ). ...[/quote:37vkogfj]\r\n\r\nAntonio,\r\n Can cChar length be bigger than 1? For example StrCharCount(cText, CRLF)\r\n\r\n TIA",
"time": "08:55",
... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto,\r\n\r\n[quote:2jj86d5x]PS: O.T. I use so many times for checking if a variable is empty\nthis code:\nif len(ALLTRIM(cText) = 0\nIs there a build in function existing?[/quote:2jj86d5x]\r\n\r\nMaybe you can use this? \r\n[code... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hua,\r\n\r\nNo, just one char.\r\n\r\nBut you could use StrTran() to replace CRLFs into \";\" or similar",
"time": "09:54",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "Antonio Linar... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you very much erverybody for his help.\r\n\r\nWith the informations, i can solve the problem and help\r\nthe customer today.\r\n\r\nBest Regrds\r\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" tit... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\r\n\r\nonce again, thank you very much for the help.\r\nWith your solutions, everything is solved and works perfect now.\r\nMy customer is happy.\r\n\r\nRegards\r\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\"... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\r\ni got a customer response :\r\n\r\nThis month, he had to convert : 181000 Textlines / 12,3 MB\r\nWith the old functions before, the used converting-time\r\nwas round about => 8 Minutes.\r\n\r\nWith the new functions... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "good nas!!",
"time": "13:31",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "Silvio"
}
] | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Otto\r\n\r\n> \"PS: O.T. I use so many times for checking if a variable is empty\r\nthis code:\r\nif len(ALLTRIM(cText) = 0\r\nIs there a build in function existing?\"\r\n\r\nThe following should work:\r\n\r\n[code:3ldzg9dm]IF... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe,\r\n\r\nIf you avoid the use of the AEval(), I would say that you can get a better time <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\r\n\r\nBut if the customer is happy wi... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr Uwe\r\n\r\n>\r\nThis month, he had to convert : 181000 Textlines / 12,3 MB \r\nWith the old functions before, the used converting-time \r\nwas round about => 8 Minutes. \r\n\r\nWith the new functions ( on a Intel Pentium 4 ), \... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "hello mr. nageswaragunupudi,\r\n\r\ni got these informations after a phonecall with my customer.\r\nFor my tests, i could only use 1000 textlines ( a part of the file ).\r\nThe complete, converted textfile contains all phonecalls ... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":3llkv0c3]\nNo, just one char.\n\nBut you could use StrTran() to replace CRLFs into \";\" or similar[/quote:3llkv0c3]\r\n\r\nThanks for the idea Antonio. I've been using the following to achieve the same ... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hua,\r\n\r\nStrCharCount() is implemented in C, which means \"machine code\" generation. No \"virtual machine\" intervention at all.",
"time": "07:25",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Rao,\r\n\r\nA simple test:\r\n[code:25r22fl7]\n#include \"FiveWin.ch\"\n\nfunction Main()\n\n local a := Array( 1000000 ), n\n local nStep1 := GetTickCount(), nStep2, nStep3\n\n AEval... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "BTW, lets compare with the above example Harbour and xHarbour speed:\r\n\r\n1. Harbour:\r\n\r\n AEval ... 421\r\n for next ... 265\r\n\r\n2. xHarbour:\r\n\r\n AEval ... 749\r\n for next ... 483\r\n\r\nSo Uwe, your applic... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\r\n\r\nWow, this is disappointing--two functions tested and both much slower with xHarbour. I would have guessed that they were both almost the same speed.\r\n\r\nAny ideas why this is?\r\n\r\nIt also makes you wonder if ... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr Antonio\r\n\r\n>\r\nhe technical explanation is that to evaluate a codeblock a new \"virtual machine\" frame has to be built (increase and decrease of the stack). Using a for next just keeps using the same virtual machine frame... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "According to Przemek (current Harbour tech leader), Harbour is much faster than xHarbour, mainly because it is better implemented internally.\r\n\r\nLess people working on it and better internal organization (no rush to implement ... | A converter from text-file ( with delimiters ) to DBF ? |
[
{
"date": "2006-02-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "TMdiFrame:\n\n1) It seems that the correct default colors for an MDI frame window are\n\n[code:1kktky64]nClrFore := GetSysColor( COLOR_WINDOWTEXT ), nClrBack := GetSysColor( COLOR_APPWORKSPACE ),;[/code:1k... | A coupe of little changes for TMdiFrame and TMdiChild |
[
{
"date": "2006-02-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nImplemented,\n\nmany thanks!",
"time": "12:03",
"topic": "A coupe of little changes for TMdiFrame and TMdiChild",
"username": "Antonio Linares"
}
] | A coupe of little changes for TMdiFrame and TMdiChild |
[
{
"date": "2006-02-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you!\n\nEMG",
"time": "12:38",
"topic": "A coupe of little changes for TMdiFrame and TMdiChild",
"username": "Enrico Maria Giordano"
}
] | A coupe of little changes for TMdiFrame and TMdiChild |
[
{
"date": "2010-10-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nI finished my new Explorerbar-solution ( changed from Folder-selections, I did before )\nMaybe it might be interesting to show, how a Explorerbar can be used as well.\nAfter many Tests and calculations, I got my final Re... | A different Explorerbar-sample |
[
{
"date": "2010-10-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Nice Job. =]",
"time": "14:31",
"topic": "A different Explorerbar-sample",
"username": "lailton.webmaster"
}
] | A different Explorerbar-sample |
[
{
"date": "2010-10-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "With some calculations, it works also in Horizontal-direction :\n\n[img:2432ox4e]http://www.pflegeplus.com/pictures/fldsample2.jpg[/img:2432ox4e]\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_l... | A different Explorerbar-sample |
[
{
"date": "2017-05-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "On a Xbrowse I have some fields ( Qta,Desc,Price,Importe) \n\nI did this table for a restaurant application.\n\nNow let me tell you what is my problem \n\nWhen customers pay the bill they may want to pay \"alla romana\" ie everyon... | A different payment |
[
{
"date": "2017-05-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Just a Idea :\n\nYou have the Xbrowse wich will have all articles that are served on the table.\n\nI would think of adding into the dialog besides the xbrowse as many buttons as that the customer alow to pay pro table (In Belgium ... | A different payment |
[
{
"date": "2017-05-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "the problem is also I cannot use check on the xbrowse because I making a Touch Ecr and the final user not use mouse and keyboard",
"time": "17:41",
"topic": "A different payment",
"username": "Silvio.Falconi"
}
] | A different payment |
[
{
"date": "2017-05-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Silvio:\n\nAn other idea, You must take the orders by table and person, for example\n\n18-1 table 18 person 1 Chicken 50.00\n18-2 table 18 person 2 only coffe 10.00\nTotal per table 60.00\n\nWith this, in xbrows you can make a tr... | A different payment |
[
{
"date": "2017-05-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Silvio.Falconi\":hj2ykd7u]the problem is also I cannot use check on the xbrowse because I making a Touch Ecr and the final user not use mouse and keyboard[/quote:hj2ykd7u]\n\nNever used touchscreen, but can't you select... | A different payment |
[
{
"date": "2017-05-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Who use touch ECR, user or customer?\n- if user,\n you can \n 1 you must have split button for split the item 1 by 1 (if any more quantity than 1)\n 2 select the item to pay ( add check column in xbrowse ), you will know the to... | A different payment |
[
{
"date": "2017-05-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ecr is user from final user \n\nthis a first beta release !!\n\n[img:3lunwwrb]https://s10.postimg.org/k8xzno34p/jpg.jpg[/img:3lunwwrb]",
"time": "00:19",
"topic": "A different payment",
"username": "Si... | A different payment |
[
{
"date": "2017-05-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This is my POS screen. You can see what's function you should have.\n[size=150:1y9h1aa9]1.Items function[/size:1y9h1aa9]\n- split items for which quantity more than 1.\n[img:1y9h1aa9]https://preview.ibb.co/m4Rg2a/Item... | A different payment |
[
{
"date": "2017-06-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I'm thinking to create another dialog with two xbrowse \n\n1. with all products \n2 empty \n\non the middle button ==> and <== to insert products from first xbtowse to second \n\nwhen I insert a product the procedure must ... | A different payment |
[
{
"date": "2017-06-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Perhaps I found a method but also not run ok \n\n[img:b2ik036s]https://s1.postimg.org/oaraq2onj/CONTISEPARATI.jpg[/img:b2ik036s]\n\n\n\n\nI create two xbrowse :\n\non first I insert the ticket and on the second I ... | A different payment |
[
{
"date": "2008-04-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nIn a old program of mine, there is a index on\nnumeric Customer-Numbers ( CDX ).\n\nThe index is => Index on STR(number)\nindex on LTRIM(STR(number)) doesn't work.\n\nWhen you do a seek on this field ( N 5 0 )\nas a sam... | A easy way, to do incremental seek on numeric fields ? |
[
{
"date": "2008-04-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe\n\nIndex on numeric work fine\n\nindex on number to ....\n\nand then seek 5 or whatever else\n\nno problem with it, i have many numeric indexs in my app\n\nRichard",
"time": "11:51",
"topic": "A easy way, to do increme... | A easy way, to do incremental seek on numeric fields ? |
[
{
"date": "2008-04-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe,\n\n[quote:2t9sdoeu]index on LTRIM(STR(number)) doesn't work.[/quote:2t9sdoeu]\nthis is normal because all index keys need to be of constant same length.\n\nMoreover it's a bad design to use numeric fields for indexing.\nThey ... | A easy way, to do incremental seek on numeric fields ? |
[
{
"date": "2008-04-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Detlef Thank you,\n\nYes it is a very old application and\nto much work to change it.\n\nI will try Strzero\n\nRegards\n\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -... | A easy way, to do incremental seek on numeric fields ? |
[
{
"date": "2009-06-10",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola amigos:\nEstoy comenzando con TMySql. Agradezco lo que voy avanzando a mis colegas del foro, especialmente a Gabo, Willi y William, quienes me han apoyado para comenzar.\nHe logrado presentar una tabla utilizando FWH+xHarbou... | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Francisco\n\nBuenas tardes, ¿podrías ayudarme a establecer la conexión al MySql?, e probado con las versiones:\n\n FW 6.12+ BCC551+xH 0.99.71\n FW 6.12+ BCC551+xH 1.2.1\n FW 11.01+ BCC582+xH 1.2.1\n FW 13.01+ BCC582+xH 1.2.3\n\ny... | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Luis,\nAquí tienes este codigo ejemplo para empezar. Cualquier duda, solo pregunta en este foro y obtendrás toda la ayuda que necesites.\nUtilizo TMySql y mi version FHW1204.\n[code=fw:ssmqmr3r]<div class=\"fw\" id=\"{CB}\" style... | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "GRACIAS !!!\n\nVoy a probarlo",
"time": "22:06",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "ltorres"
}
] | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Francisco,\n\nRevisa samples\\adoxb.prg y la clase TDataROw.\n\nEn los foros de inglés tienes ejemplos de ambos.\n\nEs un aproach mucho más sencillo y con menos código.\n\nUn saludo",
"time": "22:16",
"topic": "A expertos... | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Francisco\n\nYa compila pero no conecta, sale este mensaje, desde el YOG si conecta con los mismos datos, te adjunto la pantalla, creo que el problema mas que en el programa es en la configuración.\n\n[img:3cpoqt50]http://s2&... | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Luis,\nPodés poner una imagen mas grande?\nSaludos.",
"time": "23:04",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "FranciscoA"
}
] | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "para que conectes con MYSQL, debes de tener junto a tu App.exe la\nlibrería: LIBMYSQL.DLL\nsaludos",
"time": "03:00",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "sysctrl2"
}
] | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Disculpen, por error coloque el enlace al preview, aquí esta la imagen de la configuración de mi prueba de conexión.\n\n[url:2e6do0c0]http://www.subirimagenes.com/privadas-errorconexionmysql-2105003.html[/url:2e6d... | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Probá deshabilitando el firewall de windows. O configuralo para que permita a MySql.\nPostea aqui tu codigo para que todos lo podamos revisar y asi obtienes ayuda general del foro. (postea un codigo que podamos compilarlo facilme... | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Francisco\n\nEstoy usando el que me pusiste como ejemplo, solo ese, compila bien pero no conecta, con el utilitario YOG ingreso a la BD normal.\n\n[code=fw:xj2s88lx]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">... | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Una pregunta que versión de mysql estas usando ????",
"time": "16:41",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "Hector Pedro Lerda"
}
] | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ante todo gracias Hector, el MySql es 5.5",
"time": "16:47",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "ltorres"
}
] | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Luis\n\nRoot tiene permiso en el mysql para acceder desde cualquier lugar,",
"time": "17:03",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "Hector Pedro Lerda"
}
] | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "y otra pregunta, tal vez sea tonta, que password estas usando? , porque en el ejemplo dejastes el indicativo pero al instalar el server debes haber colocado otro o instalastes el servidor con ese.",
"time": "17:12",
"top... | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hector\n\nTengo el SQLYog y el MySql WorkBench, con ambos logro ingresar tanto a mi PC, como al servidor. Aún creo que el error es en la configuración del xDevStudio, alguna libreria o incompatibilidad entre ellas debe estar cau... | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estimados\n\nTal vez enviándome la imagen de su configuración podría copiarla y ver como adaptarme a la misma, yo tengo xDevStudio, xEdit, Verce, xMate.... ustedes dirán.\n\nGracias\n\n\nLuis",
"time": "17:59",
"topic": "... | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Luis\n\nYo trabaje con la Tmysql al principio con la versión 3.3 de mysql y nunca tuve ningún problema, luego cuando pase a mysql 5.xx me pase a la tdolphin y es la que uso, que tiene en una parte una forma muy similar a la tmysq... | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Luis,\nTengo dos sistemas (Contabilidad, y facturacion) desarrollados con TMySql y no tengo (hasta el momento) ningún problema. El codigo que te posteé es el mismo que uso en ambos.\nPrueba lo siguiente, por favor:\n1 - Crea, con... | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Francisco\n\nCreé el nuevo usuario y nada!, sigo con la idea que es algo de la configuración de xDevStudio o incompatibilidad entre librerías, si pudieran postear como tienen distribuidas sus librerías en este editor y que versio... | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Dame tu email para enviarte un ejecutable funcionando aquí.\nSaludos.",
"time": "16:25",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "FranciscoA"
}
] | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mi correo es <!-- e --><a href=\"mailto:ltorreslm@hotmail.com\">ltorreslm@hotmail.com</a><!-- e -->\n\nGracias",
"time": "16:37",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "ltorres"
}
] | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2013-08-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Te he enviado ejecutable,prg y otros. \nSaludos.",
"time": "23:13",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "FranciscoA"
}
] | A expertos en FWH+xHarbour+TMySql |
[
{
"date": "2017-04-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "To Mr. Rao,\n\nMr. Rao, could it be possible to have some extra space at the bottom of the xBrowse footer-area ?\nIn many cases I have to add some infos of the table ( to be exported to Excel as well ).\nI think it would be a usef... | A extra Info-area at xBrowse-bottom ( footer ) ? |
[
{
"date": "2017-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Let us keep this in TODO list.\nMay not be possible very soon.",
"time": "15:26",
"topic": "A extra Info-area at xBrowse-bottom ( footer ) ?",
"username": "nageswaragunupudi"
}
] | A extra Info-area at xBrowse-bottom ( footer ) ? |
[
{
"date": "2020-03-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr. Rao:\n\nExcuse me, do you have or where can I find a xBrowse Sample with fastedit full (ADD, DELETE, MODIFY) ?\n\nRegards",
"time": "00:55",
"topic": "A fastedit sample with recordset?",
"username": "Armando"
}
] | A fastedit sample with recordset? |
[
{
"date": "2020-03-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Simplest:\n[code=fw:3jqqammc]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">XBROWSER oRs FASTEDIT</div>[/code:3jqqammc]\n\nFor a more detailed sample, please see \\fwh\\samples\\testxbr3.prg",
"time": "03:35",... | A fastedit sample with recordset? |
[
{
"date": "2020-03-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr. Rao:\n\nThanks a lot, I will.\n\nRegards",
"time": "05:21",
"topic": "A fastedit sample with recordset?",
"username": "Armando"
}
] | A fastedit sample with recordset? |
[
{
"date": "2015-02-22",
"forum": "Off Topic / Otros temas",
"text": "Dear friends,\n\nIf you have facebook please do this favor for a good friend of mine:\n\n1. Look for \"Avenida fotógrafos\" and click like it.\n\n2. Look for this photo (in avenida fotógrafos page) and click on like it too.\n\nMy good ... | A favor for a friend |
[
{
"date": "2015-02-23",
"forum": "Off Topic / Otros temas",
"text": "Done! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "20:52",
"topic": "A favor for a friend",
"username": "carlos vargas"
}
] | A favor for a friend |
[
{
"date": "2015-02-24",
"forum": "Off Topic / Otros temas",
"text": "Thanks to all, they won <!-- s;-) --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\";-)\" title=\"Wink\" /><!-- s;-) -->",
"time": "09:24",
"topic": "A favor for a friend",
"username": "Antonio Linares"
}
] | A favor for a friend |
[
{
"date": "2008-07-26",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Hi Antonio and fellow FiveLinuxers\r\n\r\nGROUP doesn't seem to work properly with the PIXEL option, I believe that FiveLinux.ch is not correctly translating the @ <row>, <col> GROUP command because it is not including a [ <lUp... | A few minor glitches with GROUP, RADMENU |
[
{
"date": "2009-06-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi guys,\n \n These questions uses a reduced, self-contained example that'll appear way below as point of reference. Just copy it to \\fwh\\samples and compile and run it from there.\n\n So here's the question:\n 1. When... | A few questions with regards to RichEdit |
[
{
"date": "2009-06-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n Any idea?",
"time": "07:36",
"topic": "A few questions with regards to RichEdit",
"username": "hua"
}
] | A few questions with regards to RichEdit |
[
{
"date": "2009-06-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hua,\n\nPlease try it this way:\n[code=fw:vzbs98se]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"FiveWin.ch\"</span><b... | A few questions with regards to RichEdit |
[
{
"date": "2009-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks Antonio! The program is now working as expected and the error message after exiting the program is gone.\n\nI don't actually understands what ResetOleUninit() is for though <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.... | A few questions with regards to RichEdit |
[
{
"date": "2009-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hua,\n\nYou are not using OLE there, so that change is fine <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "07:15",
"topic": "A few questions with regards to R... | A few questions with regards to RichEdit |
[
{
"date": "2009-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr Antonio\n\n[quote=\"Antonio Linares\":3uzrybgk]Hua,\n\nYou are not using OLE there, so that change is fine <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->[/quote:3uzrybgk]\n\n... | A few questions with regards to RichEdit |
[
{
"date": "2009-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Rao,\n\nI have been reviewing the source code of RESETOLEUNINIT() and there is no conflict with TOleAuto() except that a call to OleUninitialize() is done. \n\nWe need to check if OleInitialize() works like a DLL (using an in... | A few questions with regards to RichEdit |
[
{
"date": "2008-02-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello from Germany\n\nI'm still busy with testing the DB-Tools, but it \nis possible, to show what's going on.\n\nIt is not everything translated in english,\nbut i think it is possible to understand.\nExcuse me, when not everythi... | A first overview of the DB-Tools ==> Vers. 8.2 f |
[
{
"date": "2008-02-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr ukoenig\n\nVery nice effort.\n\nI started the program. Clicked the Left button on the button bar \"QuickBrowse\". Selected DBF file and then I got this error.\n\n[code:2sul6u8e]\nAnwendung\n==========\n Pfad und Name : C&... | A first overview of the DB-Tools ==> Vers. 8.2 f |
[
{
"date": "2016-04-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I suggest you do not directly assign fonts to each button. Instead please assign fonts to the metro panel like this:\n\noPanel:oBtnFont:End()\noPanel:oBtnFont := oNewFontForBtnCaption\n\noPanel:oTextFont:End()\noPanel:oTextFont :=... | A font-problem in METRO-app ? |
[
{
"date": "2016-04-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nI have a problem with fonts in my METRO-aplication\n\n[b:2vdpeft8]Fonts defined on top[/b:2vdpeft8]\n\n[color=#008000:2vdpeft8]DEFINE FONT oFontLarge NAME \"Arial\" SIZE 0, -50 BOLD ITALIC\nDEFINE FONT oFontTime NAME \... | A font-problem in METRO-app ? |
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I tested but got funny results \nthe LOG-file messages are fixed.\n\nactivating : oPanel1:oFont, Title and buttons are using the same font\noPanel1:oBtnFont and oPanel1:oTextFont are not shown\n\nI used :\n[code=fw:2xv028fx]<div c... | A font-problem in METRO-app ? |
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ok. Now font destruction issues are resolved.\nMay I know what other problems you have and what assistance I can provide?",
"time": "11:38",
"topic": "A font-problem in METRO-app ?",
"username": "nageswaragunupudi"
}... | A font-problem in METRO-app ? |
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It seems the fonts are not used :\n\noPanel1:oFont:End()\noPanel1:oFont := oFontLarge // Title\n\n[img:2104yjyp]http://www.pflegeplus.com/IMAGES/Metrob5.jpg[/img:2104yjyp]\n\noPanel1:oBtnFont:End()\noPanel1... | A font-problem in METRO-app ? |
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Please do these assignments \n[code=fw:11lahbi3]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">oPanel1:<span style=\"color: #000000;\">oFont</span>:<span style=\"color: #000000;\">End</span><span style=\"color: #0... | A font-problem in METRO-app ? |
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "to be sure, nothing strange is included\nI added the fonts to sample [b:1dpdrui6]< metrptst.prg >[/b:1dpdrui6] with the same results\ntitle and buttonfonts are the same\n\n[img:1dpdrui6]http://www.pflegeplus.com/IMAGES... | A font-problem in METRO-app ? |
[
{
"date": "2013-03-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nas a free service, I offer to create\nany needed special TEXTLOGO\nwith a defined Background ( structure ) or transparent\nfor all friends and users of FWH.\nThe logo can be placed insided this toppic for download\nor ca... | A free Forum-service : any Textlogo for FWH-users |
[
{
"date": "2013-03-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe,\n\nmany thanks <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "10:09",
"topic": "A free Forum-service : any Textlogo for FWH-users",
"username": "Anto... | A free Forum-service : any Textlogo for FWH-users |
[
{
"date": "2013-03-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Halo Uwe..\n\nVery nice logo..\n\nCan you send me at: <!-- e --><a href=\"mailto:Mulyadi@ksk.co.id\">Mulyadi@ksk.co.id</a><!-- e -->\nThanks...\n\nBest regards..\n\n\nMulyadi\nFWH+xHarbour+ADO+Oracle",
"time": "05:10",
"to... | A free Forum-service : any Textlogo for FWH-users |
[
{
"date": "2013-03-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You can add up to 3 textlines.\nSelection [color=#FF0000:3vtet3ma]<[b:3vtet3ma]Deformed[/b:3vtet3ma]>[/color:3vtet3ma] will use the 3 lines to create a Logo\n\n[img:3vtet3ma]http://www.pflegeplus.com/pictures/DLogo8... | A free Forum-service : any Textlogo for FWH-users |
[
{
"date": "2013-03-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Very nice...",
"time": "17:59",
"topic": "A free Forum-service : any Textlogo for FWH-users",
"username": "Bayron"
}
] | A free Forum-service : any Textlogo for FWH-users |
[
{
"date": "2013-03-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "The first requested Logo :\n\n1. with Background ( Jpg )\n\n[img:5mlrcgfl]http://www.pflegeplus.com/pictures/jose1a.jpg[/img:5mlrcgfl]\n\n2. transparent Text ( PNG can be painted on any other Background )\n\n[color... | A free Forum-service : any Textlogo for FWH-users |
[
{
"date": "2013-03-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You can select one of the predefined style as well. Next change the color\n\nSelect Col and Row\n\nPredefined Styles = E 5\n\nYou can change the Background- and Textbrush like :\n\n3. Background \n-------------\na) Color : -\nb) G... | A free Forum-service : any Textlogo for FWH-users |
[
{
"date": "2013-03-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Fantastic Many thanks",
"time": "22:10",
"topic": "A free Forum-service : any Textlogo for FWH-users",
"username": "wilsongamboa"
}
] | A free Forum-service : any Textlogo for FWH-users |
[
{
"date": "2013-03-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Wilson,\n\nno problem, to select another style with maybe more textlines ( new )\nor a predefined style.\nI changed the selection defines like < A 5 >\nhave a look at the new style pictures.\n\nSamples of 3 - line Logos\nMo... | A free Forum-service : any Textlogo for FWH-users |
[
{
"date": "2013-03-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe many thanks nices logos specialy the last",
"time": "01:36",
"topic": "A free Forum-service : any Textlogo for FWH-users",
"username": "wilsongamboa"
}
] | A free Forum-service : any Textlogo for FWH-users |
[
{
"date": "2014-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear friends,\n\nTonight Otto let me know this sad news, that we must share here, because though Stephan has gone, it has been a pleasure to meet him here, always kind, helping, another true Clipper-heart, with who we have shared ... | A friend has gone but he remains in our hearts |
[
{
"date": "2014-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ditto",
"time": "03:50",
"topic": "A friend has gone but he remains in our hearts",
"username": "hua"
}
] | A friend has gone but he remains in our hearts |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.