messages listlengths 1 1 | topic stringlengths 2 60 |
|---|---|
[
{
"date": "2008-05-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello, \r\nin addition to Antonio's video,\r\na tutorial for photoshop and Paintshop Pro\r\n\r\n[img:3qsyiuu9]http://www.pflegeplus.com/pictures/trans1.jpg[/img:3qsyiuu9]\r\n\r\n[img:3qsyiuu9]http://www.pfl... | A Alphablend tutorial for Photoshop a. Paintshop Pro |
[
{
"date": "2007-04-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "To All\n\nOver the past few days I have had to learn how to connect and manipulate an Access database .mdb. with xHarbour and FWH.\n\nI would like to dedicate my “Beginners Guide for ADO” to Enrico Maria Giordano who has been an ... | A Beginners Guide to ADO |
[
{
"date": "2007-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you very much <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> Rick,\n\nI imagine you had to work hard to get this knowledge <!-- s:shock: --><img src=\"{SMILIES_PATH... | A Beginners Guide to ADO |
[
{
"date": "2007-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Rip,\n\nI just want to comment that \n\n[code:3w15iiu4]IF oRS:eof // query resulted with no records \nMsginfo( \"not found\" ) \nRETURN(NIL) \nENDIF \n[/code:3w15iiu4]\n\nSometimes will not be enought to det... | A Beginners Guide to ADO |
[
{
"date": "2007-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Or even better\n\n[code:2m8dcb6o]IF oRs:RecordCount = 0[/code:2m8dcb6o]\n\nBut it will not work with all cursortype.\n\nEMG",
"time": "13:12",
"topic": "A Beginners Guide to ADO",
"username": "Enrico Maria Giordano... | A Beginners Guide to ADO |
[
{
"date": "2007-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\n>IF oRs:RecordCount = 0 \n\n>But it will not work with all cursortype.\n\nAre you saying that oRS:RecordCount might be greater than zero even when there are no records in the recordset under some circumstances? If so, u... | A Beginners Guide to ADO |
[
{
"date": "2007-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "oRs:RecordCount() is -1 when an adOpenForwardOnly or adOpenDynamic cursor type is used.\n\nEMG",
"time": "16:10",
"topic": "A Beginners Guide to ADO",
"username": "Enrico Maria Giordano"
}
] | A Beginners Guide to ADO |
[
{
"date": "2007-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\n\nis RLOCK() possible ?\n\nThanks,\n\nJAGarcia",
"time": "16:11",
"topic": "A Beginners Guide to ADO",
"username": "JAGARCIA"
}
] | A Beginners Guide to ADO |
[
{
"date": "2007-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "No, locking is automatic. You can choose pessimistic (from the first change to the Update() call, if I remember correctly) or optimistic (only during Update() call).\n\nEMG",
"time": "16:16",
"topic": "A Beginners Guide to... | A Beginners Guide to ADO |
[
{
"date": "2007-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\n>oRs:RecordCount() is -1 when an adOpenForwardOnly or adOpenDynamic cursor type is used. \n\nOK, so oRS:RecordCount() <= 0 when there are no records, right?\n\nOr, oRS:RecordCount() < 1\n\nJames",
"time": "16:19",
... | A Beginners Guide to ADO |
[
{
"date": "2007-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "No, with those two cursor types oRs:RecordCount is -1 even if there are records in the recordset.\n\nThanks to MS for this...\n\nEMG",
"time": "16:21",
"topic": "A Beginners Guide to ADO",
"username": "Enrico Maria Gio... | A Beginners Guide to ADO |
[
{
"date": "2007-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": ">No, with those two cursor types oRs:RecordCount is -1 even if there are records in the recordset. \n\nHmm. So how can we tell if there is an empty recordset?\n\nJames",
"time": "18:07",
"topic": "A Beginners Guide to ADO"... | A Beginners Guide to ADO |
[
{
"date": "2007-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[code:1isgjmnp]oRs:Open( ... )\n\nIF oRs:EOF()\n ...\nENDIF[/code:1isgjmnp]\n\nEMG",
"time": "18:13",
"topic": "A Beginners Guide to ADO",
"username": "Enrico Maria Gi... | A Beginners Guide to ADO |
[
{
"date": "2007-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "To All\n\noRs:eof is an effective way of determining an EOF as well as a no find as in the first example.\n\nI do have some difficulties running SQL UPDATE statements in a large loop over and over again .. Updating number values a... | A Beginners Guide to ADO |
[
{
"date": "2007-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I'm no SQL expert, but try switching your single and double quotes so that you are not surrounding your text strings with single quotes.\n\nJames",
"time": "23:30",
"topic": "A Beginners Guide to ADO",
"username": "Jam... | A Beginners Guide to ADO |
[
{
"date": "2007-04-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "James\n\nSQL can only interpret single quotes to pass as values :\n\ncSQL := \"UPDATE rcra_compliance_indexing SET ASSOCIATED_ID = \"\ncSQL += \"'\"+cID+\"', FILE_NAME = '\"+cNAME+\"'\"\ncSQL += \" WHERE ASSOCIATED_FILE_NUM = '\"+... | A Beginners Guide to ADO |
[
{
"date": "2007-04-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Rick Lipkin\":3jarowst] IF oRs:eof\n oRs:MoveFirst()[/quote:3jarowst]\n\nYou can't move the record pointer when the recordset is empty. This will result in a runtime error.\n\nEMG",
"time": "07:37",
"topic": ... | A Beginners Guide to ADO |
[
{
"date": "2007-04-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Rick Lipkin\":1mylhfhm]I have no problem with the numeric values .. where my string breaks is passing the file_name string. Don't know why .. but there is no ryme or reason for the failure .. never happends on the same r... | A Beginners Guide to ADO |
[
{
"date": "2007-04-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rip,\n\n\nAbout method Find of RecordSet (from BOL):\n\n[quote:1cpr511m]Find Method\nSearches a Recordset for the row that satisfies the specified criteria. Optionally, the direction of the search, starting row, and offset from th... | A Beginners Guide to ADO |
[
{
"date": "2007-04-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n\n>SQL can only interpret single quotes to pass as values : \n\nDouble quotes work for me, at least with Access. This works here:\n\noRS:Open( [SELECT * FROM Customers WHERE companyname=\"Eastern Connection\"], \"Provider=M... | A Beginners Guide to ADO |
[
{
"date": "2007-04-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Masters\n\nAny idea for compact a mdb, like \"Compact & repair\" but with SQL instruccion ?\n\ntnks\n\nSpanish ON------------------\n\nMaestros, \nAlguna idea de como compactar una base mdb, como \"Compactar y reparar\" del Access... | A Beginners Guide to ADO |
[
{
"date": "2007-04-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[code:25fne4yj]FUNCTION MAIN()\n\n LOCAL oJro := CREATEOBJECT( \"JRO.JetEngine\" )\n\n LOCAL cConStr1 := \"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=mydb.mdb\"\n LOCAL cC... | A Beginners Guide to ADO |
[
{
"date": "2007-04-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "OK, any class to include or \"pure & hard code\"\n\nSpanish ON\n\nOk, alguna clase a incluir o \"codigo puro y duro\" ?\n\n\nPD: Sql instruction via ODBC, exists ?",
"time": "20:51",
"topic": "A Beginners Guide to ADO",
... | A Beginners Guide to ADO |
[
{
"date": "2007-04-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Pure xHarbour code.\n\nEMG",
"time": "20:53",
"topic": "A Beginners Guide to ADO",
"username": "Enrico Maria Giordano"
}
] | A Beginners Guide to ADO |
[
{
"date": "2008-02-28",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Hi all fivelinux programmers.\n\nYou are probably using gedit to write / edit your source code.\n\nI figured that there are probably some ways to make this a better environment. Antonio has already shown how you can build your... | A Better Programming Environment |
[
{
"date": "2008-02-28",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Hi all\n\nI have found out how to get xBase highlighting to come out as an extra option on the syntax highlighting menu of gedit. That means you don't have to overwrite your C syntax highlighting.\n\nThe following file doesn't... | A Better Programming Environment |
[
{
"date": "2008-02-28",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Oops!\n\nThe file has to be in /usr/share/gtksourceview-2.0/language-specs directory.\n\nxProgrammer",
"time": "10:21",
"topic": "A Better Programming Environment",
"username": "xProgrammer"
}
] | A Better Programming Environment |
[
{
"date": "2008-02-28",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Booleans work with this fix\n\n[code:3l0fsn5r] <!-- C99 booleans --> \n <context id=\"boolean\" style-ref=\"boolean\">\n <match extended=\"true\">\n ... | A Better Programming Environment |
[
{
"date": "2008-02-28",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Here is an improved version with support for @ and class variables (ie ::)\n\nI wrote 2007 in the file and its 2008 - I am DEFINITELY going to bed now!\n\n\n[code:3eawwh4g]<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\n\... | A Better Programming Environment |
[
{
"date": "2008-02-28",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Doug,\n\nWe have found that the Wine emulator is working better and better, so we use our familiar UEStudio in Linux too <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nSo ... | A Better Programming Environment |
[
{
"date": "2008-02-28",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Hi Antonio\n\nThanks for the info.\n\nI now have gedit behaving pretty much as I want it so I'd rather stay with something that isn't relying on an emulator.\n\nI have made further improvements since last version of xbase.lang ... | A Better Programming Environment |
[
{
"date": "2007-11-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "For the past year, I have used the Resource Editor in UEStudio. For about the same time I have been communicating with IDM support urging them to fix a multitude of problems I was having with it. I was told extensive time was spen... | A Better Resource Editor? |
[
{
"date": "2007-11-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Ken, thank you for your post.\nDo you have an example how to use prg-files with Fbedit?\nRegards,\nOtto",
"time": "21:12",
"topic": "A Better Resource Editor?",
"username": "Otto"
}
] | A Better Resource Editor? |
[
{
"date": "2007-11-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Ken Wantz\":ha3l3jla]It can be downloaded from [url:ha3l3jla]http://www.radasm.com[/url:ha3l3jla].[/quote:ha3l3jla]\n\nI just tried to open one of my RC made using Borland Resource Workshop and the very first ... | A Better Resource Editor? |
[
{
"date": "2007-11-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It seem there is no way to work with .RES files. <!-- s:cry: --><img src=\"{SMILIES_PATH}/icon_cry.gif\" alt=\":cry:\" title=\"Crying or Very sad\" /><!-- s:cry: --> \n\nBest regards",
"time": "02:33",
"topic": "A Better ... | A Better Resource Editor? |
[
{
"date": "2007-11-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"EnricoMaria\":5eqo60kv][quote=\"Ken Wantz\":5eqo60kv]It can be downloaded from [url:5eqo60kv]http://www.radasm.com[/url:5eqo60kv].[/quote:5eqo60kv]\n\nI just tried to open one of my RC made using Borland Resou... | A Better Resource Editor? |
[
{
"date": "2007-11-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto,\n\nNo, I have not looked at or tried Fbedit at all. I have used Ultra Edit for years and I am quite comfortable with it just as Antonio is with using the Borland Resource Editor. It could be that Fbedit was designed more for... | A Better Resource Editor? |
[
{
"date": "2008-02-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "ResEd has just been updated to 2.0 and now includes Undo/Redo. Also added is the ability to edit an RC source directly within ResEd.\n\nThe GPF problem previously reported by Enrico Maria has also been resolved. I assume BRW has t... | A Better Resource Editor? |
[
{
"date": "2008-02-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You just talking about editors\n\nI use PSPad.\n\nIt is multilanguage, its free and\ncan handle many things, i didn't see in other editors.\nSyntax-handling for every program-language.\n\nA long time a worked with EditPlus, but th... | A Better Resource Editor? |
[
{
"date": "2008-02-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Uwe,\n\n[quote:2tpb4sky]You just talking about editors [/quote:2tpb4sky]\n\nNot directly. I am primarily talking about the Resource Editor, [b:2tpb4sky]ResEd[/b:2tpb4sky].\n\nI used UE (UltraEdit) in the past with Clipper but w... | A Better Resource Editor? |
[
{
"date": "2008-02-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Have a look at this also:\n\n[url:12gwje11]http://www.resedit.net[/url:12gwje11]\n\nEMG",
"time": "13:14",
"topic": "A Better Resource Editor?",
"username": "Enrico Maria Giordano"
}
] | A Better Resource Editor? |
[
{
"date": "2008-02-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Just curious .. why in the .rc does the name of the dialog get named 'dialogx' .. \n\nRick Lipkin",
"time": "14:14",
"topic": "A Better Resource Editor?",
"username": "Rick Lipkin"
}
] | A Better Resource Editor? |
[
{
"date": "2008-02-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\n>Have a look at this also: \n\n>http://www.resedit.net \n\nI looked at the website and it looks promising. \n\nHave you already tried it? If so, what are your impressions?\n\nJames",
"time": "16:58",
"topic": "A... | A Better Resource Editor? |
[
{
"date": "2008-02-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It seems the best I've tried so far.\n\nEMG",
"time": "17:48",
"topic": "A Better Resource Editor?",
"username": "Enrico Maria Giordano"
}
] | A Better Resource Editor? |
[
{
"date": "2008-02-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I am looking for a replacement of Borland's\nas well.\nI found Resource Builder.\nIt starts there, where Borland ended.\nIt is not free of charge ( 48 Dollars )\nbut for that, what you can do, it is ok.\n\nfor download : <!-- m --... | A Better Resource Editor? |
[
{
"date": "2008-02-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick\n\nSorry for te delay.\n\nI believe you meant \"Dialogex\" not \"Dialogx.\"\n\nAccording to what I found at [url:1imu5xag]http://www.mycplus.com/tutorial.asp?TID=298[/url:1imu5xag], here is the explanation:\n\... | A Better Resource Editor? |
[
{
"date": "2008-02-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ken\n\nThank you for the explaination .. what would be the 'extended styles' ?? Sorry for the dumb question .. \n\nPlease forgive me .. if a legacy .rc does not use the 'extended styles' .. why would you not leave DIALOG the way... | A Better Resource Editor? |
[
{
"date": "2008-02-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Unfortunately it seems that RCs produced by ResEdit can't be compiled, as they are now, with Borland Resource Compiler because it uses extended parameters for the FONT clause that are not supported by BRC. <!-- s:-( --><img src=\"... | A Better Resource Editor? |
[
{
"date": "2008-02-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello, Enrico\n\nI bought Resource Builder 2.6.4.1\nIt is not free of charge, but can do a lot ( 58.-- Euro )\n\nJust look the Topic : A better Resource-Editor\nThere, i put the descripton.\n\nRegards\nUwe",
"time": "13:49",
... | A Better Resource Editor? |
[
{
"date": "2008-02-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I already tried it and I didn't like it, sorry.\n\nEMG",
"time": "14:35",
"topic": "A Better Resource Editor?",
"username": "Enrico Maria Giordano"
}
] | A Better Resource Editor? |
[
{
"date": "2008-02-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n\nI am still getting my feet wet in the Windows arena so I still have a lot to learn. I created a simple dialog and this is what ResEd (NOT ResEdit) created.\n\n[code:3dfy2gvg]#define IDD_DLG1 1000\n#define IDC_STC1 1001\n\... | A Better Resource Editor? |
[
{
"date": "2008-09-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\r\n\r\nFor a new project, I'm looking for a Button-effect for the method:\r\n< oBmp:bLClicked > to get a Button-look.\r\nIt means : a < pressed-effect > and changing the mouse-cursor inside the bitmap-earea. \r\nMaybe to ad... | A Button-effect for BMP > oBmp:bLClicked ? |
[
{
"date": "2008-09-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe,\r\n\r\n[code:a6ccoyi6]#include \"fivewin.ch\"\n\nfunction main()\n local oWnd, oBmp\n\n define window oWnd title \"Test Mouse Over\"\n\n @ 4, 16 BITMAP oBmp FILENAME \"Tutanka1.bmp\" ADJUST SIZE 280, 200... | A Button-effect for BMP > oBmp:bLClicked ? |
[
{
"date": "2008-09-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "James,\r\n\r\nthank you very much,\r\nThe line is added to the source-sample.\r\n\r\nI had a look at \r\n\r\n[code:3m36lqqi] \noBmp:lStretch := .f.\nnZoom:=nZoom-(0.10)\noBmp:Zoom(nZoom)... | A Button-effect for BMP > oBmp:bLClicked ? |
[
{
"date": "2008-09-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello James,\r\n\r\nI found a way, to solve the problem\r\n\r\n[img:1a88pu4v]http://www.pflegeplus.com/pictures/Voolsfont1.jpg[/img:1a88pu4v]\r\n\r\n[code:1a88pu4v]\n\n// blClicked changes the Color\n// the user ca... | A Button-effect for BMP > oBmp:bLClicked ? |
[
{
"date": "2023-12-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello friends,\nWe often have situations now where there are days without new posts. What happens then: You stop checking the forum regularly. It's actually the beginning of the end.\n\nIt's clear, we are now all experienced FIVEW... | A Call for New Ideas and Web Integration |
[
{
"date": "2023-12-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Otto, \n be patient post here some examples, definition, documentation \nfor one like me that want to know about webview starting from principal.\n\nHave a nice day\n\nMarco",
"time": "16:26",
"topic": "A Call for ... | A Call for New Ideas and Web Integration |
[
{
"date": "2023-12-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto:\nI agree with Marco, be patient,\nit is hard to leave our comfort zone but with support, like yours,\nthe learning curve will be less hard.\n\nWith best regards",
"time": "17:31",
"topic": "A Call for New Ideas and W... | A Call for New Ideas and Web Integration |
[
{
"date": "2023-12-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Otto\":37suvu59]Hello friends,\nWe often have situations now where there are days without new posts. What happens then: You stop checking the forum regularly. It's actually the beginning of the end.[/quote:37suvu59]\n\nOn... | A Call for New Ideas and Web Integration |
[
{
"date": "2023-12-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "How Notifications Affect Our Real-Life Togetherness and Interest in Each Other: A No-Go\n\nDear Enrico,\n\nLately, I've been thinking a lot about how the constant flood of notifications affects our coexistence and our relationship... | A Call for New Ideas and Web Integration |
[
{
"date": "2023-12-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "That's why you should activate only the really necessary notifications.",
"time": "11:18",
"topic": "A Call for New Ideas and Web Integration",
"username": "Enrico Maria Giordano"
}
] | A Call for New Ideas and Web Integration |
[
{
"date": "2023-12-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you. I will search through ChatGPT's plugins to see if there is already a feature that can distinguish important from unimportant.",
"time": "11:51",
"topic": "A Call for New Ideas and Web Integration",
"username... | A Call for New Ideas and Web Integration |
[
{
"date": "2023-12-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Only you can know if a notification is important for you.",
"time": "15:27",
"topic": "A Call for New Ideas and Web Integration",
"username": "Enrico Maria Giordano"
}
] | A Call for New Ideas and Web Integration |
[
{
"date": "2011-03-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi all\n\nA while ago, in response to a post about data bases, I mentioned my Harbour based client-server architecture data base. I promised to post in response to a request and this thread will fulfill that promise, albeit a bit... | A Client-Server Data Base Server in Harbour |
[
{
"date": "2011-03-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "The include file rapids.ch provides defines that are independant of the data base being used including defines usede to transfer error and error class back from the server to the client.\n\n[code=fw:mpkrv7zo]<div class=\"fw\" id=\... | A Client-Server Data Base Server in Harbour |
[
{
"date": "2011-03-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I also use defines with respect to the particular data base being served. This is a real example, and the one referenced in the code in the first post in this thread: DBEmphasis.ch\n\n[code=fw:2jb0i97y]<div class=\"fw\" id=\"{CB}... | A Client-Server Data Base Server in Harbour |
[
{
"date": "2011-03-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Herewith an example of the code related to a particular data base. Note that \n\nthe queries and the list of fields to be returned are created as objects\n\nthe code to do this is generated by a series of #xcommands contained in ... | A Client-Server Data Base Server in Harbour |
[
{
"date": "2011-03-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "To understand how DBEmphasis.prg works you need to know DBQuery.ch which is as follows:\n\n[code=fw:3e86vyfs]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">// DBQuery.ch</span... | A Client-Server Data Base Server in Harbour |
[
{
"date": "2011-03-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This looks interesting. Thank you for sharing Doug",
"time": "04:15",
"topic": "A Client-Server Data Base Server in Harbour",
"username": "hua"
}
] | A Client-Server Data Base Server in Harbour |
[
{
"date": "2011-03-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi all\n\nNow I can start with the code that sets up the individual components of the \"compiled\" queries. Class TData is the base class for class TSingleData (for a read or a write of a single record) and class TListData (for a... | A Client-Server Data Base Server in Harbour |
[
{
"date": "2011-03-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi all\n\nHerewith the class TListData\n\n[code=fw:1lygwhur]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">// TListData.prg</span><br /><br /><span style=\"color: #00D7D7;\">#... | A Client-Server Data Base Server in Harbour |
[
{
"date": "2011-03-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi all\n\nAnd now TSingleData\n\n[code=fw:3df5qw6z]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">// TSingleData.prg</span><br /><br /><span style=\"color: #00D7D7;\">#include... | A Client-Server Data Base Server in Harbour |
[
{
"date": "2011-03-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi all\n\nHerewith class TServerQuery which handles the receipt of the query request on the server\n\n[code=fw:3hjhvec7]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">// TServ... | A Client-Server Data Base Server in Harbour |
[
{
"date": "2011-03-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi again\n\nHerewith class TDBQuery which holds together the details of the actual database query\n\n[code=fw:35dyrxqc]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">// DBQuer... | A Client-Server Data Base Server in Harbour |
[
{
"date": "2011-03-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi again\n\nAnd finally (for today) my TDateTime class\n\n[code=fw:16vmi7c8]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">// TDateTime.prg</span><br /><span style=\"color: #0... | A Client-Server Data Base Server in Harbour |
[
{
"date": "2017-11-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Marc\n\nYour question\n\nWhat i need to do : (we are in business of dresses, sweaters, ...)\nI have a xbrowse with thousands of records that show a jpg.\nThe picture is show in the dialog with a oImage object, and changes wh... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks Uwe, This method was even more usefull as my idea. Used it.",
"time": "23:02",
"topic": "A Colorpicker and RGB-tools",
"username": "Marc Venken"
}
] | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe,\n\nI get indeed all kind of values, since it will check op pixel level i think. Is it possible to have a larger range, so that my selection will give a better return value ?\n\nAlso, conversion from dec to hex ofthen gives a... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I Just found one of your colorpickers. Will try this out...",
"time": "01:19",
"topic": "A Colorpicker and RGB-tools",
"username": "Marc Venken"
}
] | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marc,\n\nI think it is better to select a fixed color from a dropdown-list ( color-sorted ) next to the image.\nA image includes many colors even if Your eye will see just one.\nI hope I will have the time this weekend to create a... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe,\n\nCreating a page/group (selection of colors) for each manufacturer would be a interesting way, since I can keep the colors more together.\n\nI like the Colorpicker more, since it let me draw the cursor and show the color re... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hey Uwe,\n\nI found a post from you from 2014\n\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=3&t=29764&hilit=pick\">viewtopic.php?f=3&t=29764&hilit=pick</a><!-- l -->\n\nThere is ... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marc,\n\nHow many manufacturers You administer and how many colors a manufacturer is using ?\nI'm thinking about picking colors from a table ore using a xBrowse.\n\n[quote:1zladpdy]Creating a page/group (selection of colors) for e... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Manuf. up to 40, Colors now over 1200 !\n\nEach brand has his own color Red for example.\n\nI do need it to work in Xbrowse, selecting first a Brand, and than view a xbrowse with only the selected colors.\nI can do this in combina... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Marc Venken\":157w5ws4]I have more trouble in the conversion to Hex. I need hex format for HTML, but I see often that the colors RGB or DEC have will not convert correct with the provided function from FWH[/quote:157w5ws... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marc, Enrico\n\nI added some new functions\n\n1. new hex-values on selected color and brightness\n2. saving any of nValue, RGB or Hex - results to the clipboard if needed\njust select the needed color, click and paste \n3. gradien... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe,\n\nIs it also creating/saving to a database ? In the test version it's not as far as I see.\n\nIf not, that would be a nice feature, because we could that create a database with all colors we want. If you even let it be pos... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marc,\n\na good idea\nlike saving to the clipboard I can save to dbf-fields as well.\nI will add this function\n\nregards\nUwe <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marc,\n\nI added scrollbars to the dialog.\nNext I resized to the section < Metro-colors >\nBefore I activated < to clipboard >\nNow I could paste the colorvalues to another program switching between the two programs.\nDoes it mak... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "In my case it does. I could use this solution in combination with my program.\n\nIf we can store it to a dbf, then I would first create some color tables for the most wanted colors with colorpicker, and then integrate that dbf in... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[img:3w33ounx]http://www.maveco.be/fivewin/uwe1.jpg[/img:3w33ounx]\n\nLeft top is the browse with 1 product selected and adding all the colors I want.\nLeft bottom = list off all colors available as tekst ( \"Red,... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe,\n\nI don't need adjustments.\n\nOnly colorpicking from a image or from the defined colors table.\nI see that in this version the colorpicker is not included ?\n\nSome brands have easyly some hunderds of colors )) Maybe a dbf... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marc,\n\n[color=#0000FF:83wb9wgd]I extracted the parts only showing the basic colors\nDo You still need the < brightness - adjustment > ?[/color:83wb9wgd]\nOn the left hand side a collector ( brands ) to define colorgroups.\nI sti... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe,\n\nThe basis colors mosaic, can it be filled with the scoped colors from the database ? and the Metro colors can be the same data, but with the names of the Brand colors into it.\n\nIn my spicific case, the dark and light bro... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marc,\nI'm still working on a update\nA button for activating the colorpicker is included.\nThe colorpicker supports hex\nI only save the values to the clipboard ( don't show a brand-browser )\n\nThe reason of the wrong colorpicke... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Great, that the values are ok now !!\n\nThe picker does not need a Brand browser. I can use it as it is now.\n\nIf the Rgb browser could have a option for showing brand colors, that would be great.\n\nGreat work !!",
"time": ... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marc,\n\nas soon it is finished, the download will include the sources as well.\nIt means You can modify ( add / delete ) what ever You like.\n\nregards\nUwe <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" titl... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "That would be very nice !",
"time": "20:33",
"topic": "A Colorpicker and RGB-tools",
"username": "Marc Venken"
}
] | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marc,\n\nthe download\n\n<!-- m --><a class=\"postlink\" href=\"http://www.pflegeplus.com/DOWNLOADS/Colorpick1.zip\">http://www.pflegeplus.com/DOWNLOADS/Colorpick1.zip</a><!-- m -->\n\nThe source of the color-browsers is included.... | A Colorpicker and RGB-tools |
[
{
"date": "2017-11-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Downloaded. Will commend...",
"time": "22:26",
"topic": "A Colorpicker and RGB-tools",
"username": "Marc Venken"
}
] | A Colorpicker and RGB-tools |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.