messages listlengths 1 1 | topic stringlengths 2 60 |
|---|---|
[
{
"date": "2018-05-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Just remove -TP from here:\n\n[code=fw:3ln5p452]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">%vcdir%\\bin\\cl.Exe -TP -W3 -O2 -nologo -c -GA -GS -EHsc /I%hdir%\\include /I%vcdir%\\include %<span style=\"color: #... | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n\ndid you try it?\n\nEMG",
"time": "13:45",
"topic": "Antonio: Differences between BORLAND and VCC",
"username": "Enrico Maria Giordano"
}
] | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "ENrico\n\nI made the change you suggested .. same result .. Tutor01.exe is created but will not run ..\n\n[code=fw:2cmoq5q6]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />@ECHO OFF<br />CLS<br />ECHO ÚÄÄÄÄÄÄ... | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n\nyou missed a \"c\":\n\n[code=fw:q0k0nnfm]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">%vcdir%\\bin\\cl.Exe -W3 -O2 -nologo -c -GA -GS -EHsc /I%hdir%\\include /I%vcdir%\\include %<span style=\"color: #00... | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "A new test. As you see, the width and the height of the dialog are 10 pixels higher in MS-VCC. The dialog itself on the screen are exactly the same. Only the capture size is different.\nThe sizes of the dialogs are different in bo... | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrick\n\nSUCCESS ... yes, I seemed to have dropped off .c at the end of the link line ... \n\n[quote:2d7atsm8]\n%vcdir%\\bin\\cl.Exe -W3 -O2 -nologo -c -GA -GS -EHsc /I%hdir%\\include /I%vcdir%\\include %1.c\n[/quote:2d7atsm8]\n\... | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "But the client rect is identical in both cases.",
"time": "18:03",
"topic": "Antonio: Differences between BORLAND and VCC",
"username": "nageswaragunupudi"
}
] | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther\n\nI tested your code with Bcc73\\xHarbour and MSVC2017\\xHarbour on Windows 10 Spring Creator Pro 64 bit and got the same result ... here is your code:\n[code=fw:159bnq9j]<div class=\"fw\" id=\"{CB}\" style=\"font-family:... | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It is true that the external dimensions of the dialog differ by 10 pixels (both height and width). But the client rect of the dialog is exactly the same in both and also same as the coordintates specified by us while creating the ... | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "In fact, ::nWidth()/::nHight()/::nWidth/::nHight/::GetRect() differs on both compilers and should not used to calculations for controls!?",
"time": "09:37",
"topic": "Antonio: Differences between BORLAND and VCC",
"use... | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "In any case, it is not a good idea to use oDlg:nHeight or oDlg:nWidth for calculating relative position of controls, because these datas give external dimensions. Not client area dimensions.\n\nI personally recommend this way:\n\n... | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks, this is no problem to respect!\nBut i test also ::move(,,nWidth,nHeight) or ::SetSize( nWidth, nHeight). This methods also give differences. (in VCC also the 10 Pixels to small in both directions)",
"time": "16:02",
... | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I have to admit ... I don't understand why all the different compilers.\n\nI build all code with two options:\n\n 1). Older xHabour ( .com version ) with xBuilder ... \n 2). Preferred option of Visual Studio 2017 Community edi... | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim, I made some speed compare test between BCC 7.30 and MSVC 2017 and found the former much faster (I'm referring to dbf and index operations). And as a bonus, BCC generates smaller EXEs. That's why I'm using BCC.\n\nEMG",
"t... | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I generally find speed is not a real time issue, but I have noted that doing an Index on a pure Win 10 machine version an Apple running Parallels with Win 10, the Apple is MUCH faster. I have no idea why.",
"time": "20:17",
... | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2018-05-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "To All\n\nGenerally I prefer BCC .. and Enrico is correct ... BCC creates a smaller .exe .. again, not a big deal.... but I like the C++ Command line concept. I work also for a small computer shop and when I am not writing code ..... | Antonio: Differences between BORLAND and VCC |
[
{
"date": "2016-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "In the source printdc.c in function HB_FUNC( PRNDUPLEX ) // ( nValue ) --> nOldValue should be added the line\n[code=fw:ba3mhhx9]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">if</s... | Antonio: Duplexprint |
[
{
"date": "2016-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\nPlease post the entire source code of your modified HB_FUNC( PRNDUPLEX )\n\nthanks",
"time": "18:50",
"topic": "Antonio: Duplexprint",
"username": "Antonio Linares"
}
] | Antonio: Duplexprint |
[
{
"date": "2016-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "My code for a new function IsDuplexPrinter():\n[code=fw:wmb1hk81]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">HB_FUNC</span><span style=\"color: #000000;\">(</span> ISDUPLEXPR... | Antonio: Duplexprint |
[
{
"date": "2016-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\nIncluded for the next FWH version <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nmany thanks",
"time": "20:58",
"topic": "Antonio: Duplexprint",
"user... | Antonio: Duplexprint |
[
{
"date": "2016-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, perfect!\nThanks!",
"time": "23:00",
"topic": "Antonio: Duplexprint",
"username": "byte-one"
}
] | Antonio: Duplexprint |
[
{
"date": "2016-03-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, the methods setduplexnone() , setduplexlong() , setduplexshort() or a single method should add to printer.prg! (with check to duplex Y/N with the new function)",
"time": "15:25",
"topic": "Antonio: Duplexprint",
... | Antonio: Duplexprint |
[
{
"date": "2016-03-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\nHave you implemented them ?\n\nIf so, please share the code, thanks",
"time": "08:22",
"topic": "Antonio: Duplexprint",
"username": "Antonio Linares"
}
] | Antonio: Duplexprint |
[
{
"date": "2016-03-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, i have do this in rpreview and insert radios on the print-side dialog:\nParameters are 1==none duplex, 2==duplex long side, 3==duplex short side\nBut not all printers with ISDUPLEXPRINTER()==.T. can really print duplex!\n... | Antonio: Duplexprint |
[
{
"date": "2016-03-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\n> i have do this in rpreview and insert radios on the print-side dialog\n\nCould you post a screenshot of the dialog ? thanks",
"time": "12:08",
"topic": "Antonio: Duplexprint",
"username": "Antonio Linares... | Antonio: Duplexprint |
[
{
"date": "2016-03-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, screenshoot from my preview dialog.\n\n[img:2sh4uw3e]http://byte-one.com/print.png[/img:2sh4uw3e]",
"time": "16:59",
"topic": "Antonio: Duplexprint",
"username": "byte-one"
}
] | Antonio: Duplexprint |
[
{
"date": "2007-05-18",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Saludos y Gracias\n\nRuben Fernandez",
"time": "04:21",
"topic": "Antonio: El avi es para FWPPC, podria para Harbour y FWH ?",
"username": "Ruben Fernandez"
}
] | Antonio: El avi es para FWPPC, podria para Harbour y FWH ? |
[
{
"date": "2007-05-18",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ruben,\n\nNo entiendo tu pregunta",
"time": "07:46",
"topic": "Antonio: El avi es para FWPPC, podria para Harbour y FWH ?",
"username": "Antonio Linares"
}
] | Antonio: El avi es para FWPPC, podria para Harbour y FWH ? |
[
{
"date": "2007-05-18",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio,\n\nimagino que Rubén se referirá al video avi que has puesto sobre la configuración de UEstudio para FWPPC. \n\nRubén, si es eso sí, se puede.\n\nSaludos,\n\nFelix",
"time": "11:21",
"topic": "Antonio: El avi es ... | Antonio: El avi es para FWPPC, podria para Harbour y FWH ? |
[
{
"date": "2007-05-18",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Felix,\n\nGracias. \n\nEl video es igual de util para usar Harbour y FWH ya que el proceso es el mismo",
"time": "11:54",
"topic": "Antonio: El avi es para FWPPC, podria para Harbour y FWH ?",
"username": "Antonio Lin... | Antonio: El avi es para FWPPC, podria para Harbour y FWH ? |
[
{
"date": "2007-05-18",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias Felix, Gracias Antonio.\n\nA eso me refería.\n\nSaludos\n\nRuben Fernandez",
"time": "15:38",
"topic": "Antonio: El avi es para FWPPC, podria para Harbour y FWH ?",
"username": "Ruben Fernandez"
}
] | Antonio: El avi es para FWPPC, podria para Harbour y FWH ? |
[
{
"date": "2006-09-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio:\na) Está disponible SetFTime() (o equivalente) en 2.8? Yo aún uso FWH 2.6 y no está implementada.\nb) En el mismo orden de cosas, TxBrowse() en FWH 2.6 tiene algunas anomalías, como el que no detecta RClick sobre una ca... | Antonio: Está disponible SetFTime() / SetFDate() en FWH 2.8? |
[
{
"date": "2006-09-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Rafael,\n\n>\na) Está disponible SetFTime() (o equivalente) en 2.8? Yo aún uso FWH 2.6 y no está implementada. \n>\n\nNo, aún no está implementada.\n\n>\nb) En el mismo orden de cosas, TxBrowse() en FWH 2.6 tiene algunas anomalía... | Antonio: Está disponible SetFTime() / SetFDate() en FWH 2.8? |
[
{
"date": "2007-07-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Alguna novedad sobre SetFTime() ?\n\n\nSaludos",
"time": "14:37",
"topic": "Antonio: Está disponible SetFTime() / SetFDate() en FWH 2.8?",
"username": "pymsoft"
}
] | Antonio: Está disponible SetFTime() / SetFDate() en FWH 2.8? |
[
{
"date": "2007-07-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ya resuelto:\n\n\n<!-- m --><a class=\"postlink\" href=\"http://fivetechsoft.com/forums/viewtopic.php?t=205\">http://fivetechsoft.com/forums/viewtopic.php?t=205</a><!-- m -->\n\n\nSaludos",
"time": "14:48",
"topic": "Anto... | Antonio: Está disponible SetFTime() / SetFDate() en FWH 2.8? |
[
{
"date": "2013-02-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Is it possible to use this styles in windows or dialogs?",
"time": "17:22",
"topic": "Antonio: Extended Windows styles",
"username": "byte-one"
}
] | Antonio: Extended Windows styles |
[
{
"date": "2017-09-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, in REDEFINE CHECKBOX and REDEFINE COMBOBOX (maybe also in other REDEFINes) is no clausula FONT. Would be nice to have!\nAnother idea: A WHEN-clausula which triggers a :hide() (or :show()) from the control!",
"time": "... | Antonio: FONT and HIDE |
[
{
"date": "2012-05-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estimado Antonio,\n\nNecesito migrar una aplicación de Fw Windows con MySql para MAC y tengo las siguientes interrogantes:\n\nPuedo aprovechar integramente los fuentes PRG ?\ndebo compilar y probar la aplicación para MAC sólo en ... | Antonio: FW para MAC |
[
{
"date": "2012-05-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Si el usuario instala Parallels en su Mac, no necesitas migrar a FW para Mac, pues trabajaria la Mac bajo Windows. Tengo varios clientes que lo trabajan asi perfectamente.",
"time": "17:48",
"topic": "Antonio: FW para MAC... | Antonio: FW para MAC |
[
{
"date": "2012-05-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Luis Alfonso,\n\nSi tu cliente no es exigente en cuanto a la apariencia, puedes usar la utilidad gratuita WinBottler:\n\n[url:2dd9vc05]http://winebottler.kronenberg.org/[/url:2dd9vc05]\n\nque te permite ejecutar tu ap... | Antonio: FW para MAC |
[
{
"date": "2006-06-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Maestro:\n\nRecien baje Harbour 46 y no veo la lib\nque menciona GTGUI.LIB\n\nSaludos y Gracias.\n\nRuben Fernandez.",
"time": "13:14",
"topic": "Antonio: GtGui.Lib no viene en harbour 46.",
"username": "RuFer"
}
] | Antonio: GtGui.Lib no viene en harbour 46. |
[
{
"date": "2006-06-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ruben,\n\nVuelve a descargarla desde aqui:\n<!-- m --><a class=\"postlink\" href=\"http://hyperupload.com/download/026ece0f78/harbour.EXE.html\">http://hyperupload.com/download/026ece0 ... r.EXE.html</a><!-- m -->\n\ngracias,",
... | Antonio: GtGui.Lib no viene en harbour 46. |
[
{
"date": "2006-06-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio:\n\nMuchas gracias.\n\n\nSaludos\n\nRuben Fernandez",
"time": "18:05",
"topic": "Antonio: GtGui.Lib no viene en harbour 46.",
"username": "RuFer"
}
] | Antonio: GtGui.Lib no viene en harbour 46. |
[
{
"date": "2006-06-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Maestro:\n\nYa tiene listo Harbour 46?\n\nCuando lo pone el link para bajarlo?\n\nMuchas gracias.\n\nRuben Fernandez.",
"time": "13:45",
"topic": "Antonio: Harbour 46 ya esta listo?",
"username": "RuFer"
}
] | Antonio: Harbour 46 ya esta listo? |
[
{
"date": "2006-06-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ruben,\n\nVamos a publicarlo en un dias. Han habido una serie de cambios importantes recientemente que deben ser incluidos.",
"time": "18:29",
"topic": "Antonio: Harbour 46 ya esta listo?",
"username": "Antonio Linare... | Antonio: Harbour 46 ya esta listo? |
[
{
"date": "2006-06-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias Maestro\n\nSaludos\nRuben fernandez",
"time": "19:13",
"topic": "Antonio: Harbour 46 ya esta listo?",
"username": "RuFer"
}
] | Antonio: Harbour 46 ya esta listo? |
[
{
"date": "2006-06-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ya podeis descargar el nuevo build de Harbour desde:\n<!-- m --><a class=\"postlink\" href=\"http://hyperupload.com/download/026ece0f78/harbour.EXE.html\">http://hyperupload.com/download/026ece0 ... r.EXE.html</a><!-- m -->\n\nTa... | Antonio: Harbour 46 ya esta listo? |
[
{
"date": "2006-06-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio GtGui.Lib no viene.\n\nCuando la tengamos se sigue compilando esto?\n\nANNOUNCE HB_GTSYS\nREQUEST HB_GT_NUL\n\nSaludos\n\nRuben Fernandez.",
"time": "14:14",
"topic": "Antonio: Harbour 46 ya esta listo?",
"use... | Antonio: Harbour 46 ya esta listo? |
[
{
"date": "2006-06-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ruben,\n\nHa sido un error nuestro. Vuelve a descargalo desde:\n<!-- m --><a class=\"postlink\" href=\"http://hyperupload.com/download/026ece0f78/harbour.EXE.html\">http://hyperupload.com/download/026ece0 ... r.EXE.html</a><!-- m... | Antonio: Harbour 46 ya esta listo? |
[
{
"date": "2006-06-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio:\n\nMuchas gracias de nuevo.\n\nSaludos\n\nRuben Fernandez.",
"time": "18:06",
"topic": "Antonio: Harbour 46 ya esta listo?",
"username": "RuFer"
}
] | Antonio: Harbour 46 ya esta listo? |
[
{
"date": "2006-06-18",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estimado Maestro:\n\nNo quisiera molestar\ny tampoco ser quejoso\npero la ventana DOS\nla verdad queda espantoso.\n\nHabria alguna manera\npara que esta no aparezca\no esperamos el nuevo build\npara que la cosa se esclarezca.\n\n... | Antonio: Harbour y ventana DOS al iniciar en Win 98 |
[
{
"date": "2006-06-19",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ruben,\n\nCrea el siguiente PRG y enlázalo en tu aplicación, y quita la librería GTWIN.lib:\n\n/* gtnul.prg */\nANNOUNCE HB_GTSYS\nREQUEST HB_GT_NUL",
"time": "05:32",
"topic": "Antonio: Harbour y ventana DOS al iniciar e... | Antonio: Harbour y ventana DOS al iniciar en Win 98 |
[
{
"date": "2006-06-19",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias Maestro:\n\nquedo funcionado.\n\nSaludos\n\nRuben Fernandez",
"time": "16:25",
"topic": "Antonio: Harbour y ventana DOS al iniciar en Win 98",
"username": "RuFer"
}
] | Antonio: Harbour y ventana DOS al iniciar en Win 98 |
[
{
"date": "2016-02-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Similar to xBrowse we can use arrays ::aEditListBound and ::aEditListTxt to split visual text and the bounded text for the variable!?",
"time": "08:18",
"topic": "Antonio: Idea for combobox",
"username": "byte-one"
... | Antonio: Idea for combobox |
[
{
"date": "2016-02-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\nI see what you mean, but we should design it carefully not to break backwards compatibility",
"time": "09:52",
"topic": "Antonio: Idea for combobox",
"username": "Antonio Linares"
}
] | Antonio: Idea for combobox |
[
{
"date": "2016-02-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"byte-one\":31wws7x5]Similar to xBrowse we can use arrays ::aEditListBound and ::aEditListTxt to split visual text and the bounded text for the variable!?[/quote:31wws7x5]\nPlease try DbCombo.",
"time": "19:00",
... | Antonio: Idea for combobox |
[
{
"date": "2016-02-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "No db is really needed. (When the class was first made it used dbf only).\nNow we can use it with arrays or recordsets too",
"time": "11:54",
"topic": "Antonio: Idea for combobox",
"username": "nageswaragunupudi"
}
] | Antonio: Idea for combobox |
[
{
"date": "2016-02-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Is this class to use only with arrays and without any DB?",
"time": "11:45",
"topic": "Antonio: Idea for combobox",
"username": "byte-one"
}
] | Antonio: Idea for combobox |
[
{
"date": "2016-02-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Please try this\n[code=fw:2rbuwmby]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><br /><span style=\"color: #00... | Antonio: Idea for combobox |
[
{
"date": "2016-02-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Oh, thanks! Perfect for me!",
"time": "16:20",
"topic": "Antonio: Idea for combobox",
"username": "byte-one"
}
] | Antonio: Idea for combobox |
[
{
"date": "2016-02-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"byte-one\":jzgz7hh8]Oh, thanks! Perfect for me![/quote:jzgz7hh8]\nI forgot to give one caution.\nIf the first column is numeric, the values have to be in serial from 1 to n. If not we may get wrong results. Works perfectl... | Antonio: Idea for combobox |
[
{
"date": "2013-11-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, i found, that in this function pDip should released with [code=fw:gplvwram]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">hb_xfree<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;... | Antonio: Memory Leak in DipWrite |
[
{
"date": "2013-11-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\nYou are totally right. Many thanks! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nIncluded for next FWH build.",
"time": "19:03",
"topic": "Antonio: Memo... | Antonio: Memory Leak in DipWrite |
[
{
"date": "2013-11-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, all is ok now. Maybe you should check all hb_xalloc() and hb_xgrab() for corresponding hb_xfree(). Specially in C-functions, which returns only a pointer and this pointer are to released in the calling function.",
"ti... | Antonio: Memory Leak in DipWrite |
[
{
"date": "2013-11-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\nI constantly do it, though sometimes we may miss a case, like this one. thanks,",
"time": "12:10",
"topic": "Antonio: Memory Leak in DipWrite",
"username": "Antonio Linares"
}
] | Antonio: Memory Leak in DipWrite |
[
{
"date": "2007-07-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "My first problem is when I start the program allways appears a DOS window how can I hide it?\n\nThanks,\n RCaridade",
"time": "12:32",
"topic": "Antonio: Migration from FWH 2.5 to 7.5",
"username": "rcaridade"
}
] | Antonio: Migration from FWH 2.5 to 7.5 |
[
{
"date": "2007-07-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rui,\n\nYou have to use GTGUI.lib instead of GTWIN.lib",
"time": "13:57",
"topic": "Antonio: Migration from FWH 2.5 to 7.5",
"username": "Antonio Linares"
}
] | Antonio: Migration from FWH 2.5 to 7.5 |
[
{
"date": "2007-07-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks.",
"time": "14:28",
"topic": "Antonio: Migration from FWH 2.5 to 7.5",
"username": "rcaridade"
}
] | Antonio: Migration from FWH 2.5 to 7.5 |
[
{
"date": "2016-04-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\nGetCPUSpeed() and nExtMem() gives wrong results on 64Bit!",
"time": "15:01",
"topic": "Antonio: Minor Bugs on 64Bit",
"username": "byte-one"
}
] | Antonio: Minor Bugs on 64Bit |
[
{
"date": "2016-04-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\nCould you check:\n\n\"HKEY_LOCAL_MACHINE\\HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0\\~MHz\"\n\nand compare it with 32 bits GetCPUSpeed() value ?",
"time": "16:29",
"topic": "Antonio: Minor Bugs on 64Bi... | Antonio: Minor Bugs on 64Bit |
[
{
"date": "2016-04-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This should work fine on 64 bits:\n\n[code=fw:1kfbp3bd]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">HB_FUNC</span><span style=\"color: #000000;\">(</span> NEXTMEM <span style=... | Antonio: Minor Bugs on 64Bit |
[
{
"date": "2016-04-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, in 16.03 GetCPUSpeed() is coded to \"999\". No support for 64 in source!\n[quote:129y2j7b]\"HKEY_LOCAL_MACHINE\\HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0\\~MHz\"\nand compare it with 32 bits GetCPUSpeed() value ?... | Antonio: Minor Bugs on 64Bit |
[
{
"date": "2016-04-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, GetCPUSpeed() gives also in 32Bit different values. From 183Mhz over 2017Mhz(is right) to 3719Mhz. \nIn 64Bit gives always 999Mhz. I see on source, the function is not ready!\nnExtmem gives in 32Bit the correct value, in ... | Antonio: Minor Bugs on 64Bit |
[
{
"date": "2016-04-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, any news on that problems?",
"time": "09:16",
"topic": "Antonio: Minor Bugs on 64Bit",
"username": "byte-one"
}
] | Antonio: Minor Bugs on 64Bit |
[
{
"date": "2016-04-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\nI have been busy working to complete the Windows 10 Toasts support.\n\nHow may I help you ? Is the info from the registry ok ?",
"time": "12:23",
"topic": "Antonio: Minor Bugs on 64Bit",
"username": "Antoni... | Antonio: Minor Bugs on 64Bit |
[
{
"date": "2016-04-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, in case of the memory-size i compile your code with Borland 7.1 and the result is ok! With the libs from FWH the result is wrong and negative. Maybe you are not compile the mem.c in the right way??\nThe GetCPUSpeed() give... | Antonio: Minor Bugs on 64Bit |
[
{
"date": "2016-04-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\n* Fix: function nExtMem() is returning now the same value in both\n 32 and 64 bits. It keeps returning zero for xHb.com\n\nIncluded in FWH 16.04",
"time": "10:55",
"topic": "Antonio: Minor Bugs on 64Bit",
... | Antonio: Minor Bugs on 64Bit |
[
{
"date": "2016-04-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\n* Fix: function GetCpuSpeed() now reads from the registry and returns\n the same value in 32 and 64 bits.\n\nIncluded in FWH 16.04",
"time": "11:26",
"topic": "Antonio: Minor Bugs on 64Bit",
"username": "A... | Antonio: Minor Bugs on 64Bit |
[
{
"date": "2016-04-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, thanks! Super, as all time!",
"time": "12:43",
"topic": "Antonio: Minor Bugs on 64Bit",
"username": "byte-one"
}
] | Antonio: Minor Bugs on 64Bit |
[
{
"date": "2015-01-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I changed the marked line with NEW as when i change the position of the dialog with ON INIT oDlg:move(....) the horizontally position of the popup-menu follows not the button!\n\n[code=fw:21cr6rpz]<div class=\"fw\" id=\"{CB}\" sty... | Antonio: Modifying CLASS TRBtn (Bug?) |
[
{
"date": "2015-01-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I'm not clear, are you saying that the code you posted is the fix for the problem? If so, which PRG, and method is it in?\n\nJames",
"time": "20:23",
"topic": "Antonio: Modifying CLASS TRBtn (Bug?)",
"username": "James... | Antonio: Modifying CLASS TRBtn (Bug?) |
[
{
"date": "2015-01-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"James Bott\":3ent5k1z]I'm not clear, are you saying that the code you posted is the fix for the problem? If so, which PRG, and method is it in?\n\nJames[/quote:3ent5k1z]\nYes. That is what he says.\nThis code is from Meth... | Antonio: Modifying CLASS TRBtn (Bug?) |
[
{
"date": "2015-01-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\nCould you please provide an example to test here ? thanks",
"time": "07:06",
"topic": "Antonio: Modifying CLASS TRBtn (Bug?)",
"username": "Antonio Linares"
}
] | Antonio: Modifying CLASS TRBtn (Bug?) |
[
{
"date": "2015-01-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, if i move the window with ON INIT oWnd:move() also the data oWnd:nLeft are changed! And the comes the [code=fw:2m3uvrx3]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">::<span style=\"color: #000000;\">nLe... | Antonio: Modifying CLASS TRBtn (Bug?) |
[
{
"date": "2015-01-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\nI think Antonio was looking for a small self-contained example program that shows the problem that he can use to test your fix for the problem.",
"time": "15:59",
"topic": "Antonio: Modifying CLASS TRBtn (Bug?)... | Antonio: Modifying CLASS TRBtn (Bug?) |
[
{
"date": "2015-01-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, James, here are a small example!\n[code=fw:39r6cfas]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">function</span> trb_test<span style=\"color: #000000;\">(</span><span... | Antonio: Modifying CLASS TRBtn (Bug?) |
[
{
"date": "2015-01-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, please try to open the popup-menu in the above example and you can see, that the popup-menu are left from the button!",
"time": "09:40",
"topic": "Antonio: Modifying CLASS TRBtn (Bug?)",
"username": "byte-one"... | Antonio: Modifying CLASS TRBtn (Bug?) |
[
{
"date": "2015-01-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\nyes, I confirm the problem.\n\nEMG",
"time": "10:12",
"topic": "Antonio: Modifying CLASS TRBtn (Bug?)",
"username": "Enrico Maria Giordano"
}
] | Antonio: Modifying CLASS TRBtn (Bug?) |
[
{
"date": "2015-01-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks for the help. We are incorporating the fix for the next release.",
"time": "13:40",
"topic": "Antonio: Modifying CLASS TRBtn (Bug?)",
"username": "nageswaragunupudi"
}
] | Antonio: Modifying CLASS TRBtn (Bug?) |
[
{
"date": "2015-02-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther, Enrico,\n\nTo me this seems the right fix. I appreciate your feedback:\n\n[code=fw:3g6wf4cx]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <span style=\"color: #00C800;\">case</span> ::<... | Antonio: Modifying CLASS TRBtn (Bug?) |
[
{
"date": "2015-02-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "That's what Mr Günther proposed.",
"time": "18:20",
"topic": "Antonio: Modifying CLASS TRBtn (Bug?)",
"username": "nageswaragunupudi"
}
] | Antonio: Modifying CLASS TRBtn (Bug?) |
[
{
"date": "2015-02-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "::CoorsUpdate() was missing\n\nWithout it, it fails",
"time": "19:15",
"topic": "Antonio: Modifying CLASS TRBtn (Bug?)",
"username": "Antonio Linares"
}
] | Antonio: Modifying CLASS TRBtn (Bug?) |
[
{
"date": "2009-09-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio,\n\nDefinitivamente MouseWheel funciona errático en la clase TXBrowse FWH-908. En algunos casos sí, en otros nó. <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( --> \n\nCreo que ... | Antonio: MouseWheel funciona errático en TXBrowse FWH-908 |
[
{
"date": "2009-09-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Carlos,\n\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?p=86456#p86456\">viewtopic.php?p=86456#p86456</a><!-- l -->",
"time": "00:06",
"topic": "Antonio: MouseWheel funciona... | Antonio: MouseWheel funciona errático en TXBrowse FWH-908 |
[
{
"date": "2009-09-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio,\n\nCómo compilo Clt2Scr.c para generar el OBJ ?\n\nHago lo siguiente: \n[code=fw:aipu8cl7]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">c:\\Xharbour<span style=\"color: #000000;\">-908</span>\\bin\\har... | Antonio: MouseWheel funciona errático en TXBrowse FWH-908 |
[
{
"date": "2009-09-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ya pude compilar \"clt2scr.c\" pero ahora obtengo estos warnings:\n\n[quote:19aor77v]\nBorland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland\nclt2scr.c:\nWarning W8065 clt2scr.c 30: Call to function 'hb_parvnl' with no pro... | Antonio: MouseWheel funciona errático en TXBrowse FWH-908 |
[
{
"date": "2009-09-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Saludos Carlos.\n\nno lo he probado pero intenta añadiendo esto al principio\n\n[code=fw:1jf3dvib]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">#ifdef __XHARBOUR__<br />long hb_parvnl<span style=\"color: #000000... | Antonio: MouseWheel funciona errático en TXBrowse FWH-908 |
[
{
"date": "2009-09-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Daniel,\n\nFuncionó perfecto. Muchas gracias. <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\nSaludos,\n\nCarlos Gallego",
"time": "15:30",
"topic": "Antonio: M... | Antonio: MouseWheel funciona errático en TXBrowse FWH-908 |
[
{
"date": "2016-03-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, can you please make new Harbour-builds. There are some things for Austrian language added and a bug in zip removed.",
"time": "16:18",
"topic": "Antonio: New Harbour-build",
"username": "byte-one"
}
] | Antonio: New Harbour-build |
[
{
"date": "2016-03-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote:1ovdvu6v]bug in zip removed.[/quote:1ovdvu6v]\nThat is a good news",
"time": "17:36",
"topic": "Antonio: New Harbour-build",
"username": "nageswaragunupudi"
}
] | Antonio: New Harbour-build |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.