messages
listlengths 1
1
| topic
stringlengths 2
60
|
---|---|
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I just recompiled my program with FWH 10.3. Date fields are now displaying the date and then a time, ie. 03/30/2010 00:00:00:00\n\nThis is causing problems with the column sizing. \n\nIs there a setting or fix ?",
"time": "00:20",
"topic": "10.3 xBrowse date display error",
"username": "TimStone"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Immediate workaround is\noCol:cEditPicture := '@D'\n\nThe behavior is :\nIn case of Harbour, if the ValType() is 'T', the value is shown along with time and if the ValType() is 'D', the value is shown as Date without timepart, if oCol:cEditPicture is undefined.\n\nIn case of xHarbour, if HB_IsDateTime( <value> ) is true, the value is shown with time part and otherwise date is shown without timepart, if oCol:cEditPicture is undefined.\n\nAll xbrowse samples in the samples folder, where the fieldtype is 'D', xbrowse is displaying the values as pure dates only without the timepart.\n\nExample:\n[code=fw:2cspn1l8]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">'fivewin.ch'</span><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">'xbrowse.ch'</span><br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> SET DATE ITALIAN<br /> SET CENTURY <span style=\"color: #0000ff;\">ON</span><br /> SET TIME FORMAT <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #ff0000;\">'HH:MM:SS'</span><br /><br /> xbrowser <span style=\"color: #000000;\">{</span><span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">{</span>^ <span style=\"color: #000000;\">2009</span>/<span style=\"color: #000000;\">10</span>/<span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">}</span>, <span style=\"color: #000000;\">{</span>^ <span style=\"color: #000000;\">2009</span>/<span style=\"color: #000000;\">10</span>/<span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">15</span>:<span style=\"color: #000000;\">15</span>:<span style=\"color: #000000;\">15</span><span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">}</span><span style=\"color: #000000;\">}</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> </div>[/code:2cspn1l8]\nDisplay:\n[url=http://img62.imageshack.us/my.php?image=75256106.jpg:2cspn1l8][img:2cspn1l8]http://img62.imageshack.us/img62/2946/75256106.jpg[/img:2cspn1l8][/url:2cspn1l8]\n\nWill you please inform Harbour or xHarbour version and what data source you are browsing? Is it possible to post a small self contained sample so that a proper fix can be found.",
"time": "07:24",
"topic": "10.3 xBrowse date display error",
"username": "nageswaragunupudi"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "FWH 10.3\nxHarbour Professional November 2009\n\nThe code:\n\tadd to oLbxo header \"Due Date\" data oWrkOrd:duedat ALIGN LEFT SIZE 100\n\nThe field is a date field drawn from the database.\n\nThis is a new behavior starting with 10.3. Prior to this, xBrowse displayed the date with no problem, so there was apparently a change made on this release.",
"time": "14:33",
"topic": "10.3 xBrowse date display error",
"username": "TimStone"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rao,\n\nI have never seen this caret syntax.\n\n{^ 2009/10/10}\n\nDoes this automatically convert the value to a date format?\n\nJames",
"time": "14:56",
"topic": "10.3 xBrowse date display error",
"username": "James Bott"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"James Bott\":3vi3wwgx]Rao,\n\nI have never seen this caret syntax.\n\n{^ 2009/10/10}\n\nDoes this automatically convert the value to a date format?\n\nJames[/quote:3vi3wwgx]\nYes. This is the new way of writing Date / DateTime constants. Has been there for quite sometime.\n\nNow we can assign date constants to static variables easily.\n\nstatic tDate := {^ 2000/10/09 15:15:15 }. \nThis was not possible earlier.\nWorks both in Harbour and xHarbour.",
"time": "15:02",
"topic": "10.3 xBrowse date display error",
"username": "nageswaragunupudi"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rao,\n\nNow we can assign date constants to static variables easily.\n\nstatic tDate := {^ 2000/10/09 15:15:15 }\n\nHmm, only for statics, not locals?\n\nWhat does valtype( tDate ) return?\n\nJames",
"time": "15:41",
"topic": "10.3 xBrowse date display error",
"username": "James Bott"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote:28ifsv6r]Hmm, only for statics, not locals?[/quote:28ifsv6r]\nWe can use it anywhere. \nEarlier there was no way of initializing static variables with datevalues. Now we can. Thats what I was trying to emphasize.\n\nIn Harbour, ValType of DateTime variables is 'T' and pure date ( without time-part ) is 'D'.\n\nIn xHarbour ValType of both DateTime and Date varables is 'D'. We can find if a variable has time-part or not by HB_IsDateTime( <dVar> ) --> .t. or .f.",
"time": "15:59",
"topic": "10.3 xBrowse date display error",
"username": "nageswaragunupudi"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr. Tim\n\nThe xHarbour function HB_isDateTime( <var> ) is expected to return .f. when the date variable does not have timepart and .t. when the variable has timepart also.\n\nSeveral versions back, XBrowse used HB_IsDateTime() to ascertain whether the variable has time-part or not. But in some versions of xHarbour, there was a bug in this function and HB_isDateTime() was returning .t. for all dates, even without time part. At that time XBrowse had a temporary workaround to check if the variable has time-part or not. Now that the bug is resolved in the recent versions of xHarbour, XBrowse again reverted to the old code ( in version 10.3 ) and is now depending on HB_IsDateTime().\n\nWill you please help by checking what is the result of ? HB_IsDateTime( Date() ) in your version of xHarbour?\n\nThis will help reinstating the time-part check.",
"time": "16:43",
"topic": "10.3 xBrowse date display error",
"username": "nageswaragunupudi"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It may not be out of place to mention a few hints to take the best advantage of XBrowse's built-in capabilities.\n\nIf we use the syntax, XBROWSE .... COLUMNS 'col1', 'col2' ... ALIAS <calias> or OBJECT <dataobj>, XBrowse extracts the exact information about the datatype, datalen and datadec from the DbStruct() or oData:aStruct and appropriately decides the correct format, alignment and column width for display. In addition, XBrowse constructs the bOnPostEdit blocks, with shares and locking appropriately/\n\nIf we use FIELDS clause or ADD COLUMN syntax, we are preventing XBrowse to learn the information and we naturally take more responsibility to define picture clause, width, bOnPostEdit block, etc. \n\nUsing COLUMNS clause not only compacts the code and easier to maintain but also gets a superior performance.",
"time": "16:52",
"topic": "10.3 xBrowse date display error",
"username": "nageswaragunupudi"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rao,\n\n[quote:e2of2cf0]If we use the syntax, XBROWSE .... COLUMNS 'col1', 'col2' ... ALIAS <calias> or OBJECT <dataobj>,[/quote:e2of2cf0]\n\nCan you explain in more detail about using the OBJECT clause, perhaps by providing an example. I am particularly wondering about how you would specify only some fields--not all fields.\n\nJames",
"time": "18:11",
"topic": "10.3 xBrowse date display error",
"username": "James Bott"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I am adding PICTURE \"@D\" to my xbrowses that use a date. When I first started coding with xbrowse it did not automatically format the fields correctly, so I did it this way. Eventually I may be able to revise the code but there is too much to do at this time. The PICTURE statement is a quick fix for now.",
"time": "19:48",
"topic": "10.3 xBrowse date display error",
"username": "TimStone"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I'm using Nov 2009 which was the last comprehensive build ... non-beta.\n\nWhen running your test function, it returns .t.\n\nTim",
"time": "19:52",
"topic": "10.3 xBrowse date display error",
"username": "TimStone"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"TimStone\":2nqezu8t]\nWhen running your test function, it returns .t.\nTim[/quote:2nqezu8t]\nThis is a bug. It should return .f. .\nHB_IsDateTime( DateTime() ) should return .t.\nand\nHB_IsDateTime( Date() ) should return .f..\nThis was fixed in subsequent versions of xHarbour and XBrowse 10.3 works same way as earlier with recent versions of xHarbour.\n\nIf you include valblank.prg of version 10.2 or earlier from \\fwh\\source\\function\\valblank.prg, you should get the earlier behavior. \n\nProbably it may be desirable for FWH to continue the earlier work around for the above bug in xHarbour, because some programmers could still be using older versions of xHarbour commerical.\n\nAlso, as I said earlier, if the columns are defined with COLUMNS clause of XBROWSE command, the XBrowse examines the DBF structure and knows that the field is Date and not DateTime. When we use ADD COLUMN syntax, we are denying XBrowse the opportunity to ascertain the real data type of the column.",
"time": "20:19",
"topic": "10.3 xBrowse date display error",
"username": "nageswaragunupudi"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"James Bott\":12rmi30l]Rao,\n\n[quote:12rmi30l]If we use the syntax, XBROWSE .... COLUMNS 'col1', 'col2' ... ALIAS <calias> or OBJECT <dataobj>,[/quote:12rmi30l]\n\nCan you explain in more detail about using the OBJECT clause, perhaps by providing an example. I am particularly wondering about how you would specify only some fields--not all fields.\n\nJames[/quote:12rmi30l]\n\n\\fwh\\samples\\testxbr3.prg has two samples of using TDataBase object also. This program has samples for RDD, RecordSets, Trees, Arrays, Hashes, etc.\n\nHere is a simplified sample using TDataBase object. Please compile and test this sample as it is and then try changing TDataBase to TData. I expect the same results:\n[code=fw:12rmi30l]<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: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">'ord.ch'</span><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">'xbrowse.ch'</span><br /><br />REQUEST DBFCDX<br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> oDbf, oDlg, oBrw<br /><br /> SET DATE ITALIAN<br /> SET CENTURY <span style=\"color: #0000ff;\">ON</span><br /> SET TIME FORMAT <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #ff0000;\">'HH:MM:SS'</span><br /><br /> RDDSetDefault<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">'DBFCDX'</span> <span style=\"color: #000000;\">)</span><br /> oDbf := TDataBase<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Open</span><span style=\"color: #000000;\">(</span> , <span style=\"color: #ff0000;\">'CUSTOMER'</span> <span style=\"color: #000000;\">)</span><br /> oDbf:<span style=\"color: #000000;\">SetOrder</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">'FIRST'</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">550</span>,<span style=\"color: #000000;\">400</span> <span style=\"color: #0000ff;\">PIXEL</span><br /> @ <span style=\"color: #000000;\">10</span>,<span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">XBROWSE</span> oBrw <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">-10</span>,<span style=\"color: #000000;\">-10</span> <span style=\"color: #0000ff;\">PIXEL</span> <span style=\"color: #0000ff;\">OF</span> oDlg ;<br /> COLUMNS <span style=\"color: #ff0000;\">'First'</span>, <span style=\"color: #ff0000;\">'Married'</span>, <span style=\"color: #ff0000;\">'HireDate'</span>, <span style=\"color: #ff0000;\">'Salary'</span>, <span style=\"color: #ff0000;\">'Age'</span> ;<br /> OBJECT oDbf ;<br /> AUTOSORT CELL LINES NOBORDER<br /><br /> oBrw:<span style=\"color: #000000;\">Married</span>:<span style=\"color: #000000;\">SetCheck</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> oBrw:<span style=\"color: #000000;\">nStretchCol</span> := <span style=\"color: #000000;\">1</span><br /> oBrw:<span style=\"color: #000000;\">CreateFromCode</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">CENTERED</span><br /> oDbf:<span style=\"color: #000000;\">Close</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> </div>[/code:12rmi30l]\n\nI think TData class has a DATA aStruct, which is similar to DbStruct. If so, xBrowse ascertains the datatypes from oDbf:aStruct and if not, makes best guess by examining the ValType of the expressions.\n\nIf Mr. Tim is using TData class, he may try this sample with TData class. This example shows HireDate as Date but not as DateTime, because the fieldtype is 'D' and not 'T' or '@'.\n\n[url=http://img180.imageshack.us/my.php?image=xbdt.jpg:12rmi30l][img:12rmi30l]http://img180.imageshack.us/img180/9994/xbdt.jpg[/img:12rmi30l][/url:12rmi30l]",
"time": "20:27",
"topic": "10.3 xBrowse date display error",
"username": "nageswaragunupudi"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2010-04-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr TimStone\n\nIt is desirable to modify FWH library to retain compatibility with the xHb version (Nov 2009) than your modifying your source code.\n\nCan you help by testing this small sample with your version of xHb ?\n[code=fw:15bw2fq5]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">'fivewin.ch'</span><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">'xbrowse.ch'</span><br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> d<br /><br /> d := Date<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> ? HasTimePart<span style=\"color: #000000;\">(</span> d <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// should return .f.</span><br /> d := DateTime<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> ? HasTimePart<span style=\"color: #000000;\">(</span> d <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// should return .t.</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><br /><span style=\"color: #00C800;\">function</span> HasTimePart<span style=\"color: #000000;\">(</span> d <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">(</span> d - Int<span style=\"color: #000000;\">(</span> d <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> > <span style=\"color: #000000;\">0</span><br /> </div>[/code:15bw2fq5]",
"time": "16:09",
"topic": "10.3 xBrowse date display error",
"username": "nageswaragunupudi"
}
] | 10.3 xBrowse date display error |
[
{
"date": "2018-02-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi, I want the installer of the version 10.6 to verify what changes I made through all these years.\nIm planning to update to the latest version.\n\nPS.: I have the rights of 10.6 version acquired with the brazilian partner Gilmer.",
"time": "14:09",
"topic": "10.6 installer",
"username": "sambomb"
}
] | 10.6 installer |
[
{
"date": "2018-02-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Samir,\n\nAlready sent to your email",
"time": "17:11",
"topic": "10.6 installer",
"username": "Antonio Linares"
}
] | 10.6 installer |
[
{
"date": "2010-08-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I got this error with buildh getapps\n[code=fw:1m6zc7d2]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">Compiling...<br />Borland C++ <span style=\"color: #000000;\">5.82</span> <span style=\"color: #00C800;\">for</span> Win32 Copyright <span style=\"color: #000000;\">(</span>c<span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">1993</span>, <span style=\"color: #000000;\">2005</span> Borland<br />getapps.c:<br /><span style=\"color: #000000;\">Warning</span> W8075 getapps.prg <span style=\"color: #000000;\">45</span>: <span style=\"color: #000000;\">Suspicious</span> pointer conversion in <span style=\"color: #00C800;\">function</span> HB_FUN_GETWINDOWMODULEFILENAME<br />Turbo Incremental Link <span style=\"color: #000000;\">5.69</span> Copyright <span style=\"color: #000000;\">(</span>c<span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">1997</span><span style=\"color: #000000;\">-2005</span> Borland<br />* Application successfully built *<br /> </div>[/code:1m6zc7d2]\nWith buildx getapps\n[code=fw:1m6zc7d2]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">Generating C source output <span style=\"color: #0000ff;\">to</span> <span style=\"color: #ff0000;\">'getapps.c'</span>...<br />Done.<br />Borland C++ <span style=\"color: #000000;\">5.82</span> <span style=\"color: #00C800;\">for</span> Win32 Copyright <span style=\"color: #000000;\">(</span>c<span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">1993</span>, <span style=\"color: #000000;\">2005</span> Borland<br />getapps.c:<br /><span style=\"color: #000000;\">Warning</span> W8075 getapps.prg <span style=\"color: #000000;\">45</span>: <span style=\"color: #000000;\">Suspicious</span> pointer conversion in <span style=\"color: #00C800;\">function</span> HB_FUN_GETWINDOWMODULEFILENAME<br />Turbo Incremental Link <span style=\"color: #000000;\">5.69</span> Copyright <span style=\"color: #000000;\">(</span>c<span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">1997</span><span style=\"color: #000000;\">-2005</span> Borland<br />Error: <span style=\"color: #000000;\">Unresolved</span> external <span style=\"color: #ff0000;\">'GetModuleFileNameExA'</span> referenced <span style=\"color: #0000ff;\">from</span> C:\\FWH\\SAMPLES\\GETAPPS.OBJ<br />* Linking errors *<br /> </div>[/code:1m6zc7d2]\nUsing harbour and xharbour downloaded with fwh10.7.\nPlease help",
"time": "11:48",
"topic": "10.7 GetApps.Prg Linking errors",
"username": "nageswaragunupudi"
}
] | 10.7 GetApps.Prg Linking errors |
[
{
"date": "2010-08-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Rao,\n\nPlease change this line in GetApps.prg:\n\n DWORD processId = 0;\n\nAlso, you have to link in samples\\buildx.bat:\n\necho %bcdir%\\lib\\psdk\\psapi.lib + >> b32.bc",
"time": "14:06",
"topic": "10.7 GetApps.Prg Linking errors",
"username": "Antonio Linares"
}
] | 10.7 GetApps.Prg Linking errors |
[
{
"date": "2019-12-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "hi,\n\nthx for Answer.\n\n[quote:27iyuzf4]When you have downloaded your Fivewin software version, you have also found the download links for the latest versions of Harbour built for the Borland and MSVC compilers.[/quote:27iyuzf4]\ni have got that Link and Download FiveWin. \nafter unpack i saw no harbour, BCC or MinGW and no IDE to start for a Newbie <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( -->\n\ni have to say when start with harbour i want to \"jump\" to 64 bit so i \"oversee\" those 32 Bit, sorry\ni ask Antonio and he gave me the Link to download BCC7.3064.\n\ni begin to build Sample but some Sample fail and i do not understand why (see \"poker\")\nwhile FiveWin was \"to high\" i start with lower Level\n\ni try HMG Contribution which have a IDE where i can use F9, F8 and F5 and Debugger.\nafter a while i got used \"where\" to \"search\" and understand Error Message so i start to write own harbour Apps.\n\n---\n\nnext Level was MiniGUI Extendet Version which use OOP Code.\nit does have a IDE and use BCC but i can't get Debugger running ... same like FivEdit <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( --> \n\nbtw. i only need F9, F8, F5 and Debugger from IDE. \ni still use my DOS ETP Editor with vDOS under 64 Bit which i bought 1985 when start with Cl*pper S87\n\nso my Question are most about Environment where i have Problem to work with FiveWin.\n\n---\n\ni got Dshow Sample running after install \\MSVC LIBs.\nnow next Step : i like to enhance it e.g. choise which CAM to use\n\nbut here again my Question is : how get Debugger working <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \n\n---\n\nRequest : can Sample \"sort\" in Sub-Directory which include \"the BAT\" which is need for those Type of Sample",
"time": "06:52",
"topic": "100 Days FiveWin",
"username": "Jimmy"
}
] | 100 Days FiveWin |
[
{
"date": "2019-12-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "hi,\n\nsince 100 Days i have FiveWin but it is hard to start for a FiveWin Newbie.\nit is not \"out-of-box\" working ... you need harbour (with MSVC LIB) and BCC\n\ni have download harbour but it does NOT include \\MSVC so i guess i can't use any VC Sample. <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( --> \nwhere do i get those LIB for harbour 3x (my files was from harbour v1.x) <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \n\n---\n\nthere are 22 x Build*.BAT. \nDOC say use BUILD.BAT and it \"seems\" to work with most Sample but other give Error.\n\nError are like : missing FiveWin.ch <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: --> \n\ni guess there are some Environment Variable missing in some BUILD*.BAT.\nso i like to ask again which Environment Variable FiveWin use <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \n\n[quote:301c1k81]\nbcdir=c:\\bcc7\nFWDIR=c:\\fwh\nfwh=c:\\fwh\nGT=gtgui\nHBDIR=c:\\harbour\nhdir=c:\\harbour\nhdirl=c:\\harbour\\lib\n[/quote:301c1k81]\n\nQuestion : as i have also Xbase++ install i have\n[quote:301c1k81]\nINCLUDE=C:\\ALASKA\\XBTW32\\INCLUDE;C:\\ALASKA\\XPPW32\\INCLUDE;C:\\exp20\\include;\nLIB=C:\\ALASKA\\XPPW32\\LIB;C:\\ALASKA\\XBTW32\\LIB;C:\\exp20\\lib;\n[/quote:301c1k81]\ndoes it make Problem with FiveWin <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \n\n---\n\nIDE : i have try FivEdit ... it start \"missing *.FLV\" <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: --> \n\nnext it show Form with with \"Hello\" <!-- s:o --><img src=\"{SMILIES_PATH}/icon_surprised.gif\" alt=\":o\" title=\"Surprised\" /><!-- s:o --> \n\nFiveWin Sample have no *.PRJ file which can be assign to start IDE.\n\nPreference ( Crtl-F2 ) : in Tab \"FiveWin\", \"Harbour\" and \"C Compiler\" i press \"Default Libs\" and Save.\n\nQuestion : there is a Tab \"Project\" ... and a lot of Space. do i need it to run FW \\Sample <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \n\n---\n\nafter 100 Days i'm a bit frustrated while i'm not able to work in FiveWin Environment.\ni have also HMG and Extendet Version and was able to wrote some harbour Apps with it.\n\nmy 1st work was to get HMG Debugger work while this is the Tool i use when not writing Code.\nbut how to activate FW Debugger with FW Sample <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \n\ni got Error Message like \"FWDBG.DLL not found\" <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: --> (it is in C:\\FWH\\FWDBG.DLL)\n\n---\n\nplease help me to fix my FiveWin Environment.\nneed LIB from c:\\harbour\\lib\\win\\msvc\\\nneed to get FW Debugger work (no IDE need)\n\nplease help a Newbie to get into FiveWin world, Thx",
"time": "02:17",
"topic": "100 Days FiveWin",
"username": "Jimmy"
}
] | 100 Days FiveWin |
[
{
"date": "2019-12-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Jimmy\nWhen you have downloaded your Fivewin software version, you have also found the download links for the latest versions of Harbour built for the Borland and MSVC compilers.\n[img:1i3gv2h8]https://i.postimg.cc/ZnJYTd5s/Fivetech.png[/img:1i3gv2h8]\n\nAlso, you have previous versions of Harbour in\n<!-- m --><a class=\"postlink\" href=\"https://bitbucket.org/fivetech/harbour-xharbour-builds/downloads/\">https://bitbucket.org/fivetech/harbour- ... downloads/</a><!-- m -->\n\nOther versions of (x) Harbour and Compilers can be found at:\n<!-- m --><a class=\"postlink\" href=\"http://whosaway.com/\">http://whosaway.com/</a><!-- m -->\n\nYou need to install MSVC from the official Microsoft website\n\n[quote:1i3gv2h8]\nIDE : i have try FivEdit ... it start \"missing *.FLV\" <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: -->\n\nnext it show Form with with \"Hello\" <!-- s:o --><img src=\"{SMILIES_PATH}/icon_surprised.gif\" alt=\":o\" title=\"Surprised\" /><!-- s:o -->\n\nFiveWin Sample have no *.PRJ file which can be assign to start IDE.\n\nPreference ( Crtl-F2 ) : in Tab \"FiveWin\", \"Harbour\" and \"C Compiler\" i press \"Default Libs\" and Save.\n\nQuestion : there is a Tab \"Project\" ... and a lot of Space. do i need it to run FW \\Sample <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->\n[/quote:1i3gv2h8]\n\nFor use FivEdit ( I recommend it ), please read\n<!-- m --><a class=\"postlink\" href=\"http://wiki.fivetechsoft.com/doku.php?id=fivedit_instalation\">http://wiki.fivetechsoft.com/doku.php?i ... nstalation</a><!-- m -->\n\nAfter, Read this post about FivEdit\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=3&t=29991&start=495#p227745\">viewtopic.php?f=3&t=29991&start=495#p227745</a><!-- l -->\n\nIf you enter the Slack, you will have a lot of information about the Editor, including videos that can help you install it, and if that is not enough, you can contact me, that with pleasure, I can connect by Anydesk, for example and configure your FivEdit in 5 minutes.\n\nBut, in summary, if you install your C compilers (Borland, MSVC, ...) correctly, along with the versions of Harbour you need, and edit the BUILD * .BAT files that appear in the Fivewin distribution in case you have to Modify the installation paths, you should not have any problem to use.\n\nAnything you need, do not hesitate to contact.",
"time": "10:59",
"topic": "100 Days FiveWin",
"username": "cnavarro"
}
] | 100 Days FiveWin |
[
{
"date": "2019-12-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Many of us use the latest Community version of Visual Studio. It is free. \nAlso use the latest Harbour for MSVC from the FiveTech downloads page.\n\nWith those two installed, I use a GO32.bat:\n\n[code=fw:2b0p9oje]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />@set oldpath=%path%<br />@set oldinclude=%include%<br />@set oldlib=%lib%<br />@set oldlibpath=%libpath%<br /><br /><span style=\"color: #00C800;\">if</span> exist <span style=\"color: #ff0000;\">\"%ProgramFiles(x86)%<span style=\"color: #000000;\">\\M</span>icrosoft Visual Studio<span style=\"color: #000000;\">\\2</span>019<span style=\"color: #000000;\">\\C</span>ommunity<span style=\"color: #000000;\">\\V</span>C<span style=\"color: #000000;\">\\A</span>uxiliary<span style=\"color: #000000;\">\\B</span>uild<span style=\"color: #000000;\">\\v</span>cvarsall.bat\"</span> call <span style=\"color: #ff0000;\">\"%ProgramFiles(x86)%<span style=\"color: #000000;\">\\M</span>icrosoft Visual Studio<span style=\"color: #000000;\">\\2</span>019<span style=\"color: #000000;\">\\C</span>ommunity<span style=\"color: #000000;\">\\V</span>C<span style=\"color: #000000;\">\\A</span>uxiliary<span style=\"color: #000000;\">\\B</span>uild<span style=\"color: #000000;\">\\v</span>cvarsall.bat\"</span> x86<br />cd c:\\projects\\mls11\\source\\<br />c:\\<span style=\"color: #ff0000;\">\"Program Files (x86)<span style=\"color: #000000;\">\\M</span>icrosoft Visual Studio\"</span>\\<span style=\"color: #000000;\">2019</span>\\Community\\VC\\Tools\\MSVC\\<span style=\"color: #000000;\">14.23</span><span style=\"color: #000000;\">.28105</span>\\bin\\HostX86\\x86\\nmake -fMLS32.mak<br /><br />@set path=%oldpath%<br />@set include=%oldinclude%<br />@set lib=%oldlib%<br />@set libpath=%oldlibpath%<br />@set oldpath=<span style=\"color: #ff0000;\">\"\"</span><br />@set oldinclude=<span style=\"color: #ff0000;\">\"\"</span><br />@set oldlib=<br />@set oldlibpath=<br /> </div>[/code:2b0p9oje]\n\nMy MLS32.mak ( you can use any name you want ) is:\n\n[code=fw:2b0p9oje]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br />#Microsoft VS2015 make sample, <span style=\"color: #000000;\">(</span>c<span style=\"color: #000000;\">)</span> FiveTech Software <span style=\"color: #000000;\">2014</span><br /><br />HBDIR=c:\\harbour<br />FWDIR=c:\\fwh<br />VCDIR=<span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\P</span>rogram Files (x86)<span style=\"color: #000000;\">\\M</span>icrosoft Visual Studio<span style=\"color: #000000;\">\\2</span>019<span style=\"color: #000000;\">\\C</span>ommunity<span style=\"color: #000000;\">\\V</span>C\"</span><br />SDKDIR=<span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\P</span>rogram Files (x86)<span style=\"color: #000000;\">\\W</span>indows Kits<span style=\"color: #000000;\">\\1</span>0\"</span><br />RCDIR=<span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\P</span>rogram Files (x86)<span style=\"color: #000000;\">\\W</span>indows Kits<span style=\"color: #000000;\">\\1</span>0<span style=\"color: #000000;\">\\b</span>in<span style=\"color: #000000;\">\\x</span>86\"</span><br />PRLIB=<span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\P</span>rojects<span style=\"color: #000000;\">\\L</span>ibs\"</span><br /><br />PRGS = aMLS11.prg \\<br />rem Here you will add in all <span style=\"color: #0000ff;\">of</span> the .prg files you wish <span style=\"color: #0000ff;\">to</span> include in the project.<br /><br />.SUFFIXES: .prg .c .obj .rc .res<br /><br />MLS11.exe : $<span style=\"color: #000000;\">(</span>PRGS:.prg=.obj<span style=\"color: #000000;\">)</span> MLS11.res. rem You only specify the .res file <span style=\"color: #00C800;\">if</span> you use one. The MLS11.exe should be replaced with the <span style=\"color: #0000ff;\">name</span> <span style=\"color: #0000ff;\">of</span> your .exe output file. <br /> echo $<span style=\"color: #000000;\">(</span>PRGS:.prg=.obj<span style=\"color: #000000;\">)</span> > msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>FWDIR<span style=\"color: #000000;\">)</span>\\lib\\FiveH32.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>FWDIR<span style=\"color: #000000;\">)</span>\\lib\\fivehc32.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbrtl.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbvm.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\gtgui.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hblang.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbmacro.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbrdd.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\rddntx.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\rddcdx.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\rddfpt.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbsix.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbdebug.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbcommon.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbpp.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbcpage.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbwin.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbct.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbziparc.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbmzip.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbzlib.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbpcre.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\minizip.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\xhb.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbcplr.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\gtwin.lib >> msvc.tmp<br /><br /> rem Uncomment these two lines <span style=\"color: #0000ff;\">to</span> use Advantage RDD<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\rddads.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\ace32.lib >> msvc.tmp<br /><br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbtipssl.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\ssleay32.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\libeay32.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbtip.lib >> msvc.tmp<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbssl.lib >> msvc.tmp<br /><br /> echo kernel32.lib >> msvc.tmp<br /> echo user32.lib >> msvc.tmp<br /> echo gdi32.lib >> msvc.tmp<br /> echo winspool.lib >> msvc.tmp<br /> echo comctl32.lib >> msvc.tmp<br /> echo comdlg32.lib >> msvc.tmp<br /> echo advapi32.lib >> msvc.tmp<br /> echo shell32.lib >> msvc.tmp<br /> echo ole32.lib >> msvc.tmp<br /> echo oleaut32.lib >> msvc.tmp<br /> echo uuid.lib >> msvc.tmp<br /> echo odbc32.lib >> msvc.tmp<br /> echo odbccp32.lib >> msvc.tmp<br /> echo iphlpapi.lib >> msvc.tmp<br /> echo mpr.lib >> msvc.tmp<br /> echo version.lib >> msvc.tmp<br /> echo wsock32.lib >> msvc.tmp<br /> echo msimg32.lib >> msvc.tmp<br /> echo oledlg.lib >> msvc.tmp<br /> echo psapi.lib >> msvc.tmp<br /> echo gdiplus.lib >> msvc.tmp<br /> echo winmm.lib >> msvc.tmp<br /> echo libcmt.lib >> msvc.tmp<br /> echo libcpmt.lib >> msvc.tmp<br /> echo WS2_32.lib >> msvc.tmp<br /> echo oldnames.lib >> msvc.tmp<br /> echo strmiids.lib >> msvc.tmp<br /><br /> <span style=\"color: #00C800;\">IF</span> EXIST mls11.res echo mls11.res >> msvc.tmp<br /><br /> link @msvc.tmp /nologo /subsystem:<span style=\"color: #000000;\">windows</span> /machine:<span style=\"color: #000000;\">x86</span> /NODEFAULTLIB:<span style=\"color: #000000;\">MSVCRT</span> > link.log<br /> @type link.log<br /> @del $<span style=\"color: #000000;\">(</span>PRGS:.prg=.obj<span style=\"color: #000000;\">)</span><br /> @del $<span style=\"color: #000000;\">(</span>PRGS:.prg=.c<span style=\"color: #000000;\">)</span><br /><br />$<span style=\"color: #000000;\">(</span>PRGS:.prg=.obj<span style=\"color: #000000;\">)</span> : $<span style=\"color: #000000;\">(</span>PRGS:.prg=.c<span style=\"color: #000000;\">)</span><br />$<span style=\"color: #000000;\">(</span>PRGS:.prg=.c<span style=\"color: #000000;\">)</span> : $<span style=\"color: #000000;\">(</span>PRGS<span style=\"color: #000000;\">)</span><br /><br />rem. This is my .rc, but use your own. <br />mls11.res : <span style=\"color: #000000;\">mls11</span>.rc<br /> rc.exe -r -d__FLAT__ mls11.rc<br /><br />.prg.c:<br /> $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\bin\\harbour $< /n /i$<span style=\"color: #000000;\">(</span>FWDIR<span style=\"color: #000000;\">)</span>\\include;$<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\include<br /><br />.c.obj:<br /> <span style=\"color: #000000;\">cl</span>.exe -c -TP -W3 -O2 -I$<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\include -I$<span style=\"color: #000000;\">(</span>SDKDIR<span style=\"color: #000000;\">)</span>\\include -I$<span style=\"color: #000000;\">(</span>VCDIR<span style=\"color: #000000;\">)</span>\\include $<<br /> </div>[/code:2b0p9oje]\n\nMy projects are quite large, but simply executing the GO32.bat results in a working build quickly. I hope this helps. Note the paths may vary according to your setup.",
"time": "17:59",
"topic": "100 Days FiveWin",
"username": "TimStone"
}
] | 100 Days FiveWin |
[
{
"date": "2007-01-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi All,\n\nthe sample below puts the CPU at 100% with FWH 27 (March 06) - xH 0.99.60 - Bcc 5.5\nThe time consuming process is not \"oPrn:Say()\", but \"PAGE/ENDPAGE\"\n\nDoes this happens with latest FWH also ?\nHow can this be solved ?\n\nThanks,\nDavide\n\n[code:1x6800o6]\n#include \"Fivewin.ch\"\n\nfunction Main() // Test 100% CPU\nLocal oPrn,i\n\nPRINT oPrn NAME \"Test\" FROM USER PREVIEW\nif Empty( oPrn:hDC ) ; return nil ; endif\n\n For i := 1 to 5000 \n SysRefresh() // This does not help \n PAGE \n oPrn:Say( 100, 100, Str(i) ) \n ENDPAGE\n Next i \n\nENDPRINT\nReturn nil\n[/code:1x6800o6]",
"time": "02:32",
"topic": "100% cpu when printing",
"username": "Davide"
}
] | 100% cpu when printing |
[
{
"date": "2007-01-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Try using\n\n[code:3utylkn5]HB_IdleSleep( 0.001 )[/code:3utylkn5]\n\ninstead of SysRefresh(). Anyway the process will be slowed down and I don't know if it worth the while.\n\nEMG",
"time": "09:18",
"topic": "100% cpu when printing",
"username": "Enrico Maria Giordano"
}
] | 100% cpu when printing |
[
{
"date": "2007-01-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n[quote:3vke38sd]Try using HB_IdleSleep( 0.001 )[/quote:3vke38sd]\nDoes this means that latest FWH do have the same behaviour ?\n\nHB_IdleSleep() is not applicable because the sample runs for 2 minutes instead of 10 seconds. \n\nThank you,\nDavide",
"time": "09:33",
"topic": "100% cpu when printing",
"username": "Davide"
}
] | 100% cpu when printing |
[
{
"date": "2007-01-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Davide\":213dg0tg]Enrico,\n[quote:213dg0tg]Try using HB_IdleSleep( 0.001 )[/quote:213dg0tg]\nDoes this means that latest FWH do have the same behaviour ?[/quote:213dg0tg]\n\nYes.\n\n[quote=\"Davide\":213dg0tg]HB_IdleSleep() is not applicable because the sample runs for 2 minutes instead of 10 seconds.[/quote:213dg0tg]\n\nTry Sleep( 1 ).\n\n[code:213dg0tg]#pragma BEGINDUMP\n\n#include \"windows.h\"\n#include \"hbapi.h\"\n\n\nHB_FUNC( SLEEP )\n{\n Sleep( hb_parnl( 1 ) );\n}\n\n#pragma ENDDUMP[/code:213dg0tg]\n\nEMG",
"time": "09:43",
"topic": "100% cpu when printing",
"username": "Enrico Maria Giordano"
}
] | 100% cpu when printing |
[
{
"date": "2007-01-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"EnricoMaria\":1umyleki]Try Sleep( 1 ).[/quote:1umyleki]\n\nYES!, this one works much better. It still slow down the process, but I can call it just before PAGE and after ENDPAGE (and the real life is not like the sample above).\n\nMaybe it could be added to Printer.Prg - What do you think ? - Do you see any contraindication doing so ?\n\nMy concern is: if there is already a sleep() function in Kernel32.dll, why the need for developing a SysRefresh() or HB_IdleSleep() ?\n\nThank you so much!\nDavide",
"time": "18:22",
"topic": "100% cpu when printing",
"username": "Davide"
}
] | 100% cpu when printing |
[
{
"date": "2007-01-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Davide\":32yyq5qi][quote=\"EnricoMaria\":32yyq5qi]Try Sleep( 1 ).[/quote:32yyq5qi]\n\nYES!, this one works much better. It still slow down the process, but I can call it just before PAGE and after ENDPAGE (and the real life is not like the sample above).[/quote:32yyq5qi]\n\nOr you may call it each n iterations.\n\n[quote=\"Davide\":32yyq5qi]Maybe it could be added to Printer.Prg - What do you think ? - Do you see any contraindication doing so ?[/quote:32yyq5qi]\n\nI don't know. The 100% CPU behavior has never been a problem for me. I prefer maximum speed of print generation process.\n\nEMG",
"time": "18:30",
"topic": "100% cpu when printing",
"username": "Enrico Maria Giordano"
}
] | 100% cpu when printing |
[
{
"date": "2007-01-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"EnricoMaria\":1vw61j33]I don't know. The 100% CPU behavior has never been a problem for me. I prefer maximum speed of print generation process.[/quote:1vw61j33]\n\nunless you want to install your application on a Terminal Server. If different users print simultaneously the server may sit down ...",
"time": "19:12",
"topic": "100% cpu when printing",
"username": "Davide"
}
] | 100% cpu when printing |
[
{
"date": "2007-01-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Agreed. But we have just seen how to deal with that situation. <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\nEMG",
"time": "20:32",
"topic": "100% cpu when printing",
"username": "Enrico Maria Giordano"
}
] | 100% cpu when printing |
[
{
"date": "2013-11-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I couldn't resist <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "17:02",
"topic": "10K entries in forum",
"username": "Carlos Mora"
}
] | 10K entries in forum |
[
{
"date": "2013-11-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "+1\n\nCongratulations to all the friends and members of these forums <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "14:35",
"topic": "10K entries in forum",
"username": "Antonio Linares"
}
] | 10K entries in forum |
[
{
"date": "2011-08-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Using FWH 11.07 with my build ( from Antonio last month ) of the Microsoft version of Harbour, yields the following error:\n\nFiveH32.lib(GETTASKS.obj) : error LNK2019: unresolved external symbol _GetModuleFileNameExA@16 referenced in function _HB_FUN_GETWINDOWMODULEFILENAME\n\nSolution ?\n\nTim",
"time": "23:00",
"topic": "11.07 Build Error MSVC",
"username": "TimStone"
}
] | 11.07 Build Error MSVC |
[
{
"date": "2011-08-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim,\n\nYou have to link psapi.lib also:\n\nIn samples\\buildh32.bat\n\necho %sdkdir%\\lib\\psapi.lib >> msvc.tmp",
"time": "19:17",
"topic": "11.07 Build Error MSVC",
"username": "Antonio Linares"
}
] | 11.07 Build Error MSVC |
[
{
"date": "2011-11-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I notice there are several threads about problems with FWH 11.10 and xBuilder ( plus some other builds ). The solution was supposedly to add a new send32.lib to our builds. I tried this and still had program shut downs when trying to modify a get within a folder. I know the problems exist in other areas also.\n\nThe recommended solution was to switch away from the Pelles C compiler. I appreciate this suggestion, and several months ago I worked very hard to move to Microsoft Visual C++ 2010 with FWH. Antonio's help was wonderful, and I \"almost got it done\". However, I had problems with trying to get my external programs ( CodeJock Calendar and others ) to work. Then Harbour 3.0 came out, and the problems increased. After that, illness and deaths in our family took me off project ... so I'm still using xBuilder.\n\nI would appreciate having FWH support the xHarbour.com product for awhile longer. At this point I had to rollback to 11.09 which works fine. If we can get a few more months ( past this holiday season ) I will make a renewed effort to move to FWH + Harbour + MSVC 2010 as Antonio has suggested. I do believe that is a good direction for us.\n\nI can work with 11.09 for now, but would like to have the new features still available. I would appreciate the fixes to this new Send issue in 11.10.\n\nThanks for all the hard work.\n\nTim",
"time": "20:08",
"topic": "11.10 & xBuilder",
"username": "TimStone"
}
] | 11.10 & xBuilder |
[
{
"date": "2011-11-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim,\n\nWe posted several fixes for method GoNextCtrl() that was the one using SendKey() and where the bug was coming from.\n\nI email you the most recent libs so you can try them <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "21:22",
"topic": "11.10 & xBuilder",
"username": "Antonio Linares"
}
] | 11.10 & xBuilder |
[
{
"date": "2011-11-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote:1it9esul]I would appreciate having FWH support the xHarbour.com product for awhile longer.[/quote:1it9esul]\nAntonio,\nI agree 100% with Tim. \n\nRegards,\n\nGeorge",
"time": "21:49",
"topic": "11.10 & xBuilder",
"username": "George"
}
] | 11.10 & xBuilder |
[
{
"date": "2011-11-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I did download the file - twice - but the program still throws an error when trying to change a get value in a dialog on a folder page.\n\nIt is not exactly a simple edit. Once the value is changed, a function is called to perform a calculation:\n\nExample:\n\tREDEFINE GET oDlarTim VAR oDlar:labtim BITMAP \"TFIND\" PICTURE \"999.99\" ID 516 OF oFld:aDialogs[ 3 ] ;\n\t\tVALID (oDlar := LaborCost( oDlar, aTECHS ), oDlarTot:refresh( ), oLabCst:refresh( ), .T. ) ;\n\t\tACTION ( LaborChart( oDlar, cOrdVeh ) ) MESSAGE aMsg[ 96 ] UPDATE\n\nI am using BITMAP Gets, data objects ( tdata / tdatabase ), and Advantage ( Local and/or Client Server ) so this may create a complication. This works perfectly in 11.09.\n\nTim",
"time": "22:52",
"topic": "11.10 & xBuilder",
"username": "TimStone"
}
] | 11.10 & xBuilder |
[
{
"date": "2011-11-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I totally agree, and I could work with the 11.09, I had to go back and solve my problems with the 10.10\nAnd really, I have the water to the neck, my clients need solutions and I'm late with the development, and at this point I must give something functional, even without the new features of the FWH11.10\nOnce a day, look for solutions\n\nbest Regards",
"time": "23:16",
"topic": "11.10 & xBuilder",
"username": "Blessed"
}
] | 11.10 & xBuilder |
[
{
"date": "2011-11-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim, Oscar,\n\nJust to double check that Method GoNextCtrl() may be the cause for these troubles, please copy that method from 11.09 into 11.10 and try you code again, thanks\n\nAlso, if you could provide an example to reproduce it, that would help very much, thanks",
"time": "02:42",
"topic": "11.10 & xBuilder",
"username": "Antonio Linares"
}
] | 11.10 & xBuilder |
[
{
"date": "2012-08-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "New errors with 12.07 when linking:\n\nWith xHarbour ( .com ) __iob from FiveHMX.lib ( unresolved External )\n\nWith MSVC _HB_FUN_HB_COMPILEFROMBUF ( unresolved External )\n\nHow are these resolved ?\n\nThanks.\n\nTim",
"time": "17:08",
"topic": "12.07 build errors",
"username": "TimStone"
}
] | 12.07 build errors |
[
{
"date": "2012-08-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim,\n\nWhat is the complete error for With xHarbour ( .com ) __iob from FiveHMX.lib ( unresolved External ) ?\n\nit may report the name of the module that uses it.\n\nthanks",
"time": "20:52",
"topic": "12.07 build errors",
"username": "Antonio Linares"
}
] | 12.07 build errors |
[
{
"date": "2012-08-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "unresolved extrernal symbol '__iob referenced from FiveHMX.lib( HARBOUR.obj)'.",
"time": "21:07",
"topic": "12.07 build errors",
"username": "TimStone"
}
] | 12.07 build errors |
[
{
"date": "2012-08-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "We must be very grateful to Antonio who have the patience to help us with external products like xHarbour.com. I think that xHarbour.com should provide assistance to its customers, not Antonio.\n\nEMG",
"time": "17:17",
"topic": "12.07 build errors",
"username": "Enrico Maria Giordano"
}
] | 12.07 build errors |
[
{
"date": "2012-08-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "The function HB_CompileFromBuf() is available only in Harbour. Not available in XHarbour or XHb. This function is called by the new Execute(..) function in harbour.prg. But this is included only harbour build but not xharbour (org) build.",
"time": "17:46",
"topic": "12.07 build errors",
"username": "nageswaragunupudi"
}
] | 12.07 build errors |
[
{
"date": "2012-08-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I have no problem with the reasoning, but while I complete the transition for my clients, it would be nice to be able to exclude that new function. Also, I posted a missing file for the Harbour / MSVC compiler builds.\n\nI am in total agreement that we should move to Harbour / MSVC ... thats why Antonio and I worked out all the issues. Transitioning my clients, however, is a slower process.\n\nTim",
"time": "18:45",
"topic": "12.07 build errors",
"username": "TimStone"
}
] | 12.07 build errors |
[
{
"date": "2012-08-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"TimStone\":9ahq5pdb]I am in total agreement that we should move to Harbour / MSVC[/quote:9ahq5pdb]\n\nWhy do you want to make that move? Do you have a concrete reason to do it? I have a pair of it to [b:9ahq5pdb]not[/b:9ahq5pdb] do it: the bad attitude of the Harbour developers and their lack of respect for back compatibility.\n\nEMG",
"time": "19:05",
"topic": "12.07 build errors",
"username": "Enrico Maria Giordano"
}
] | 12.07 build errors |
[
{
"date": "2012-08-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim,\n\nPlease link hbcplr.lib for hb_CompileFromBuf() with MSVC and Harbour\n\nRegarding __iob\nWith xHarbour ( .com ) __iob from FiveHMX.lib ( unresolved External )\nit seems as caused by this function recently added to harbour.prg FREOPEN_STDERR().\n\nSo it should get solved if we extend the #ifndef __XHARBOUR__ section:\n\n[code=fw:3s8j4r5x]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">...<br /><br /><span style=\"color: #00D7D7;\">#include</span> <stdio.h><br /><span style=\"color: #00D7D7;\">#include</span> <hbapi.h><br /><br /><span style=\"color: #00C800;\">HB_FUNC</span><span style=\"color: #000000;\">(</span> FREOPEN_STDERR <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> hb_retnl<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> HB_ULONG <span style=\"color: #000000;\">)</span> freopen<span style=\"color: #000000;\">(</span> hb_parc<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span>, hb_parc<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">)</span>, stderr <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br /><span style=\"color: #00D7D7;\">#pragma</span> ENDDUMP<br /><br />#endif <span style=\"color: #B900B9;\">// <== here !!!</span><br /> </div>[/code:3s8j4r5x]",
"time": "20:18",
"topic": "12.07 build errors",
"username": "Antonio Linares"
}
] | 12.07 build errors |
[
{
"date": "2012-08-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\n\nAntonio provides very good support. Other xBase companies can´t say the same...\n\nFor FWH and FWHX the best compilers are BCC and MSVC. Viktor and others prefer gCC, but they are not focused on Windows apps.\n\nIn fact, BCC will be available in 64 bits next september:\n<!-- m --><a class=\"postlink\" href=\"http://edn.embarcadero.com/article/39934\">http://edn.embarcadero.com/article/39934</a><!-- m -->\n\n<!-- m --><a class=\"postlink\" href=\"http://dn.embarcadero.com/article/42275\">http://dn.embarcadero.com/article/42275</a><!-- m -->",
"time": "22:02",
"topic": "12.07 build errors",
"username": "lucasdebeltran"
}
] | 12.07 build errors |
[
{
"date": "2012-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "hi all\n\nMissing function calpos() used in TFOLDEX\n\nbye",
"time": "12:56",
"topic": "12.07 build errors",
"username": "mauri.menabue"
}
] | 12.07 build errors |
[
{
"date": "2012-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mauri,\n\nDoing a FWH\\samples\\buildh.bat testfx1 \n\nbuilds fine and executes fine.\n\nHow to reproduce what you say ? thanks",
"time": "14:52",
"topic": "12.07 build errors",
"username": "Antonio Linares"
}
] | 12.07 build errors |
[
{
"date": "2012-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio\n\nI run: buildh testfx1 I got this error:\n_HB_FUN_CALPOS unresolved external reference from c: \\ FWH \\ LIB \\ FIVEH.LIB | tfoldex.\n\nI rebuilt the library FIVEH.LIB because there was no function: Browse ()\nI have not found the source of the function.\n\nbye",
"time": "22:36",
"topic": "12.07 build errors",
"username": "mauri.menabue"
}
] | 12.07 build errors |
[
{
"date": "2012-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello\n\nthe function CalPos() is a internal function, you need use the original fivewin lib...",
"time": "03:35",
"topic": "12.07 build errors",
"username": "Daniel Garcia-Gil"
}
] | 12.07 build errors |
[
{
"date": "2012-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mauri,\n\nBrowse() is inside FWH\\sources\\function\\browse.prg\n\nPlease check if you have this file",
"time": "11:23",
"topic": "12.07 build errors",
"username": "Antonio Linares"
}
] | 12.07 build errors |
[
{
"date": "2012-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "hi Antonio\n\nThe browse function is present between the source functions, but not in the library of the package FWH.\n\nThe program scintila.prg I changed the line 1147\n\n# include \". \\ .. \\ include \\ scintila.h\"\nin\n# include \"\\ FWH \\ include \\ scintila.h\"\n\nThe program filename.prg I modified the function: cTempFile\n\nif ! \".\" $ cExtension\n cExtension = \".\" + cExtension\nendif\n\nin\n\nif .not. empty (cExtension)\n if ! \".\" $ cExtension\n cExtension = \".\" + cExtension\n endif\nendif\n\nif the extension is empty I do not to add the point.\n\nThanks for your interest\nbye",
"time": "15:50",
"topic": "12.07 build errors",
"username": "mauri.menabue"
}
] | 12.07 build errors |
[
{
"date": "2012-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nRegarding two of your comments.\n\n1) I only use an older version of xHarbour for some issues that my clients have with older versions of software, like an older server version of ADS. Antonio has been very gracious to keep the updates compatible with the xHarbour.com. If that became difficult for him to do, I would simply freeze those updates to the FWH version that last was compatible.\n\n2) I have moved to Harbour and MSVC for several reasons. Antonio works closely with the Harbour people, and he writes all of his code to Harbour. I switched from xHarbour.com because there seemed to be no activity ( development ) there any logner. I moved to MSVC because it is the most compatible with WIndows, and since Microsoft has 690 million Windows 7 users alone ( or over a billion counting the older OS's ), I think that's a pretty good marketplace to serve. Also, I have spent the last 6 months focusing on new Microsoft technologies, and I do believe we need to be compatible, which old versions of BCC simply won't do. \n\nTim",
"time": "17:03",
"topic": "12.07 build errors",
"username": "TimStone"
}
] | 12.07 build errors |
[
{
"date": "2012-08-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"TimStone\":2fszxurh]2) I have moved to Harbour and MSVC for several reasons. Antonio works closely with the Harbour people, and he writes all of his code to Harbour. I switched from xHarbour.com because there seemed to be no activity ( development ) there any logner.[/quote:2fszxurh]\n\nFirst, I sadly agree on what you said about xHarbour.com. Second, I already express my thoughts regarding Harbour.\n\n[quote=\"TimStone\":2fszxurh]I moved to MSVC because it is the most compatible with WIndows, and since Microsoft has 690 million Windows 7 users alone ( or over a billion counting the older OS's ), I think that's a pretty good marketplace to serve. Also, I have spent the last 6 months focusing on new Microsoft technologies, and I do believe we need to be compatible, which old versions of BCC simply won't do.[/quote:2fszxurh]\n\nCan you list some Windows technologies that BCC is not compatible with? I'm not against changing compiler, if it's worth to do. I love BCC for its compactness.\n\nEMG",
"time": "08:53",
"topic": "12.07 build errors",
"username": "Enrico Maria Giordano"
}
] | 12.07 build errors |
[
{
"date": "2012-08-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nAntonio did a great comparison in a previous thread of all the compilers ... what they can, and cannot, do. There were also several other threads that discussed this in depth. I can't relate to BCC because I don't use it. I last used it in the very earliest days of the Harbour Project. That's a lot of years ago. \n\nAntonio has also posted some material on Harbour. Perhaps the most important issue is that, if you use FWH, you can be sure Harbour is compatible because that is what he is using.\n\nThe truth is that everything changes on October 26th. Windows 8, Office 2013, Windows 2012 Server, the Microsoft Cloud services ... its all very different than our traditional forms based applications. We are not going away, and we can be a player, but we have several issues that must be met to \"stay in the game\". For all the debate, Windows 8 IS going to gain acceptance because it really will meet the needs of users. \n\nTim",
"time": "16:39",
"topic": "12.07 build errors",
"username": "TimStone"
}
] | 12.07 build errors |
[
{
"date": "2012-08-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mauri,\n\nIt is included in the FWH makefile:\n\nPRG = \\\nACTIVEX.PRG \\\nALERT.PRG \\\nBAR.PRG \\\nBARTABS.PRG \\\nBITMAP.PRG \\\nBLOCK.PRG \\\nBROWSE.PRG \\ <== Here !\nBRUSH.PRG \\\n...\n\nhave you recompiled FWH yourself ?",
"time": "21:07",
"topic": "12.07 build errors",
"username": "Antonio Linares"
}
] | 12.07 build errors |
[
{
"date": "2012-08-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mauri,\n\nIncluded you function cTempFile() fix this way:\n\n[code=fw:3ovagldc]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">(</span> cExtension <span style=\"color: #000000;\">)</span> .and. ! <span style=\"color: #ff0000;\">\".\"</span> $ cExtension<br /> cExtension = <span style=\"color: #ff0000;\">\".\"</span> + cExtension<br /> <span style=\"color: #00C800;\">endif</span><br /> </div>[/code:3ovagldc]",
"time": "21:19",
"topic": "12.07 build errors",
"username": "Antonio Linares"
}
] | 12.07 build errors |
[
{
"date": "2012-08-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nUnfortunately I was not able to get the \"fix\" you gave me for my original problem ( the hb_func ) to compile. It didn't like the stdio.h from xHB, and it reported an IF error with the hb include file.\n\nWill you have a fix for this issue in 12.08 ?\n\nFor now I had to do the xHb builds with FWH 12.06, and I can use the 12.07 with my Harbour / MSVC builds.\n\nThanks.\n\nTim",
"time": "19:33",
"topic": "12.07 build errors",
"username": "TimStone"
}
] | 12.07 build errors |
[
{
"date": "2012-08-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim,\n\nDo you mean the unresolved extrernal symbol '__iob error ?",
"time": "00:53",
"topic": "12.07 build errors",
"username": "Antonio Linares"
}
] | 12.07 build errors |
[
{
"date": "2012-08-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nSorry for the delay. Yes it is the __iob error.\n\nI took the code you provided, put it in a .prg file, and linked it to the program ... except it wouldn't link. It did not like the .h files.\n\nTim",
"time": "16:34",
"topic": "12.07 build errors",
"username": "TimStone"
}
] | 12.07 build errors |
[
{
"date": "2012-09-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Did I miss a fix for this ?",
"time": "16:25",
"topic": "12.07 build errors",
"username": "TimStone"
}
] | 12.07 build errors |
[
{
"date": "2012-09-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim,\n\nThe fix that I proposed here has to work fine, I think you implemented it wrongly.\n\nHere you have the complete harbour.prg\n[code=fw:19f0u3zv]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"error.ch\"</span><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fwerror.ch\"</span><br /><br /><span style=\"color: #00D7D7;\">#define</span> CRLF Chr<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">13</span> <span style=\"color: #000000;\">)</span> + Chr<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">)</span><br /><br />#ifdef __HARBOUR__<br /> #ifndef __XHARBOUR__<br /> <span style=\"color: #00C800;\">function</span> HB_DBG_VMSTKLCOUNT<span style=\"color: #000000;\">(</span> x <span style=\"color: #000000;\">)</span> ; <span style=\"color: #00C800;\">return</span> __DBGVMSTKLCOUNT<span style=\"color: #000000;\">(</span> x <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">function</span> HB_DBG_VMPARLLIST<span style=\"color: #000000;\">(</span> x <span style=\"color: #000000;\">)</span> ; <span style=\"color: #00C800;\">return</span> __DBGVMPARLLIST<span style=\"color: #000000;\">(</span> x <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">function</span> HB_DBG_VMVARLGET<span style=\"color: #000000;\">(</span> x, y <span style=\"color: #000000;\">)</span> ; <span style=\"color: #00C800;\">return</span> __DBGVMVARLGET<span style=\"color: #000000;\">(</span> x, y <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">function</span> HB_DBG_VMVARSLEN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> ; <span style=\"color: #00C800;\">return</span> __DBGVMVARSLEN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> #endif<br />#endif<br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br />#ifndef __XHARBOUR__<br /><br /><span style=\"color: #00C800;\">function</span> Execute<span style=\"color: #000000;\">(</span> cCode, ... <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> oHrb, cResult, bOldError, uRet<br /> <span style=\"color: #00C800;\">local</span> cFWheaders := <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> lIsDir<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\i</span>nclude\"</span> <span style=\"color: #000000;\">)</span>, <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\i</span>nclude\"</span>, <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\F</span>WH<span style=\"color: #000000;\">\\i</span>nclude\"</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> cHBheaders := <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> lIsDir<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\i</span>nclude\"</span> <span style=\"color: #000000;\">)</span>, <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\i</span>nclude\"</span>, <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\i</span>nclude\"</span> <span style=\"color: #000000;\">)</span><br /><br /> FReOpen_Stderr <span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"comp.log\"</span>, <span style=\"color: #ff0000;\">\"w\"</span> <span style=\"color: #000000;\">)</span><br /> oHrb = HB_CompileFromBuf<span style=\"color: #000000;\">(</span> cCode, <span style=\"color: #ff0000;\">\"-n\"</span>, <span style=\"color: #ff0000;\">\"-I\"</span> + cFWheaders, <span style=\"color: #ff0000;\">\"-I\"</span> + cHBheaders <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">if</span> ! Empty<span style=\"color: #000000;\">(</span> oHrb <span style=\"color: #000000;\">)</span><br /> BEGIN SEQUENCE<br /> bOldError = ErrorBlock<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">{</span> | o | DoBreak<span style=\"color: #000000;\">(</span> o <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">)</span><br /> uRet = hb_HrbDo<span style=\"color: #000000;\">(</span> hb_HrbLoad<span style=\"color: #000000;\">(</span> oHrb <span style=\"color: #000000;\">)</span>, ... <span style=\"color: #000000;\">)</span><br /> END SEQUENCE<br /> ErrorBlock<span style=\"color: #000000;\">(</span> bOldError <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /><span style=\"color: #00C800;\">return</span> uRet<br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------//</span><br /><br /><span style=\"color: #00D7D7;\">#pragma</span> BEGINDUMP<br /><br /><span style=\"color: #00D7D7;\">#include</span> <stdio.h><br /><span style=\"color: #00D7D7;\">#include</span> <hbapi.h><br /><br /><span style=\"color: #00C800;\">HB_FUNC</span><span style=\"color: #000000;\">(</span> FREOPEN_STDERR <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> hb_retnl<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> HB_ULONG <span style=\"color: #000000;\">)</span> freopen<span style=\"color: #000000;\">(</span> hb_parc<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span>, hb_parc<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">)</span>, stderr <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br /><span style=\"color: #00D7D7;\">#pragma</span> ENDDUMP<br /><br />#endif<br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">static</span> <span style=\"color: #00C800;\">function</span> DoBreak<span style=\"color: #000000;\">(</span> oError <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> cInfo := oError:<span style=\"color: #000000;\">operation</span>, n<br /><br /> <span style=\"color: #00C800;\">if</span> ValType<span style=\"color: #000000;\">(</span> oError:<span style=\"color: #000000;\">Args</span> <span style=\"color: #000000;\">)</span> == <span style=\"color: #ff0000;\">\"A\"</span><br /> cInfo += <span style=\"color: #ff0000;\">\" Args:\"</span> + CRLF<br /> <span style=\"color: #00C800;\">for</span> n = <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> Len<span style=\"color: #000000;\">(</span> oError:<span style=\"color: #000000;\">Args</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span> oError:<span style=\"color: #000000;\">Args</span><span style=\"color: #000000;\">[</span> n <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">)</span><br /> cInfo += <span style=\"color: #ff0000;\">\"[\"</span> + Str<span style=\"color: #000000;\">(</span> n, <span style=\"color: #000000;\">4</span> <span style=\"color: #000000;\">)</span> + <span style=\"color: #ff0000;\">\"] = \"</span> + ValType<span style=\"color: #000000;\">(</span> oError:<span style=\"color: #000000;\">Args</span><span style=\"color: #000000;\">[</span> n <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">)</span> + ;<br /> <span style=\"color: #ff0000;\">\" \"</span> + cValToChar<span style=\"color: #000000;\">(</span> oError:<span style=\"color: #000000;\">Args</span><span style=\"color: #000000;\">[</span> n <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">)</span> + CRLF<br /> <span style=\"color: #00C800;\">next</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> MsgStop<span style=\"color: #000000;\">(</span> oError:<span style=\"color: #000000;\">Description</span> + CRLF + cInfo,;<br /> <span style=\"color: #ff0000;\">\"Script error at line: \"</span> + AllTrim<span style=\"color: #000000;\">(</span> Str<span style=\"color: #000000;\">(</span> ProcLine<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">BREAK</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> LocalCount<span style=\"color: #000000;\">(</span> nProcLevel <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> HB_DBG_VMSTKLCOUNT<span style=\"color: #000000;\">(</span> nProcLevel + <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> - ParamCount<span style=\"color: #000000;\">(</span> nProcLevel + <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> ParamCount<span style=\"color: #000000;\">(</span> nProcLevel <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> Len<span style=\"color: #000000;\">(</span> HB_DBG_VMPARLLIST<span style=\"color: #000000;\">(</span> nProcLevel + <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> GetParam<span style=\"color: #000000;\">(</span> nProcLevel, nParam <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> HB_DBG_VMPARLLIST<span style=\"color: #000000;\">(</span> nProcLevel + <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">[</span> nParam <span style=\"color: #000000;\">]</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> MemUsed<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> Memory<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">1001</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> MemMax<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> Memory<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">1002</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> NtxPos<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">0</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> uLoadObject<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// dummy function waiting to become ready</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> VbxEvent<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> LoadVbx<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> VbxClassName<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #ff0000;\">\"\"</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> TVbControl<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> WindowsFix<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// no needed for Harbour</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> ChildLevel<span style=\"color: #000000;\">(</span> o, oClass <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> o:<span style=\"color: #000000;\">IsDerivedFrom</span><span style=\"color: #000000;\">(</span> oClass <span style=\"color: #000000;\">)</span> .or. ;<br /> Upper<span style=\"color: #000000;\">(</span> o:<span style=\"color: #000000;\">ClassName</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> == Upper<span style=\"color: #000000;\">(</span> oClass:<span style=\"color: #000000;\">ClassName</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>, <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> OClone<span style=\"color: #000000;\">(</span> o <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> __objClone<span style=\"color: #000000;\">(</span> o <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> LoadLib32<span style=\"color: #000000;\">(</span> cDLL <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> LoadLibrary<span style=\"color: #000000;\">(</span> cDLL <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> FreeLib32<span style=\"color: #000000;\">(</span> hDLL <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> FreeLibrary<span style=\"color: #000000;\">(</span> hDLL <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> SetMultiple<span style=\"color: #000000;\">(</span> lOnOff <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> GetLocal<span style=\"color: #000000;\">(</span> nProcLevel, nLocal <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> HB_DBG_VMVARLGET<span style=\"color: #000000;\">(</span> nProcLevel + <span style=\"color: #000000;\">1</span>, ParamCount<span style=\"color: #000000;\">(</span> nProcLevel + <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> + nLocal <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> NInitDSSize<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">0</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> NSYMPSIZE<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">0</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> nStackSize<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">0</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> nHeapSize<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">0</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> nStatics<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> HB_DBG_VMVARSLEN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> _GenError<span style=\"color: #000000;\">(</span> nError, cClassName, cMsg <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> oError := ErrorNew<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> oError:<span style=\"color: #000000;\">SubSystem</span> = <span style=\"color: #ff0000;\">\"BASE\"</span><br /> oError:<span style=\"color: #000000;\">SubCode</span> = nError<br /> oError:<span style=\"color: #000000;\">Severity</span> = ES_ERROR<br /> oError:<span style=\"color: #000000;\">Description</span> = <span style=\"color: #ff0000;\">\"Message not found\"</span><br /> oError:<span style=\"color: #000000;\">Operation</span> = cClassName + <span style=\"color: #ff0000;\">\":\"</span> + cMsg<br /><br /><span style=\"color: #00C800;\">return</span> oError<br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> _CLSSETERROR<span style=\"color: #000000;\">(</span> oError <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> Eval<span style=\"color: #000000;\">(</span> ErrorBlock<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, oError <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br />#ifndef __XHARBOUR__<br /><span style=\"color: #00C800;\">function</span> ASend<span style=\"color: #000000;\">(</span> aObjects, cMsg, ... <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> n<br /> <span style=\"color: #00C800;\">if</span> aObjects == <span style=\"color: #00C800;\">nil</span><br /> <span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> <span style=\"color: #00C800;\">for</span> n = <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> Len<span style=\"color: #000000;\">(</span> aObjects <span style=\"color: #000000;\">)</span><br /> OSend<span style=\"color: #000000;\">(</span> aObjects<span style=\"color: #000000;\">[</span> n <span style=\"color: #000000;\">]</span>, cMsg, ... <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">next</span><br /> <span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br />#else<br /><span style=\"color: #00C800;\">function</span> ASend<span style=\"color: #000000;\">(</span> ... <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">//aObjects, cMsg, uPar1,...</span><br /> <span style=\"color: #00C800;\">local</span> aParams := hb_aParams<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> aObjects, n, j<br /> <span style=\"color: #00C800;\">local</span> aParams2 := <span style=\"color: #000000;\">{</span><span style=\"color: #000000;\">}</span><br /><br /> <span style=\"color: #00C800;\">if</span> aParams<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> == <span style=\"color: #00C800;\">nil</span><br /> <span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> <span style=\"color: #00C800;\">endif</span><br /> aObjects = aParams<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span><br /><br /> <span style=\"color: #00C800;\">for</span> n = <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> Len<span style=\"color: #000000;\">(</span> aObjects <span style=\"color: #000000;\">)</span><br /> AAdd<span style=\"color: #000000;\">(</span> aParams2, aObjects<span style=\"color: #000000;\">[</span> n <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">for</span> j = <span style=\"color: #000000;\">2</span> <span style=\"color: #0000ff;\">to</span> Len<span style=\"color: #000000;\">(</span> aParams <span style=\"color: #000000;\">)</span><br /> AAdd<span style=\"color: #000000;\">(</span> aParams2, aParams<span style=\"color: #000000;\">[</span> j <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">next</span> j<br /> hb_execFromArray<span style=\"color: #000000;\">(</span> @OSend<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, aParams2 <span style=\"color: #000000;\">)</span><br /> aParams2 = <span style=\"color: #000000;\">{</span><span style=\"color: #000000;\">}</span><br /> <span style=\"color: #00C800;\">next</span><br /> <span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br />#endif<br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br />#ifndef __XHARBOUR__<br /><span style=\"color: #00C800;\">function</span> OSend<span style=\"color: #000000;\">(</span> oObj, cMsg, ... <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">if</span> <span style=\"color: #ff0000;\">\"(\"</span> $ cMsg<br /> cMsg = StrTran<span style=\"color: #000000;\">(</span> cMsg, <span style=\"color: #ff0000;\">\"()\"</span>, <span style=\"color: #ff0000;\">\"\"</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /> <span style=\"color: #00C800;\">return</span> __ObjSendMsg<span style=\"color: #000000;\">(</span> oObj, cMsg, ... <span style=\"color: #000000;\">)</span><br />#else<br /><span style=\"color: #00C800;\">function</span> OSend<span style=\"color: #000000;\">(</span> ... <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// oObj, cMsg, uPar1,...</span><br /> <span style=\"color: #00C800;\">local</span> aParams := hb_aParams<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">if</span> <span style=\"color: #ff0000;\">\"(\"</span> $ aParams<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span><br /> aParams<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span> = StrTran<span style=\"color: #000000;\">(</span> aParams<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span>, <span style=\"color: #ff0000;\">\"()\"</span>, <span style=\"color: #ff0000;\">\"\"</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> <span style=\"color: #00C800;\">return</span> hb_execFromArray<span style=\"color: #000000;\">(</span> @__ObjSendMsg<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, aParams <span style=\"color: #000000;\">)</span><br />#endif<br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><br />#ifndef __XHARBOUR__<br /><span style=\"color: #00C800;\">function</span> OleInvoke<span style=\"color: #000000;\">(</span> hObj, cMethod, ... <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">return</span> __ObjSendMsg<span style=\"color: #000000;\">(</span> TOleAuto<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span> hObj <span style=\"color: #000000;\">)</span>, cMethod, ... <span style=\"color: #000000;\">)</span><br />#else<br /><span style=\"color: #00C800;\">function</span> OleInvoke<span style=\"color: #000000;\">(</span> ... <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> aParams := hb_aParams<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> hObj, cMethod, aParams2 := <span style=\"color: #000000;\">{</span><span style=\"color: #000000;\">}</span><br /> hObj = aParams<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span><br /> cMethod = aParams<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span><br /><br /> <span style=\"color: #00C800;\">if</span> Len<span style=\"color: #000000;\">(</span> aParams <span style=\"color: #000000;\">)</span> > <span style=\"color: #000000;\">2</span><br /> AEval<span style=\"color: #000000;\">(</span> aParams, <span style=\"color: #000000;\">{</span>| uVal | AAdd<span style=\"color: #000000;\">(</span> aParams2, uVal <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span>, <span style=\"color: #000000;\">3</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> aParams2<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> = TOleAuto<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span> hObj <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">return</span> hb_execFromArray<span style=\"color: #000000;\">(</span> @__ObjSendMsg<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, aParams2 <span style=\"color: #000000;\">)</span><br />#endif<br /><br /><br /><span style=\"color: #00C800;\">function</span> OleSetProperty<span style=\"color: #000000;\">(</span> hObj, cPropName, uValue <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> __ObjSendMsg<span style=\"color: #000000;\">(</span> TOleAuto<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span> hObj <span style=\"color: #000000;\">)</span>, <span style=\"color: #ff0000;\">\"_\"</span> + cPropName, uValue <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">function</span> OleGetProperty<span style=\"color: #000000;\">(</span> hObj, cPropName <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> __ObjSendMsg<span style=\"color: #000000;\">(</span> TOleAuto<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span> hObj <span style=\"color: #000000;\">)</span>, cPropName <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br />#ifdef __XHARBOUR__<br /><br /><span style=\"color: #B900B9;\">// Keep this C code here so only xHarbour uses it</span><br /><br /><span style=\"color: #00D7D7;\">#pragma</span> BEGINDUMP<br /><br /><span style=\"color: #00D7D7;\">#include</span> <hbapi.h><br /><br /><span style=\"color: #B900B9;\">//char * hb_parc( int iParam, ... );</span><br /><span style=\"color: #B900B9;\">//ULONG hb_parclen( int iParam, ... );</span><br /><span style=\"color: #B900B9;\">//int hb_parni( int iParam, ... );</span><br /><span style=\"color: #B900B9;\">//LONG hb_parnl( int iParam, ... );</span><br /><span style=\"color: #B900B9;\">//int hb_parl( int iParam, ... );</span><br /><span style=\"color: #B900B9;\">//void hb_storc( const char * szText, int iParam, ... );</span><br /><span style=\"color: #B900B9;\">//void hb_storclen( const char * szText, ULONG ulLength, int iParam, ... );</span><br /><span style=\"color: #B900B9;\">//void hb_storl( int iLogical, int iParam, ... );</span><br /><span style=\"color: #B900B9;\">//void hb_storni( int iValue, int iParam, ... );</span><br /><span style=\"color: #B900B9;\">//void hb_stornl( LONG lValue, int iParam, ... );</span><br /><span style=\"color: #B900B9;\">//void hb_stords( const char * szDate, int iParam, ... );</span><br /><span style=\"color: #B900B9;\">//void hb_stornd( double dValue, int iParam, ... );</span><br /><br />char * hb_parvc<span style=\"color: #000000;\">(</span> int iParam, int iIndex <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> <span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">(</span> char * <span style=\"color: #000000;\">)</span> hb_parc<span style=\"color: #000000;\">(</span> iParam, iIndex <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br />ULONG hb_parvclen<span style=\"color: #000000;\">(</span> int iParam, int iIndex <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> <span style=\"color: #00C800;\">return</span> hb_parclen<span style=\"color: #000000;\">(</span> iParam, iIndex <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br />int hb_parvni<span style=\"color: #000000;\">(</span> int iParam, int iIndex <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> <span style=\"color: #00C800;\">return</span> hb_parni<span style=\"color: #000000;\">(</span> iParam, iIndex <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br />long hb_parvnl<span style=\"color: #000000;\">(</span> int iParam, int iIndex <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> <span style=\"color: #00C800;\">return</span> hb_parnl<span style=\"color: #000000;\">(</span> iParam, iIndex <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br />BOOL hb_parvl<span style=\"color: #000000;\">(</span> int iParam, int iIndex <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> <span style=\"color: #00C800;\">return</span> hb_parl<span style=\"color: #000000;\">(</span> iParam, iIndex <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br />void hb_storvc<span style=\"color: #000000;\">(</span> char * szText, int iParam, int iIndex <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> hb_storc<span style=\"color: #000000;\">(</span> szText, iParam, iIndex <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br />void hb_storvclen<span style=\"color: #000000;\">(</span> char * szText, ULONG ulLength, int iParam <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> hb_storclen<span style=\"color: #000000;\">(</span> szText, ulLength, iParam <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br />void hb_storvl<span style=\"color: #000000;\">(</span> BOOL bValue, int iParam, int iIndex <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> hb_storl<span style=\"color: #000000;\">(</span> bValue, iParam, iIndex <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br />void hb_storvnl<span style=\"color: #000000;\">(</span> LONG lValue, int iParam, int iIndex <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> hb_stornl<span style=\"color: #000000;\">(</span> lValue, iParam, iIndex <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br />void hb_storvni<span style=\"color: #000000;\">(</span> int iValue, int iParam, int iIndex <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> hb_storni<span style=\"color: #000000;\">(</span> iValue, iParam, iIndex <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br />void hb_storvds<span style=\"color: #000000;\">(</span> char * szDate, int iParam, int iIndex <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> hb_stords<span style=\"color: #000000;\">(</span> szDate, iParam, iIndex <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br />void hb_storvnd<span style=\"color: #000000;\">(</span> double dValue, int iParam, int iIndex <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> hb_stornd<span style=\"color: #000000;\">(</span> dValue, iParam, iIndex <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br /><br />void hb_storvnll<span style=\"color: #000000;\">(</span> LONG lValue, int iParam, int iIndex <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> hb_stornl<span style=\"color: #000000;\">(</span> lValue, iParam, iIndex <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br /><span style=\"color: #00D7D7;\">#pragma</span> ENDDUMP<br /><br />#else<br /><br /><span style=\"color: #00D7D7;\">#pragma</span> BEGINDUMP<br /><br /><span style=\"color: #00D7D7;\">#include</span> <hbapi.h><br /><br /><span style=\"color: #00C800;\">HB_FUNC</span><span style=\"color: #000000;\">(</span> ASPTR <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> hb_retptr<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> void * <span style=\"color: #000000;\">)</span> hb_parnl<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br /><span style=\"color: #00C800;\">HB_FUNC</span><span style=\"color: #000000;\">(</span> ASLONG <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> hb_retnl<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> HB_LONG <span style=\"color: #000000;\">)</span> hb_parptr<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br /><span style=\"color: #00D7D7;\">#pragma</span> ENDDUMP<br /><br />#endif<br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /> </div>[/code:19f0u3zv]",
"time": "21:23",
"topic": "12.07 build errors",
"username": "Antonio Linares"
}
] | 12.07 build errors |
[
{
"date": "2012-09-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you. That worked out.\n\nTim",
"time": "21:38",
"topic": "12.07 build errors",
"username": "TimStone"
}
] | 12.07 build errors |
[
{
"date": "2012-11-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I was wondering if there would be an October update ?\n\nI am asking because I just encountered a problem with erratic xbrowse behavior in a folder. I have to check it further so I can't give specifics yet. However, I am operating with files that Antonio provided as a supplement to 12.9.\n\nThank you.",
"time": "01:35",
"topic": "12.10 ?",
"username": "TimStone"
}
] | 12.10 ? |
[
{
"date": "2012-11-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim,\n\nWe are delayed cause recent FiveWeb development, but it is ready and we will publish it this next week <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "04:16",
"topic": "12.10 ?",
"username": "Antonio Linares"
}
] | 12.10 ? |
[
{
"date": "2013-09-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Building with xHarbour (.com ) and 13.08.\n\nThe following error occurs: _hb_vmPushSize Unresolved External symbol",
"time": "17:06",
"topic": "13.08 Error w/ xHarbour ( .com ) vmPushSize",
"username": "TimStone"
}
] | 13.08 Error w/ xHarbour ( .com ) vmPushSize |
[
{
"date": "2013-09-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim,\n\nPlease add this function to your app:\n\n[code=fw:3tut9n9n]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#pragma</span> BEGINDUMP<br /><br /><span style=\"color: #00D7D7;\">#include</span> <hbapi.h><br /><br />void hb_vmPushSize<span style=\"color: #000000;\">(</span> LONG l <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> hb_vmPushLong<span style=\"color: #000000;\">(</span> l <span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span><br /><br /><span style=\"color: #00D7D7;\">#pragma</span> ENDDUMP<br /> </div>[/code:3tut9n9n]",
"time": "20:56",
"topic": "13.08 Error w/ xHarbour ( .com ) vmPushSize",
"username": "Antonio Linares"
}
] | 13.08 Error w/ xHarbour ( .com ) vmPushSize |
[
{
"date": "2013-09-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "We are publishing a revised FWH 13.08 that solves it <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "10:14",
"topic": "13.08 Error w/ xHarbour ( .com ) vmPushSize",
"username": "Antonio Linares"
}
] | 13.08 Error w/ xHarbour ( .com ) vmPushSize |
[
{
"date": "2013-09-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "The function you posted worked.\n\nI just rebuilt with the latest 13.08 download, without the additional function, and it built normally.\n\nThank you.",
"time": "16:52",
"topic": "13.08 Error w/ xHarbour ( .com ) vmPushSize",
"username": "TimStone"
}
] | 13.08 Error w/ xHarbour ( .com ) vmPushSize |
[
{
"date": "2013-09-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim,\n\nthanks for your feedback <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "18:22",
"topic": "13.08 Error w/ xHarbour ( .com ) vmPushSize",
"username": "Antonio Linares"
}
] | 13.08 Error w/ xHarbour ( .com ) vmPushSize |
[
{
"date": "2013-09-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hey Tim,\n[quote=\"TimStone\":3ovu6jq9]I just rebuilt with the latest 13.08 download, without the additional function, and it built normally.\n[/quote:3ovu6jq9]\nIs this with latest xHarbour Builder posted yesterday?\nThanks! <!-- s;-) --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\";-)\" title=\"Wink\" /><!-- s;-) -->\n\nPatrick",
"time": "20:00",
"topic": "13.08 Error w/ xHarbour ( .com ) vmPushSize",
"username": "Patrick Mast"
}
] | 13.08 Error w/ xHarbour ( .com ) vmPushSize |
[
{
"date": "2013-09-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "No ! Its with the latest FWH 13.08 updated release.\n\nSadly, I had to make a few \"business decisions\" regarding ongoing expenses, and the ROI for xHarbour ( .com ) was not sufficient to continue the subscription. So, I'm using the build from 8/21/2010. At the time all of the work seemed to be going into the Visual xHarbour which I was not using.\n\nI also wanted to use Microsoft Visual Studio as the compiler. Therefore I now have a parallel version of my application built with Harbour and MSVC 2012.\n\nTim",
"time": "20:38",
"topic": "13.08 Error w/ xHarbour ( .com ) vmPushSize",
"username": "TimStone"
}
] | 13.08 Error w/ xHarbour ( .com ) vmPushSize |
[
{
"date": "2014-03-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estimados amigos: Gracias Antonio.\n\nMe funciona bien con la clausula MODAL pero si no la coloco y se incrusta en la ventana se ve mal, estirado para los costados.\n\nGracias y saludos.",
"time": "13:41",
"topic": "1402 PRINTER oPrn NAME \"Cuentas\" PREVIEW MODAL",
"username": "RDFernandez"
}
] | 1402 PRINTER oPrn NAME "Cuentas" PREVIEW MODAL |
[
{
"date": "2014-05-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"RDFernandez\":1usgoxy7]Estimados amigos: Gracias Antonio.\n\nMe funciona bien con la clausula MODAL pero si no la coloco y se incrusta en la ventana se ve mal, estirado para los costados.\n\nGracias y saludos.[/quote:1usgoxy7]\n\nSe sabe algo de este error?\nAcabo de actualizar a FWH 1402 y el preview se ve estirado a los lados. Lo tengo funcionando bajo ventanas MDI.\n\nGracias,",
"time": "23:46",
"topic": "1402 PRINTER oPrn NAME \"Cuentas\" PREVIEW MODAL",
"username": "FiveWiDi"
}
] | 1402 PRINTER oPrn NAME "Cuentas" PREVIEW MODAL |
[
{
"date": "2014-05-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "rpreview.prg linha 1477 \n\n if ! ::lZoom .and. ! lInit\n// ::Zoom( .T. ) // anular esta line\n endif esta linha",
"time": "00:58",
"topic": "1402 PRINTER oPrn NAME \"Cuentas\" PREVIEW MODAL",
"username": "Sistem"
}
] | 1402 PRINTER oPrn NAME "Cuentas" PREVIEW MODAL |
[
{
"date": "2014-05-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"Sistem\":x6z24oko]rpreview.prg linha 1477 \n\n if ! ::lZoom .and. ! lInit\n// ::Zoom( .T. ) // anular esta line\n endif esta linha[/quote:x6z24oko]\n\nMuchísimas gracias, funcionó perfecto.",
"time": "10:17",
"topic": "1402 PRINTER oPrn NAME \"Cuentas\" PREVIEW MODAL",
"username": "FiveWiDi"
}
] | 1402 PRINTER oPrn NAME "Cuentas" PREVIEW MODAL |
[
{
"date": "2015-03-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I have a problem on Win xp with rpreview .\n\nI Know lListViewHide but the problem is not on zoom page but when I show the page on orizontal \n\n[img:3pjzms5o]http://www.eoeo.it/wp-content/uploads/2015/03/rprev.jpg[/img:3pjzms5o]\n\nhow I can resolve it ?",
"time": "11:15",
"topic": "15.01 problem with rpreview",
"username": "Silvio.Falconi"
}
] | 15.01 problem with rpreview |
[
{
"date": "2015-02-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It is possible to specify almost any image file as a bitmap for btnbmp and so buttons on the buttonbar, eg. bmp, png, ico, gif, jpg, etc (acceptable by freeimage). Larger image files will be reduced to fit the buttonsize, if necessary. It is also possible to specify a bitmap handle of memory buffer of an image. \nIn addition an exe file also can be specified and in that case, the first icon of the exe will be shown as the bitmap.\nResources and files need not be specified separately. We can use either FILE or RESOURCE clause followed by any files and/or resources.\n\nLarge image files are automatically re-sized to fit the size of the button. In the following example, some pngs and jpg are resized. This feature largely reduces the need to maintain bmp files of different sizes of the same image.\n\nA small example showing a buttonbar built with ICO,EXE,GIF,PNG,AlphaBmp and JPG.\n[url=https://imageshack.com/i/ipk4zcPHj:70t8l2tt][img:70t8l2tt]http://imagizer.imageshack.us/v2/xq90/673/k4zcPH.jpg[/img:70t8l2tt][/url:70t8l2tt]\n[code=fw:70t8l2tt]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">function</span> AnyImageBtn<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> oWnd, oBar, oFont<br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"TAHOMA\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">-12</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"BUTTONAR ANY IMAGE 15.02\"</span><br /> oWnd:<span style=\"color: #000000;\">SetFont</span><span style=\"color: #000000;\">(</span> oFont <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTONBAR</span> oBar <span style=\"color: #0000ff;\">OF</span> oWnd <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">72</span>,<span style=\"color: #000000;\">96</span> <span style=\"color: #000000;\">2007</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\i</span>cons<span style=\"color: #000000;\">\\f</span>ivetech.ico\"</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"fivetech\"</span>+ CRLF+ <span style=\"color: #ff0000;\">\"ICO\"</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\P</span>rogram Files<span style=\"color: #000000;\">\\M</span>icrosoft Office<span style=\"color: #000000;\">\\O</span>ffice14<span style=\"color: #000000;\">\\E</span>xcel.exe\"</span> ;<br /> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Excel\"</span> + CRLF + <span style=\"color: #ff0000;\">\"EXE\"</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\P</span>rogram Files<span style=\"color: #000000;\">\\M</span>icrosoft Office<span style=\"color: #000000;\">\\O</span>ffice14<span style=\"color: #000000;\">\\p</span>owerpnt.exe\"</span> ;<br /> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Excel\"</span> + CRLF + <span style=\"color: #ff0000;\">\"EXE\"</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\g</span>ifs<span style=\"color: #000000;\">\\g</span>if05.gif\"</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"gif06\"</span> + CRLF + <span style=\"color: #ff0000;\">\"GIF\"</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\3</span>2x32<span style=\"color: #000000;\">\\c</span>ase.bmp\"</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"32x32\"</span> + CRLF + <span style=\"color: #ff0000;\">\"BMP\"</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\p</span>ngs<span style=\"color: #000000;\">\\i</span>mage3.png\"</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"image3\"</span> + CRLF + <span style=\"color: #ff0000;\">\"PNG\"</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\A</span>lphaBmp<span style=\"color: #000000;\">\\i</span>chat.bmp\"</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"IChat\"</span> + CRLF + <span style=\"color: #ff0000;\">\"ALPHABMP\"</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\o</span>lga1.jpg\"</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"olga1\"</span> + CRLF + <span style=\"color: #ff0000;\">\"JPG\"</span><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">CENTERED</span><br /> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">FONT</span> oFont<br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> </div>[/code:70t8l2tt]\n\nIn earlier versions, btnbmp can be shown transparently. Though this is not of a regular use, it is possible to show buttonbars also transparently like this:\n\n[url=https://imageshack.com/i/exuNSblgj:70t8l2tt][img:70t8l2tt]http://imagizer.imageshack.us/v2/xq90/537/uNSblg.jpg[/img:70t8l2tt][/url:70t8l2tt]\n\n[code=fw:70t8l2tt]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">function</span> TranspBtnBar<br /><br /> <span style=\"color: #00C800;\">local</span> oWnd, oBar, oBtn, oFont, oBrush<br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"TAHOMA\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">-12</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BRUSH</span> oBrush FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\o</span>lga1.jpg\"</span> RESIZE<br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"TRANSPARENT BUTTONBAR\"</span> <span style=\"color: #0000ff;\">BRUSH</span> oBrush<br /> oWnd:<span style=\"color: #000000;\">SetFont</span><span style=\"color: #000000;\">(</span> oFont <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTONBAR</span> oBar <span style=\"color: #0000ff;\">OF</span> oWnd <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">72</span>,<span style=\"color: #000000;\">96</span><br /> oBar:<span style=\"color: #000000;\">lTransparent</span> := .t.<br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\m</span>etro<span style=\"color: #000000;\">\\m</span>etro-back-48.png\"</span> ;<br /> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Back\"</span> + CRLF + <span style=\"color: #ff0000;\">\"metro\"</span> FLAT TRANSPARENT<br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\P</span>rogram Files<span style=\"color: #000000;\">\\M</span>icrosoft Office<span style=\"color: #000000;\">\\O</span>ffice14<span style=\"color: #000000;\">\\E</span>xcel.exe\"</span> ;<br /> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Excel\"</span> + CRLF + <span style=\"color: #ff0000;\">\"exe\"</span> FLAT TRANSPARENT<br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\P</span>rogram Files<span style=\"color: #000000;\">\\M</span>icrosoft Office<span style=\"color: #000000;\">\\O</span>ffice14<span style=\"color: #000000;\">\\w</span>inword.exe\"</span> ;<br /> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Word\"</span> + CRLF + <span style=\"color: #ff0000;\">\"EXE\"</span> FLAT TRANSPARENT<br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\g</span>ifs<span style=\"color: #000000;\">\\l</span>oading.gif\"</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"loading\"</span>+ CRLF+ <span style=\"color: #ff0000;\">\"gif\"</span> FLAT TRANSPARENT<br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\3</span>2x32<span style=\"color: #000000;\">\\c</span>opy.bmp\"</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"copy\"</span> + CRLF + <span style=\"color: #ff0000;\">\"bmp\"</span> FLAT TRANSPARENT<br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\3</span>2x32<span style=\"color: #000000;\">\\p</span>aste.bmp\"</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"paste\"</span> + CRLF + <span style=\"color: #ff0000;\">\"bmp\"</span> FLAT TRANSPARENT<br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\p</span>ngs<span style=\"color: #000000;\">\\i</span>mage3.png\"</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"image3\"</span> + CRLF + <span style=\"color: #ff0000;\">\"png\"</span> FLAT TRANSPARENT<br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\A</span>lphaBmp<span style=\"color: #000000;\">\\v</span>isa.bmp\"</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Visa\"</span> + CRLF + <span style=\"color: #ff0000;\">\"Alpha\"</span> FLAT TRANSPARENT<br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\A</span>lphaBmp<span style=\"color: #000000;\">\\i</span>chat.bmp\"</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"IChat\"</span> + CRLF + <span style=\"color: #ff0000;\">\"Alpha\"</span> FLAT TRANSPARENT<br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\m</span>etro<span style=\"color: #000000;\">\\u</span>sers.bmp\"</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"users\"</span> + CRLF + <span style=\"color: #ff0000;\">\"metro\"</span> FLAT TRANSPARENT<br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar FILE <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\m</span>etro<span style=\"color: #000000;\">\\e</span>xit.bmp\"</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"exit\"</span> + CRLF + <span style=\"color: #ff0000;\">\"metro\"</span> FLAT TRANSPARENT<br /><br /> <span style=\"color: #00C800;\">for</span> each oBtn in oBar:<span style=\"color: #000000;\">aControls</span><br /> oBtn:<span style=\"color: #000000;\">SetColor</span><span style=\"color: #000000;\">(</span> CLR_WHITE, CLR_BLACK <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">next</span><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">CENTERED</span><br /> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">FONT</span> oFont<br /> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">BRUSH</span> oBrush<br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> </div>[/code:70t8l2tt]\n\nIn the same manner, any image file (including exe file) can be specified as bitmap for XBrowse. Here is an example showing list of applications with their icons shown as bitmaps.\n\n[url=https://imageshack.com/i/ipj7Rvqgj:70t8l2tt][img:70t8l2tt]http://imagizer.imageshack.us/v2/xq90/673/j7Rvqg.jpg[/img:70t8l2tt][/url:70t8l2tt]\n[code=fw:70t8l2tt]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">function</span> XbrExeIcons<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> cPath := <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\\\</span>Program Files<span style=\"color: #000000;\">\\\\</span>Microsoft Office<span style=\"color: #000000;\">\\\\</span>Office14<span style=\"color: #000000;\">\\\\</span>\"</span><br /> <span style=\"color: #00C800;\">local</span> aDir, aExe := <span style=\"color: #000000;\">{</span><span style=\"color: #000000;\">}</span><br /> <span style=\"color: #00C800;\">local</span> ownd, oBrw, oFont<br /><br /> aDir := Directory<span style=\"color: #000000;\">(</span> cPath + <span style=\"color: #ff0000;\">\"*.exe\"</span> <span style=\"color: #000000;\">)</span><br /> AEval<span style=\"color: #000000;\">(</span> aDir, <span style=\"color: #000000;\">{</span> |a| AAdd<span style=\"color: #000000;\">(</span> aExe, cPath + a<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"TAHOMA\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">-16</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"MS OFFICE PROGRAMS\"</span><br /> oWnd:<span style=\"color: #000000;\">SetFont</span><span style=\"color: #000000;\">(</span> oFont <span style=\"color: #000000;\">)</span><br /> @ <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">0</span> <span style=\"color: #0000ff;\">XBROWSE</span> oBrw <span style=\"color: #0000ff;\">OF</span> oWnd DATASOURCE aDir COLUMNS <span style=\"color: #000000;\">1</span> HEADERS <span style=\"color: #ff0000;\">\"Program\"</span> ;<br /> LINES NOBORDER<br /><br /> WITH OBJECT oBrw<br /> :<span style=\"color: #000000;\">aCols</span><span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">AddBitmap</span><span style=\"color: #000000;\">(</span> aExe <span style=\"color: #000000;\">)</span><br /> :<span style=\"color: #000000;\">aCols</span><span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">bBmpData</span> := <span style=\"color: #000000;\">{</span> || oBrw:<span style=\"color: #000000;\">nArrayAt</span> <span style=\"color: #000000;\">}</span><br /> <span style=\"color: #B900B9;\">//</span><br /> :<span style=\"color: #000000;\">CreateFromCode</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> END<br /> oWnd:<span style=\"color: #000000;\">oClient</span> := oBrw<br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">CENTERED</span><br /> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">FONT</span> oFont<br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> </div>[/code:70t8l2tt]",
"time": "22:01",
"topic": "15.02 BUTTONBARs",
"username": "nageswaragunupudi"
}
] | 15.02 BUTTONBARs |
[
{
"date": "2015-02-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr Rao, thanks",
"time": "22:35",
"topic": "15.02 BUTTONBARs",
"username": "cnavarro"
}
] | 15.02 BUTTONBARs |
[
{
"date": "2015-02-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "nages ...\n\n[code=fw:27ytct46]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><span style=\"color: #00C800;\">METHOD</span> CreateButtons<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TXBrwColumn<br /><br /> .......<br /><br /> @ <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">0</span> <span style=\"color: #0000ff;\">BTNBMP</span> ::<span style=\"color: #000000;\">oBtnElip</span> <span style=\"color: #0000ff;\">OF</span> ::<span style=\"color: #000000;\">oBrw</span> NOBORDER <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">0</span><br /><br /> WITH OBJECT ::<span style=\"color: #000000;\">oBtnElip</span><br /> <span style=\"color: #00C800;\">if</span> Empty<span style=\"color: #000000;\">(</span> aBitmap <span style=\"color: #000000;\">)</span><br /> :<span style=\"color: #000000;\">cCaption</span> := IfNil<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">cBtnCaption</span>, <span style=\"color: #ff0000;\">\"...\"</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">else</span><br /> :<span style=\"color: #000000;\">hBitmap1</span> := aBitmap<span style=\"color: #000000;\">[</span> BITMAP_HANDLE <span style=\"color: #000000;\">]</span><br /> :<span style=\"color: #000000;\">hPalette1</span> := aBitmap<span style=\"color: #000000;\">[</span> BITMAP_PALETTE <span style=\"color: #000000;\">]</span><br /> :<span style=\"color: #000000;\">cCaption</span> := <span style=\"color: #ff0000;\">\"\"</span><br /> :<span style=\"color: #000000;\">HasAlpha</span><span style=\"color: #000000;\">(</span> :<span style=\"color: #000000;\">hBitmap1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// added transparent for png files ...</span><br /> <span style=\"color: #00C800;\">endif</span><br /> :<span style=\"color: #000000;\">bAction</span> := <span style=\"color: #000000;\">{</span>|| ::<span style=\"color: #000000;\">RunBtnAction</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /> :<span style=\"color: #000000;\">SetFont</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">DataFont</span> <span style=\"color: #000000;\">)</span><br /> aColors:= Eval<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">bClrBtn</span> ,.f. <span style=\"color: #000000;\">)</span><br /> :<span style=\"color: #000000;\">SetColor</span><span style=\"color: #000000;\">(</span> aColors<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span>, aColors<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">)</span><br /> END<br /><br /> </div>[/code:27ytct46]",
"time": "09:00",
"topic": "15.02 BUTTONBARs",
"username": "mastintin"
}
] | 15.02 BUTTONBARs |
[
{
"date": "2015-02-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"mastintin\":1xeuos31]nages ...\n\n[code=fw:1xeuos31]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><span style=\"color: #00C800;\">METHOD</span> CreateButtons<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TXBrwColumn<br /><br /> .......<br /><br /> @ <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">0</span> <span style=\"color: #0000ff;\">BTNBMP</span> ::<span style=\"color: #000000;\">oBtnElip</span> <span style=\"color: #0000ff;\">OF</span> ::<span style=\"color: #000000;\">oBrw</span> NOBORDER <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">0</span><br /><br /> WITH OBJECT ::<span style=\"color: #000000;\">oBtnElip</span><br /> <span style=\"color: #00C800;\">if</span> Empty<span style=\"color: #000000;\">(</span> aBitmap <span style=\"color: #000000;\">)</span><br /> :<span style=\"color: #000000;\">cCaption</span> := IfNil<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">cBtnCaption</span>, <span style=\"color: #ff0000;\">\"...\"</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">else</span><br /> :<span style=\"color: #000000;\">hBitmap1</span> := aBitmap<span style=\"color: #000000;\">[</span> BITMAP_HANDLE <span style=\"color: #000000;\">]</span><br /> :<span style=\"color: #000000;\">hPalette1</span> := aBitmap<span style=\"color: #000000;\">[</span> BITMAP_PALETTE <span style=\"color: #000000;\">]</span><br /> :<span style=\"color: #000000;\">cCaption</span> := <span style=\"color: #ff0000;\">\"\"</span><br /> :<span style=\"color: #000000;\">HasAlpha</span><span style=\"color: #000000;\">(</span> :<span style=\"color: #000000;\">hBitmap1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// added transparent for png files ...</span><br /> <span style=\"color: #00C800;\">endif</span><br /> :<span style=\"color: #000000;\">bAction</span> := <span style=\"color: #000000;\">{</span>|| ::<span style=\"color: #000000;\">RunBtnAction</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /> :<span style=\"color: #000000;\">SetFont</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">DataFont</span> <span style=\"color: #000000;\">)</span><br /> aColors:= Eval<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">bClrBtn</span> ,.f. <span style=\"color: #000000;\">)</span><br /> :<span style=\"color: #000000;\">SetColor</span><span style=\"color: #000000;\">(</span> aColors<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span>, aColors<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">)</span><br /> END<br /><br /> </div>[/code:1xeuos31][/quote:1xeuos31]\nThanks\n1) Present code of this method is different than this.\n2) Still painting of these buttons is somewhat primitive. We are considering total revision.",
"time": "09:33",
"topic": "15.02 BUTTONBARs",
"username": "nageswaragunupudi"
}
] | 15.02 BUTTONBARs |
[
{
"date": "2015-02-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "ok ...\nnages in tgdiplus this change is hight recomendable...\n\n\n[code=fw:2ysy39yt]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">METHOD</span> <span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span> cFile , cResname <span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> GDIBmp<br /><br /><span style=\"color: #B900B9;\">/*<br />elseif !Empty(cFile)<br /> if File( cFile )<br /> cBuffer := MemoRead( cFile )<br /> nLen:= len(cBuffer)<br /> // msginfo(nLen )<br /> if nLen < 65000<br /> ::hBmp:=GdiPlusImageLoadPNGFromSTR(cBuffer, Len( cBuffer ) )<br /> else<br /> msginfo(\"grande\")<br /> ::hBmp:=GDIPLUSCREATEIMAGEFROMFILE( Ansitowide(cFile ) )<br /> endif<br /> else<br /> msginfo( \"fichero no encontrado\" )<br /> endif<br /> endif<br />*/</span><br /><br /> elseif !Empty<span style=\"color: #000000;\">(</span>cFile<span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">if</span> File<span style=\"color: #000000;\">(</span> cFile <span style=\"color: #000000;\">)</span><br /> ::<span style=\"color: #000000;\">hBmp</span>:= GDIPLUSIMAGELOADCACHEDFILE<span style=\"color: #000000;\">(</span> cFile <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">else</span><br /> <span style=\"color: #0000ff;\">msginfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"fichero no encontrado\"</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /> </div>[/code:2ysy39yt]\n\nand cpp code ...\n\n[code=fw:2ysy39yt]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /> <span style=\"color: #00C800;\">HB_FUNC</span><span style=\"color: #000000;\">(</span> GDIPLUSIMAGELOADCACHEDFILE <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /><br /> FILE * fil = fopen <span style=\"color: #000000;\">(</span> hb_parc<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">)</span> , <span style=\"color: #ff0000;\">\"rb\"</span> <span style=\"color: #000000;\">)</span> ;<br /> fseek <span style=\"color: #000000;\">(</span> fil , <span style=\"color: #000000;\">0</span> , SEEK_END <span style=\"color: #000000;\">)</span> ;<br /> int filesize = ftell <span style=\"color: #000000;\">(</span> fil <span style=\"color: #000000;\">)</span> ;<br /><br /> fseek <span style=\"color: #000000;\">(</span> fil , <span style=\"color: #000000;\">0</span> , SEEK_SET <span style=\"color: #000000;\">)</span> ;<br /> HGLOBAL hglobal = GlobalAlloc <span style=\"color: #000000;\">(</span> GMEM_MOVEABLE , filesize <span style=\"color: #000000;\">)</span> ;<br /><br /> char * adr = <span style=\"color: #000000;\">(</span>char *<span style=\"color: #000000;\">)</span>GlobalLock <span style=\"color: #000000;\">(</span> hglobal <span style=\"color: #000000;\">)</span> ;<br /> int nbytes = fread <span style=\"color: #000000;\">(</span> adr , <span style=\"color: #000000;\">1</span> , filesize , fil <span style=\"color: #000000;\">)</span> ;<br /> fclose <span style=\"color: #000000;\">(</span> fil <span style=\"color: #000000;\">)</span> ;<br /><br /> <span style=\"color: #00C800;\">if</span> <span style=\"color: #000000;\">(</span> nbytes != filesize <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #000000;\">{</span><br /> MessageBox<span style=\"color: #000000;\">(</span> GetActiveWindow<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, <span style=\"color: #ff0000;\">\"fallo\"</span>, <span style=\"color: #ff0000;\">\"No carga la imagen\"</span>, 0x30 <span style=\"color: #000000;\">)</span>;<br /> <span style=\"color: #000000;\">}</span> ;<br /><br /> LPSTREAM pstm = <span style=\"color: #00C800;\">NULL</span> ;<br /> GlobalUnlock <span style=\"color: #000000;\">(</span> hglobal <span style=\"color: #000000;\">)</span> ;<br /><br /> CreateStreamOnHGlobal <span style=\"color: #000000;\">(</span> hglobal, <span style=\"color: #00C800;\">TRUE</span>, &pstm <span style=\"color: #000000;\">)</span> ;<br /><br /> Bitmap *original = <span style=\"color: #00C800;\">new</span> Bitmap<span style=\"color: #000000;\">(</span> pstm,<span style=\"color: #00C800;\">FALSE</span> <span style=\"color: #000000;\">)</span>;<br /><br /> int nWidth = original->GetWidth<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> ;<br /> int nHeight = original->GetHeight<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> ;<br /><br /> Bitmap* newImage = <span style=\"color: #00C800;\">new</span> Bitmap<span style=\"color: #000000;\">(</span> nWidth, nHeight, original->GetPixelFormat<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>;<br /><br /> Graphics * graphics = <span style=\"color: #00C800;\">new</span> Graphics<span style=\"color: #000000;\">(</span> newImage <span style=\"color: #000000;\">)</span>;<br /> graphics->DrawImage<span style=\"color: #000000;\">(</span> original ,<span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">0</span>, nWidth, nHeight<span style=\"color: #000000;\">)</span>;<br /><br /> delete graphics ;<br /> delete original ;<br /> GlobalFree<span style=\"color: #000000;\">(</span> hglobal <span style=\"color: #000000;\">)</span>;<br /> pstm->Release<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>;<br /><br /> hb_retnl<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> HB_LONG <span style=\"color: #000000;\">)</span> newImage <span style=\"color: #000000;\">)</span>;<br /><br /><span style=\"color: #000000;\">}</span><br /><br /> </div>[/code:2ysy39yt]",
"time": "09:42",
"topic": "15.02 BUTTONBARs",
"username": "mastintin"
}
] | 15.02 BUTTONBARs |
[
{
"date": "2015-02-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you for all your help.\nI would like to be in touch with you by personal email for further work on gdiplus.",
"time": "09:58",
"topic": "15.02 BUTTONBARs",
"username": "nageswaragunupudi"
}
] | 15.02 BUTTONBARs |
[
{
"date": "2015-10-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I know there was another thread on menus with 15.09 but there appears to be no resolution.\n\nSpecifically, using a menu on a button bar, the first level displayed is fine. However, a submenu does not inherit the font of the first one. In my case, it is much larger and poorly spaced:\n\nMENU\n MENUITEM \"Abc\"\n MENUITEM \"Def\"\n MENUITEM \"Options\"\n MENU\n MENUITEM \"Ghi\"\n MENUITEM \"JKL\"\n ENDMENU\nENDMENU\n\nIn this case, the first menu items will be with a font of size 8, but the submenu items will be of size 12. It is a significant difference. Also, the right margin is fine on the main menu, but not properly extended on the submenu. \n\nI have reviewed other threads on this. A am using Build 2 of 15.09\n\nTim\n\nThis is when I call menus from a button on a button bar, and it was working correctly in 15.05 ( my last useable FWH prior to 15.09 ).",
"time": "19:04",
"topic": "15.09 Menu problem still",
"username": "TimStone"
}
] | 15.09 Menu problem still |
[
{
"date": "2015-10-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim\nWe are doing many tests and adjustments to not happen again and maintain compatibility with previous versions of the FWH 15.05.\nThis issue is practically resolved\nThank you and sorry for the inconvenience",
"time": "21:39",
"topic": "15.09 Menu problem still",
"username": "cnavarro"
}
] | 15.09 Menu problem still |
[
{
"date": "2015-10-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "If you can get it resolved soon, perhaps Antonio can issue a Build 3 of 15.09 with the fix.\n\nThank you.",
"time": "21:45",
"topic": "15.09 Menu problem still",
"username": "TimStone"
}
] | 15.09 Menu problem still |
[
{
"date": "2015-10-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tim\nYou will not have to wait long\nWe are also reconciles with the theme of Unicode\n\nPlease\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=16&t=31378&p=182461#p182461\">viewtopic.php?f=16&t=31378&p=182461#p182461</a><!-- l -->\n\nThanks",
"time": "22:09",
"topic": "15.09 Menu problem still",
"username": "cnavarro"
}
] | 15.09 Menu problem still |
[
{
"date": "2015-10-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "FWH1509 Build 3 please. <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "11:30",
"topic": "15.09 Menu problem still",
"username": "norberto"
}
] | 15.09 Menu problem still |
[
{
"date": "2015-10-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=16&t=31378&p=182709#p182709\">viewtopic.php?f=16&t=31378&p=182709#p182709</a><!-- l -->",
"time": "11:43",
"topic": "15.09 Menu problem still",
"username": "Antonio Linares"
}
] | 15.09 Menu problem still |
[
{
"date": "2015-10-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Antonio,\njust to inform you there is also a further problem to fix on the menu with 15.09 build 2:\nthe menu items on the right disappear moving the mouse on the left.\nConsider I'm working on a cloud environment. See video:\n\n<!-- m --><a class=\"postlink\" href=\"http://www.softwarexp.co.uk/beta/test/test.html\">http://www.softwarexp.co.uk/beta/test/test.html</a><!-- m -->",
"time": "09:10",
"topic": "15.09 Menu problem still",
"username": "Marco Turco"
}
] | 15.09 Menu problem still |
[
{
"date": "2015-10-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=16&t=31378&p=182736#p182736\">viewtopic.php?f=16&t=31378&p=182736#p182736</a><!-- l -->",
"time": "09:39",
"topic": "15.09 Menu problem still",
"username": "Antonio Linares"
}
] | 15.09 Menu problem still |
[
{
"date": "2014-10-29",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola,\n\nEn España, a partir del 15.1.2015 las AAPP sólo admitirán facturas electronicas firmadas version 3.2. (<!-- m --><a class=\"postlink\" href=\"http://www.facturae.gob.es/que-desea/Paginas/administraciones-publicas.aspx\">http://www.facturae.gob.es/que-desea/Pa ... licas.aspx</a><!-- m --> )\n¿ Alguna idea de por donde empezar para poder generar la Facturae 3.2 firmada ?\n\nGracias",
"time": "17:55",
"topic": "15.1.2015 Facturae 3.2 ¡ obligatorio !",
"username": "hmpaquito"
}
] | 15.1.2015 Facturae 3.2 ¡ obligatorio ! |
[
{
"date": "2014-11-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "¿ Sólo yo en España tengo que tener un programa para generar facturae 3.2 firmada ?\nMe voy ahora mismo a hablar con el gobierno... se van a enterar <!-- s:wink: --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\":wink:\" title=\"Wink\" /><!-- s:wink: -->",
"time": "16:45",
"topic": "15.1.2015 Facturae 3.2 ¡ obligatorio !",
"username": "hmpaquito"
}
] | 15.1.2015 Facturae 3.2 ¡ obligatorio ! |
[
{
"date": "2014-11-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "¡Dales caña!\nLo cierto es que yo voy con bastante retraso ... aunque después de las prisas en meter el SEPA y ver que la mayoría de mis clientes siguen enviando normas 19, 32 y 58 como si nada ... <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: --> <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: -->",
"time": "18:53",
"topic": "15.1.2015 Facturae 3.2 ¡ obligatorio !",
"username": "AngelSalom"
}
] | 15.1.2015 Facturae 3.2 ¡ obligatorio ! |
[
{
"date": "2014-11-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Yo también tengo el tema bastante parado.\nComo dice Ángel, como después pase igual que con el sepa, es para afilar cuchillos.\n\nEn algunas administraciones, ya sólo aceptan facturas electrónicas.\nPero no tienen todavía definido si usar 3.1 o 3.2, \ny lo que es mas importante, todavía no tienen definido que formato de firma usar (parece que el estándar va ha ser XadES)\n\nEn definitiva, aunque sólo aceptan facturas electrónicas, no hay forma que validen una correcta. (Ni generadas con el programa facturae)\nSolución que han optado, han creado una página web, donde picas la factura a mano. \n\nUna vez dicho esto:\nParece que el formato estándar a usar va ha ser XadES\nCon la aplicación facturae se puede firmar, llamando a la aplicación desde línea de comandos.\nPero en la última versión va preguntando por el certificado que quieres usar para firmar, factura a factura. (poco práctico)\n\nP.D.\nLo que entiendo es como el destinatario, puede validar que esa factura está firmada correctamente.",
"time": "09:46",
"topic": "15.1.2015 Facturae 3.2 ¡ obligatorio !",
"username": "fgondi"
}
] | 15.1.2015 Facturae 3.2 ¡ obligatorio ! |
[
{
"date": "2015-01-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estimados amigos,\n\n¿Qué tal lleváis el tema de la factura electrónica?\n\n¿Qué herramientas habéis decidido usar?\n\nLa aplicación factuae, firma con el estandar XadES y parece que va a ser el estandar en España.\nComo ya comenté en el anterior post, tiene línea de comando, pero en las ultimas versiones tienes ejecutar factura a factura y por cada una pregunta por el certificado.\n\nParece que para vb .net existen librerías, ¿podemos usar algo parecido o eso mismo nosotros?\n\n¿Cómo podemos verificar la firma y la fecha de caducidad de las factura electrónicas que se reciben?",
"time": "18:01",
"topic": "15.1.2015 Facturae 3.2 ¡ obligatorio !",
"username": "fgondi"
}
] | 15.1.2015 Facturae 3.2 ¡ obligatorio ! |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.