messages
listlengths 1
1
| topic
stringlengths 2
60
|
|---|---|
[
{
"date": "2014-04-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nall four forms are working perfect now.\nCircles are a ONE-click solution on image Top / Left\nEllipses are a TWO-click solution on image Top / Left and Bottom / Right\nA circle works like a image. The basic-diameter can be define inside the extra-dialog.\nInside the Main-painting area, You can select a resize-factor of the defined size and any pensize and color.\n\n[img:ic211spr]http://www.pflegeplus.com/pictures/form1.jpg[/img:ic211spr]\n\n[img:ic211spr]http://www.pflegeplus.com/pictures/form2.jpg[/img:ic211spr]\n\nthe circle function \n\n[code=fw:ic211spr]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">// -------------- CIRCLE -----</span><br /><br /><span style=\"color: #00C800;\">STATIC</span> <span style=\"color: #00C800;\">FUNCTION</span> CL_ROUND<span style=\"color: #000000;\">(</span> hMemDC, nStyle <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">LOCAL</span> hOldBrush, oBrush<br /><span style=\"color: #00C800;\">LOCAL</span> hOldPen := SELECTOBJECT<span style=\"color: #000000;\">(</span> hMemDC, hPen <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">IF</span> nStyle = <span style=\"color: #000000;\">1</span> <span style=\"color: #B900B9;\">// transparent</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BRUSH</span> oBrush <span style=\"color: #0000ff;\">STYLE</span> <span style=\"color: #00C800;\">NULL</span> <br /><span style=\"color: #00C800;\">ELSE</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BRUSH</span> oBrush <span style=\"color: #0000ff;\">COLOR</span> nPenColor<br /><span style=\"color: #00C800;\">ENDIF</span><br />hOldBrush := SelectObject<span style=\"color: #000000;\">(</span> hMemDC, oBrush:<span style=\"color: #000000;\">hBrush</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">IF</span> nWFactor > <span style=\"color: #000000;\">1</span> .and. nHFactor > <span style=\"color: #000000;\">1</span> <span style=\"color: #B900B9;\">// image < painting area</span><br /> MOVETO<span style=\"color: #000000;\">(</span> hMemDC, aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span>, aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">)</span><br /> ROUNDRECT<span style=\"color: #000000;\">(</span> hMemDC, aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span>, ; <span style=\"color: #B900B9;\">// Left</span><br /> aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span>, ; <span style=\"color: #B900B9;\">// Top</span><br /> aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span> + <span style=\"color: #000000;\">(</span> nCircle * <span style=\"color: #000000;\">(</span> nLIResize / <span style=\"color: #000000;\">100</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>, ; <span style=\"color: #B900B9;\">// Right</span><br /> aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> + <span style=\"color: #000000;\">(</span> nCircle * <span style=\"color: #000000;\">(</span> nLIResize / <span style=\"color: #000000;\">100</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>, ; <span style=\"color: #B900B9;\">// Bottom </span><br /> nCircle * <span style=\"color: #000000;\">(</span> nLIResize / <span style=\"color: #000000;\">100</span> <span style=\"color: #000000;\">)</span>, ; <span style=\"color: #B900B9;\">// Width</span><br /> nCircle * <span style=\"color: #000000;\">(</span> nLIResize / <span style=\"color: #000000;\">100</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// Height</span><br /><span style=\"color: #00C800;\">ELSE</span> <span style=\"color: #B900B9;\">// image > painting area</span><br /> <span style=\"color: #00C800;\">IF</span> nWFactor < nHFactor .OR. nWFactor < <span style=\"color: #000000;\">1</span> .and. nHFactor > <span style=\"color: #000000;\">1</span> <br /> MOVETO<span style=\"color: #000000;\">(</span> hMemDC, aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span> / nWFactor, aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> / nWFactor <span style=\"color: #000000;\">)</span><br /> ROUNDRECT<span style=\"color: #000000;\">(</span> hMemDC, aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span> / nWFactor, ; <span style=\"color: #B900B9;\">// Left</span><br /> aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> / nWFactor, ; <span style=\"color: #B900B9;\">// Top</span><br /> <span style=\"color: #000000;\">(</span> aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span> / nWFactor <span style=\"color: #000000;\">)</span> + ;<br /> <span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> nCircle / nWFactor <span style=\"color: #000000;\">)</span> * <span style=\"color: #000000;\">(</span> nLIResize / <span style=\"color: #000000;\">100</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>, ; <span style=\"color: #B900B9;\">// Right</span><br /> <span style=\"color: #000000;\">(</span> aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> / nWFactor <span style=\"color: #000000;\">)</span> + ;<br /> <span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> nCircle / nWFactor <span style=\"color: #000000;\">)</span> * <span style=\"color: #000000;\">(</span> nLIResize / <span style=\"color: #000000;\">100</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>, ; <span style=\"color: #B900B9;\">// Bottom </span><br /> nCircle / nWFactor * <span style=\"color: #000000;\">(</span> nLIResize / <span style=\"color: #000000;\">100</span> <span style=\"color: #000000;\">)</span>, ; <span style=\"color: #B900B9;\">// Width</span><br /> nCircle / nWFactor * <span style=\"color: #000000;\">(</span> nLIResize / <span style=\"color: #000000;\">100</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// Height</span><br /> <span style=\"color: #00C800;\">ENDIF</span><br /> <span style=\"color: #00C800;\">IF</span> nWFactor > nHFactor .OR. nWFactor > <span style=\"color: #000000;\">1</span> .and. nHFactor < <span style=\"color: #000000;\">1</span> <br /> MOVETO<span style=\"color: #000000;\">(</span> hMemDC, aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span> / nHFactor, aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> / nHFactor <span style=\"color: #000000;\">)</span><br /> ROUNDRECT<span style=\"color: #000000;\">(</span> hMemDC, aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span> / nHFactor, ; <span style=\"color: #B900B9;\">// Left</span><br /> aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> / nHFactor, ; <span style=\"color: #B900B9;\">// Top</span><br /> <span style=\"color: #000000;\">(</span> aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span> / nHFactor <span style=\"color: #000000;\">)</span> + ;<br /> <span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> nCircle / nHFactor <span style=\"color: #000000;\">)</span> * <span style=\"color: #000000;\">(</span> nLIResize / <span style=\"color: #000000;\">100</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>, ; <span style=\"color: #B900B9;\">// Right</span><br /> <span style=\"color: #000000;\">(</span> aPoints<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> / nHFactor <span style=\"color: #000000;\">)</span> + ;<br /> <span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> nCircle / nHFactor <span style=\"color: #000000;\">)</span> * <span style=\"color: #000000;\">(</span> nLIResize / <span style=\"color: #000000;\">100</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>, ; <span style=\"color: #B900B9;\">// Bottom </span><br /> nCircle / nHFactor * <span style=\"color: #000000;\">(</span> nLIResize / <span style=\"color: #000000;\">100</span> <span style=\"color: #000000;\">)</span>, ; <span style=\"color: #B900B9;\">// Width</span><br /> nCircle / nHFactor * <span style=\"color: #000000;\">(</span> nLIResize / <span style=\"color: #000000;\">100</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// Height</span><br /> <span style=\"color: #00C800;\">ENDIF</span><br /><span style=\"color: #00C800;\">ENDIF</span><br /><br />DeleteObject<span style=\"color: #000000;\">(</span> hOldPen <span style=\"color: #000000;\">)</span><br />DeleteObject<span style=\"color: #000000;\">(</span> oBrush <span style=\"color: #000000;\">)</span><br />DeleteObject<span style=\"color: #000000;\">(</span> hOldBrush <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">// C5RoundRect( hMemDC, 80, 80, 400, 400, 250, 250 )</span><br /><span style=\"color: #B900B9;\">// That function is just a wrapper for the Windows API function RoundRect()</span><br /><span style=\"color: #B900B9;\">// In order to use a brush with it, </span><br /><span style=\"color: #B900B9;\">// you should first create the brush</span><br /><span style=\"color: #B900B9;\">// and select it to the current hDC and later on, </span><br /><span style=\"color: #B900B9;\">// save the current brush using </span><br /><span style=\"color: #B900B9;\">// hOldBrush := SelectObject( hDC, oBrush:hBrush ), </span><br /><span style=\"color: #B900B9;\">// paint, </span><br /><span style=\"color: #B900B9;\">// select the previous brush with SelectObject( hDC, hOldBrush ) </span><br /><span style=\"color: #B900B9;\">// and finally destroy the brush ( oBrush:End() )</span><br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br /> </div>[/code:ic211spr]\n\nBest regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "10:51",
"topic": "Any infos about function < C5RoundRect > ? ( solved )",
"username": "ukoenig"
}
] |
Any infos about function < C5RoundRect > ? ( solved )
|
[
{
"date": "2008-05-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Linares and friends!\r\n\r\n\r\nCurrently we work with the lib SQLLIB to carry out the \"conversation\" with the MySQL database and PostgreSQL database too.\r\n\r\nIs there any way, native, to do the same process?\r\n\r\nIt would be basically a command or class which has the property to do the following: Run any ANSI SQL statement in the database server, return errors and realize backups.\r\n\r\n\r\nI have updated my fivewin to version 8.05, but I am depending on the update of SQLLIB to use it. This is not good enough.\r\n\r\nThere is any way? Please!\r\nThanks to everybody for all!",
"time": "18:48",
"topic": "Any means to stop using SQLLIB!?",
"username": "JC"
}
] |
Any means to stop using SQLLIB!?
|
[
{
"date": "2008-05-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "JC\r\n\r\nI know of no better solution then Win32ole .. better known as ADO .. lots of samples on the native xHarbour class .. just do a search in this forum for ADO ..\r\n\r\nI think you will find what you are looking for.\r\n\r\nRick Lipkin\r\nSC Dept of Health, USA",
"time": "19:08",
"topic": "Any means to stop using SQLLIB!?",
"username": "Rick Lipkin"
}
] |
Any means to stop using SQLLIB!?
|
[
{
"date": "2008-05-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "JC..\r\n\r\nAs Rick says... there's A SOLUTION... ADO...\r\n\r\nI've done some tests with the same code but different connection strings to access MYSQL, Postgress, MS Sql, Oracle (XE Version ) with no problems at all.\r\n\r\nYou can use it by pure code, you can use ADORDD, you can use my class ADOBASE ( although is a work in progress ) or you can create your own solution.\r\n\r\nTheres lot of info on ADO in the web, you can contact me if you can't find them.\r\n\r\nA new and more complete version of my class will be posted this monday.\r\nYou can look the earlier version here...\r\n<!-- m --><a class=\"postlink\" href=\"http://200.72.140.34/privado\">http://200.72.140.34/privado</a><!-- m --> \r\nadobase.rar\r\n\r\nFrom Chile\r\nAdolfo",
"time": "01:13",
"topic": "Any means to stop using SQLLIB!?",
"username": "Adolfo"
}
] |
Any means to stop using SQLLIB!?
|
[
{
"date": "2005-10-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi ! Today I read in xHarbour.news that are some critical changes which are affected to FWH libs as errors . It seems that for xHarbour new changes , if you are not FTDN user , can say good bye ... Can you inform , what can help in this situation ?\n\n With best regards !",
"time": "06:09",
"topic": "Any news about compatibility with xHarbour changes ( CVS ) ?",
"username": "Rimantas"
}
] |
Any news about compatibility with xHarbour changes ( CVS ) ?
|
[
{
"date": "2005-10-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rimantas,\n\nWe have not reviewed the current CVS files yet. So FWH is not compatible yet (the same applies for FTDN users).",
"time": "06:14",
"topic": "Any news about compatibility with xHarbour changes ( CVS ) ?",
"username": "Antonio Linares"
}
] |
Any news about compatibility with xHarbour changes ( CVS ) ?
|
[
{
"date": "2005-10-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "FWH has been already modified to work with current xHarbour CVS code.\n\nWe are actually testing it to be totally sure everything is ok.\n\nIt has been modified in a way that FiveHC.lib remains being just the same file for both Harbour and xHarbour <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "18:58",
"topic": "Any news about compatibility with xHarbour changes ( CVS ) ?",
"username": "Antonio Linares"
}
] |
Any news about compatibility with xHarbour changes ( CVS ) ?
|
[
{
"date": "2013-12-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Since I can't get a solution to the hugely excessive length of the Blowfish key (over 4000 bytes) that makes encryption/decryption painfully slow, can anyone recommend another widely recognized encryption system that works with FWH?",
"time": "00:57",
"topic": "Any other encryption system besides Blowfish?",
"username": "Roger Seiler"
}
] |
Any other encryption system besides Blowfish?
|
[
{
"date": "2013-12-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Roger;\n\nADS remote as well as the free local server RDDs allow you to encrypt a .dbf. Here is some text from the help file:\n[quote:2d3lv674]\nAdvantage provides security for your data in a number of important ways. Some of these are associated with how Advantage transmits data across the network, and others are associated with access rights conferred by a data dictionary. But the most fundamental of data security features is provided at the table level. Specifically, individual tables can be encrypted with a password.\n\nWhen a table is encrypted with a password, both the table and its memo file are encoded using the password. (If you are using a data dictionary and ADT tables, it is possible to also have the index encrypted.) The effect of this encoding is that the raw table and memo files appear scrambled to anyone who attempts to view their contents. Without encryption, it would be possible for someone with a file viewer, or even Windows Notepad (for small tables), to open the table and view its contents.\n\nOnce the table is encrypted, you must provide the password for the table each time the table is opened. For database tables, which can only be accessed through a data dictionary, the data dictionary supplies the password automatically. Note, however, that a data dictionary itself provides security, and when the data dictionary is configured correctly, you will not be able to access the data dictionary without supplying a user name and password. The data dictionary user name and password are separate from a table's password.\n\nIf you want to view an encrypted free table using the Advantage Data Architect, you will be prompted for the password when you open the table. Similarly, before an encrypted table can be accessed from a client application, that application must submit the password.\n\nHow you submit a table's password from a client application depends on the data access mechanism you are using. For example, if you are using the ACE API, you must make a call to AdsEnableEncryption (for Advantage tables) or AdsStmtSetTablePassword (for executing SQL statements against the table), passing the table name or handle and the password as the arguments to the function call. You need to make one of these calls once per Advantage table, prior to accessing it.\n[/quote:2d3lv674]\n\nI will try to find time to post some samples on encrypting tables for the first time and then using a table that has been encrypted, but you can easily figure it out by reading from the help file. Search for ACE functions AdsEncryptTable(), AdsEnableEncryption(), AdsDecryptTable(), AdsDisableEncryption(). There are also stored procedures to do the same as the ACE api functions if you rather use SQL syntax. The full ACE api is available to you when linking rddads.lib to your apps.\n\nHope that helps,\n\n\nReinaldo.",
"time": "22:46",
"topic": "Any other encryption system besides Blowfish?",
"username": "reinaldocrespo"
}
] |
Any other encryption system besides Blowfish?
|
[
{
"date": "2013-12-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Roger\n\nI posted this code some time ago which has served me well..\n\nRick Lipkin\n\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=3&t=27189&p=152637#p152637\">viewtopic.php?f=3&t=27189&p=152637#p152637</a><!-- l -->",
"time": "17:10",
"topic": "Any other encryption system besides Blowfish?",
"username": "Rick Lipkin"
}
] |
Any other encryption system besides Blowfish?
|
[
{
"date": "2013-12-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Reinaldo and Rick,\n\nThanks very much for your info. Those are very workable encryption systems, but unfortunately (as far as can see) are not certified as acceptable under the U.S. govt. HIPAA rules (Health Insurance Portability and Accountability Act). An app that I'm developing right now has to be HIPAA compliant, which means it has to use one of the encryption systems that the govt. has found acceptable under HIPAA. The approved list of encryption systems includes DES (though it is being deprecated), Blowfish, RSA, RC5, PGP and IDEA. Other proprietary encryption systems are generally not allowed, unless certified by an independent encryption review agency (an expensive process). Thus FiveWin's built-in encryption system (except for Blowfish), the ADS encryption system, and encryption using the Clipper Tools model, appear to be unacceptable under HIPAA.\n\nBecause Blowfish is acceptable under the U.S. govt. HIPAA rules, and we have it in Harbour, that is why I keep asking to get the problem with its overly long encryption key resolved.",
"time": "17:15",
"topic": "Any other encryption system besides Blowfish?",
"username": "Roger Seiler"
}
] |
Any other encryption system besides Blowfish?
|
[
{
"date": "2013-12-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I see we are running two different threads on the same subject and I have already shown that ADS is FIPS compliant, however, here is more information on ADS encryption:\n\n[quote:hmjlwfd0]\nAdvantage provides the capability to encrypt tables and associated data. Data encryption is just one part of the process of creating a secure system. The following are some of the steps that can be taken to secure a database:\n\n· Restrict physical access: Prevent direct user access by keeping all data on a physically remote server and using Advantage Database Server to access the data. \n\n· Use access controls: Use a data dictionary with user logins to restrict who can connect to the database. \n\n· Permissions: Use database roles and assign user and group permissions to fine-tune levels of access that users can have. \n\n· Require logins: Disable free connections on the Advantage Database Server to force all connections to authenticate through a data dictionary. \n\n· Encrypt communications: Enable the encryption of communications between the client and server application with Transport Layer Security (TLS) available beginning in v10.1 or with the existing encryption available with both UDP and TCP/IP communications. \n\n· If requirements call for it, enable FIPS mode to ensure that only encryption algorithms approved for the Federal Information Processing Standard (FIPS) 140-2 are used. \n\n· Encrypt data: Enable table encryption at the data dictionary level or in individual free tables. \n\n[/quote:hmjlwfd0]\n\nKeep in mind that encryption wouldn't even be necessary to secure you data as long as you don't keep the data on a shared folder. With ADS you keep your data on a server that is NOT being shared. There is absolutely no way to see the data unless you can connect using one of the ADS clients. The client makes TCP requests to the server and as long as the client has authenticated, the server answers back with the info being requested by the client. .dbf tables, indexes, and memo files are not visible or accessible to the operating system.\n\n\nReinaldo.",
"time": "19:32",
"topic": "Any other encryption system besides Blowfish?",
"username": "reinaldocrespo"
}
] |
Any other encryption system besides Blowfish?
|
[
{
"date": "2013-12-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Reinaldo,\n\nThanks for the excellent info. I'll discuss it will my customer. Hopefully, they'll increase my project's budget to allow using ADS with all of its advantages.\n\nAll the best,\n\n- Roger",
"time": "20:51",
"topic": "Any other encryption system besides Blowfish?",
"username": "Roger Seiler"
}
] |
Any other encryption system besides Blowfish?
|
[
{
"date": "2014-01-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I got Blowfish to work fine. See separate thread, \"How to work with Blowfish\".",
"time": "04:57",
"topic": "Any other encryption system besides Blowfish?",
"username": "Roger Seiler"
}
] |
Any other encryption system besides Blowfish?
|
[
{
"date": "2010-06-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "If fivewin compatible with ipv6 sockets ???\nThanks \nMike",
"time": "23:38",
"topic": "Any plans for ipv6 ??",
"username": "Mike Buckler"
}
] |
Any plans for ipv6 ??
|
[
{
"date": "2008-05-24",
"forum": "FiveWin for CA-Clipper",
"text": "I can't manage to produce a program with FiveWin that runs ok when linking the DBFCDX driver from CA or the defunct SIX3 driver from SuccessWare.\r\n\r\nWe've been using the SIX3 driver since 1996 without any problems on production systems.\r\n\r\nIs there any know issues with any of the above?",
"time": "23:39",
"topic": "Any problems with FiveWin and the DBFCDX & SIX3 drivers?",
"username": "HunterEC"
}
] |
Any problems with FiveWin and the DBFCDX & SIX3 drivers?
|
[
{
"date": "2008-05-25",
"forum": "FiveWin for CA-Clipper",
"text": "What errors do you get ?\r\n\r\nAre they linking errors ? or runtime errors ?",
"time": "00:19",
"topic": "Any problems with FiveWin and the DBFCDX & SIX3 drivers?",
"username": "Antonio Linares"
}
] |
Any problems with FiveWin and the DBFCDX & SIX3 drivers?
|
[
{
"date": "2008-05-25",
"forum": "FiveWin for CA-Clipper",
"text": "Linking errors:\r\n\r\n[color=red:u5ekkrei]BLINKER : 1115 : TST.OBJ(TST) : 'SIXCDX' : unresolved external\nBLINKER : 1115 : TST.OBJ(TST) : 'SX_SETTRIG' : unresolved external\nBLINKER : 1115 : SIXCDX.OBJ(SIXCDX) : '_VSXDBF' : unresolved external [/color:u5ekkrei]\r\n\r\nThank you.\r\n\r\nLink Script:\r\n\r\n[color=blue:u5ekkrei]\nBLINKER INCREMENTAL OFF\nBLINKER EXECUTABLE NODELETE\nBLINKER EXECUTABLE COMPRESS\nBLINKER EXECUTABLE CLIPPER F99\n\nPACKDATA\nPACKCODE\nNOEXTDIC\nREADONLY\n\nFILE TST\n\nOUTPUT TST\n\n@SIX3.LNK\n\nDEFBEGIN\nNAME Tutorial_01_FiveWin\nDESCRIPTION \"Primer programa en Fivewin\"\nEXETYPE Windows 3.1\nCODE preload moveable discardable\nDATA preload moveable\nSTACKSIZE 9500\nHEAPSIZE 2048\nSEGMENT \"PLANKTON_TEXT\" NONDISCARDABLE\nSEGMENT \"EXTEND_TEXT\" NONDISCARDABLE\nSEGMENT \"OM_TEXT\" NONDISCARDABLE\nSEGMENT \"OSMEM_TEXT\" NONDISCARDABLE\nSEGMENT \"SORTOF_TEXT\" NONDISCARDABLE\nSEGMENT \"STACK_TEXT\" NONDISCARDABLE\nDEFEND\n\nFILE SIXCDX\n\nSEARCH FIVE, FIVEC, OBJECTS\n\nLIB WINAPI [/color:u5ekkrei]",
"time": "05:44",
"topic": "Any problems with FiveWin and the DBFCDX & SIX3 drivers?",
"username": "HunterEC"
}
] |
Any problems with FiveWin and the DBFCDX & SIX3 drivers?
|
[
{
"date": "2008-05-25",
"forum": "FiveWin for CA-Clipper",
"text": "Gustavo,\r\n\r\nThere is a SixDriver RDD for 32 bits. We recommend you to migrate your application to 32 bits using Harbour/xHarbour and FWH.\r\n\r\nAlso, you should consider to migrate from Six to Comix (built-in with Harbour/xHarbour) as it is the most popular and supported RDD in 32 bits.",
"time": "08:42",
"topic": "Any problems with FiveWin and the DBFCDX & SIX3 drivers?",
"username": "Antonio Linares"
}
] |
Any problems with FiveWin and the DBFCDX & SIX3 drivers?
|
[
{
"date": "2008-05-26",
"forum": "FiveWin for CA-Clipper",
"text": "Antonio: \r\nThank you for your support. <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) --> Before migrating to Comix, as you suggested, does Comix under xHarbour supports table encryption like the SIX driver ? In the short term I need to port a report module to Clipper/FiveWin using the SIx driver. Do you know if it is possible to have Six & FiveWin linked together (using Blinker) ? Thanks !",
"time": "04:57",
"topic": "Any problems with FiveWin and the DBFCDX & SIX3 drivers?",
"username": "HunterEC"
}
] |
Any problems with FiveWin and the DBFCDX & SIX3 drivers?
|
[
{
"date": "2008-05-26",
"forum": "FiveWin for CA-Clipper",
"text": "You can use FiveWin for Clipper and Six Driver working together without problems.\r\n\r\nRegarding the functionality that you ask for in 32 bits, we don't know it for sure. You may ask the Six RDD manufacturer. Though again, we recommend you to use the builtin DBFCDX RDD in Harbour/xharbour.",
"time": "18:00",
"topic": "Any problems with FiveWin and the DBFCDX & SIX3 drivers?",
"username": "Antonio Linares"
}
] |
Any problems with FiveWin and the DBFCDX & SIX3 drivers?
|
[
{
"date": "2008-05-26",
"forum": "FiveWin for CA-Clipper",
"text": "Thank you Antonio.",
"time": "20:46",
"topic": "Any problems with FiveWin and the DBFCDX & SIX3 drivers?",
"username": "HunterEC"
}
] |
Any problems with FiveWin and the DBFCDX & SIX3 drivers?
|
[
{
"date": "2008-09-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\r\n\r\nI need a sample of splitter with resources and how to make a button with Vertical text.\r\n\r\nExample:\r\n[code:168vva6k]\n+---+\n| |\n| N |\n| A |\n| M |\n| E |\n| |\n+---+\n+---+\n| |\n| P |\n| H |\n| O |\n| N |\n| E |\n| |\n+---+\n[/code:168vva6k]",
"time": "14:50",
"topic": "Any sample about splitter in resources and Vertical button?",
"username": "Rochinha"
}
] |
Any sample about splitter in resources and Vertical button?
|
[
{
"date": "2008-09-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\r\n\r\nTo draw fonts like this on a bitmap, you have to do calculations.\r\nFor each char of the text, you have to calculate the position\r\ninside a bitmap to get the text vertical centered.\r\nThere is no standard for this.\r\nFor the moment, the tools can do the needed calculation for you.\r\n\r\nMy next project will be a < button-creator > for Fivewin,\r\nthere i want to make it possible, that the user can create buttons like these, you are looking for.\r\n\r\nAbout splitters, you can find some samples in FWH/samples/\r\n\r\n[img:1tmk67w0]http://www.pflegeplus.com/pictures/voolsfont.jpg[/img:1tmk67w0]\r\n\r\nFor the calculation you can use the VTOOLS. \r\nInside the application is a button : < PRG > to get the source for the calculation. \r\nYou have to add :\r\n< oBmp:bLClicked := {|| Msgalert( \"Your action\" ) } >,\r\nbecause the BMP is used as Titels and not as a button.\r\nThe function < OnPaintV > you will find in the source.\r\n\r\n[code:1tmk67w0]\n\nREDEFINE BITMAP oBmp ID 110 ADJUST RESOURCE \"Blanc\" OF oDlg \noBmp:bLClicked := {|| Msgalert( \"Your action\" ) }\n\noBMP:bPainted := { |hDC|OnPaintV( hDC,oBMP, ;\n13003573,15779475,16777215, ;\n\"Vertical-Text Button \", ; \noBfont1, 0 ,\"TEST.BMP\" ,3 ) } \n\n[/code:1tmk67w0]\r\n\r\nDownload :\r\n<!-- m --><a class=\"postlink\" href=\"http://www.pflegeplus.com/fw_downloads/vtools.zip\">http://www.pflegeplus.com/fw_downloads/vtools.zip</a><!-- m -->\r\n\r\nIf you still need more informations, just tell me.\r\n\r\nRegards\r\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "16:48",
"topic": "Any sample about splitter in resources and Vertical button?",
"username": "ukoenig"
}
] |
Any sample about splitter in resources and Vertical button?
|
[
{
"date": "2012-11-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nany sample of usage METHOD [b:3uq2hw4g]ChangeImg[/b:3uq2hw4g]g of class TTitle ?\nTested, but returns a error\nI want to replace the first defined Image with the new Image < cFile[1] >\n\nThe first Image :\n[color=#008040:3uq2hw4g]@ 10, 10 TITLEIMG oImg[1] OF oTitle BITMAP cFile[5] SIZE 80, 80 REFLEX TRANSPARENT ANIMA [/color:3uq2hw4g]\nChanging cFile[5] to cFile[1]\n[color=#0000FF:3uq2hw4g]oTitle:ChangeImg( cFile[1], 1 )[/color:3uq2hw4g]\n\nError description: Error BASE/1004 Class: 'NIL' has no exported method: CHANGEIMG\nArgs:\n[color=#FF0000:3uq2hw4g][ 1] = U[/color:3uq2hw4g] \n[ 2] = C D:\\P_QUOTATION\\SYSTEM\\Star5b.bmp\n[ 3] = N 1\n\nMETHOD ChangeImg( cBitmap, nImg ) // change image in ::aImgs nImg position \n\nBest Regards\nUwe <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->",
"time": "17:47",
"topic": "Any sample using < ChangeImg > of class TTitle ?",
"username": "ukoenig"
}
] |
Any sample using < ChangeImg > of class TTitle ?
|
[
{
"date": "2012-11-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It looks like the method ChangeImg is there. You could also call oTitle:LoadBitmaps() directly, see below.\n[code=fw:js4qki7m]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">METHOD</span> ChangeImg<span style=\"color: #000000;\">(</span> cBitmap, nImg <span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TTitle <br /> <span style=\"color: #00C800;\">DEFAULT</span> nImg := <span style=\"color: #000000;\">1</span><br /> ::<span style=\"color: #000000;\">LoadBitmaps</span><span style=\"color: #000000;\">(</span> cBitmap, , , , , ;<br /> , , , ;<br /> , , nImg <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span> <br /><br /> </div>[/code:js4qki7m]",
"time": "18:44",
"topic": "Any sample using < ChangeImg > of class TTitle ?",
"username": "Gale FORd"
}
] |
Any sample using < ChangeImg > of class TTitle ?
|
[
{
"date": "2012-11-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "oTitle is NIL at the moment you try to call its ChangeImg() method.\n\nEMG",
"time": "18:50",
"topic": "Any sample using < ChangeImg > of class TTitle ?",
"username": "Enrico Maria Giordano"
}
] |
Any sample using < ChangeImg > of class TTitle ?
|
[
{
"date": "2012-11-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Gale, Enrico,\nThank You, it works fine now\n\noTitle has been defined STATIC, but was NIL inside the Function. \n\nbecause of needed resizing, I cannot use ChangeImg ( shows full size ), I had to use :\n\noTitle:LoadBitmaps( cFile[1], , ,[color=#FF0000:3cj5qxzj]80,80[/color:3cj5qxzj], , , , , , 1 )\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "20:38",
"topic": "Any sample using < ChangeImg > of class TTitle ?",
"username": "ukoenig"
}
] |
Any sample using < ChangeImg > of class TTitle ?
|
[
{
"date": "2019-05-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I noticed in FWH9.03's fivewin.ch, hbcompat.ch has been remmed out. Any problem if I reenable it?\n\nTIA",
"time": "05:53",
"topic": "Any side affects of adding hbcompat.ch?",
"username": "hua"
}
] |
Any side affects of adding hbcompat.ch?
|
[
{
"date": "2019-05-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I can not say what are the side effects. But I remember having removed it after being advised to do so.\nThe xhb.lib we include in the link script takes care of most of the requirements.\nFivewin.ch itself has some essential cross translates.\n\nCan you add to your link script all the libraries included in buildh.bat and then try your programs without hbcompat.ch.",
"time": "08:43",
"topic": "Any side affects of adding hbcompat.ch?",
"username": "nageswaragunupudi"
}
] |
Any side affects of adding hbcompat.ch?
|
[
{
"date": "2019-05-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "For now I added the following to fivewin.ch\n[code=fw:1dvel8m9]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> #translate <span style=\"color: #000000;\">(</span> <exp1> HAS <exp2> <span style=\"color: #000000;\">)</span> => hb_regexHas<span style=\"color: #000000;\">(</span> <exp2>, <exp1> <span style=\"color: #000000;\">)</span><br /> #xtranslate Str<span style=\"color: #000000;\">(</span> <x>, <n>, <d>, <l> <span style=\"color: #000000;\">)</span> => iif<span style=\"color: #000000;\">(</span> <l>, LTrim<span style=\"color: #000000;\">(</span> Str<span style=\"color: #000000;\">(</span> <x>, <n>, <d> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>, Str<span style=\"color: #000000;\">(</span> <x>, <n>, <d> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> #xtranslate Str<span style=\"color: #000000;\">(</span> <x>, <n>,, <l> <span style=\"color: #000000;\">)</span> => iif<span style=\"color: #000000;\">(</span> <l>, LTrim<span style=\"color: #000000;\">(</span> Str<span style=\"color: #000000;\">(</span> <x>, <n> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>, Str<span style=\"color: #000000;\">(</span> <x>, <n> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> #xtranslate Str<span style=\"color: #000000;\">(</span> <x>,,, <l> <span style=\"color: #000000;\">)</span> => iif<span style=\"color: #000000;\">(</span> <l>, hb_ntos<span style=\"color: #000000;\">(</span> <x> <span style=\"color: #000000;\">)</span>, Str<span style=\"color: #000000;\">(</span> <x> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> </div>[/code:1dvel8m9]",
"time": "09:20",
"topic": "Any side affects of adding hbcompat.ch?",
"username": "hua"
}
] |
Any side affects of adding hbcompat.ch?
|
[
{
"date": "2006-06-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello All,\n\nIs there any standard FWH Browse control that allows me to define columnwise font ?\n\nI want to use Indian Language fonts but only for a few columns of the Listbox.\n\nCan anybody guide me ?\n\nTIA\nMilan.",
"time": "14:01",
"topic": "Any std. FWH Browse control that allows me columnwise font ?",
"username": "Milan Mehta"
}
] |
Any std. FWH Browse control that allows me columnwise font ?
|
[
{
"date": "2006-06-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Milan,\n\nNo, neither TWBrowse nor TCBrowse supports individual fonts for each column.\n\nIf you are willing to use a non-standard control, then TSBrowse does support them. You can get a copy of TSBrowse on my website.\n\nJames",
"time": "17:22",
"topic": "Any std. FWH Browse control that allows me columnwise font ?",
"username": "James Bott"
}
] |
Any std. FWH Browse control that allows me columnwise font ?
|
[
{
"date": "2019-09-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\nI tested drawing text with GDIPLUS with\n\nMethods\n[color=#0000FF:3jbbrz77]oGraphics:DrawText( nTop, nLeft, cText, cFont, nFont, oBrush )\noGraphics:DrawTextLFont( nTop, nLeft, cText, oFont, nH, oBrush, hDC, lB, lIt, lUnd, lStr, nOri, nEsc )[/color:3jbbrz77]\n\nNO text displayed <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( --> \nThere aren't any tests or informations about it.\n\nI can show text a different way but would like to\ninclude it inside my GDIPLUS-paintings\n\ndoes it work ?\n\nregards\nUwe <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->",
"time": "09:19",
"topic": "Any tests drawing text with GDIPLUS ?",
"username": "ukoenig"
}
] |
Any tests drawing text with GDIPLUS ?
|
[
{
"date": "2019-09-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Look\n\n<!-- m --><a class=\"postlink\" href=\"https://bitbucket.org/fivetech/fivewin-contributions/downloads/TESTGDI.prg\">https://bitbucket.org/fivetech/fivewin- ... ESTGDI.prg</a><!-- m -->",
"time": "10:02",
"topic": "Any tests drawing text with GDIPLUS ?",
"username": "cnavarro"
}
] |
Any tests drawing text with GDIPLUS ?
|
[
{
"date": "2019-09-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Christobal,\n\nthank You very much I remember <!-- s:roll: --><img src=\"{SMILIES_PATH}/icon_rolleyes.gif\" alt=\":roll:\" title=\"Rolling Eyes\" /><!-- s:roll: -->\n\nI tested using a brushed font but that doesn't work ( just a idea )\n\naPalBmp := oWnd:ReadImage( c_Path1 + \"Blustone.bmp\", nil, .t. )\n[color=#0000FF:27swwc6a]pBrush[/color:27swwc6a] := GDIP_IMAGEBRUSH( aPalBmp[ 1 ] )\n\noGraphics:DrawText( nTop + ( nWidth / 2 ) - 15, nLeft + ( nWidth / 2 ) - 50, nPercent, uFont, nFont, [color=#0000FF:27swwc6a][b:27swwc6a]pBrush[/b:27swwc6a][/color:27swwc6a] )\n\nwith normal text\n\n[img:27swwc6a]http://www.pflegeplus.com/IMAGES/Progress3.jpg[/img:27swwc6a]\n\nregards\nUwe <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->",
"time": "13:30",
"topic": "Any tests drawing text with GDIPLUS ?",
"username": "ukoenig"
}
] |
Any tests drawing text with GDIPLUS ?
|
[
{
"date": "2019-09-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Please try this code\n[code=fw:3obfwv3a]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <span style=\"color: #00C800;\">local</span> aImage, pBrush, oFont, oWnd<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;\">\"IMPACT\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">-80</span> BOLD<br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd<br /><br /> aImage := oWnd:<span style=\"color: #000000;\">ReadImage</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\b</span>ackgrnd<span style=\"color: #000000;\">\\p</span>ebbles.bmp\"</span>,, .t. <span style=\"color: #000000;\">)</span><br /> pBrush := GDIP_ImageBrush<span style=\"color: #000000;\">(</span> aImage<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">)</span><br /><br /> oWnd:<span style=\"color: #000000;\">bPainted</span> := <||<br /> oWnd:<span style=\"color: #000000;\">SayText</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"SEABMP\"</span>, <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">20</span>,<span style=\"color: #000000;\">20</span>,<span style=\"color: #000000;\">200</span>,<span style=\"color: #000000;\">500</span><span style=\"color: #000000;\">}</span>, <span style=\"color: #00C800;\">nil</span>, oFont, pBrush <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> ><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">CENTERED</span><br /><br /> <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">FONT</span> oFont<br /> GDIP_DeleteBrush<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> PalBmpFree<span style=\"color: #000000;\">(</span> aImage <span style=\"color: #000000;\">)</span><br /> </div>[/code:3obfwv3a]\n\n[url=https://imageshack.com/i/poy8KUuSp:3obfwv3a][img:3obfwv3a]https://imagizer.imageshack.com/v2/xq90/924/y8KUuS.png[/img:3obfwv3a][/url:3obfwv3a]",
"time": "16:56",
"topic": "Any tests drawing text with GDIPLUS ?",
"username": "nageswaragunupudi"
}
] |
Any tests drawing text with GDIPLUS ?
|
[
{
"date": "2019-09-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "What I'm trying to do is different\nI want to add the text to a oGraphics-form\nnot as a window-title\n\nThere are 2 methods in GdiPlus I don't know how to use them\nmaybe it is possible to use them for a solution.\n\n[color=#0000FF:3mnu2abf]METHOD DrawText( nTop, nLeft, cText, cFont, nFont, oBrush )\nMETHOD DrawTextLFont( nTop, nLeft, cText, oFont, nH, oBrush, hDC, lB, lIt, lUnd, lStr, nOri, nEsc )[/color:3mnu2abf]\n\n[img:3mnu2abf]http://www.pflegeplus.com/IMAGES/Gdiplus5.bmp[/img:3mnu2abf]\n\n[img:3mnu2abf]http://www.pflegeplus.com/IMAGES/Gdiplus6.bmp[/img:3mnu2abf]\n\n[color=#0000FF:3mnu2abf]FUNCTION DRAWROUNDRECT(oWnd, oFont1)\nLOCAL hdc\t := oWnd:getdc(), aImage\nLOCAL oPen := Pen():New( 255, 0, 0, 255 , 10, .T.)\nLOCAL oBrush := Brush():NewSolidBrush( 255, 255, 128, 0 ) // Orange\t\nLOCAL oPath := Path():new() \nLOCAL oGraphics := Graphics():New( oWnd:hDC ) \n\n// oPen, [oBrush], nLeft, nTop, nWidth, nHight, nRound\noGraphics:DrawRoundRect( oPen, , 250, 50, 200, 200, 50 ) \noGraphics:Destroy()\n\noGraphics := Graphics():New( oWnd:hDC ) \noPath:AddRoundRect( 250, 300, 200, 200, 50 ) \noGraphics:FillPath( oBrush, oPath) \noGraphics:DrawRoundRect( oPen, , 250, 300, 200, 200, 50 ) \noGraphics:Destroy()\n\noGraphics := Graphics():New( oWnd:hDC ) \noPath := Path():new() \n// , oBrush, nLeft, nTop, nWidth, nHight\noPath:AddRoundRect( 550, 300, 200, 200, 50 ) \noGraphics:FillPath( oBrush, oPath)\n\noGraphics:Destroy()\noPen:Destroy()\n\noWnd:releasedc() \n\nRETURN NIL[/color:3mnu2abf]\n\nregards\nUwe <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->",
"time": "09:35",
"topic": "Any tests drawing text with GDIPLUS ?",
"username": "ukoenig"
}
] |
Any tests drawing text with GDIPLUS ?
|
[
{
"date": "2019-09-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "why do you continuously destroy and re-create the graphics?",
"time": "10:21",
"topic": "Any tests drawing text with GDIPLUS ?",
"username": "AntoninoP"
}
] |
Any tests drawing text with GDIPLUS ?
|
[
{
"date": "2019-09-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonino,\n\n[b:2swpq95v]Yes I agree not needed to be defined for each sample[/b:2swpq95v]\n\nFUNCTION DRAWROUNDRECT(oWnd, oFont1)\nLOCAL hdc\t := oWnd:getdc(), aImage\nLOCAL oPen := Pen():New( 255, 0, 0, 255 , 10, .T.)\nLOCAL oBrush1 := Brush():NewSolidBrush( 255, 255, 128, 0 ) // Orange\t\nLOCAL oBrush2 := Brush():NewGradientBrush( 300, 200, 200, 200, 1,;\n 255, 255, 128, 0,;\n 255, 255, 255, 255 ) \nLOCAL oPath := Path():new() \n[color=#0000FF:2swpq95v]LOCAL oGraphics := Graphics():New( oWnd:hDC ) [/color:2swpq95v]\n\n// sample 1\n// oPen, [oBrush], nLeft, nTop, nWidth, nHight, nRound\noGraphics:DrawRoundRect( oPen, , 250, 50, 200, 200, 50 ) \n\n// sample 2\noPath:AddRoundRect( 250, 300, 200, 200, 50 ) \noGraphics:FillPath( oBrush1, oPath) \noGraphics:DrawRoundRect( oPen, , 250, 300, 200, 200, 50 ) \n\n// sample 3\noPath := Path():new() \n// , oBrush, nLeft, nTop, nWidth, nHight\noPath:AddRoundRect( 550, 300, 200, 200, 50 ) \noGraphics:FillPath( oBrush2, oPath)\n\n[color=#0000FF:2swpq95v]oGraphics:Destroy()[/color:2swpq95v]\noPen:Destroy()\n\noWnd:releasedc() \n\nRETURN NIL\n\nregards\nUwe <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->",
"time": "11:48",
"topic": "Any tests drawing text with GDIPLUS ?",
"username": "ukoenig"
}
] |
Any tests drawing text with GDIPLUS ?
|
[
{
"date": "2019-09-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It is working now\n\nLOCAL oBrush1\t:= [color=#0000FF:2sdwsgvy]Brush():NewSolidBrush[/color:2sdwsgvy]( 255, 255, 128, 0 ) // Orange\t\n\nDEFINE FONT oFontLarge NAME \"Arial\" SIZE 0, -30 BOLD ITALIC\n\n// font and size\noGraphics:DrawTextLFont( 50, 125, \"mod harbour\", [color=#0000FF:2sdwsgvy]oFontLarge, 30[/color:2sdwsgvy], oBrush1, hDC ) \noGraphics:DrawTextLFont( 80, 125, \"install\", [color=#0000FF:2sdwsgvy]oFontLarge, 20[/color:2sdwsgvy], oBrush1, hDC )\n\nThe 1. and 3. one works fine\n\n METHOD NewSolidBrush( nTrans, nRed, nGreen, nBlue ) <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n METHOD [color=#BF0040:2sdwsgvy]NewTextureBrush( oGdiBmp )[/color:2sdwsgvy] <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( --> \n( wanted to be used for text )\n METHOD NewGradientBrush( nTop, nLeft, nWidth, nHeight, nType,; <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n nTrans1, nRed1, nGreen1, nBlue1,;\n nTrans2, nRed2, nGreen2, nBlue2 )\n\nregards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "14:29",
"topic": "Any tests drawing text with GDIPLUS ?",
"username": "ukoenig"
}
] |
Any tests drawing text with GDIPLUS ?
|
[
{
"date": "2013-12-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "As topic. Thanks.",
"time": "19:01",
"topic": "Any try with Visual Studio 2013?",
"username": "Horizon"
}
] |
Any try with Visual Studio 2013?
|
[
{
"date": "2013-12-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I have tried VS 2013 Express. It compiles Ok with below settings. \n\nVCDIR=\"C:\\Program Files (x86)\\Microsoft Visual Studio 12.0\\VC\"\nSDKDIR=\"C:\\Program Files (x86)\\Microsoft SDKs\\Windows\\v7.1A\"",
"time": "10:04",
"topic": "Any try with Visual Studio 2013?",
"username": "Horizon"
}
] |
Any try with Visual Studio 2013?
|
[
{
"date": "2006-03-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Everybody,\n\nI have an ActiveX control demo version. At present I use Nov-2005 build. I have been told that it should work with Mar-2006 build. If that works I am planning to buy that activeX control and Mar-2006 build.\n\nCan anybody Mar-2006 build user help me ? I can send the control on their private mail.\n\nTIA\nMilan.",
"time": "07:49",
"topic": "Any volunteer to check my ActiveX Control with March build ?",
"username": "Milan Mehta"
}
] |
Any volunteer to check my ActiveX Control with March build ?
|
[
{
"date": "2016-05-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi\nI have a 123 number\nWhat's function that let me show these\n123,132,213,231,312,321",
"time": "06:58",
"topic": "Any's xHarbour function support it?",
"username": "richard-service"
}
] |
Any's xHarbour function support it?
|
[
{
"date": "2016-05-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"richard-service\":rze7dp4b]Hi\nI have a 123 number\nWhat's function that let me show these\n123,132,213,231,312,321[/quote:rze7dp4b]\n\nPlease, test\n\n[code=fw:rze7dp4b]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #B900B9;\">// Program: Permutations of string -> number of permutations = factorial len( string )</span><br /><span style=\"color: #B900B9;\">// Date: 08/02/2010</span><br /><span style=\"color: #B900B9;\">// Autor: Cristobal Navarro</span><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><br /><br /><span style=\"color: #00C800;\">Static</span> cString<br /><span style=\"color: #00C800;\">Static</span> aString<br /><span style=\"color: #00C800;\">Static</span> aTmpString<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> x<br /> aString := <span style=\"color: #000000;\">{</span><span style=\"color: #000000;\">}</span><br /> aTmpString := <span style=\"color: #000000;\">{</span><span style=\"color: #000000;\">}</span><br /> cString := <span style=\"color: #ff0000;\">\"ABC\"</span><br /> SetArray<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> Permutations<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">1</span>, Len<span style=\"color: #000000;\">(</span> cString <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> ? Len<span style=\"color: #000000;\">(</span> aString <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #B900B9;\">//AEVal( aString, { | a | a := Val( a ) } )</span><br /> <span style=\"color: #0000ff;\">XBrowse</span><span style=\"color: #000000;\">(</span> aString <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">//Add 23/05/2016</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> Permutations<span style=\"color: #000000;\">(</span> nIni, nLen <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> x<br /> <span style=\"color: #00C800;\">if</span> nIni <> nLen<br /> <span style=\"color: #00C800;\">For</span> x = nIni <span style=\"color: #0000ff;\">to</span> nLen<br /> SwapArray<span style=\"color: #000000;\">(</span> nIni, x <span style=\"color: #000000;\">)</span><br /> Permutations<span style=\"color: #000000;\">(</span> nIni + <span style=\"color: #000000;\">1</span>, nLen <span style=\"color: #000000;\">)</span><br /> SwapArray<span style=\"color: #000000;\">(</span> nIni, x <span style=\"color: #000000;\">)</span> <br /> <span style=\"color: #00C800;\">Next</span> x<br /> <span style=\"color: #00C800;\">else</span><br /> AAdd<span style=\"color: #000000;\">(</span> aString, SetString<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</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> SwapArray<span style=\"color: #000000;\">(</span> nIni, nAct <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> cTemp<br /> cTemp := aTmpString<span style=\"color: #000000;\">[</span> nIni <span style=\"color: #000000;\">]</span><br /> aTmpString<span style=\"color: #000000;\">[</span> nIni <span style=\"color: #000000;\">]</span> := aTmpString<span style=\"color: #000000;\">[</span> nAct <span style=\"color: #000000;\">]</span><br /> aTmpString<span style=\"color: #000000;\">[</span> nAct <span style=\"color: #000000;\">]</span> := cTemp<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> SetArray<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> x<br /> <span style=\"color: #00C800;\">For</span> x = <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> Len<span style=\"color: #000000;\">(</span> cString <span style=\"color: #000000;\">)</span><br /> AAdd<span style=\"color: #000000;\">(</span> aTmpString, <span style=\"color: #0000ff;\">Substr</span><span style=\"color: #000000;\">(</span> cString, x, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Next</span> x<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> SetString<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> x<br /> <span style=\"color: #00C800;\">local</span> cCad := <span style=\"color: #ff0000;\">\"\"</span><br /> <span style=\"color: #00C800;\">For</span> x = <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> Len<span style=\"color: #000000;\">(</span> aTmpString <span style=\"color: #000000;\">)</span><br /> cCad += aTmpString<span style=\"color: #000000;\">[</span> x <span style=\"color: #000000;\">]</span><br /> <span style=\"color: #00C800;\">Next</span> x<br /><br /><span style=\"color: #00C800;\">Return</span> cCad<br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /> </div>[/code:rze7dp4b]",
"time": "10:50",
"topic": "Any's xHarbour function support it?",
"username": "cnavarro"
}
] |
Any's xHarbour function support it?
|
[
{
"date": "2016-05-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Buen dia, a eso se le llama PERMUTA...muy utilizado en los sistemas de loteria, habia hecho una hace bastante tiempo en la universidad como proyecto, pero ya ni recordaba como lo hice, gracias NAVARRO por tenerla publica, saludos... <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: -->",
"time": "16:53",
"topic": "Any's xHarbour function support it?",
"username": "joseluisysturiz"
}
] |
Any's xHarbour function support it?
|
[
{
"date": "2016-06-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi\nNow, it's work.",
"time": "09:37",
"topic": "Any's xHarbour function support it?",
"username": "richard-service"
}
] |
Any's xHarbour function support it?
|
[
{
"date": "2010-03-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Anybody have experience converting FWH to cloud. I'd like to know if there is some methodology to doing this???",
"time": "18:53",
"topic": "Anybody have experience converting FWH to cloud",
"username": "hag"
}
] |
Anybody have experience converting FWH to cloud
|
[
{
"date": "2010-11-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "When I compile/link my apps that use tsbrowse with FWH10.10 the scrollbars desappear. Both tsbrowse 8 and 9 give same result. FWH9.11 works OK. I already mailed mr. Mercado but did no get any answer. Any idea?",
"time": "19:50",
"topic": "Anybody using TSBrowse with FWH10.10?",
"username": "ADutheil"
}
] |
Anybody using TSBrowse with FWH10.10?
|
[
{
"date": "2007-03-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear All,\n\nHas anybody met success with NSLock ? I am using FWH May-2006 build and Win-Xp SP2. But my following code gives me GPF.\n\n\nCan somebody help me ?\n\nTIA\nMilan.\n\n-----------------------Cut-------------------------------\n// FiveWin ActiveX support demo - Using Adobe Acrobat Reader\n\n#include \"FiveWin.ch\"\n\nfunction Main()\n\n local oWnd, oActiveX, cLiberationKey := space(16)\n\n DEFINE WINDOW oWnd TITLE \"FiveWin ActiveX Support\"\n\n oActiveX = TActiveX():New( oWnd, \"nslock15vb5.ActiveLock\" )\n\n oActiveX:Do( \"Password\" , \"rochinha\" )\n oActiveX:Do( \"SoftwareName\" , \"5Volution\" )\n oActiveX:Do( \"LiberationKeyLength\", 16 )\n oActiveX:Do( \"SoftwareCodeLength\" , 16 )\n\n //? oActiveX:GetProp( \"SoftwareCode\" )\n\n if ! oActiveX:GetProp( \"RegisteredUser\" )\n MsgGet( \"Entre a chave de liberacao\",; // Title\n \"Chave:\",; // Label\n @cLiberationKey ) // A variable by reference\n oActiveX:Do( \"LiberationKey\", cLiberationKey )\n endif\n\n if ! oActiveX:GetProp( \"RegisteredUser\" )\n if oActiveX:GetProp( \"LastRunDate\" ) > date()\n ? 'Data foi retrocedida. Programa sera encerrado'\n else\n ? 'Faltam ' + Str( 30 - oActiveX:GetProp( \"UsedDays\" ) ) + ' dias.'\n endif\n ? 'DEMONSTRACAO'\n oWnd:cCaption := 'DEMONSTRACAO'\n SysRefresh()\n else\n ? 'REGISTRADO'\n oWnd:cCaption := 'REGISTRADO'\n SysRefresh()\n endif\n\n //oWnd:oClient = oActiveX // To fill the entire window surface\n\n ACTIVATE WINDOW oWnd\n\nreturn nil\n-------------------------------------Paste----------------------------",
"time": "16:49",
"topic": "Anybody with success with NSLock ?",
"username": "Milan Mehta"
}
] |
Anybody with success with NSLock ?
|
[
{
"date": "2007-03-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "The Sentinel Super Pro hardkey has a native (x)Harbour driver developed by ourselves.\n\nIt supports all the features of the lock using both, native C functions or the TSentinel Class.",
"time": "18:59",
"topic": "Anybody with success with NSLock ?",
"username": "R.F."
}
] |
Anybody with success with NSLock ?
|
[
{
"date": "2007-03-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nWhat GPF you found?\n\nI test the example in a Windows Server 2003 and XP/ME in virtual PC.",
"time": "02:20",
"topic": "Anybody with success with NSLock ?",
"username": "Rochinha"
}
] |
Anybody with success with NSLock ?
|
[
{
"date": "2007-03-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This is the new code\n\n[code:re71dspy]\n// FiveWin ActiveX support demo - Using Adobe Acrobat Reader\n\n#include \"FiveWin.ch\"\n\nfunction Main()\n\n local oWnd, oActiveX, cLiberationKey := space(16)\n\n DEFINE WINDOW oWnd TITLE \"FiveWin ActiveX Support\"\n\n oActiveX = TActiveX():New( oWnd, \"nslock15vb5.ActiveLock\" )\n\n oActiveX:SetProp( \"Password\", \"rochinha\" )\n oActiveX:SetProp( \"SoftwareName\", \"5Volution\" )\n oActiveX:SetProp( \"LiberationKeyLength\", 8 )\n oActiveX:SetProp( \"SoftwareCodeLength\" , 8 )\n\n if ! oActiveX:GetProp( \"RegisteredUser\" )\n MsgGet( \"Entre a chave de liberacao\",; // Title\n \"Chave: (\"+oActiveX:GetProp( \"SoftwareCode\" )+\")\",; // Label\n @cLiberationKey ) // A variable by reference\n oActiveX:SetProp( \"LiberationKey\", alltrim(cLiberationKey) )\n endif\n\n if ! oActiveX:GetProp( \"RegisteredUser\" )\n if oActiveX:GetProp( \"LastRunDate\" ) > date()\n ? 'Data foi retrocedida. Programa sera encerrado'\n else\n ? 'Faltam ' + Str( 30 - oActiveX:GetProp( \"UsedDays\" ) ) + ' dias.'\n endif\n ? 'DEMONSTRACAO'\n oWnd:cCaption := 'DEMONSTRACAO'\n SysRefresh()\n else\n ? 'REGISTRADO'\n oWnd:cCaption := 'REGISTRADO'\n SysRefresh()\n endif\n\n //oWnd:oClient = oActiveX // To fill the entire window surface\n\n ACTIVATE WINDOW oWnd \n\nreturn nil\n[/code:re71dspy]\n\nRemember if you registered the .OCX in your system:\n\nC:\\WINDOWS\\SYSTEM32\\REGSVR32 C:\\???\\NSLOCK15VB5.OCX",
"time": "03:21",
"topic": "Anybody with success with NSLock ?",
"username": "Rochinha"
}
] |
Anybody with success with NSLock ?
|
[
{
"date": "2007-03-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Rochina,\n\nThanks. It worked like that.\n\nWhere can I get information in English abt NSLock ? Does it generate different key for the different computer ?\n\nTIA\nMilan.",
"time": "11:29",
"topic": "Anybody with success with NSLock ?",
"username": "Milan Mehta"
}
] |
Anybody with success with NSLock ?
|
[
{
"date": "2007-03-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear RF,\n\nYour <!-- w --><a class=\"postlink\" href=\"http://www.google.com\">www.google.com</a><!-- w --> seems to be down today. I am not able to access it. Can you send me more information about Sentinel Super Pro ?\n\nTIA\nMilan.\n\n[quote=\"RF\":13mzozlf]The Sentinel Super Pro hardkey has a native (x)Harbour driver developed by ourselves.\n\nIt supports all the features of the lock using both, native C functions or the TSentinel Class.[/quote:13mzozlf]",
"time": "11:31",
"topic": "Anybody with success with NSLock ?",
"username": "Milan Mehta"
}
] |
Anybody with success with NSLock ?
|
[
{
"date": "2007-03-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Milan\n\nThe last example work fine with NSLOCK15VB5.OCX. I made modifications to Activex SetProp/GetProp.\n\nI found <!-- m --><a class=\"postlink\" href=\"http://www.activelock.com\">http://www.activelock.com</a><!-- m --> with more informations about this .OCX.",
"time": "14:04",
"topic": "Anybody with success with NSLock ?",
"username": "Rochinha"
}
] |
Anybody with success with NSLock ?
|
[
{
"date": "2007-03-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Milan Mehta\":p9ij6jb7]Dear RF,\n\nYour <!-- w --><a class=\"postlink\" href=\"http://www.google.com\">www.google.com</a><!-- w --> seems to be down today. I am not able to access it. Can you send me more information about Sentinel Super Pro ?\n\nTIA\nMilan.\n\n[/quote:p9ij6jb7]\n\nThe driver was developed for the Sentinel Company, it should be included with all the Sentinel Super Pro Developer Kits.",
"time": "16:46",
"topic": "Anybody with success with NSLock ?",
"username": "R.F."
}
] |
Anybody with success with NSLock ?
|
[
{
"date": "2007-03-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Rochina,\n\nI visited the site <!-- w --><a class=\"postlink\" href=\"http://www.activelock.com\">www.activelock.com</a><!-- w -->. But it does not alllow me to register as new member. But anyway, they offer new version 1.8 also. Does that work too with xHarbour ? Let me know if you have experemented.\n\nDoes NSLock can work with pure xHarbour (no GUI) ?\n\nTIA\nMilan.",
"time": "06:23",
"topic": "Anybody with success with NSLock ?",
"username": "Milan Mehta"
}
] |
Anybody with success with NSLock ?
|
[
{
"date": "2012-07-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Can anyone convert [url=http://stackoverflow.com/questions/82993/windows-cd-burning-api:2zqzhbcf]this code[/url:2zqzhbcf] for use in FWH?\n\nAble to programmatically burn to CD/DVD would be a very nice feature to have eventhough it's only available from XP onwards.",
"time": "04:39",
"topic": "Anyone able to convert code to programmatically burn CD/DVD?",
"username": "hua"
}
] |
Anyone able to convert code to programmatically burn CD/DVD?
|
[
{
"date": "2012-07-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hua,\n\nit would be a hard job, writing a CD-burner-app.\n\nI found a useful freeware, because of possible [color=#FF0000:e3x1zp61]COMMANDLINE-options [/color:e3x1zp61]to burn from inside a FWH-app.\n\n[img:e3x1zp61]http://www.pflegeplus.com/pictures/burnaware.jpg[/img:e3x1zp61]\n\nDownload\n<!-- m --><a class=\"postlink\" href=\"http://www.burnaware.com\">http://www.burnaware.com</a><!-- m -->\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "13:51",
"topic": "Anyone able to convert code to programmatically burn CD/DVD?",
"username": "ukoenig"
}
] |
Anyone able to convert code to programmatically burn CD/DVD?
|
[
{
"date": "2012-07-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks for the reply Uwe. It's just that some customers want to be able to backup directly to a CD hence my research into this area",
"time": "13:55",
"topic": "Anyone able to convert code to programmatically burn CD/DVD?",
"username": "hua"
}
] |
Anyone able to convert code to programmatically burn CD/DVD?
|
[
{
"date": "2012-07-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hua,\n\nfor XP there is a dll to burn out of fwh, it´s called xpBurnObj. But it´s no more working with vista and Win 7. <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( --> \n\nDownload here [url:21opje5u]http://www.bayden.com/delphi/cdburner.htm[/url:21opje5u]\n\n[code=fw:21opje5u]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #B900B9;\">//****</span><br /><span style=\"color: #00C800;\">FUNCTION</span> BurnCDInXP<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #B900B9;\">//****</span><br /><span style=\"color: #00C800;\">LOCAL</span> cBurnPath<br /><span style=\"color: #B900B9;\">//</span><br /><span style=\"color: #00C800;\">IF</span> <span style=\"color: #000000;\">(</span> oCD := XPBurnObj<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> != <span style=\"color: #00C800;\">NIL</span> <span style=\"color: #000000;\">)</span><br /> oFSO := CreateObject<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Scripting.FileSystemObject\"</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// If we get here we're in XP and this shouldn't fail...</span><br /> <span style=\"color: #B900B9;\">//</span><br /> WITH OBJECT <span style=\"color: #000000;\">(</span> oCD <span style=\"color: #000000;\">)</span><br /> :<span style=\"color: #000000;\">ClearFiles</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// Erases ALL files from burning area...</span><br /> <span style=\"color: #B900B9;\">//</span><br /> MakeDir<span style=\"color: #000000;\">(</span> cBurnPath := <span style=\"color: #000000;\">(</span> :<span style=\"color: #000000;\">BurnArea</span> + <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>ackup\"</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// Build your directory structure...</span><br /> MakeDir<span style=\"color: #000000;\">(</span> cBurnPath += <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\c</span>ompanyname\"</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #B900B9;\">//</span><br /> :<span style=\"color: #000000;\">AddFile</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"c:<span style=\"color: #000000;\">\\y</span>ourfile.ext\"</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// This method add the file to the root of the CD..</span><br /> oFSO:<span style=\"color: #000000;\">CopyFile</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"u:<span style=\"color: #000000;\">\\y</span>ourfile.zip\"</span>, cBurnPath + <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\b</span>ackup.ext\"</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #B900B9;\">// Copy to the directory you just created...</span><br /> <span style=\"color: #B900B9;\">//</span><br /> :<span style=\"color: #000000;\">StartBurn</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// Invokes the XP Burning wizard...</span><br /> END<br /><span style=\"color: #00C800;\">ENDIF</span><br /><span style=\"color: #B900B9;\">//</span><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #000000;\">(</span>.T.<span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//***</span><br /><span style=\"color: #00C800;\">FUNCTION</span> XPBurnObj<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #B900B9;\">//***</span><br /> <span style=\"color: #00C800;\">LOCAL</span> oBurn<br /> <span style=\"color: #B900B9;\">//</span><br /> <span style=\"color: #00C800;\">IF</span> Os_IsWinXP<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">TRY</span><br /> oBurn := CreateObject<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"BaydenBurn.XPBurn\"</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">IF</span> !<span style=\"color: #000000;\">(</span> oBurn:<span style=\"color: #000000;\">Equipped</span> <span style=\"color: #000000;\">)</span><br /> oBurn := <span style=\"color: #00C800;\">NIL</span><br /> <span style=\"color: #00C800;\">ENDIF</span><br /> CATCH<br /> END<br /> <span style=\"color: #00C800;\">ENDIF</span><br /> <span style=\"color: #B900B9;\">//</span><br /> <span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #000000;\">(</span> oBurn <span style=\"color: #000000;\">)</span></div>[/code:21opje5u]",
"time": "08:10",
"topic": "Anyone able to convert code to programmatically burn CD/DVD?",
"username": "StefanHaupt"
}
] |
Anyone able to convert code to programmatically burn CD/DVD?
|
[
{
"date": "2012-07-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks for the reply Stefan. I'm now looking into scripting + IMAPIv2. \n\nIf I could get that down, I'd be able to do it on PCs with XP SP2 up to Win 7, hopefully <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "08:16",
"topic": "Anyone able to convert code to programmatically burn CD/DVD?",
"username": "hua"
}
] |
Anyone able to convert code to programmatically burn CD/DVD?
|
[
{
"date": "2012-07-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear stephan\n????",
"time": "10:40",
"topic": "Anyone able to convert code to programmatically burn CD/DVD?",
"username": "Eoeo"
}
] |
Anyone able to convert code to programmatically burn CD/DVD?
|
[
{
"date": "2007-07-14",
"forum": "To do - WishList / Por hacer - Peticiones",
"text": "<!-- m --><a class=\"postlink\" href=\"http://www.programfan.com/article/showarticle.asp?id=2456\">http://www.programfan.com/article/showa ... sp?id=2456</a><!-- m -->\nopen source :\n\nusing System;\nusing System.Collections;\nusing System.ComponentModel;\nusing System.Drawing;\nusing System.Data;\nusing System.Windows.Forms;\nusing System.Drawing.Drawing2D;\nusing System.Drawing.Text;\n\nnamespace WindowsControlLibrary1\n{\n/// <summary>\n/// UserControl1 的摘要说明。descrip\n/// </summary>\npublic class UserControl1 : Button\n{\n /// <summary>\n /// 必需的设计器变量。counter var\n /// </summary>\n private System.ComponentModel.Container components = null;\n private bool XiaCen=false;\n private bool mouseMove=false;\n private Color backColor;\n public UserControl1()\n {\n // 该调用是 Windows.Forms 窗体设计器所必需的。\n InitializeComponent();\n\n // TODO: 在 InitComponent 调用后添加任何初始化\n backColor=this.backColor;\n //this.Text=this.ShowFocusCues.ToString();\n }\n\n /// <summary>\n /// 清理所有正在使用的资源。\n /// </summary>\n protected override void Dispose( bool disposing )\n {\n if( disposing )\n {\n if( components != null )\n components.Dispose();\n }\n base.Dispose( disposing );\n }\n\n #region 组件设计器生成的代码\n /// <summary>\n /// 设计器支持所需的方法 - 不要使用代码编辑器\n /// 修改此方法的内容。\n /// </summary>\n private void InitializeComponent()\n {\n //\n // UserControl1\n //\n this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.UserControl1_MouseUp);\n this.Paint += new System.Windows.Forms.PaintEventHandler(this.UserControl1_Paint);\n this.MouseEnter += new System.EventHandler(this.UserControl1_MouseEnter);\n this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.UserControl1_KeyUp);\n this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.UserControl1_KeyDown);\n this.BackColorChanged += new System.EventHandler(this.UserControl1_BackColorChanged);\n this.MouseLeave += new System.EventHandler(this.UserControl1_MouseLeave);\n this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.UserControl1_MouseDown);\n\n }\n #endregion\n\n \n \n protected GraphicsPath GetGraphicsPath(Rectangle rect)\n {\n GraphicsPath ClientPath = new System.Drawing.Drawing2D.GraphicsPath();\n if(rect.Width<=0)\n {\n rect.Width=1;\n }\n if(rect.Height<=0)\n {\n rect.Height=1;\n }\n \n ClientPath.AddArc(rect.Left,rect.Top,rect.Height,rect.Height,90f,180f);\n ClientPath.AddArc(rect.Right-rect.Height,rect.Top,rect.Height,rect.Height,270f,180f);\n ClientPath.CloseFigure();\n return ClientPath;\n }\n \n protected GraphicsPath GetGraphicsPath1(Rectangle rect)\n {\n GraphicsPath ClientPath = new System.Drawing.Drawing2D.GraphicsPath();\n if(rect.Width<=0)\n {\n rect.Width=1;\n }\n if(rect.Height<=0)\n {\n rect.Height=1;\n }\n \n ClientPath.AddArc(rect.Left,rect.Top,rect.Height,rect.Height,190f,80f);\n ClientPath.AddArc(rect.Right-rect.Height,rect.Top,rect.Height,rect.Height,270f,80f);\n ClientPath.CloseFigure();\n return ClientPath;\n }\n \n private void DrawYinYing(Graphics gr,bool xiacen)\n {\n Rectangle rect= this.ClientRectangle;\n rect.Inflate(-(rect.Width/10),-(rect.Height)/4);\n float bf1=rect.Width/100f;\n float bf2=rect.Height/100f;\n \n rect.Y=rect.Y+this.ClientRectangle.Height/4;\n if(xiacen)\n {\n rect.Y=rect.Y+4;\n }\n GraphicsPath path;\n \n for(int a=1;a<33;a++)\n {\n float bf3=bf1*a;\n float bf4=bf2*a;\n Rectangle rect1=rect;\n rect1.Inflate(-(int)bf3,-(int)bf4);\n path=GetGraphicsPath(rect1);\n \n int r=backColor.R;\n int g=backColor.G;\n int b=backColor.B;\n r=r+3*a;\n g=g+3*a;\n b=b+3*a;\n if(r>255) r=255;\n if(g>255) g=255;\n if(b>255) b=255;\n gr.FillPath(new SolidBrush(Color.FromArgb(r,g,b)),path);\n }\n }\n \n private void DrawGaoLiang(Graphics g,bool xiacen)\n {\n Rectangle rect= this.ClientRectangle;\n rect.Inflate(-4,-4);\n \n if(xiacen)\n {\n rect.Y=rect.Y+4;\n }\n GraphicsPath path=GetGraphicsPath1(rect);\n RectangleF rect1=path.GetBounds();\n rect1.Height=rect1.Height+1;\n g.FillPath(new LinearGradientBrush(rect1,\n Color.FromArgb(0xff,0xff,0xff,0xff),\n Color.FromArgb(0xff,backColor),LinearGradientMode.Vertical),path);\n }\n \n private void DrawText(Graphics g,bool xiacen)\n {\n Rectangle rect= this.ClientRectangle;\n Rectangle rect1= this.ClientRectangle;\n StringFormat stringFormat=new StringFormat();\n stringFormat.Alignment=StringAlignment.Center;\n stringFormat.LineAlignment=StringAlignment.Center;\n rect.Y=this.ClientRectangle.Height/5;\n if(xiacen)\n {\n rect.Y=rect.Y+4;\n rect1.Y=rect1.Y+4;\n }\n \n Font font=this.Font;\n \n \n if(mouseMove)\n {\n font=new Font(this.Font,FontStyle.Underline);\n }\n \n g.DrawString(this.Text,font,\n new SolidBrush(Color.FromArgb(0x66,backColor)),rect,stringFormat);\n g.DrawString(this.Text,font,new SolidBrush(this.ForeColor),rect1,stringFormat);\n }\n\n private void UserControl1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)\n {\n if(XiaCen==false)\n {\n XiaCen=true;\n this.Refresh();\n }\n }\n \n private void UserControl1_MouseUp(object sender, System.Windows.Forms.MouseEventArgs e)\n {\n if(XiaCen==true)\n {\n XiaCen=false;\n this.Refresh();\n }\n }\n\n private void UserControl1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)\n {\n \n \n }\n \n protected override void OnPaint(PaintEventArgs e)\n {\n \n base.OnPaint(e);\n e.Graphics.FillRectangle(new SolidBrush(backColor),0,0,this.Width,this.Height);\n e.Graphics.SmoothingMode=SmoothingMode.HighQuality;\n e.Graphics.TextRenderingHint=TextRenderingHint.AntiAliasGridFit;\n Rectangle rect=new Rectangle(0,0,this.Width,this.Height);\n GraphicsPath ClientPath=GetGraphicsPath(rect);\n e.Graphics.FillPath(new SolidBrush(backColor),ClientPath);\n this.Region=new System.Drawing.Region(ClientPath);\n DrawYinYing(e.Graphics,XiaCen);\n DrawGaoLiang(e.Graphics,XiaCen);\n DrawText(e.Graphics,XiaCen);\n \n if(this.Focused)\n {\n e.Graphics.DrawPath(new Pen(Color.FromArgb(0x22,0xff,0xff,0xff), 3), ClientPath);\n }\n \n }\n\n \n\n\n\n private void UserControl1_BackColorChanged(object sender, System.EventArgs e)\n {\n int r=BackColor.R;\n int g=BackColor.G;\n int b=BackColor.B;\n r=r+0x22;\n g=g+0x22;\n b=b+0x22;\n if(r>255) r=255;\n if(g>255) g=255;\n if(b>255) b=255;\n backColor=Color.FromArgb(r,g,b);\n }\n\n private void UserControl1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)\n {\n if(XiaCen==false && e.KeyCode==Keys.Space)\n {\n XiaCen=true;\n this.Refresh();\n }\n }\n\n private void UserControl1_KeyUp(object sender, System.Windows.Forms.KeyEventArgs e)\n {\n if(XiaCen==true && e.KeyCode==Keys.Space)\n {\n XiaCen=false;\n this.Refresh();\n }\n }\n\n private void UserControl1_MouseEnter(object sender, System.EventArgs e)\n {\n if(mouseMove==false)\n {\n mouseMove=true;\n this.Refresh();\n }\n }\n\n private void UserControl1_MouseLeave(object sender, System.EventArgs e)\n {\n if(mouseMove==true)\n {\n mouseMove=false;\n this.Refresh();\n }\n }\n \n}\n}",
"time": "09:50",
"topic": "Anyone could convert Crystal button C# into prg?",
"username": "ShumingWang"
}
] |
Anyone could convert Crystal button C# into prg?
|
[
{
"date": "2009-05-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I placed an xBrowse control on a non-modal dialog and in the source code, I defined the following:\n[code=fw:2zvcjv4q]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> ::<span style=\"color: #000000;\">oBrw</span>:<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;\">nEditType</span> := EDIT_GET_BUTTON<br /> ::<span style=\"color: #000000;\">oBrw</span>:<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;\">addResource</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"down\"</span> <span style=\"color: #000000;\">)</span><br /> ::<span style=\"color: #000000;\">oBrw</span>:<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;\">nBtnBmp</span> := <span style=\"color: #000000;\">1</span><br /> </div>[/code:2zvcjv4q]\n\nThe good news, the button appears. The bad news, everytime the window is maximized or minimized, the button's image flashes. The flashing will only stop once I click the window's border.These can be seen here <!-- m --><a class=\"postlink\" href=\"http://screencast.com/t/iSy86cLCWF\">http://screencast.com/t/iSy86cLCWF</a><!-- m --> . Anyone has any idea how to solve this? I'm using FWH 9.04\n\nTIA",
"time": "10:36",
"topic": "Anyone has any idea why button in xBrowse flashes?",
"username": "hua"
}
] |
Anyone has any idea why button in xBrowse flashes?
|
[
{
"date": "2009-05-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Hua...\n\nWhat version do you use?\n\nDo you strech any column?",
"time": "14:16",
"topic": "Anyone has any idea why button in xBrowse flashes?",
"username": "Daniel Garcia-Gil"
}
] |
Anyone has any idea why button in xBrowse flashes?
|
[
{
"date": "2009-05-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Daniel,\n Thank you for replying. This is a self-contained sample to illustrate the problem. I am using FWH9.04\n[code=fw:26mvambp]<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: #00D7D7;\">#define</span> BLK_ARR <span style=\"color: #000000;\">{</span>space<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">5</span><span style=\"color: #000000;\">)</span>,space<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">50</span><span style=\"color: #000000;\">)</span>, <span style=\"color: #000000;\">0.00</span>, <span style=\"color: #000000;\">0.00</span><span style=\"color: #000000;\">}</span><br /><br /><span style=\"color: #00C800;\">static</span> oWnd, oDlg, oBrw<br /><span style=\"color: #00C800;\">function</span> main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> aFiledbf<br /><br /> aFiledbf := <span style=\"color: #000000;\">{</span> BLK_ARR, BLK_ARR<span style=\"color: #000000;\">}</span><br /><br /> <span style=\"color: #0000ff;\">define</span> <span style=\"color: #0000ff;\">window</span> oWnd<br /> <span style=\"color: #0000ff;\">define</span> <span style=\"color: #0000ff;\">dialog</span> oDlg <span style=\"color: #0000ff;\">resource</span> <span style=\"color: #ff0000;\">\"journal\"</span> <span style=\"color: #0000ff;\">of</span> oWnd<br /><br /> <span style=\"color: #0000ff;\">redefine</span> <span style=\"color: #0000ff;\">xbrowse</span> oBrw <span style=\"color: #0000ff;\">id</span> <span style=\"color: #000000;\">101</span> <span style=\"color: #0000ff;\">of</span> oDlg ;<br /> columns <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">2</span>, <span style=\"color: #000000;\">3</span>, <span style=\"color: #000000;\">4</span> ;<br /> headers <span style=\"color: #ff0000;\">\"Account\"</span>, <span style=\"color: #ff0000;\">\"Description\"</span>, <span style=\"color: #ff0000;\">\"Debit\"</span>, <span style=\"color: #ff0000;\">\"Credit\"</span> ;<br /> pictures <span style=\"color: #ff0000;\">\"@!\"</span>,,<span style=\"color: #ff0000;\">\"@Z 999,999.99\"</span>, <span style=\"color: #ff0000;\">\"@Z 999,999.99\"</span> ;<br /> array aFiledbf ;<br /> fastedit lines cell <span style=\"color: #0000ff;\">update</span> ;<br /><br /> aeval<span style=\"color: #000000;\">(</span>oBrw:<span style=\"color: #000000;\">aCols</span>,<span style=\"color: #000000;\">{</span>|o| o:<span style=\"color: #000000;\">lAutoSave</span> := .t., o:<span style=\"color: #000000;\">nEditType</span> := EDIT_GET<span style=\"color: #000000;\">}</span><span style=\"color: #000000;\">)</span><br /><br /> oBrw:<span style=\"color: #000000;\">lHScroll</span> := .f.<br /> oBrw:<span style=\"color: #000000;\">nStretchCol</span> := <span style=\"color: #000000;\">2</span><br /> oBrw:<span style=\"color: #000000;\">bKeyDown</span> := <span style=\"color: #000000;\">{</span>| nKey | <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> nKey == VK_F2, <span style=\"color: #0000ff;\">msginfo</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Invoke picklist\"</span><span style=\"color: #000000;\">)</span>, <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /> oBrw:<span style=\"color: #000000;\">lAutoAppend</span> := .t.<br /> oBrw:<span style=\"color: #000000;\">bPastEof</span> := <span style=\"color: #000000;\">{</span>|| aadd<span style=\"color: #000000;\">(</span> oBrw:<span style=\"color: #000000;\">aArrayData</span>, BLK_ARR <span style=\"color: #000000;\">)</span>, ;<br /> oBrw:<span style=\"color: #000000;\">GoLeftMost</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, oBrw:<span style=\"color: #000000;\">GoDown</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, oBrw:<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: #00C800;\">edit</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /><br /><br /> oBrw:<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;\">bEditValid</span> := <span style=\"color: #000000;\">{</span>|oGet, oCol| ChkAccn<span style=\"color: #000000;\">(</span>oGet, oCol<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">}</span><br /><br /> oBrw:<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;\">nEditType</span> := EDIT_GET_BUTTON<br /> oBrw:<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;\">addResource</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"down\"</span> <span style=\"color: #000000;\">)</span><br /> oBrw:<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;\">nBtnBmp</span> := <span style=\"color: #000000;\">1</span><br /><br /> with object oBrw:<span style=\"color: #000000;\">Debit</span><br /> :<span style=\"color: #000000;\">lTotal</span> := .t.<br /> :<span style=\"color: #000000;\">nTotal</span> := <span style=\"color: #000000;\">0</span> <span style=\"color: #B900B9;\">//::nDrTotal</span><br /> end<br /><br /><br /> with object oBrw:<span style=\"color: #000000;\">Credit</span><br /> :<span style=\"color: #000000;\">lTotal</span> := .t.<br /> :<span style=\"color: #000000;\">nTotal</span> := <span style=\"color: #000000;\">0</span><br /> end<br /><br /> <span style=\"color: #0000ff;\">activate</span> <span style=\"color: #0000ff;\">dialog</span> oDlg ;<br /> nomodal <span style=\"color: #0000ff;\">valid</span> <span style=\"color: #000000;\">(</span>oWnd:<span style=\"color: #000000;\">end</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, .t.<span style=\"color: #000000;\">)</span><br /><br /> oWnd:<span style=\"color: #000000;\">bGotFocus</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> := <span style=\"color: #000000;\">{</span>|| oDlg:<span style=\"color: #000000;\">setFocus</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">}</span><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd ;<br /> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">INIT</span> <span style=\"color: #000000;\">(</span> ;<br /> oWnd:<span style=\"color: #000000;\">bResized</span> := <span style=\"color: #000000;\">{</span>|| resize<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">}</span> ;<br /> <span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">MAXIMIZED</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------</span><br /><span style=\"color: #00C800;\">function</span> ChkAccn<span style=\"color: #000000;\">(</span>oGet, oCol<span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> lRet<br /> <span style=\"color: #00C800;\">if</span> <span style=\"color: #0000ff;\">left</span><span style=\"color: #000000;\">(</span>oGet:<span style=\"color: #000000;\">value</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>,<span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span> == <span style=\"color: #ff0000;\">\"CA\"</span><br /> lRet := .t.<br /> <span style=\"color: #00C800;\">else</span><br /> msgalert<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Invalid prefix\"</span><span style=\"color: #000000;\">)</span><br /> lRet := .f.<br /> <span style=\"color: #00C800;\">endif</span><br /><span style=\"color: #00C800;\">return</span> lRet<br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------</span><br /><span style=\"color: #00C800;\">function</span> resize<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00D7D7;\">#define</span> SM_CXVSCROLL <span style=\"color: #000000;\">2</span> <span style=\"color: #B900B9;\">// Width of arrow bitmap on a vertical scroll bar.</span><br /><br /> oDlg:<span style=\"color: #000000;\">nWidth</span> := oWnd:<span style=\"color: #000000;\">nWidth</span><br /> oDlg:<span style=\"color: #000000;\">nHeight</span> := oWnd:<span style=\"color: #000000;\">nHeight</span> <span style=\"color: #B900B9;\">//- oWnd:oMsgBar:nHeight</span><br /> oBrw:<span style=\"color: #000000;\">nWidth</span> := oDlg:<span style=\"color: #000000;\">nWidth</span> - GetSysMetrics<span style=\"color: #000000;\">(</span>SM_CXVSCROLL<span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------</span><br /> </div>[/code:26mvambp]\n\nThe rc\n[code=fw:26mvambp]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><br />journal <span style=\"color: #0000ff;\">DIALOG</span> <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">440</span>, <span style=\"color: #000000;\">281</span><br /><span style=\"color: #0000ff;\">STYLE</span> DS_3DLOOK | WS_CHILD | WS_VISIBLE | WS_CLIPCHILDREN<br />CAPTION <span style=\"color: #ff0000;\">\"\"</span><br /><span style=\"color: #0000ff;\">FONT</span> <span style=\"color: #000000;\">10</span>, <span style=\"color: #ff0000;\">\"System\"</span><br /><span style=\"color: #000000;\">{</span><br /> CONTROL <span style=\"color: #ff0000;\">\"\"</span>, <span style=\"color: #000000;\">101</span>, <span style=\"color: #ff0000;\">\"TXBrowse\"</span>, WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP, <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">28</span>, <span style=\"color: #000000;\">364</span>, <span style=\"color: #000000;\">202</span><br /><span style=\"color: #000000;\">}</span><br /><br /><span style=\"color: #0000ff;\">down</span> BITMAP LOADONCALL MOVEABLE DISCARDABLE<br /><span style=\"color: #000000;\">{</span><br /> <span style=\"color: #ff0000;\">'42 4D 06 01 00 00 00 00 00 00 76 00 00 00 28 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 10 00 00 00 12 00 00 00 01 00 04 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 90 00 00 00 00 00 00 00 00 00 00 00 00 00'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 00 00 00 00 00 00 00 00 00 80 00 00 80'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 80 80 00 80 00 00 00 80 00 80 00 80 80'</span><br /> <span style=\"color: #ff0000;\">'00 00 80 80 80 00 C0 C0 C0 00 00 00 FF 00 00 FF'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 FF FF 00 FF 00 00 00 FF 00 FF 00 FF FF'</span><br /> <span style=\"color: #ff0000;\">'00 00 FF FF FF 00 88 88 88 88 88 88 88 88 88 88'</span><br /> <span style=\"color: #ff0000;\">'88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88'</span><br /> <span style=\"color: #ff0000;\">'88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88'</span><br /> <span style=\"color: #ff0000;\">'00 00 00 08 88 88 88 88 88 88 88 88 88 88 88 88'</span><br /> <span style=\"color: #ff0000;\">'88 80 88 88 88 88 88 88 88 00 08 88 88 88 88 88'</span><br /> <span style=\"color: #ff0000;\">'80 00 00 88 88 88 88 88 00 00 00 08 88 88 88 88'</span><br /> <span style=\"color: #ff0000;\">'88 00 08 88 88 88 88 88 88 00 08 88 88 88 88 88'</span><br /> <span style=\"color: #ff0000;\">'88 00 08 88 88 88 88 88 88 88 88 88 88 88 88 88'</span><br /> <span style=\"color: #ff0000;\">'88 88 88 88 88 88 88 88 88 88 88 88 88 88 88 88'</span><br /> <span style=\"color: #ff0000;\">'88 88 88 88 88 88'</span><br /><span style=\"color: #000000;\">}</span><br /> </div>[/code:26mvambp]\n\nI was also wondering how to get the footer to appear. I'm sure I'll have more questions as I slowly starts to get more familiar with xBrowse.\n\nTIA",
"time": "11:52",
"topic": "Anyone has any idea why button in xBrowse flashes?",
"username": "hua"
}
] |
Anyone has any idea why button in xBrowse flashes?
|
[
{
"date": "2009-05-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "if this line\n oBrw:nStretchCol := 2\nis removed or commented out the button does not flicker\n\nThis is a long outstanding bug",
"time": "15:01",
"topic": "Anyone has any idea why button in xBrowse flashes?",
"username": "nageswaragunupudi"
}
] |
Anyone has any idea why button in xBrowse flashes?
|
[
{
"date": "2009-05-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This can be the fix in xbrowse.prg for this problem:\n\nIn xbrowse.prg:\n\n1. Remove line \"::ColStretch()\" in METHOD Paint()\n2. Add a new method in TXBrowse Class:\n[code=fw:2tmanuc5]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <span style=\"color: #00C800;\">METHOD</span> Resize<span style=\"color: #000000;\">(</span> nSizeType, nWidth, nHeight <span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">INLINE</span> <span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">ColStretch</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, <span style=\"color: #00C800;\">Super</span>:<span style=\"color: #000000;\">ReSize</span><span style=\"color: #000000;\">(</span> nSizeType, nWidth, nHeight <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> </div>[/code:2tmanuc5]\nWith this fix the button does not blink",
"time": "19:57",
"topic": "Anyone has any idea why button in xBrowse flashes?",
"username": "nageswaragunupudi"
}
] |
Anyone has any idea why button in xBrowse flashes?
|
[
{
"date": "2009-05-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks Rao! That solved it!\n\nAny idea why the footers won't appear even though I changed the above xbrowse statement to:\n\nredefine xbrowse oBrw id 101 of oDlg ;\n columns 1, 2, 3, 4 ;\n headers \"Account\", \"Description\", \"Debit\", \"Credit\" ;\n pictures \"@!\",,\"@Z 999,999.99\", \"@Z 999,999.99\" ;\n array aFiledbf ;\n [b:3b7toi26]footers[/b:3b7toi26] fastedit lines cell update ;",
"time": "03:20",
"topic": "Anyone has any idea why button in xBrowse flashes?",
"username": "hua"
}
] |
Anyone has any idea why button in xBrowse flashes?
|
[
{
"date": "2009-05-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Possibly because of resizing in your application.\nTry creating in a normal window or dialog, footers show up",
"time": "05:57",
"topic": "Anyone has any idea why button in xBrowse flashes?",
"username": "nageswaragunupudi"
}
] |
Anyone has any idea why button in xBrowse flashes?
|
[
{
"date": "2009-05-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "The footers appears once I remove WS_HSCROLL attribute from TXBrowse in the rc file.",
"time": "07:12",
"topic": "Anyone has any idea why button in xBrowse flashes?",
"username": "hua"
}
] |
Anyone has any idea why button in xBrowse flashes?
|
[
{
"date": "2011-07-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Anyone has any sample .hbp to compile app using MingW+Harbour+FWH+hbmk2 ?\n\nTIA",
"time": "09:09",
"topic": "Anyone has any mingw+harbour+hbmk2+fwh .hbp sample?",
"username": "hua"
}
] |
Anyone has any mingw+harbour+hbmk2+fwh .hbp sample?
|
[
{
"date": "2011-07-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "So far using fwh\\samples\\buildg.bat to build any of the samples is unsuccessful <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( -->",
"time": "09:24",
"topic": "Anyone has any mingw+harbour+hbmk2+fwh .hbp sample?",
"username": "hua"
}
] |
Anyone has any mingw+harbour+hbmk2+fwh .hbp sample?
|
[
{
"date": "2011-07-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hua,\n\nUsing this Harbour for MinGW:\n[url:2tmbjn1i]http://harbour-and-xharbour-builds.googlecode.com/files/harbour_mingw_20110711.zip[/url:2tmbjn1i]\n\nAnd this samples\\buildg.bat, it works fine except that AlphaBlend() external is not solved:\n[code=fw:2tmbjn1i]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">@ECHO OFF<br />CLS<br />ECHO ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿<br />ECHO ³ FiveWin <span style=\"color: #00C800;\">for</span> Harbour <span style=\"color: #000000;\">11.06</span> and GCC - Jun. <span style=\"color: #000000;\">2011</span> Harbour development <span style=\"color: #0000ff;\">power</span> ³Ü<br />ECHO ³ <span style=\"color: #000000;\">(</span>c<span style=\"color: #000000;\">)</span> FiveTech, <span style=\"color: #000000;\">1993</span><span style=\"color: #000000;\">-2011</span> <span style=\"color: #00C800;\">for</span> Microsoft Windows 9X/NT/200X/ME/XP/Vista/<span style=\"color: #000000;\">7</span> ³Û<br />ECHO ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙÛ<br />ECHO ÿ ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß<br /><br /><span style=\"color: #00C800;\">if</span> A%<span style=\"color: #000000;\">1</span> == A GOTO :<span style=\"color: #000000;\">SINTAX</span><br /><span style=\"color: #00C800;\">if</span> NOT EXIST %<span style=\"color: #000000;\">1</span>.prg GOTO :<span style=\"color: #000000;\">NOEXIST</span><br /><br />ECHO Compiling...<br /><br />set hdir=%HBDIR%<br />set hdirc=%hdir%\\bin\\harbour.exe<br />set hlibs=%hdir%\\lib\\gcc<br />set fwh=c:\\fwteam<br />set mingw=c:\\mingw<br />set path=c:\\mingw\\bin<br /><br />%hdirc% %<span style=\"color: #000000;\">1</span> /n /i%fwh%\\include;%hdir%\\include /w /p %<span style=\"color: #000000;\">2</span> %<span style=\"color: #000000;\">3</span> > comp.log<br /><span style=\"color: #00C800;\">IF</span> ERRORLEVEL <span style=\"color: #000000;\">1</span> GOTO COMPILEERROR<br />@type comp.log<br /><br />%mingw%\\bin\\gcc -c %<span style=\"color: #000000;\">1</span>.c -o%<span style=\"color: #000000;\">1</span>.o -I%hdir%\\include -I%mingw%\\include -Wall<br /><span style=\"color: #00C800;\">IF</span> ERRORLEVEL <span style=\"color: #000000;\">1</span> GOTO COMPILEERROR<br /><br /><span style=\"color: #00C800;\">if</span> exist %<span style=\"color: #000000;\">1</span>.rc %mingw%\\bin\\windres -D__FLAT__ -DDIALOG=DIALOGEX -i%<span style=\"color: #000000;\">1</span>.rc -o_%<span style=\"color: #000000;\">1</span>.o<br /><span style=\"color: #00C800;\">IF</span> ERRORLEVEL <span style=\"color: #000000;\">1</span> GOTO RESOURCESERROR<br /><br /><span style=\"color: #00C800;\">if</span> not exist %<span style=\"color: #000000;\">1</span>.rc %mingw%\\bin\\gcc -o%<span style=\"color: #000000;\">1</span>.exe %<span style=\"color: #000000;\">1</span>.o -Wall -s -mwindows -L%mingw%\\lib -L%hlibs% -L%fwh%\\lib -mno-cygwin -Wl,--start-group -lfivehg -lfivehgc -lgtgui -luser32 -lwinspool -lcomctl32 -lcomdlg32 -lgdi32 -lole32 -loleaut32 -luuid -lwinmm -lvfw32 -lwsock32 -lmsimg32 -lhbcommon -lhbcpage -lhbcplr -lhbct -lhbhsx -lhblang -lhbmacro -lhbmainstd -lhbmzip -lodbc32 -lhbpcre -lhbpp -lhbrdd -lhbrtl -lhbsix -lhbsqlit3 -lhbtip -lhbusrrdd -lhbvm -lhbwin -lhbzlib -lrddcdx -lrddfpt -lrddntx -lxhb -Wl,--end-group<br /><span style=\"color: #00C800;\">if</span> exist %<span style=\"color: #000000;\">1</span>.rc %mingw%\\bin\\gcc -o%<span style=\"color: #000000;\">1</span>.exe %<span style=\"color: #000000;\">1</span>.o _%<span style=\"color: #000000;\">1</span>.o -Wall -s -mwindows -L%mingw%\\lib -L%hlibs% -L%fwh%\\lib -mno-cygwin -Wl,--start-group -lfivehg -lfivehgc -lgtgui -luser32 -lwinspool -lcomctl32 -lcomdlg32 -lgdi32 -lole32 -loleaut32 -luuid -lwinmm -lvfw32 -lwsock32 -lmsimg32 -lhbcommon -lhbcpage -lhbcplr -lhbct -lhbhsx -lhblang -lhbmacro -lhbmainstd -lhbmzip -lodbc32 -lhbpcre -lhbpp -lhbrdd -lhbrtl -lhbsix -lhbsqlit3 -lhbtip -lhbusrrdd -lhbvm -lhbwin -lhbzlib -lrddcdx -lrddfpt -lrddntx -lxhb -Wl,--end-group<br /><br /><span style=\"color: #00C800;\">IF</span> ERRORLEVEL <span style=\"color: #000000;\">1</span> GOTO LINKERROR<br />ECHO * Application successfully built<br />%<span style=\"color: #000000;\">1</span><br />rem delete temporary files<br />@del %<span style=\"color: #000000;\">1</span>.c<br />@<span style=\"color: #00C800;\">if</span> exist %<span style=\"color: #000000;\">1</span>.rc del _%<span style=\"color: #000000;\">1</span>.o<br />GOTO EXIT<br />ECHO<br /><br />:<span style=\"color: #000000;\">RESOURCESERROR</span><br />ECHO * Resources errors *<br />GOTO EXIT<br /><br />:<span style=\"color: #000000;\">COMPILEERROR</span><br />@type comp.log<br />ECHO * Compile errors *<br />GOTO EXIT<br /><br />:<span style=\"color: #000000;\">LINKERROR</span><br />ECHO * Link errors *<br />GOTO EXIT<br /><br />:<span style=\"color: #000000;\">SINTAX</span><br />ECHO SYNTAX: <span style=\"color: #000000;\">Buildg</span> <span style=\"color: #000000;\">[</span>Program<span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">{</span>-- No especifiques la extensi¢n PRG<br />ECHO <span style=\"color: #000000;\">{</span>-- Don<span style=\"color: #ff0000;\">'t specify .PRG extension<br />GOTO EXIT<br /><br />:NOEXIST<br />ECHO The specified PRG %1 does not exist<br /><br />:EXIT</span></div>[/code:2tmbjn1i]",
"time": "10:10",
"topic": "Anyone has any mingw+harbour+hbmk2+fwh .hbp sample?",
"username": "Antonio Linares"
}
] |
Anyone has any mingw+harbour+hbmk2+fwh .hbp sample?
|
[
{
"date": "2011-07-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "That's good to know. I'll try redownloading the latest MingW, run a svn update for Harbour source and retry everything again.\n\nYour buildg.bat also seems to be newer than mine by having the following additional libs:\ni. hbclipsm\nii. hbhpdf\niii. hbmisc\niv. hbnf\nv. hbodbc\n\nThanks Antonio.",
"time": "11:03",
"topic": "Anyone has any mingw+harbour+hbmk2+fwh .hbp sample?",
"username": "hua"
}
] |
Anyone has any mingw+harbour+hbmk2+fwh .hbp sample?
|
[
{
"date": "2011-07-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Still couldn't make it work. I compiled Harbour from r16910 using MingW 4.5.2. \n\nHere's the error I get even after using the latest buildg.bat\n[code=fw:wkey93u9]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />rbdesign.o:<span style=\"color: #000000;\">rbdesign</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x798<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_CHOOSEGRADIENT<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(CONTROL.o):CONTROL.c:(.data+0xe78): undefined reference to `HB_FUN_APPHASMANIFEST'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x198<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_REDLLVERSION<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x1b8): undefined reference to `HB_FUN_REGETPARAFORMAT'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x1d8<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_REGETBULLET<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x1e8): undefined reference to `HB_FUN_REGETCHARFORMAT'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x208<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_REGETHIGHLIGHT<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x278): undefined reference to `HB_FUN_REGETNUMBERING'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x2d8<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_REGETZOOM<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x398): undefined reference to `HB_FUN_REINSERTPICTURE'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x438<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_RELEN<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x4c8): undefined reference to `HB_FUN_REPAGEBREAK'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x4f8<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_REPASTESPECIAL<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x578): undefined reference to `HB_FUN_RESAVEASRTF'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x628<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_RESETFONTNAME<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x638): undefined reference to `HB_FUN_RESETFONTSIZE'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x658<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_RESETHIGHLIGHT<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x688): undefined reference to `HB_FUN_RESETOLEINIT'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x6a8<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_RESETOLECALLBACK<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x6b8): undefined reference to `HB_FUN_REGETOLEINTERFACE'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x6d8<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_RESETPOS<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x6f8): undefined reference to `HB_FUN_RESETSELECTION'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x718<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_RESETTEXTCOLOR<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x728): undefined reference to `HB_FUN_RESETZOOM'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0xaf8<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_RESETCHARFORMAT<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0xc78): undefined reference to `HB_FUN_REFINDTEXT'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0xcb8<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_REGETINDENT<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0xce8): undefined reference to `HB_FUN_REGETPARAGRAPH'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0xd28<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_REGETSELECTION<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0xd78): undefined reference to `HB_FUN_LOCKWINDOWUPDATE'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0xf38<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_RELOADASRTF<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0xfc8): undefined reference to `HB_FUN_REGETNMHDRLINK'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x1058<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_REPREVIEW<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x10a8): undefined reference to `HB_FUN_REPRINT'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x1108<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_REPRINTBOX<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x12c8): undefined reference to `HB_FUN_RESETPARAFORMAT'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x12d8<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_RESETATTRIBUTE<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x12e8): undefined reference to `HB_FUN_RESETAUTOURLDETECT'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x12f8<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_RESETBULLET<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x1328): undefined reference to `HB_FUN_RESETINDENT'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>TRICHEDI.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">TRICHEDI</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x1338<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_RESETNUMBERING<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehg.lib(TRICHEDI.o):TRICHEDI.c:(.data+0x1348): undefined reference to `HB_FUN_RESETPARAGRAPH'</span><br />j:\\harbour\\fwh\\lib/fivehg.lib<span style=\"color: #000000;\">(</span>RPREVIEW.o<span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">RPREVIEW</span>.c:<span style=\"color: #000000;\"><span style=\"color: #000000;\">(</span></span>.<span style=\"color: #00C800;\">data</span>+0x12e8<span style=\"color: #000000;\">)</span>: <span style=\"color: #000000;\">undefined</span> reference <span style=\"color: #0000ff;\">to</span> `HB_FUN_WINWORDOBJ<span style=\"color: #ff0000;\">'<br />j:<span style=\"color: #000000;\">\\h</span>arbour<span style=\"color: #000000;\">\\f</span>wh<span style=\"color: #000000;\">\\l</span>ib/fivehgc.lib(BRUSHES.o):BRUSHES.C:(.text+0x23f3): undefined reference to `AlphaBlend'</span><br /> </div>[/code:wkey93u9]\n\nIt's kinda perplexing as libmsimg32.a and libcomctl32.a have been linked-in and should have resolved all of this.\n\n[url=http://fivetechsupport.com/forums/viewtopic.php?f=3&t=20721&start=0:wkey93u9]Saving a link of a post that might be related[/url:wkey93u9]",
"time": "02:27",
"topic": "Anyone has any mingw+harbour+hbmk2+fwh .hbp sample?",
"username": "hua"
}
] |
Anyone has any mingw+harbour+hbmk2+fwh .hbp sample?
|
[
{
"date": "2014-10-09",
"forum": "Off Topic / Otros temas",
"text": "Hi guys,\n I have the book [b:1dg38t3n]Clipper 5.2[/b:1dg38t3n] [i:1dg38t3n]A Developer's Guide[/i:1dg38t3n] by Joseph Booth, Greg Lief and Craig Yellick.\n\nIt came with a disk that contains the source that are in the book but I've lost that disk. \n\nDoes anyone has it and could you be so kind to email me a copy of that disk contents?\n\nTIA",
"time": "05:23",
"topic": "Anyone has disk of Clipper A Developer's Guide book?",
"username": "hua"
}
] |
Anyone has disk of Clipper A Developer's Guide book?
|
[
{
"date": "2014-10-10",
"forum": "Off Topic / Otros temas",
"text": "Hua,\nWhat is your email?",
"time": "00:02",
"topic": "Anyone has disk of Clipper A Developer's Guide book?",
"username": "George"
}
] |
Anyone has disk of Clipper A Developer's Guide book?
|
[
{
"date": "2014-10-10",
"forum": "Off Topic / Otros temas",
"text": "k*****@gmail.com George.\n\nThank you!",
"time": "02:55",
"topic": "Anyone has disk of Clipper A Developer's Guide book?",
"username": "hua"
}
] |
Anyone has disk of Clipper A Developer's Guide book?
|
[
{
"date": "2009-01-16",
"forum": "Off Topic / Otros temas",
"text": "Anyone know of a free, good source code formatter for prg's?\n\nHad to inspect a prg which is about 3000 lines long and the indentation is totally whack out.",
"time": "05:51",
"topic": "Anyone know of a good source code formatter?",
"username": "hua"
}
] |
Anyone know of a good source code formatter?
|
[
{
"date": "2006-03-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I am working on a Quick Books interface using FWH and xHarbour ( all latest versions) I must use the QBFC from Intuit.\n\nI'm able to connect to a QB file, and when I post a request to add a client, the transaction takes place. I supply a name, opening balance amount, and a transaction date, and QB adds the account, enters the name, enters the opening balance, and enters the date. To me, this could not happen if the connection was not valid. \n\nThe value returned is supposed to be a \"response list\" which is a data object. However, when I try to parse the response list, I'm getting a NIL value. \n\nSo, the connection is established, the values passed are processed, but the return value appears to my program as NIL. The QB Request Processor should not be returning a NIL value if the actions were able to take place. This leads me to suspect that saving the return value to a LOCAL value may be the problem.\n\nAny thoughts or suggestions would be greatly appreciated.\n <!-- s:idea: --><img src=\"{SMILIES_PATH}/icon_idea.gif\" alt=\":idea:\" title=\"Idea\" /><!-- s:idea: -->",
"time": "18:25",
"topic": "Anyone using QBFC 5.0 ?",
"username": "TimStone"
}
] |
Anyone using QBFC 5.0 ?
|
[
{
"date": "2005-11-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello All,\n\nIs there any way to include CC and BCC in TMail Class ?\n\nWhat is the alterrnative to achieve the same thing ?\n\nTIA\n\nMilan.",
"time": "12:23",
"topic": "Anyway to Send CC and BCC in TMail Class ?",
"username": "Milan Mehta"
}
] |
Anyway to Send CC and BCC in TMail Class ?
|
[
{
"date": "2005-11-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "TIA\n\nIn the x:\\FWH\\Samples folder you will find an example (TestMail.Prg) using MAPI, it works fine. Perhaps that is what you need.\n\nRegards, Armando",
"time": "14:25",
"topic": "Anyway to Send CC and BCC in TMail Class ?",
"username": "Armando"
}
] |
Anyway to Send CC and BCC in TMail Class ?
|
[
{
"date": "2005-11-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Armando,\n\nI am working on that only but there I did not see any CC and BCC option. Can u guide further.\n\nTIA\nMilan.\n\n\n[quote=\"Armando\":ecvruwp7]TIA\n\nIn the x:\\FWH\\Samples folder you will find an example (TestMail.Prg) using MAPI, it works fine. Perhaps that is what you need.\n\nRegards, Armando[/quote:ecvruwp7]",
"time": "06:11",
"topic": "Anyway to Send CC and BCC in TMail Class ?",
"username": "Milan Mehta"
}
] |
Anyway to Send CC and BCC in TMail Class ?
|
[
{
"date": "2008-08-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\r\n\r\nIs there a solution to use bcc in tMail?\r\n\r\nThanks,\r\nMarc",
"time": "10:16",
"topic": "Anyway to Send CC and BCC in TMail Class ?",
"username": "Marc Vanzegbroeck"
}
] |
Anyway to Send CC and BCC in TMail Class ?
|
[
{
"date": "2014-09-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Please help...\n\nWhen I link the libmysql.lib into my Fiveweb application, the browser (on windows) shows the error: Internal Server Error or Misconfiguration.\n\nWhen I do not use this library, the Fiveweb application runs fine.\n\nPlease guide what to do.",
"time": "21:28",
"topic": "Apache Internal Error",
"username": "compaqt"
}
] |
Apache Internal Error
|
[
{
"date": "2008-08-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Amigos del foro tengan buen dia.....\r\n\r\nAlguien sabe como puedo hacer para apagar el computador desde una aplicacion de fw? bueno no se si se puede? <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> \r\n\r\nde antemano gracias",
"time": "04:49",
"topic": "Apagar el computador",
"username": "leandro"
}
] |
Apagar el computador
|
[
{
"date": "2008-08-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"leandro\":2tbilr7g]Amigos del foro tengan buen dia.....\n\nAlguien sabe como puedo hacer para apagar el computador desde una aplicacion de fw? bueno no se si se puede? <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> \n\nde antemano gracias[/quote:2tbilr7g]\r\n\r\n\r\n<!-- m --><a class=\"postlink\" href=\"http://forums.fivetechsoft.com/viewtopic.php?t=1628\">http://forums.fivetechsoft.com/viewtopic.php?t=1628</a><!-- m -->\r\n\r\nBusca 'ShutDown'\r\n\r\nSaludos\r\nCarlos G.",
"time": "08:29",
"topic": "Apagar el computador",
"username": "FiveWiDi"
}
] |
Apagar el computador
|
[
{
"date": "2008-08-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola, mira se ayuda:\r\n\r\n[code:3rcqabm0]\n#Include \"FiveWin.Ch\"\n\n#Define WM_SYSCOMMAND 274 // &H112\n#Define SC_TASKLIST 61744 // &HF130\n#Define SC_SCREENSAVE 61760 // &HF140\n#Define SW_HIDE 0 // &H0\n#Define SW_SHOWNA 8 // &H8\n#Define SW_SHOW 5 // &H5\n#Define SW_SHOWNORMAL 1\n#Define SC_MONITORPOWER 61808 // &HF170 Gracias a Ramon Ramirez por la info\n#Define SM_CLEANBOOT 67\n\n//\n\n //Apagar el Equipo si nos deja otras aplicaciones que esten abiertas\n DEFINE BUTTON OF oBar PROMPT \"Apagar Maquina Confirma.\" ;\n FONT oFnt ACTION ( Apaga(1,0) )\n\n //Reiniciar el equipo\n DEFINE BUTTON OF oBar PROMPT \"Reiniciar a Maquina.\" ;\n FONT oFnt ;\n ACTION ( Apaga(2,0) )\n\n //Apagar el Equipo sin pedir confirmacion ni nada. Las aplicaciones abiertas que se las apañen.. ;)\n DEFINE BUTTON OF oBar PROMPT \"Apaga e Vai P/XD.\" ;\n FONT oFnt ;\n ACTION ( Apaga(5,0) )\n\n//\n\nDLL32 Function Apaga(uFlags As LONG,dwReserved AS LONG) ;\n AS LONG PASCAL FROM \"ExitWindowsEx\" LIB \"USER32.DLL\"\n\n[/code:3rcqabm0]",
"time": "13:47",
"topic": "Apagar el computador",
"username": "karinha"
}
] |
Apagar el computador
|
[
{
"date": "2008-08-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Para apagar el pc yo hago asi:\r\n\r\n cExec := \"C:\\Windows\\System32\\ShutDown.exe\"\r\n ShellExecute( 0, \"Open\", cExec, \" -s\", 0, 1 )\r\n\r\n\r\nSalu2!",
"time": "14:18",
"topic": "Apagar el computador",
"username": "TecniSoftware"
}
] |
Apagar el computador
|
[
{
"date": "2019-02-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mr. Rao y amigos:\n\nTengo este código con un xBrowse:\n\n[code=fw:2gr4u4y7]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />COLUMNS <span style=\"color: #ff0000;\">\"HDR_ODC\"</span>,<span style=\"color: #ff0000;\">\"Date2Txt(HDR_FDE)\"</span>,<span style=\"color: #ff0000;\">\"HDR_PRV\"</span>,<span style=\"color: #ff0000;\">\"PRO_NOM\"</span>,<span style=\"color: #ff0000;\">\"HDR_PRO\"</span>,VerType<span style=\"color: #000000;\">(</span>oRsHdr:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"HDR_TIP\"</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br />….<br />….<br />….<br /><span style=\"color: #00C800;\">STATIC</span> <span style=\"color: #00C800;\">FUNCTION</span> VerType<span style=\"color: #000000;\">(</span>nType<span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span>nType<span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">IF</span> nType > <span style=\"color: #000000;\">0</span><br /> <span style=\"color: #00C800;\">RETURN</span><span style=\"color: #000000;\">(</span>acOrd<span style=\"color: #000000;\">[</span>nType<span style=\"color: #000000;\">]</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">ENDIF</span><br /><span style=\"color: #00C800;\">RETURN</span><span style=\"color: #000000;\">(</span><span style=\"color: #00C800;\">NIL</span><span style=\"color: #000000;\">)</span><br /> </div>[/code:2gr4u4y7]\n\nEl problema es que el mensaje aparece una sola vez y la descripción es la misma\npara todos los renglones aunque no debería ser\n\nAlguna sugerencia?",
"time": "19:11",
"topic": "Aparece solo una vez (Mr. Rao) (SOLUCIONADO)",
"username": "Armando"
}
] |
Aparece solo una vez (Mr. Rao) (SOLUCIONADO)
|
[
{
"date": "2019-02-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Instead of\n[code=fw:299vnj9n]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">VerType<span style=\"color: #000000;\">(</span>oRsHdr:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"HDR_TIP\"</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span></div>[/code:299vnj9n]\n\nuse\n[code=fw:299vnj9n]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #000000;\">{</span> || VerType<span style=\"color: #000000;\">(</span>oRsHdr:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"HDR_TIP\"</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span></div>[/code:299vnj9n]",
"time": "07:22",
"topic": "Aparece solo una vez (Mr. Rao) (SOLUCIONADO)",
"username": "nageswaragunupudi"
}
] |
Aparece solo una vez (Mr. Rao) (SOLUCIONADO)
|
[
{
"date": "2019-02-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mr. Rao:\n\nThanks so much for your help (As Usually)\n\nRegards",
"time": "16:19",
"topic": "Aparece solo una vez (Mr. Rao) (SOLUCIONADO)",
"username": "Armando"
}
] |
Aparece solo una vez (Mr. Rao) (SOLUCIONADO)
|
[
{
"date": "2010-08-17",
"forum": "FiveWin para Harbour/xHarbour",
"text": "DEFINE WINDOW oDtree TITLE \"Mostrar menu de opciones como tree en XBrowse\"\nApartir de que version de FWH trabaja oBrw:SetTree con xbrowse\n[code=fw:l1yqwjln]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><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> oDtree <br /> oBrw:<span style=\"color: #000000;\">nMarqueeStyle</span> = MARQSTYLE_HIGHLROW<br /> <br /> oBrw:<span style=\"color: #000000;\">lHScroll</span> := .f.<br /> <br /> oBrw:<span style=\"color: #000000;\">SetTree</span><span style=\"color: #000000;\">(</span> BuildTree<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, <span style=\"color: #000000;\">{</span> <span style=\"color: #ff0000;\">\"menos\"</span>, <span style=\"color: #ff0000;\">\"mas\"</span>, <span style=\"color: #ff0000;\">\"si\"</span>,<span style=\"color: #ff0000;\">\"no\"</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">//Imagenes en un recurso</span><br /> <br /> oBrw:<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;\">cHeader</span> = <span style=\"color: #ff0000;\">\"Opciones\"</span><br /> <br /> oBrw:<span style=\"color: #000000;\">CreateFromCode</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> oDtree:<span style=\"color: #000000;\">oClient</span> = oBrw<br /> <br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oDtree<br /><span style=\"color: #000000;\">[</span></div>[/code:l1yqwjln]",
"time": "18:07",
"topic": "Apartir de que version trabaja oBrw:SetTree con xbrowse",
"username": "ruben Dario"
}
] |
Apartir de que version trabaja oBrw:SetTree con xbrowse
|
[
{
"date": "2010-08-18",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ruben,\n\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=16&t=10685&p=52195&hilit=xbrowse+settree#p52195\">viewtopic.php?f=16&t=10685&p=52195&hilit=xbrowse+settree#p52195</a><!-- l -->",
"time": "14:04",
"topic": "Apartir de que version trabaja oBrw:SetTree con xbrowse",
"username": "Antonio Linares"
}
] |
Apartir de que version trabaja oBrw:SetTree con xbrowse
|
[
{
"date": "2007-06-06",
"forum": "FiveWin para CA-Clipper",
"text": "Hola:\nRequiero abrir bases de datos de un sistema el cual tiene mas de 8 caracteres, por ejemplo:\ntb15050701.dbf\n\nhay alguna forma de abrirla sin necesidad de renombrarla o copiarla a 8 caracteres ?????\n\nuse fw23,blinker 6.0, clip53\n\ngracias x su ayuda\nsalu2\nveracruz, mexico",
"time": "20:34",
"topic": "Apertura de Dbf con Nombres largos",
"username": "servicomver"
}
] |
Apertura de Dbf con Nombres largos
|
[
{
"date": "2007-06-06",
"forum": "FiveWin para CA-Clipper",
"text": "Yo tengo esta funcion que convierte nombres largos en cortos...\n[code:1r3hszi9]function cShortName( cLong )\nlocal cShort :=space(164)+Chr(0)\nlocal nBuffer:=164\nlocal nLen\nnLen :=GetSPName(cLong,@cShort,nBuffer)\ncShort:=left(cShort,nLen)\nreturn cShort\nDLL32 STATIC FUNCTION GetSPName(lpszLongPath AS STRING,;\n lpszShortPath AS STRING,;\n lBuffer AS LONG ) ;\n AS LONG PASCAL FROM \"GetShortPathNameA\" LIB \"kernel32\"[/code:1r3hszi9]\n\nHaz algo asi [b:1r3hszi9]dbUseArea(.T.,\"\",cShortName(cNombreLargo),\"DBF\")[/b:1r3hszi9], en tu caso dbUseArea(.T.,\"\",cShortName(\"tb15050701.dbf\"),\"DBF\")\n\nPor si quieres te doy la funcion inversa:\n[code:1r3hszi9]function cLongName(cShort)\nlocal cLong:=space(164)+chr(0)\nlocal nBuffer:=164\nlocal nLen\nnLen:=GetLPName(cShort,@cLong,nBuffer)\ncLong:=left(cLong,nLen) && Quitar para Windows NT\nreturn cLong\nDLL32 STATIC FUNCTION GetLPName(lpszShortPath AS STRING,;\n lpszLongPath AS STRING,;\n lBuffer AS LONG) ;\n AS LONG PASCAL FROM \"GetLongPathNameA\" LIB \"kernel32\"[/code:1r3hszi9]",
"time": "21:12",
"topic": "Apertura de Dbf con Nombres largos",
"username": "JmGarcia"
}
] |
Apertura de Dbf con Nombres largos
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.