messages listlengths 1 1 | topic stringlengths 2 60 |
|---|---|
[
{
"date": "2008-09-19",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"fergonm\":3sg61j4q]Buenas tardes a todos\n\nTengo una duda. Debo colocar la base de datos en un solo ordenador y tener acceso desde el resto, todos ellos en red.\n\nDebo colocar la base de datos en uno de los equipos y u... | Base de datos en red |
[
{
"date": "2008-09-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Muchas gracias por vuestras contestaciones.\r\n\r\nNunca usé archivos tipo .INI, por lo que no se como utipizarlos. Pueden indicarme donde encontrar ejemplos.\r\n\r\nUn saludo.",
"time": "11:44",
"topic": "Base de datos e... | Base de datos en red |
[
{
"date": "2008-09-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"fergonm\":3nmf9mwq]Muchas gracias por vuestras contestaciones.\n\nNunca usé archivos tipo .INI, por lo que no se como utipizarlos. Pueden indicarme donde encontrar ejemplos.\n\nUn saludo.[/quote:3nmf9mwq]\r\n\r\nFernando... | Base de datos en red |
[
{
"date": "2008-09-22",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Muchas gracias Francisco. \r\n\r\nEspero que con tan detallada información funcione todo correctamente.\r\n\r\nUn saludo. Fernando",
"time": "16:54",
"topic": "Base de datos en red",
"username": "fergonm"
}
] | Base de datos en red |
[
{
"date": "2017-10-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Colegas, hay alguna utilidad en harbour para trabajar con base de datos no sql, por ejemplo MongoDb. Muchísimas gracias\n\nSaludos",
"time": "21:05",
"topic": "Base de datos no sql",
"username": "horacio"
}
] | Base de datos no sql |
[
{
"date": "2017-10-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Creo que desde hace tiempo hay una persona que lo está desarrollando\n\n<!-- m --><a class=\"postlink\" href=\"https://github.com/tfonrouge/hbmongoc\">https://github.com/tfonrouge/hbmongoc</a><!-- m -->",
"time": "21:35",
... | Base de datos no sql |
[
{
"date": "2017-10-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Muchas gracias Cristobal. Lo miro.\n\nSaludos",
"time": "23:43",
"topic": "Base de datos no sql",
"username": "horacio"
}
] | Base de datos no sql |
[
{
"date": "2018-03-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\nI am trying to use scintilla in my program to syntax highlight, but it have no lucky... \n[code=fw:2sluwjmz]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <s... | Base sample with scintilla |
[
{
"date": "2018-03-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Look Function SourceEdit() in MEMOEDIT.PRG\nWith this function, you already have an editor using Scintilla\n\nSample of use\n\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=3&t=3530... | Base sample with scintilla |
[
{
"date": "2018-03-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "i use the function SourceEdit() and the class fivedit0.prg from fivewin\\samples to edit sql texts.\nis it possible to change the list of key words sensitive to colors?\ni want to add some SQL statements.\nthanks",
"time": "09... | Base sample with scintilla |
[
{
"date": "2018-03-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You should use\n[code=fw:mp2d8t9e]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">oScintilla:<span style=\"color: #000000;\">SetKeyWords</span><span style=\"color: #000000;\">(</span> <span style=\"color: #0000... | Base sample with scintilla |
[
{
"date": "2018-03-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "function SourceEdit() documentation:\n\n[url:180dxcoz]http://wiki.fivetechsoft.com/doku.php?id=fivewin_function_sourceedit[/url:180dxcoz]\n\nThis is a very powerful FWH function. Don't miss it <!-- s:-) --><img src... | Base sample with scintilla |
[
{
"date": "2018-03-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"marzio\":25xr0zpw]i use the function SourceEdit() and the class fivedit0.prg from fivewin\\samples to edit sql texts.\nis it possible to change the list of key words sensitive to colors?\ni want to add some SQL statements... | Base sample with scintilla |
[
{
"date": "2018-03-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"marzio\":1nm7yrc4]oScintilla:SetKeyWords( 0, \"keyword1 keyword2 keyword3\" )\nworks fine.\n\ni have tried this:\n::oEditor = TScintilla():New( 0, 0 , 943, 400,, ::nTextColor, ::nBackColor, 519 )\n::oEditor:cLexer := 7\n:... | Base sample with scintilla |
[
{
"date": "2018-03-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "oScintilla:SetKeyWords( 0, \"keyword1 keyword2 keyword3\" )\nworks fine.\n\ni have tried this:\n::oEditor = TScintilla():New( 0, 0 , 943, 400,, ::nTextColor, ::nBackColor, 519 )\n::oEditor:cLexer := 7\n::oEditor:SetLexer( 7 ) // S... | Base sample with scintilla |
[
{
"date": "2018-03-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "::oEditor:cLexer := 7\n::oEditor:Send( 4001, 7, 0 )\n::oEditor:Setup()\n\ni have no difference in colors of SQL sintax.",
"time": "11:55",
"topic": "Base sample with scintilla",
"username": "marzio"
}
] | Base sample with scintilla |
[
{
"date": "2018-03-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "have you tryied to setup some colors?\n[code=fw:gnix7c4h]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">::<span style=\"color: #000000;\">oEditor</span>:<span style=\"color: #000000;\">SetAStyle</span><span style=... | Base sample with scintilla |
[
{
"date": "2018-03-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Sample for SQL syntax\n\n[img:2qx5ca5w]https://s18.postimg.org/k22loj0yx/fe_Sql1.png[/img:2qx5ca5w]\n\n[code=fw:2qx5ca5w]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><span style=\"col... | Base sample with scintilla |
[
{
"date": "2018-03-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "many thanks to AntoninoP and Cristobal,\ni have tried both the examples and them work fine!",
"time": "09:42",
"topic": "Base sample with scintilla",
"username": "marzio"
}
] | Base sample with scintilla |
[
{
"date": "2018-03-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Days trying to make .ini highlight works and now, after build the dll, it works <!-- s8) --><img src=\"{SMILIES_PATH}/icon_cool.gif\" alt=\"8)\" title=\"Cool\" /><!-- s8) -->",
"time": "11:29",
"topic": "Base sample with ... | Base sample with scintilla |
[
{
"date": "2018-03-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonino,\n\nWhat DLL ? <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nA screenshot of your INI highlighting surely will be appreciated",
"time": "12:30",
"topic": "B... | Base sample with scintilla |
[
{
"date": "2018-03-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I recompiled SciLexer.dll\nHere a screenshot of test program\n[img:rsbe1tio]https://i.imgur.com/HuKdnmU.jpg[/img:rsbe1tio]\nAnd here the code:\n[code=fw:rsbe1tio]<div class=\"fw\" id=\"{CB}\" style=\"font-family: m... | Base sample with scintilla |
[
{
"date": "2018-03-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonino,\n\nCould you provide a url to download the DLL ? \n\nIf you send it to me I will upload it to bitbucket and share it <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
... | Base sample with scintilla |
[
{
"date": "2018-03-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I downloaded the source code from [url:vkgtvv0o]http://www.scintilla.org/ScintillaDownload.html[/url:vkgtvv0o] and compiled it.\nWhen I have a little more time i will compile the 64bit version and upload it somewhe... | Base sample with scintilla |
[
{
"date": "2018-03-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "DLLs with all Lexers\nFor 32 bits\n<!-- m --><a class=\"postlink\" href=\"https://bitbucket.org/fivetech/fivewin-contributions/downloads/SciLexer376Dll_X86.dll\">https://bitbucket.org/fivetech/fivewin- ... ll_X86.dll</a><!-- m -->... | Base sample with scintilla |
[
{
"date": "2018-03-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Where do you take these dlls?\n[url=http://www.scintilla.org/ScintillaHistory.html:fahwkgzt]The 3.7.6 is from 8th August, 2017[/url:fahwkgzt].. .\n\nI putted the 4.0.3 on:\n[url:fahwkgzt]http://aperricone.a... | Base sample with scintilla |
[
{
"date": "2018-03-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I'm going to put the 4.0.3 also to use with Fivedit (samples)",
"time": "12:02",
"topic": "Base sample with scintilla",
"username": "cnavarro"
}
] | Base sample with scintilla |
[
{
"date": "2018-03-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr Antonino, in your code ( not important )\n\n[quote:2f53cfgh]\n\nSCI_SETSTYLEBITS(int bits) Deprecated\nSCI_GETSTYLEBITS ? int Deprecated\nSCI_GETSTYLEBITSNEEDED ? int Deprecated\nINDIC0_MASK, INDIC1_MASK, INDIC2_MASK, INDICS_MA... | Base sample with scintilla |
[
{
"date": "2008-06-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi, all !\r\n\r\nI cut out blok from certain file (all this bloks is picture codind base64) and save blok to file(bas.txt). Then fMimeDec(\"bas.txt\",\"bas.bmp\"). It's O'K. I got picture !\r\nBut sometimes blok to finish string \... | Base64 |
[
{
"date": "2008-06-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Could you provide an example that reproduces the error ? thanks",
"time": "09:20",
"topic": "Base64",
"username": "Antonio Linares"
}
] | Base64 |
[
{
"date": "2008-06-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank, Antonio !\r\nI resolved this problem.",
"time": "10:48",
"topic": "Base64",
"username": "Natter"
}
] | Base64 |
[
{
"date": "2009-02-04",
"forum": "FiveWin for CA-Clipper",
"text": "Hello,\n\nI put here in public domain, for Clipper and [x]Harbour developpers,\nsome functions i have created to translate strings in Base64 encodage\nand reverse. This will help you in some cases, like to create your own\nTSMTP class w... | Base64 natives functions in Clipper ! |
[
{
"date": "2009-02-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nSee my post on Clipper Forum today:\n\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=1&t=14482&start=0\">viewtopic.php?f=1&t=14482&start=0</a><!-- l -->\n\nBest regards.",... | Base64 natives functions in Clipper ! |
[
{
"date": "2009-09-08",
"forum": "FiveWin for CA-Clipper",
"text": "Thank you for your contribution! This helped me today in a project ... \n\nRegards",
"time": "17:43",
"topic": "Base64 natives functions in Clipper !",
"username": "vailtom"
}
] | Base64 natives functions in Clipper ! |
[
{
"date": "2009-09-13",
"forum": "FiveWin for CA-Clipper",
"text": "I am happy for you...\n\nRegards.",
"time": "16:51",
"topic": "Base64 natives functions in Clipper !",
"username": "Badara Thiam"
}
] | Base64 natives functions in Clipper ! |
[
{
"date": "2009-09-25",
"forum": "FiveWin for CA-Clipper",
"text": "Hello,\nI have upgraded StrToBase64() today. One bug fixed.\nNo changes in others functions.\n\nRegards.\n\n[code=fw:1anh6vg5]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br />* BASE64.PRG<br />* Creation le <s... | Base64 natives functions in Clipper ! |
[
{
"date": "2010-08-12",
"forum": "FiveWin for CA-Clipper",
"text": "Dear Badara Thiam\n\nThank you for your Contribution. It works well and helped me a lot.\n\nGreatings\n\nPeter Wiegand",
"time": "22:30",
"topic": "Base64 natives functions in Clipper !",
"username": "Wiegand"
}
] | Base64 natives functions in Clipper ! |
[
{
"date": "2012-04-16",
"forum": "FiveWin for CA-Clipper",
"text": "The function Base64toStr, has a error, the change is, add this code on the end function:\n\n cTexte:=str2hex(cTexte)\n\tif right(cTexte,2)=\"00\"\n\t\tcTexte:=substr(cTexte,1,len(cTexte)-2)\n\tend if\n\tcTexte:=hex2str(cTexte)\n\... | Base64 natives functions in Clipper ! |
[
{
"date": "2021-09-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hey guys\nHow do I convert a Base64 to Audio file",
"time": "22:45",
"topic": "Base64 to Audio",
"username": "marca"
}
] | Base64 to Audio |
[
{
"date": "2021-09-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Look\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=6&t=39838&p=237612&hilit=hb_Base64Encode&sid=083b50f71c56db8897985ab3a60d5a18#p237612\">viewtopic.php?f=6&t=39838&p=237612&hilit=... | Base64 to Audio |
[
{
"date": "2021-09-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Obrigado\ncnavarro",
"time": "15:02",
"topic": "Base64 to Audio",
"username": "marca"
}
] | Base64 to Audio |
[
{
"date": "2022-11-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I use:\n\ncPdf = HB_BASE64DECODE( cTxt )\nMEMOWRIT( \"Test.Pdf\", cPdf, .F. ) \n\nwherein cTxt:\n[code=fw:3pvrbbs0]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">JVBERi0xLjUNCjIgMCBvYmoNCjw8IC9GaWx0ZXIgL0ZsYXRlRG... | Base64 to PDF |
[
{
"date": "2022-11-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This run Ok for me\n\n[code=fw:3nxcdd3j]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"Fivewin.ch\"</span><br /><br /><... | Base64 to PDF |
[
{
"date": "2022-11-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I am using xHarbour build 1.2.1, function HB_MEMOREAD() does not exist. I guess the problem might be in MEMOREAD()?\n\nBest regards,\nMiloš",
"time": "17:25",
"topic": "Base64 to PDF",
"username": "mtajkov"
}
] | Base64 to PDF |
[
{
"date": "2022-11-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Miloš,\n\nYes, as memoWrit() adds an extra HB_CHAR_EOF character\n\nUse SubStr() to remove it when reading the saved string",
"time": "17:31",
"topic": "Base64 to PDF",
"username": "Antonio Linares"
}
] | Base64 to PDF |
[
{
"date": "2022-11-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This is my code:\n\n[code=fw:1nqt22fr]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">Function</span> test<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">... | Base64 to PDF |
[
{
"date": "2022-11-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This is working fine using Harbour and fails using xHarbour:\n[code=fw:1koup4xm]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"Five... | Base64 to PDF |
[
{
"date": "2022-11-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nWorks with xHarbour xHarbour 1.2.3 Intl. (SimpLex) (Build 20201212) but not with xHarbour build 1.2.1 Intl. (SimplLex) (Rev. 9382). I have to use xHarbour build 1.2.1 Intl. (SimplLex) (Rev. 9382)?",
"time": "20:49"... | Base64 to PDF |
[
{
"date": "2022-11-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Milos,\n\nThen you have to compare the source code of both xHarbour builds and check the differences and implement your own modified functions",
"time": "21:05",
"topic": "Base64 to PDF",
"username": "Antonio Lina... | Base64 to PDF |
[
{
"date": "2022-11-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you Antonio...\n\nI found it on the forum, it works great:\n\n<!-- l --><a class=\"postlink-local\" href=\"https://www.fivetechsupport.com/forums/viewtopic.php?f=3&t=34757&start=0#p206651\">viewtopic.php?f=3&t=34757&start=0#... | Base64 to PDF |
[
{
"date": "2022-11-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "very good!",
"time": "08:28",
"topic": "Base64 to PDF",
"username": "Antonio Linares"
}
] | Base64 to PDF |
[
{
"date": "2022-11-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":oih4qdfl]Dear Miloš,\n\nYes, as memoWrit() adds an extra HB_CHAR_EOF character\n\nUse SubStr() to remove it when reading the saved string[/quote:oih4qdfl]\n\nIt is not required. Just add the third parame... | Base64 to PDF |
[
{
"date": "2022-11-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Many thanks Enrico! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "12:23",
"topic": "Base64 to PDF",
"username": "Antonio Linares"
}
] | Base64 to PDF |
[
{
"date": "2022-11-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"mtajkov\":245ismyo]I use:\n\ncPdf = HB_BASE64DECODE( cTxt )\n[b:245ismyo]MEMOWRIT( \"Test.Pdf\", cPdf, .F. ) [/b:245ismyo] \n\n[/code]\n\nI don't get the correct pdf?\n\nif the same cTxt I decode in <!-- m --><a class=\"p... | Base64 to PDF |
[
{
"date": "2022-11-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ops! You are right.",
"time": "14:26",
"topic": "Base64 to PDF",
"username": "Enrico Maria Giordano"
}
] | Base64 to PDF |
[
{
"date": "2022-11-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Long time back, I was using my own functions\n[code=fw:g1vudhd4]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">GN_BASE64ENCODE<br />GN_BASE64DECODE<br />GN_BASE64URL</div>[/code:g1vudhd4]\n\nI am posting one of my... | Base64 to PDF |
[
{
"date": "2019-05-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola amigos:\n\nSupongo que lo tendreis todos pero he conseguido unos ficheros de texto con codigos postales de España, hay unos 11.000 Creo, no se si estan todas, la mia esta <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.g... | Bases datos utiles en España |
[
{
"date": "2019-05-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias Jose",
"time": "00:00",
"topic": "Bases datos utiles en España",
"username": "cnavarro"
}
] | Bases datos utiles en España |
[
{
"date": "2008-10-14",
"forum": "FiveWin para Harbour/xHarbour",
"text": "La consulta es que opinion tienen de firebird, ya que estoy interesado en aprender a utilizarlo para cambiar las dbf a bases de datos y si se puede relacionar fwh con la base de datos creada con firebird. Y si es posible importar... | Bases de datos |
[
{
"date": "2007-03-06",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Alguien sabe con que abrir estas bases de datos .dat y indices .idx.....\n\n\nGracias.",
"time": "10:04",
"topic": "Bases de datos .DAT y indices .IDX",
"username": "Andrés González"
}
] | Bases de datos .DAT y indices .IDX |
[
{
"date": "2007-03-06",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Andrés:\n\nPrueba con Advantage Data Architect.(ADS).\n\nSaludos\n\nRuben Fernandez.",
"time": "12:17",
"topic": "Bases de datos .DAT y indices .IDX",
"username": "Ruben Fernandez"
}
] | Bases de datos .DAT y indices .IDX |
[
{
"date": "2016-04-01",
"forum": "Off Topic / Otros temas",
"text": "<!-- m --><a class=\"postlink\" href=\"http://www.theverge.com/2016/3/30/11331014/microsoft-windows-linux-ubuntu-bash\">http://www.theverge.com/2016/3/30/11331 ... buntu-bash</a><!-- m -->",
"time": "07:03",
"topic": "Bash en W... | Bash en Windows |
[
{
"date": "2010-06-30",
"forum": "Utilities / Utilidades",
"text": "checkout.bat (To download the Harbour files from its repository)\n[code=fw:2aik2pew]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">svn.exe co https:<span style=\"color: #B900B9;\">//harbour-project.svn.sourceforge.net/s... | Batch files to build Harbour |
[
{
"date": "2010-07-14",
"forum": "Utilities / Utilidades",
"text": "Batch file to build Harbour with QT support, in order to build HBIDE:\n\nFirst download QT from here:\n<!-- m --><a class=\"postlink\" href=\"http://get.qt.nokia.com/qtsdk/qt-sdk-win-opensource-2010.04.exe\">http://get.qt.nokia.com/qtsd... | Batch files to build Harbour |
[
{
"date": "2010-06-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi.\nI'm using Xharbour commercial, but I want to make some tests with the Harbour that comes\nwith FWH. I don't know how to make the compiling process of several Prg and to link them\nwith some Libs. Can I have and example how to... | Batch for compiling and linking with Harbour |
[
{
"date": "2010-06-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Massimo,\n\nThe Batchfile ( [color=#FF0000:r0so080w]GO.BAT [/color:r0so080w])\n\nif not exist obj md obj\nc:\\bcc55\\bin\\make -f makefile.rmk\n\nThe Makefile ( [color=#FF0000:r0so080w]MAKEFILE.RMK [/color:r0so080w])\n\nHBDI... | Batch for compiling and linking with Harbour |
[
{
"date": "2010-06-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks a lot. I'll try it.\nHave a nice evening.\nMassimo.",
"time": "16:41",
"topic": "Batch for compiling and linking with Harbour",
"username": "Massimo Linossi"
}
] | Batch for compiling and linking with Harbour |
[
{
"date": "2006-09-05",
"forum": "FiveWin para Pocket PC",
"text": "Olá a Todos\n\nEste é o código que peguei aqui no forum,\nao compilar da este erro:\n warning C4700: local variable 'status' used without having been initialized\npara as duas linhas onde o \"SYSTEM_POWER_STATUS_EX status;\" está declar... | Battery Life retorna sempre 39 |
[
{
"date": "2006-09-05",
"forum": "FiveWin para Pocket PC",
"text": "Mauro,\n\nChange this line:\n\n iRet = GetSystemPowerStatusE x( &status, TRUE );\n\n\"Ex\" together",
"time": "22:26",
"topic": "Battery Life retorna sempre 39",
"username": "Antonio Linares"
}
] | Battery Life retorna sempre 39 |
[
{
"date": "2006-09-06",
"forum": "FiveWin para Pocket PC",
"text": "[quote=\"Antonio Linares\":2h2seblk]Mauro,\n\nChange this line:\n\n iRet = GetSystemPowerStatusE x( &status, TRUE );\n\n\"Ex\" together[/quote:2h2seblk]\n\nAntonio,\nfuncionou muito bem\nObrigado,\nSaludos\n\nMauro",
"time": "16:1... | Battery Life retorna sempre 39 |
[
{
"date": "2009-05-09",
"forum": "FiveWin para Pocket PC",
"text": "How I can to show these informations ?\nI wanted show it as bar progress into a window \nI need your help \n\n\n\n[code=fw:32wvo6vc]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#incl... | Battery,Signal,DiskInfo,Memory |
[
{
"date": "2017-05-05",
"forum": "Off Topic / Otros temas",
"text": "Félix, que cumplas muchos más y que pases un estupendo día",
"time": "09:08",
"topic": "Baxajaun - Feliz Cumpleaños",
"username": "cnavarro"
}
] | Baxajaun - Feliz Cumpleaños |
[
{
"date": "2017-05-05",
"forum": "Off Topic / Otros temas",
"text": "Happy Birthday, Baxajaun!!! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG",
"time": "09:41",
"topic": "Baxajaun - Feliz Cumpleaños",
"username": "Enrico Maria Gio... | Baxajaun - Feliz Cumpleaños |
[
{
"date": "2017-05-05",
"forum": "Off Topic / Otros temas",
"text": "+1\n\nY que vengan muchos más cumpleaños <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "09:55",
"topic": "Baxajaun - Feliz Cumpleaños",
"username": "Antonio Li... | Baxajaun - Feliz Cumpleaños |
[
{
"date": "2017-05-05",
"forum": "Off Topic / Otros temas",
"text": "Va por ti Félix, <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\n[img:4dtc8y6r]http://media1.confetifiestas.com/9550-thickbox_default/gafas-jarra-de-cerveza.j... | Baxajaun - Feliz Cumpleaños |
[
{
"date": "2017-05-05",
"forum": "Off Topic / Otros temas",
"text": "Muchísimas gracias a todos!!!\n\nUn abrazo",
"time": "16:35",
"topic": "Baxajaun - Feliz Cumpleaños",
"username": "Baxajaun"
}
] | Baxajaun - Feliz Cumpleaños |
[
{
"date": "2022-10-09",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Buenos días...\n\nDesde donde puedo descargar este compilador para x64\n\nGracias",
"time": "16:05",
"topic": "Bcc++ 64Bits",
"username": "J. Ernesto"
}
] | Bcc++ 64Bits |
[
{
"date": "2022-10-10",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[url:1u3cuywg]http://xharbour.org/index.asp?page=download/windows/required_win[/url:1u3cuywg]",
"time": "13:16",
"topic": "Bcc++ 64Bits",
"username": "Enrico Maria Giordano"
}
] | Bcc++ 64Bits |
[
{
"date": "2016-01-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I am attempting to move an existing application from and old version of FiveWin, and xHb.\nNow using Bcc7, and the newest FiveWin, after I finally got the app to compile and link I get an exception error when the mouse is moved ov... | Bcc7 and Fivewin Crash |
[
{
"date": "2016-01-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "btw, I am now using Harbour as well...",
"time": "06:37",
"topic": "Bcc7 and Fivewin Crash",
"username": "byron.hopp"
}
] | Bcc7 and Fivewin Crash |
[
{
"date": "2016-01-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Byron\nYou have a file error.log or hb_out.log?",
"time": "06:59",
"topic": "Bcc7 and Fivewin Crash",
"username": "cnavarro"
}
] | Bcc7 and Fivewin Crash |
[
{
"date": "2016-01-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Byron,\n\nIn file hb_out.log we will know where the GPF is coming from",
"time": "09:20",
"topic": "Bcc7 and Fivewin Crash",
"username": "Antonio Linares"
}
] | Bcc7 and Fivewin Crash |
[
{
"date": "2016-01-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Antonio,\n\nSometimes, I got Crash and not any error message or file txt.",
"time": "10:06",
"topic": "Bcc7 and Fivewin Crash",
"username": "richard-service"
}
] | Bcc7 and Fivewin Crash |
[
{
"date": "2016-01-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Richard,\n\nHarbour traps the Windows GPFs but this is not possible on all GPFs circunstances.\n\nIt is a Windows limitation",
"time": "10:25",
"topic": "Bcc7 and Fivewin Crash",
"username": "Antonio Linares"
}
] | Bcc7 and Fivewin Crash |
[
{
"date": "2016-10-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "To All\n\nJust downloaded Bcc72 32 bits and like Bcc70 ( which I have a fix for ) I get a compile error with prsht.h about an out of balance #if and #endif. I was hoping someone has run accross this error and has a fix for the he... | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Can I see a sample showing the error to test here?\n\nEMG",
"time": "15:51",
"topic": "Bcc72 Prsht.h resource compile error",
"username": "Enrico Maria Giordano"
}
] | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Please search into he forum, this topic is resolved. sorry for my bad english.\n[url:34kqq6j5]http://forums.fivetechsupport.com/viewtopic.php?p=147360#p147360[/url:34kqq6j5]",
"time": "16:53",
"topic": "Bcc... | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Carlos\n\nThanks for reminding me of my own solution .. I did not research this fix since the files are so different. Let me see if removing the trailing \\ from line 184 does the trick for Bcc72.\n\nThanks\nRick Lipkin",
"tim... | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico\n\nJust try to compile a .rc file with the line below ( or buildx.bat that includes an .rc ) and that will evoke the error. Bcc72 is a bit different than Bcc70 in that that the .H files are in two different folders complic... | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "What is prsht.h for? I never used it.\n\nEMG",
"time": "14:47",
"topic": "Bcc72 Prsht.h resource compile error",
"username": "Enrico Maria Giordano"
}
] | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico\n\nI have no clue .. somehow Prsht.h is evoked by Brc32.exe when compiling a .rc file.\n\nRick Lipkin",
"time": "14:51",
"topic": "Bcc72 Prsht.h resource compile error",
"username": "Rick Lipkin"
}
] | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "No, it doesn't. At least, I never saw that error myself.\n\nEMG",
"time": "15:00",
"topic": "Bcc72 Prsht.h resource compile error",
"username": "Enrico Maria Giordano"
}
] | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico\n\nI use the below modified Rc2Dll32.bat file that copies all my .rc to a single .rc and then compiles to .res. The line below fails twice : \n\n[code=fw:crl4lxc0]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace... | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Still I don't understand what is the use of prsht.h and combaseapi.h. Never used nor needed them.\n\nEMG",
"time": "16:05",
"topic": "Bcc72 Prsht.h resource compile error",
"username": "Enrico Maria Giordano"
}
] | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n\nWhat header files those RC files have ?",
"time": "16:13",
"topic": "Bcc72 Prsht.h resource compile error",
"username": "Antonio Linares"
}
] | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico\n\nI do not know the answer to your question .. I do remember ( after Carlos jogged my memory ) having to rem out the trailing \\ in Prsht.h in Bcc70 .. but following the \"rabbit trail down the hole\" with Bcc722 .. fixin... | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio\n\nUsing Resedit the following Include lines are embedded .. probably those are evoking the additional C++ header errors:\n[code=fw:axj2balf]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style... | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n\nTry removing this line:\n\n#include <commctrl.h>\n\nif that solves the problem, then you can modify the resource script template from Resedit preferences",
"time": "08:53",
"topic": "Bcc72 Prsht.h resource compile... | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio\n\nI removed the #include <commctrl.h> from all my resources and that fixed the call to Prsht.h but the .rc compile still apparently is looking at combaseapi.h and errors out on line 283 with the symbol PURE already defin... | Bcc72 Prsht.h resource compile error |
[
{
"date": "2016-10-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n\nPlease post here the error output",
"time": "17:19",
"topic": "Bcc72 Prsht.h resource compile error",
"username": "Antonio Linares"
}
] | Bcc72 Prsht.h resource compile error |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.