messages
listlengths
1
1
topic
stringlengths
2
60
[ { "date": "2008-04-23", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi James\r\n\r\n>>> I'm not sure how any application can be completely independent of the data source.\r\n\r\n>What I meant by this is not the file type source but a different application with its own data tables. Another application could have a totally different set of fields and even different tables. They may not be storing all the same data that your system is. In this situation it is next to impossible to adapt to another system without major changes to either their data structure or your application. \r\n\r\nBut it [b:1yho5219]can[/b:1yho5219] be! Sure the other application has to have sufficient information and a means of being invoked and passing its output but that's pretty much it. I've done it - multiple times, even implemented dynamic table driven translation. Built gateways between systems written in different languages using different database back ends and running on different operating systems. In the health area. In the accounts / payroll area. For my own development environment. In some instances using a predefined format (HL7 with some additions), in others developing an independant format because its easier to only have to write a single two way translation as more disparate programs need the gateway service. (A bit like how Windows programs and printers work).\r\n\r\n> As Otto showed, it does not.\r\n\r\nWhat Otto showed is how you program around the issue - that is you automatically scatter/gather what you can and manually do the rest. It splits the code for a data object into multiple places which I don't really like. I am not sure why the values are stored as a single string when multiple fields would not increase table size. But if doing so I would certainly consider writing a class to handle such strings. What would be really nice is to be able to store our own data type designations then automatic scatter gather could pretty much do everything I need. One possibility I have been tempted to try is a structure table that contains the structure of the tables but contains more information - like your own data types. Then the object responsible for reading the data would know that this field is a primary key, or a date stored as a string, or whatever and handle accordingly. Maybe one can play around with the database driver and stuff this information into the table header itself? I haven't looked into that. I've stayed well away from replaceable database drivers so far.\r\n\r\nMaybe you have some thoughts in this area. Also ties into a possible design tool.\r\n\r\nFor example the \"extended field type\" might tell the database object that this field is a date stored as a string so the read and write methods can automatically do the necessary translations. Better still you have \"extended field type sub types\" such as \"default to today's date\" to enable blank() function to be more user friendly than just blanking the date, or having to override it in a derived class. And \"must be today or before\" for checking a birthdate\" etc. I certainly put such capability in my development environment. I have let the need to get familiar with FiveLinux and get working code out get in the way of exploring how best to do that.\r\n\r\nJust maybe we can end up with the best of both worlds.\r\n\r\nRegards\r\nDoug", "time": "00:06", "topic": "A Question Abot DIALOGs", "username": "xProgrammer" } ]
A Question Abot DIALOGs
[ { "date": "2008-04-23", "forum": "FiveWin for Harbour/xHarbour", "text": "Doug,\r\n\r\n>>What I meant by this is not the file type source but a different application with its own data tables. Another application could have a totally different set of fields and even different tables. \r\n\r\n>But it can be! Sure the other application has to have sufficient information and a means of being invoked..\r\n\r\nBut, what if you need to store the date and time the record was updated and the foreign table doesn't have a field for that? What if your customer name field is 35 characters long and it the foreign table it is only 30? I don't see how you can overcome these issues.\r\n\r\n>> As Otto showed, it does not. \r\n\r\n>What Otto showed is how you program around the issue - that is you automatically scatter/gather what you can and manually do the rest. It splits the code for a data object into multiple places which I don't really like. \r\n\r\nBut that is the advatange of inheritance. If you need to slightly change the behavior of a class you can do so with very little code. Also, if a bug is found and fixed or a feature is added to the parent class then all the subclasses benefit.\r\n\r\nIf you don't use inheritance, then you need to have 10 to 100 times as much code--much of it redundant.\r\n\r\n>I am not sure why the values are stored as a single string when multiple fields would not increase table size. \r\n\r\nThis was a legacy system that we are using so we had to deal with the legacy structure.\r\n\r\n>What would be really nice is to be able to store our own data type designations then automatic scatter gather could pretty much do everything I need. One possibility I have been tempted to try is a structure table that contains the structure of the tables but contains more information - like your own data types.\r\n\r\nIt seems like you are going to spend a tremendous amount of work up front for the possibility that it will be useful later. Perhaps you are working in an environment where this is a high probability, but I am not.\r\n\r\nJames", "time": "01:44", "topic": "A Question Abot DIALOGs", "username": "James Bott" } ]
A Question Abot DIALOGs
[ { "date": "2008-04-23", "forum": "FiveWin for Harbour/xHarbour", "text": "Doug, \r\n\r\n>I am not sure why the values are stored as a single string when multiple fields would not increase table size. \r\n\r\nHere you see what I save into these textfields:\r\nI can access every cell with substr(cText,x,1) for example.\r\nFor input I use checkboxes.\r\n\r\n[img:36gdhysv]http://www.atzwanger.com/fw/blockkontrolle.jpg[/img:36gdhysv]", "time": "16:20", "topic": "A Question Abot DIALOGs", "username": "Otto" } ]
A Question Abot DIALOGs
[ { "date": "2008-04-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Otto\r\n\r\nNow I see! I was curious.\r\n\r\n> I can access every cell with substr(cText,x,1) for example. \r\n\r\nOr cText[x] I believe. And iterate through with FOR EACH.\r\n\r\nAnd if you want to access with meaningful \"labels\" put the values into a pre-labelled hash.\r\n\r\nIf these represent resource availabilities it would be nice to have a function that could match against a similar structure of resource requirements for some type of bookable event.\r\n\r\nI'm really just thinking aloud here. But it's always good to see what techniques are available to stretch the boundaries of any programming environment.\r\n\r\nRegards\r\nDoug\r\n(xProgrammer)", "time": "02:01", "topic": "A Question Abot DIALOGs", "username": "xProgrammer" } ]
A Question Abot DIALOGs
[ { "date": "2008-09-05", "forum": "FiveLinux / FiveDroid (Android)", "text": "Hi Antonio\r\n\r\nI don't quite know how to do something. Take a TWBrowse. I want to be able to set the default selection to some position other than 1. I can do this by setting oBrw:nAt but the issue is if I set that to record n then records 1 through n-1 aren't displayed. Is there a way around this? To date I have been skirting the issue by re-ordering the arrays that are browsed so the record I want selected as default is in position 1, but I am coming to situations where this is less than desirable. Can you advise?\r\n\r\nYou can see the issue using the testbrwa.prg program you sent me with the addition of 1 line as follows:\r\n\r\n[code:29up9d2m]// Using a browse to display a multidimensional array\n\n#include \"FiveLinux.ch\"\n\nfunction Main()\n\n local oWnd, oBrw, aTest := { { \"one\", \"two\" }, { \"three\", \"four\" } }\n\n DEFINE WINDOW oWnd TITLE \"Testing Browses\" SIZE 522, 317\n\n @ 2, 2 BROWSE oBrw OF oWnd ;\n HEADERS \"First\", \"Second\" ;\n FIELDS aTest[ oBrw:nAt ][ 1 ], aTest[ oBrw:nAt ][ 2 ]\n\n oBrw:SetArray( aTest )\n oBrw:nAt := 2 // this is the line I added to set record 2 as the \"default\" choice.\n\n @ 28, 2 BUTTON \"_Ok\" OF oWnd ACTION oWnd:End()\n \n @ 28, 30 BUTTON \"Add\" OF oWnd ACTION ( AAdd( aTest, { \"five\", \"six\" } ), oBrw:SetArray( aTest ), oBrw:GoTop() )\n\n ACTIVATE WINDOW oWnd\n\nreturn nil[/code:29up9d2m]\n\nI note that in TDialog there is an intriguing piece of code to do with TListbox objects, namely:\n\n[code:29up9d2m] // Listbox controls initialization workaround\n for n = 1 to Len( ::aControls )\n if ::aControls[ n ]:ClassName() == \"TLISTBOX\"\n ::aControls[ n ]:SelItem( ::aControls[ n ]:nAt )\n endif\n next[/code:29up9d2m]\r\n\r\nIs this to overcome a comparable issue with list boxes? Is there a way of having an equivalent to SelItem() in TWBrowse?\r\n\r\nRegards\r\nDoug\r\n(xProgrammer)", "time": "09:32", "topic": "A Question about (FiveLinux) Class TWBrowse", "username": "xProgrammer" } ]
A Question about (FiveLinux) Class TWBrowse
[ { "date": "2008-09-08", "forum": "FiveLinux / FiveDroid (Android)", "text": "Doug,\r\n\r\nPlease try this workaround:\r\n\r\n oBrw:SetArray( aTest ) \r\n oBrw:GoDown()\r\n\r\nor for n rows:\r\n[code:u22efi8k]\nfor n = 1 to nRows\n oBrw:GoDown()\nnext\n[/code:u22efi8k]", "time": "12:23", "topic": "A Question about (FiveLinux) Class TWBrowse", "username": "Antonio Linares" } ]
A Question about (FiveLinux) Class TWBrowse
[ { "date": "2008-09-08", "forum": "FiveLinux / FiveDroid (Android)", "text": "Hi Antonio\r\n\r\nI think I had already tried this \"trick\" but it doesn't work because the n-th row is put at the top of the browse and the rows above aren't visible. (Unless you arrow up to them which is no good and moves the default selection you have just set.)\r\n\r\nHere is the example:\r\n\r\n[code:3if5h9y0]// Using a browse to display a multidimensional array\n\n#include \"FiveLinux.ch\"\n\nfunction Main()\n\n local oWnd, oBrw, aTest := { { \"one\", \"two\" }, { \"three\", \"four\" } }\n\n DEFINE WINDOW oWnd TITLE \"Testing Browses\" SIZE 522, 317\n\n @ 2, 2 BROWSE oBrw OF oWnd ;\n HEADERS \"First\", \"Second\" ;\n FIELDS aTest[ oBrw:nAt ][ 1 ], aTest[ oBrw:nAt ][ 2 ]\n\n oBrw:SetArray( aTest )\n //oBrw:nAt := 2\n oBrw:GoDown()\n\n @ 28, 2 BUTTON \"_Ok\" OF oWnd ACTION oWnd:End()\n \n @ 28, 30 BUTTON \"Add\" OF oWnd ACTION ( AAdd( aTest, { \"five\", \"six\" } ), oBrw:SetArray( aTest ), oBrw:GoTop() )\n\n ACTIVATE WINDOW oWnd\n\nreturn nil[/code:3if5h9y0]\r\n\r\nRegards\r\nDoug", "time": "12:57", "topic": "A Question about (FiveLinux) Class TWBrowse", "username": "xProgrammer" } ]
A Question about (FiveLinux) Class TWBrowse
[ { "date": "2008-09-08", "forum": "FiveLinux / FiveDroid (Android)", "text": "Doug,\r\n\r\nThis is not working totally right yet, but we are closer <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\r\n\r\n oBrw:SetArray( aTest )\r\n oBrw:nRowPos = 2", "time": "15:01", "topic": "A Question about (FiveLinux) Class TWBrowse", "username": "Antonio Linares" } ]
A Question about (FiveLinux) Class TWBrowse
[ { "date": "2008-09-08", "forum": "FiveLinux / FiveDroid (Android)", "text": "No, it is not a right solution as oBrw:nAt is not properly set <!-- s:-( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":-(\" title=\"Sad\" /><!-- s:-( -->", "time": "15:16", "topic": "A Question about (FiveLinux) Class TWBrowse", "username": "Antonio Linares" } ]
A Question about (FiveLinux) Class TWBrowse
[ { "date": "2008-09-08", "forum": "FiveLinux / FiveDroid (Android)", "text": "This is better:\r\n\r\n oBrw:SetArray( aTest )\r\n oBrw:nAt = 2\r\n oBrw:nRowPos = 2", "time": "15:33", "topic": "A Question about (FiveLinux) Class TWBrowse", "username": "Antonio Linares" } ]
A Question about (FiveLinux) Class TWBrowse
[ { "date": "2009-09-04", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\n\nWorking with Gradients, I noticed inside my Tools and also in the\nnew xbrowse-Gradient-painting, the result of the centered Color-calculation\nis not linear.\n\n[img:14y2y2ah]http&#58;//www&#46;pflegeplus&#46;com/pictures/gradposition1&#46;jpg[/img:14y2y2ah]\n\nJust 1 % changing from 45% to 44%, shows a big Difference.\nTo make this Effect better visible, Start- and End-Color should have the same Value.\nIn this Example, the yellow Center-Color must move in equal steps to left or right.\nThe Center-Color spreads with certain Values.\n[img:14y2y2ah]http&#58;//www&#46;pflegeplus&#46;com/pictures/gradposition2&#46;jpg[/img:14y2y2ah]\n\nis there a Solution, to solve this problem ?\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->", "time": "23:37", "topic": "A Question about Gradient-Calculation.", "username": "ukoenig" } ]
A Question about Gradient-Calculation.
[ { "date": "2009-09-11", "forum": "FiveWin for Harbour/xHarbour", "text": "Uwe,\n\nYou can review the source code of GradientFill() in FWH\\source\\bar.prg (surely we will migrate it from there to a different module soon).\n\nWiki docs for GradientFill():\n[url:38dailbw]http&#58;//wiki&#46;fivetechsoft&#46;com/doku&#46;php?id=fivewin_function_gradientfill[/url:38dailbw]", "time": "02:05", "topic": "A Question about Gradient-Calculation.", "username": "Antonio Linares" } ]
A Question about Gradient-Calculation.
[ { "date": "2009-09-11", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n\nI corrected the wrong Screenshots, to explain the Problem.\nThey have been lost, overwritten with different ones.\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->", "time": "02:47", "topic": "A Question about Gradient-Calculation.", "username": "ukoenig" } ]
A Question about Gradient-Calculation.
[ { "date": "2009-07-03", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\n\nusing WAITRUN, there is no stop of the called Application :\nThe Situation :\n\n1. Creating a PRG-file with given values.\n2. Open Wordpad, to show the created PRG.\n3. Compile the PRG.\n4. Open the created EXE-file.\n\nThe same time Wordpad opens the PRG-file, the Compile runs allready in the Background.\nYou can see the DOS-Window behind Wordpad.\nWordpad doesn't wait. It works, but I want to compile after Wordpad is closed.\n\n[img:28nw9yc2]http&#58;//www&#46;pflegeplus&#46;com/pictures/waitrun&#46;jpg[/img:28nw9yc2]\n\n[code=fw:28nw9yc2]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">FUNCTION</span> MAKE_EXE<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />cNewFile := c_path + <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\T</span>ESTTOOL.PRG\"</span><br />cNewFile1 := c_path + <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\T</span>ESTTOOL.EXE\"</span><br /><br />DELETE FILE  <span style=\"color: #ff0000;\">\"&cNewFile\"</span><br />DELETE FILE   <span style=\"color: #ff0000;\">\"&cNewFile1\"</span><br /><br />CREATE_DAT<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <span style=\"color: #B900B9;\">// Creates the PRG-File</span><br /><br /><span style=\"color: #00C800;\">IF</span> FILE <span style=\"color: #000000;\">&#40;</span> c_path + <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\T</span>ESTTOOL.PRG\"</span> <span style=\"color: #000000;\">&#41;</span><br />   cOpen := <span style=\"color: #ff0000;\">\"Write.exe \"</span> + <span style=\"color: #ff0000;\">\"&cNewFile\"</span> <span style=\"color: #B900B9;\">// Starts Write and opens the PRG</span><br />   WAITRUN<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"&cOpen\"</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #B900B9;\">// Write doesn't wait !!!!!</span><br />   WAITRUN<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"GOTEST.BAT\"</span>  <span style=\"color: #000000;\">&#41;</span><br />   <span style=\"color: #00C800;\">IF</span> FILE<span style=\"color: #000000;\">&#40;</span> c_path + <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\T</span>ESTTOOL.EXE\"</span> <span style=\"color: #000000;\">&#41;</span><br />      <span style=\"color: #00C800;\">IF</span> MsgYesNo<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"Do you want to run : TESTTOOL.exe ?\"</span>,<span style=\"color: #ff0000;\">\"TESTTOOL\"</span><span style=\"color: #000000;\">&#41;</span>        <br />         Winexec<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"TESTTOOL.EXE\"</span> <span style=\"color: #000000;\">&#41;</span><br />      <span style=\"color: #00C800;\">ENDIF</span><br />   <span style=\"color: #00C800;\">ELSE</span><br />      MsgAlert<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"The file : TESTTOOL.EXE \"</span> + CRLF + ;<br />      <span style=\"color: #ff0000;\">\"is not created !\"</span>,<span style=\"color: #ff0000;\">\"Error\"</span> <span style=\"color: #000000;\">&#41;</span><br />   <span style=\"color: #00C800;\">ENDIF</span><br /><span style=\"color: #00C800;\">ELSE</span><br />   MsgAlert<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"The File : \"</span> + CRLF + ;<br />   <span style=\"color: #ff0000;\">\"TESTTOOL.PRG\"</span> + CRLF + ;<br />   <span style=\"color: #ff0000;\">\"is not created !\"</span>, <span style=\"color: #ff0000;\">\"Error\"</span> <span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #00C800;\">ENDIF</span><br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br /> </div>[/code:28nw9yc2]\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->", "time": "16:03", "topic": "A Question about WAITRUN", "username": "ukoenig" } ]
A Question about WAITRUN
[ { "date": "2009-07-04", "forum": "FiveWin for Harbour/xHarbour", "text": "Please use WordPad.Exe instead of Write.Exe. Place WordPad.Exe in the application path.", "time": "10:01", "topic": "A Question about WAITRUN", "username": "nageswaragunupudi" } ]
A Question about WAITRUN
[ { "date": "2009-07-04", "forum": "FiveWin for Harbour/xHarbour", "text": "Rao,\n\nthank You very much.\nWith these changes it is working now, like expected.\nI think, to include < Notepad.exe > in the Zip-File ( only 151 KB ) is no problem ),\notherwise I have to explain, what to do.\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->", "time": "11:18", "topic": "A Question about WAITRUN", "username": "ukoenig" } ]
A Question about WAITRUN
[ { "date": "2009-07-04", "forum": "FiveWin for Harbour/xHarbour", "text": "I advised WordPad.Exe, not NotePad.Exe. \nBoth are fine for WaitRun.\nBut WordPad.exe is the same as Write.Exe\nBut waitrun works for wordpad.exe ( this exe is in accessories folder.)\n\nAll windows users have wordpad.exe. I am not sure but I think there is nothing wrong in your providing wordpad.exe along with your application", "time": "11:32", "topic": "A Question about WAITRUN", "username": "nageswaragunupudi" } ]
A Question about WAITRUN
[ { "date": "2009-10-13", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote:245iv59c]>using WAITRUN, there is no stop of the called Application [/quote:245iv59c]\n\nHello Uwe,\ndid you find out why your application didn't stop. I have the same problem.\n\nBest regards,\nOtto", "time": "13:45", "topic": "A Question about WAITRUN", "username": "Otto" } ]
A Question about WAITRUN
[ { "date": "2009-10-13", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello Otto,\n\nI just tested with the new WORDPAD 2009 from Windows 7.\nYou can download it for Free.\nIt works fine, but didn't load Files with Extension .PRG.\nI had to rename to .TXT to get it working.\n\n[img:18x0kjsj]http&#58;//www&#46;pflegeplus&#46;com/pictures/LoadError3&#46;jpg[/img:18x0kjsj]\n\nAfter some Vista-Updates, there is a Problem with my old Install.\nI don't know, where this Nonsens comes from.\nI copied Write.exe and it works :\n\n[img:18x0kjsj]http&#58;//www&#46;pflegeplus&#46;com/pictures/LoadError1&#46;jpg[/img:18x0kjsj]\n\n[img:18x0kjsj]http&#58;//www&#46;pflegeplus&#46;com/pictures/LoadError2&#46;jpg[/img:18x0kjsj]\n\n[code=fw:18x0kjsj]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><span style=\"color: #00C800;\">FUNCTION</span> MAKE_EXE<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />cNewFile := c_path + <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\P</span>ROJECT.prg\"</span><br />cNewFile1 := c_path + <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\P</span>ROJECT.EXE\"</span><br /><br />DELETE FILE &nbsp;<span style=\"color: #ff0000;\">\"&cNewFile\"</span><br />DELETE FILE &nbsp; <span style=\"color: #ff0000;\">\"&cNewFile1\"</span><br /><br />NEW_SOURCE<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">IF</span> FILE <span style=\"color: #000000;\">&#40;</span> c_path + <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\P</span>ROJECT.PRG\"</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; <span style=\"color: #B900B9;\">// File exists open with Editor</span><br />&nbsp; &nbsp; WAITRUN<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"Wordpad2009.exe \"</span> + c_path + <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\P</span>ROJECT.txt\"</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #B900B9;\">// copy from .PRG</span><br />&nbsp; &nbsp; <span style=\"color: #B900B9;\">// Close Editor and create EXE-File</span><br />&nbsp; &nbsp; <span style=\"color: #00C800;\">IF</span> MsgYesNo<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"Do you want to Create / Run : PROJECT.exe ?\"</span>,<span style=\"color: #ff0000;\">\"PROJECT\"</span><span style=\"color: #000000;\">&#41;</span>&nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp; &nbsp; WAITRUN<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"GO.BAT\"</span> &nbsp;<span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">IF</span> FILE <span style=\"color: #000000;\">&#40;</span> c_path + <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\P</span>ROJECT.EXE\"</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp;&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; WINEXEC<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"PROJECT.EXE\"</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">ELSE</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MsgAlert<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"The file : PROJECT.EXE \"</span> + CRLF + ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #ff0000;\">\"is not created !\"</span>,<span style=\"color: #ff0000;\">\"Error\"</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">ENDIF</span><br />&nbsp; &nbsp; <span style=\"color: #00C800;\">ENDIF</span><br /><span style=\"color: #00C800;\">ELSE</span><br />&nbsp; &nbsp; MsgAlert<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"The File : \"</span> + CRLF + ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #ff0000;\">\"PROJECT.PRG\"</span> + CRLF + ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #ff0000;\">\"is not created !\"</span>, <span style=\"color: #ff0000;\">\"Error\"</span> <span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #00C800;\">ENDIF</span><br />SYSREFRESH<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br /><br /><span style=\"color: #B900B9;\">// ---------------------------------------</span><br /><br /><br /><span style=\"color: #00C800;\">FUNCTION</span> NEW_SOURCE<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />cNewFile := c_path + <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\P</span>ROJECT.PRG\"</span> <br /><span style=\"color: #00C800;\">IF</span> FILE <span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"&cNewFile\"</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; DELETE FILE &nbsp;<span style=\"color: #ff0000;\">\"&cNewFile\"</span><br /><span style=\"color: #00C800;\">ENDIF</span><br /><br />oText := TTxtFile<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"&cNewFile\"</span> <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">IF</span> oText:<span style=\"color: #000000;\">Open</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; oText:<span style=\"color: #000000;\">Add</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">'#include \"FiveWin.ch\"'</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; oText:<span style=\"color: #000000;\">Add</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">'#include \"TTitle.ch\"'</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; oText:<span style=\"color: #000000;\">Add</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">'#include \"Image.ch\"'</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; oText:<span style=\"color: #000000;\">Add</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"\"</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; oText:<span style=\"color: #000000;\">Add</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"static oButtFont\"</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; oText:<span style=\"color: #000000;\">Add</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"\"</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; oText:<span style=\"color: #000000;\">Add</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"FUNCTION Main()\"</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; oText:<span style=\"color: #000000;\">Add</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">'LOCAL oWnd, oBtn1, oBtn2, hDC, oBrush, oImage'</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; oText:<span style=\"color: #000000;\">Add</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"LOCAL nWidth := GetSysMetrics(0)\"</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; oText:<span style=\"color: #000000;\">Add</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"LOCAL nHeight := GetSysMetrics(1)\"</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; oText:<span style=\"color: #000000;\">Add</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"\"</span><span style=\"color: #000000;\">&#41;</span><br /><br />...<br />...<br />...<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #B900B9;\">// some more Textlines</span><br />&nbsp; &nbsp; TITLE_PART<span style=\"color: #000000;\">&#40;</span> oText <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp; oText:<span style=\"color: #000000;\">Close</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #00C800;\">ENDIF</span><br /><br /><span style=\"color: #00C800;\">RETURN</span><span style=\"color: #000000;\">&#40;</span> &nbsp;<span style=\"color: #00C800;\">NIL</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp;</div>[/code:18x0kjsj]\n\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->", "time": "16:40", "topic": "A Question about WAITRUN", "username": "ukoenig" } ]
A Question about WAITRUN
[ { "date": "2009-10-13", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello Uwe,\nIf I use waitrun like this - waitrun does not wait!\n\n\n[quote:ebzi2738] \nMENUITEM (\"Adressenimport &Schnittstellen\") + chr(9) + \"Strg + S\" ;\n ACTION (waitRun(\"xImport.exe\",0), oLbxX:upstable(), oLbxX:refresh(),oLbxX:gobottom(), oLbxX:SetFocus() );\n ACCELERATOR ACC_CONTROL, asc(\"S\");\n MESSAGE \"Adressenimport Schnittstellen\"\n [/quote:ebzi2738]\n\nThis code works.\n\n[code=fw:ebzi2738]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"Adressenimport &Schnittstellen\"</span><span style=\"color: #000000;\">&#41;</span> + chr<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">9</span><span style=\"color: #000000;\">&#41;</span> + <span style=\"color: #ff0000;\">\"Strg + S\"</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">&#40;</span>runIMPORT_alle<span style=\"color: #000000;\">&#40;</span>oWnd<span style=\"color: #000000;\">&#41;</span>, oLbxX:<span style=\"color: #000000;\">upstable</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>, oLbxX:<span style=\"color: #000000;\">goBottom</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>,oLbxX:<span style=\"color: #0000ff;\">refresh</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>, oLbxX:<span style=\"color: #000000;\">SetFocus</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ACCELERATOR ACC_CONTROL, <span style=\"color: #0000ff;\">asc</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"S\"</span><span style=\"color: #000000;\">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Adressenimport Schnittstellen\"</span> <br /><br /><br /><span style=\"color: #00C800;\">function</span> runIMPORT_alle<span style=\"color: #000000;\">&#40;</span>oWnd<span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #00C800;\">LOCAL</span> oDlgSome<br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlgSome &nbsp; <br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlgSome <span style=\"color: #0000ff;\">CENTERED</span> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">INIT</span> <span style=\"color: #000000;\">&#40;</span> WAITRUN<span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"xImport.exe\"</span><span style=\"color: #000000;\">&#41;</span>, oDlgSome:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br /><br />&nbsp;</div>[/code:ebzi2738]\n\nBest regards,\nOtto", "time": "17:39", "topic": "A Question about WAITRUN", "username": "Otto" } ]
A Question about WAITRUN
[ { "date": "2008-12-21", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\r\n\r\nCan this be a useful tool, together with FWH, \r\nto convert DLL's to LIB and include in the Make-file ?\r\nIf it is possible to use the tool, I don't need these functions ?\r\n\r\nDLL32 FUNCTION CREATEDIBITMAP( hDC AS LONG, hInfoH AS LONG, nFlags AS LONG, ;\r\nhBits AS LONG, hInfo AS LONG, nUsage AS LONG ) AS LONG ;\r\nPASCAL FROM \"CreateDIBitmap\" LIB \"gdi32.dll\"\r\n\r\n[img:1lx4fcx7]http&#58;//www&#46;pflegeplus&#46;com/pictures/dlllib0&#46;jpg[/img:1lx4fcx7]\r\n\r\n[img:1lx4fcx7]http&#58;//www&#46;pflegeplus&#46;com/pictures/dlllib2&#46;jpg[/img:1lx4fcx7]\r\n\r\nRegards\r\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->", "time": "18:49", "topic": "A Question about convert ==> DLL to => LIB", "username": "ukoenig" } ]
A Question about convert ==> DLL to => LIB
[ { "date": "2008-12-21", "forum": "FiveWin for Harbour/xHarbour", "text": "Uwe,\r\n\r\nIt may work for some DLLs, but Windows DLLs as \"gdi32.dll\" can't be converted into static LIBs.\r\n\r\nWhat you can do is to use implib.exe to create an import library from a DLL, and then code your function in C code instead of using DLL FUNCTION ... (static linking vs. dynamic linking).", "time": "22:12", "topic": "A Question about convert ==> DLL to => LIB", "username": "Antonio Linares" } ]
A Question about convert ==> DLL to => LIB
[ { "date": "2008-12-21", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\r\n\r\nthank You very much for the information.\r\nReading the text, I didn't know exactly, what i could\r\ndo with it.\r\n\r\nRegards\r\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->", "time": "22:45", "topic": "A Question about convert ==> DLL to => LIB", "username": "ukoenig" } ]
A Question about convert ==> DLL to => LIB
[ { "date": "2008-09-13", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\r\n\r\nI wanted to use the function < WaitSeconds( 0.3 ) > \r\n( internal used in FWH - Wait-functions ) \r\nto change on click 0.3 seconds to a new color of a bitmap. \r\nAfter the time, i want to show the old color again.\r\n\r\n[img:15nipjs8]http&#58;//www&#46;pflegeplus&#46;com/pictures/Voolsfont1&#46;jpg[/img:15nipjs8]\r\n\r\n[code:15nipjs8]\n\nREDEFINE BITMAP oBmp4 ID 210 ADJUST RESOURCE \"Blanc\" OF oDlg \n\noBmp4&#58;bMMoved &#58;= &#123; || cursorhand&#40;&#41; &#125; \n\n// On click, i want to change the color of the bitmap for about 0&#46;3 seconds\n// and after i want to show the old color again&#46; &#40; button-click-effect &#41;\n \noBmp4&#58;bLClicked &#58;= &#123;|| oBMP4&#58;bPainted &#58;= ;\n&#123; |hDC|OnPaintV&#40; hDC,oBMP4, 128,15779475,0, ; \n\"Vertical Button\", oBfont1, 0 ,\"TEST&#46;BMP\" ,4 &#41;, oBmp4&#58;Refresh&#40;&#41;, ; \nWaitSeconds&#40; 0&#46;3 &#41; &#125;, ;\noBMP4&#58;bPainted &#58;= &#123; |hDC|OnPaintV&#40; hDC,oBMP4, ;\n13003573,15779475,0, \"Vertical Button\", oBfont1, 0 ,\"TEST&#46;BMP\" ,4 &#41; &#125;, ;\noBmp4&#58;Refresh&#40;&#41;, DIALOG_1&#40;&#41; &#125; \n\n// The original start-color\noBMP4&#58;bPainted &#58;= &#123; |hDC|OnPaintV&#40; hDC,oBMP4, ;\n13003573,15779475,0, \"Vertical Button\", oBfont1, 0 ,\"TEST&#46;BMP\" ,4 &#41; &#125; \n\n// ---------------------------\n\nFUNCTION DIALOG_1&#40;&#41;\n\nMsgAlert&#40; \"I am Your Function 1\" &#41;\n\nRETURN&#40; NIL &#41;\n\n[/code:15nipjs8]\r\n\r\nThe 1. oBmp4:Refresh() doesn't show a new color ( 128 = Red on Blue )\r\nWaitseconds works, but only the 2. color is shown.\r\nIs there something wrong with the use of < Waitseconds > ?\r\n\r\nIf i do a click on the bitmap, following happens :\r\n\r\n1. WaitSeconds( 0.3 ) starts\r\n2. the MsgAlert( \"I am Your Function 1\" ) is shown\r\n3. The 2. Color is shown AFTER !!! the Alert.\r\n\r\nI need it this way :\r\n\r\n1. The 1. Color is shown ( new color )\r\n2. WaitSeconds( 0.3 ) \r\n3. The 2. Color is shown ( old color )\r\n4. The Alert ( function starts )\r\n\r\nRegards\r\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->", "time": "22:58", "topic": "A Question about function < WaitSeconds( 0.3 ) >", "username": "ukoenig" } ]
A Question about function < WaitSeconds( 0.3 ) >
[ { "date": "2008-09-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Uwe,\r\n\r\nI guess you should use a timer instead of make the user wait.\r\n\r\nJust a suggestion <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->", "time": "20:59", "topic": "A Question about function < WaitSeconds( 0.3 ) >", "username": "Antonio Linares" } ]
A Question about function < WaitSeconds( 0.3 ) >
[ { "date": "2011-08-24", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\n\nI have a Question about xBrowse-Linestyles.\nI can change the Linecolors but the predefined Colors ( Linestyles ) don't work anymore on Selection.\nIs it possible to change from defined Pen-color to Linestyle ?\nIt seems with defined Pencolors, Linestyle 1, 2, 3 and 4 are disabled.\nI would like to show all possible Combinations.\n\n[color=#008040:3i2ujg9e]#define LINESTYLE_NOLINES 0[/color:3i2ujg9e]\n[color=#FF0000:3i2ujg9e]#define LINESTYLE_BLACK 1\n#define LINESTYLE_DARKGRAY 2\n#define LINESTYLE_FORECOLOR 3\n#define LINESTYLE_LIGHTGRAY 4[/color:3i2ujg9e]\n[color=#008000:3i2ujg9e]#define LINESTYLE_INSET 5\n#define LINESTYLE_RAISED 6[/color:3i2ujg9e]\n\nI define Pensize and Color for Row and Column like :\n\n[color=#0000FF:3i2ujg9e]oBrw1:hRowPen := CreatePen( PS_SOLID, nBRPen, nPColor )\noBrw1:hColPen := CreatePen( PS_SOLID, nBCPen, nPColor )[/color:3i2ujg9e]\n\nand Styles like :\n\n[color=#0000FF:3i2ujg9e]:nColDividerStyle := nCLines\n:nRowDividerStyle := nRLines[/color:3i2ujg9e]\n\n[img:3i2ujg9e]http&#58;//www&#46;pflegeplus&#46;com/pictures/linestyle&#46;jpg[/img:3i2ujg9e]\n\nBest Regards\nUwe <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->", "time": "17:29", "topic": "A Question about xBrowse-Linestyles", "username": "ukoenig" } ]
A Question about xBrowse-Linestyles
[ { "date": "2011-08-24", "forum": "FiveWin for Harbour/xHarbour", "text": "XBrowse derives Pens from the Linestyles defined by the programmer. That way the DATA of Pens were basically kept for internal use. If we change the pens directly, Xbrowse does not know that pens are not consistent with the linestyles and there can be unexpected behavior. You may directly deal with pens but keep this in mind. Also do not forget to destroy the pens created by xbrowse internally, before substituting with your pens. While direct modification of pens is possible (though I think it was not intended) you need to keep in mind how xbrowse handles the linestyles and pens.\n\nFor normal programming, it is not desirable to directly change the pens.", "time": "19:28", "topic": "A Question about xBrowse-Linestyles", "username": "nageswaragunupudi" } ]
A Question about xBrowse-Linestyles
[ { "date": "2011-08-25", "forum": "FiveWin for Harbour/xHarbour", "text": "Mr. Rao,\n\nI agree with You, \nI got it working, but there are to many needed changes.\nI will replace this Part with other useful Tests.\nMaybe any Proposals ?\n\nincluded Tests :\n1. Background ( Brush )\n2. Marquestyle\n3. Linestyle\n4. Fonts\n5. Row- and Header-height\n6. Head-color or Style 2007\n7. Image-selection\n8. Pyjama-effect\n\n????\n\n[img:2iy4wfv9]http&#58;//www&#46;pflegeplus&#46;com/pictures/lines3&#46;jpg[/img:2iy4wfv9]\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->", "time": "14:43", "topic": "A Question about xBrowse-Linestyles", "username": "ukoenig" } ]
A Question about xBrowse-Linestyles
[ { "date": "2008-05-03", "forum": "FiveLinux / FiveDroid (Android)", "text": "Hi Antonio\r\n\r\nIn order to support blocked text in GETs we need a GETGETSEL() function. The C code seems fairly easy but it passes in two gint * to be updated with the start and end of the current selection and returns a logical value - corresponding to whether or not a selection has been made.\r\n\r\nWhat is the best way to pass this back to xHarbour?\r\n\r\nOnce that is sorted, supporting block editing shouldn't be very hard.\r\n\r\nFiveLinux then will have almost everything I need.\r\n\r\nThanks \r\nDoug\r\n(xProgrammer)", "time": "12:46", "topic": "A Question for Antonio", "username": "xProgrammer" } ]
A Question for Antonio
[ { "date": "2009-05-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Friends\n\nI need a server smtp for send mail with blat.exe ?\n\nThank You", "time": "18:57", "topic": "A Question?", "username": "Vladimir Zorrilla" } ]
A Question?
[ { "date": "2010-08-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\n\nsome Times ago, I started with a visual Ribbonbar-Tool.\nI stopped this work because of other urgent Updates and new Projects.\nI'm not sure, if there is still a need, to carry on with this Project,\nbecause I've seen a start from Silvio and I don't want to do a Job twice.\nAs well there are still some open Projects like a Solution for the new < TFolderEx > \nand a Update for < SButtons >. Extensions for the < xBrowse-Tools > are also on my Todo-List.\nMy Solution for Ribbonbars is different, because I refresh a external-Preview with Vars from the Painter.\nThat makes it possible, to create a PRG and Standalone EXE-File.\nIt is a big Job, to save all the Vars from the Painter and create a running Project from different Designs,\nloading Templates from a Project-DBF and more...\n\nBest regards\nUwe <!-- s:roll: --><img src=\"{SMILIES_PATH}/icon_rolleyes.gif\" alt=\":roll:\" title=\"Rolling Eyes\" /><!-- s:roll: -->", "time": "15:44", "topic": "A RIBBONBAR-Tool-Solution still needed ?", "username": "ukoenig" } ]
A RIBBONBAR-Tool-Solution still needed ?
[ { "date": "2007-07-08", "forum": "FiveWin for Harbour/xHarbour", "text": "It is my humble request to you all FIVEWINNERS,\n\nI was thinking to share this view with you all since a long time.\n\nAll erstwhile Clipper programmers who wanted to come into Windows\nenvironment have started using FIVEWIN + *HARBOUR alongwith some\nknown tools developed either using FIVEWIN + *HARBOUR or some \nthirdpartys. Thanks to our Guru Mr.Antonio and *Harbour Team.\n\nUsually every developer has his own reqirement to develop his \napplication for his clients. While developing such application, he might be \nin need of various tools/functions/classes/methods which are not covered \ndirectly in eigher FIVEWIN or even *HARBOUR. \n\nIn such situations, every developer is best enough to find a wayout to \nprovide a suitable solution to his clients, using some third party \ntools or some new technics within our own FIVEWIN + *HARBOUR or \nthrough some third party tools.\n\nWhat I feel is, when ever any fivewinner comes across such situation \nand find a solution to a particular problem, which could not be solved within\nour native FIVEWIN + *HARBOUR, he is requested to share it with our \nguru/master Mr.Antonio or directly put it in our forum. So that every \nFIVEWINNERS will take advantage out of it and more over it cultivates a \nhabit of passing such new developments among all FIVEWINNERS. And \nalso it will enable Mr.Antonio to take note of it and guide the developers\nin future. \n\nThe example is :\n\nAgainst the subject : \"alt+tab key board stop..... \" \nvide <!-- m --><a class=\"postlink\" href=\"http://fivetechsoft.com/forums/viewtopic.php?t=7503\">http://fivetechsoft.com/forums/viewtopic.php?t=7503</a><!-- m -->\nMr.Antonio has given his solution to refer:\n\n<!-- m --><a class=\"postlink\" href=\"http://www.thescarms.com/vbasic/StopReBoot.aspx\">http://www.thescarms.com/vbasic/StopReBoot.aspx</a><!-- m -->\n\nBut there was a direct solution within our FIVEWIN/*HARBOUR from\n\n<!-- m --><a class=\"postlink\" href=\"http://www.fivewin.com.br/exibedicas.asp?id=795\">http://www.fivewin.com.br/exibedicas.asp?id=795</a><!-- m -->\n\nI am surprised that our Brasilian forum has a solution for such problem\nand othe FIVEWINNERS are deprived of such benefit!\n\nHad he (Mr.Antonio) been informed about this, he would not have \nadvised to go for an indirect solution from <!-- m --><a class=\"postlink\" href=\"http://www.thescarms.com/vbasic/StopReBoot.aspx\">http://www.thescarms.com/vbasic/StopReBoot.aspx</a><!-- m -->\nand every FIVEWINNER could have taken benefit out of it.\n\nOne more thing I found is : Our non-english speaking members\npost their problems in this: \"English Forums of `FiveWin for \nHarbour/xHarbour'. And they do get their solutions in their own language, \nwhich is not understood by english speaking members like me for whom\nthis \"English Forums of `FiveWin for Harbour/xHarbour' is meant for.\n\nI not blaming anybody for such cross/direct postings. But my \nworry is that I am not able to understand the valuable solutions to the \nproblems posted by non-enlglish speaking members in English Forum and answered properly in their own language viz. Spanish or any other non-english language.\n\nI request Mr.Antonio to take a note of this. Because now, FIVEWN is reaching all parts of the world whare ever clipper programmers are existing. \n\nWe are growing and FIVEWIN will grow to its peaks.\n\nRegards to all FIVEWINNERS.\n\n- Ramesh Babu P", "time": "19:33", "topic": "A Request to all \"FiveWin\"ners", "username": "RAMESHBABU" } ]
A Request to all "FiveWin"ners
[ { "date": "2007-07-08", "forum": "FiveWin for Harbour/xHarbour", "text": "If I do understand you well, you are afraid that some solutions, proposed by certain fivewinners, aren't shared with other fivewinners which results into a repetition of some questions.\n\nI agree with that, but ...\n\nThe example that you mentioned, you spoke about a direct solution within FiveWin/*Harbour. But if I click on the link you gave us, I am directed to the website of FiveWin Brasil ..... which is in Spanish.\n\nAnd since I don't understand one single word of Spanish ....\n\nA small thing which is bothering me, is the fact that several people on this forum, keep asking their question in Spanish, although they pose it in the English forum.\n\nBut on the other hand : all credit to many Fivewinners who are offering solutions to many problems. I am very greatful to them.\n\nFiveWin/*Harbour is a splendid product and I hope that we can use it for many, many years.", "time": "23:12", "topic": "A Request to all \"FiveWin\"ners", "username": "driessen" } ]
A Request to all "FiveWin"ners
[ { "date": "2007-07-09", "forum": "FiveWin for Harbour/xHarbour", "text": "driessen,\n\n\nFivewin Brasil is in portuguese, not in spanish.\n\n\nRegards", "time": "10:40", "topic": "A Request to all \"FiveWin\"ners", "username": "pymsoft" } ]
A Request to all "FiveWin"ners
[ { "date": "2007-07-09", "forum": "FiveWin for Harbour/xHarbour", "text": "Sorry, but indeed. In Brazil, they speak Portuguese.\n\nBut the problem is still the same since I don't speak that language.\n\nThanks.", "time": "23:52", "topic": "A Request to all \"FiveWin\"ners", "username": "driessen" } ]
A Request to all "FiveWin"ners
[ { "date": "2007-07-10", "forum": "FiveWin for Harbour/xHarbour", "text": "Friends,\n\nI'm brazilian and I can explain some points...\n\nIn Brazil our language is Portuguese (or \"Brazilian Portuguese\") a variant of Portuguese from Portugal.\nI think Portuguese is a complicated language. Any persons says that it is a \"secret code\" and I agree <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) --> \n\nThis \"language frontier\" is a great problem. My English/Spanish language is bad, but I ever try to answer question posted in English in English, and posted in Spanish in Spanish.\n\nMany times I saw Antonio trying to understand us brazilians and I think he is a hero for it.\nAnd many times I said to brazilian friends that the chances to have a question answered if he put a message in Portuguese in an English forum is very low...\n\nI'm speaking about brazilians difficulties because I feel free to say about us, but we have the same problem with Spanish/Italian/Chinese etc speakers.\n\nI think each one of us (brazilian or not) must try post in English and try to make us be understood. I think this is the only way to enlarge our knowledgement.\n\nBut each one think in different ways and have his own language difficulties. Unfortunatelly.\n\nLike I said, my English is bad then I hope you all understand me.\n\nBest regards,\nMaurilio", "time": "15:28", "topic": "A Request to all \"FiveWin\"ners", "username": "Maurilio Viana" } ]
A Request to all "FiveWin"ners
[ { "date": "2007-07-10", "forum": "FiveWin for Harbour/xHarbour", "text": "Maurilio,\n\nAs far as I can say, your English is very good and surely very understandable.", "time": "16:53", "topic": "A Request to all \"FiveWin\"ners", "username": "driessen" } ]
A Request to all "FiveWin"ners
[ { "date": "2012-04-23", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\n\nI created a Solution of Software-protection,\nbut I don't know if there is still requirement.\nOtherwise, there are still other things to do, maybe starting with Metro-style.\n\nThis demo shows the functions of Registering\n- Start\n- GetRegistrationInfo\n- Register\n2 small Files are created. The Keymaker activates Shareware.exe\n\nThe Shareware Keygenerator calculates a hardwareID when it is installed.\nThe person who registers a program must supply this hardwareID on registration\nonly then can a valid key be generated.\n\nThe registration information is saved in the registry under the following key:\nHKEY_CURRENT_USER\\Software\\<applicationname.exe>\n\nWith applicationname.exe is meant the name of the compiled program.\n\nUse the KeyGenerator to generate registrationkeys.\n\n[img:jvyxuj5r]http&#58;//www&#46;pflegeplus&#46;com/pictures/protect3&#46;jpg[/img:jvyxuj5r]\n\n[img:jvyxuj5r]http&#58;//www&#46;pflegeplus&#46;com/pictures/protect4&#46;jpg[/img:jvyxuj5r]\n\n[color=#FF0000:jvyxuj5r]Result of registering :[/color:jvyxuj5r]\n\n[img:jvyxuj5r]http&#58;//www&#46;pflegeplus&#46;com/pictures/protect5&#46;jpg[/img:jvyxuj5r]\n\nBest Regards\nUwe <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->", "time": "18:04", "topic": "A Solution of Software-protection still needed ?", "username": "ukoenig" } ]
A Solution of Software-protection still needed ?
[ { "date": "2012-04-23", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello Uwe,\n\n>maybe starting with Metro-style\n\nThis would be fine haveing your tools for metro style.\nBest regards,\nOtto", "time": "21:57", "topic": "A Solution of Software-protection still needed ?", "username": "Otto" } ]
A Solution of Software-protection still needed ?
[ { "date": "2012-04-25", "forum": "FiveWin for Harbour/xHarbour", "text": "Software protection is always an issue, and there is always a need. This looks quite helpful.", "time": "15:32", "topic": "A Solution of Software-protection still needed ?", "username": "TimStone" } ]
A Solution of Software-protection still needed ?
[ { "date": "2014-09-16", "forum": "FiveWin for Harbour/xHarbour", "text": "Can any one share nice code", "time": "16:32", "topic": "A Solution of Software-protection still needed ?", "username": "bpd2000" } ]
A Solution of Software-protection still needed ?
[ { "date": "2014-09-16", "forum": "FiveWin for Harbour/xHarbour", "text": "I have a completely different solution for registration.\nEvery time a customer installs the program and opens it up they will have displayed a 7 digit serial number which is randomly generated.\nThis means that every install generates a different serial number.\nThe customer then sends me their serial number. At that time I am enter the serial number in another program that I developed and it creates an unlocking code which is sent back to the user. They enter it in the space provided and then they get unlimited use of the program. \nThe programing was complex. It works quite well. \n\nThis prevents unlicensed copies of the program from being used.", "time": "21:11", "topic": "A Solution of Software-protection still needed ?", "username": "hag" } ]
A Solution of Software-protection still needed ?
[ { "date": "2014-09-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Friends,\n\nCheck it:\n<!-- m --><a class=\"postlink\" href=\"http://www.oreans.com/es/winlicense.php\">http://www.oreans.com/es/winlicense.php</a><!-- m -->\n\nHope it helps!!", "time": "12:44", "topic": "A Solution of Software-protection still needed ?", "username": "elvira" } ]
A Solution of Software-protection still needed ?
[ { "date": "2009-08-18", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\n\nI wanted to paint a [color=#FF0000:13lbfmwb]Vtitle[/color:13lbfmwb] on a Dialog from Resources, but it seems not to be possible.\nI think any Trial, to paint something from Source on a Resource, doesn't work only REDEFINE.\nIs there maybe a Solution, to paint a VTitle on Dialog defined as Resource ?\n( before, I painted Text on Bitmaps from Resource to create a Title ) \n\nApplication\n===========\n Path and name: E:\\T_VTITLE\\VTitle.exe (32 bits)\n Size: 1,982,464 bytes\n Time from start: 0 hours 0 mins 0 secs \n Error occurred at: 08/18/09, 16:17:30\n Error description: Error FiveWin/1 [color=#FF0000:13lbfmwb]Non defined Id: No: 102[/color:13lbfmwb]\n Args:\n\nStack Calls\n===========\n Called from: .\\source\\classes\\CONTROL.PRG => TTITLE:INITIATE(386)\n Called from: => __OBJSENDMSG(0)\n Called from: .\\source\\function\\HARBOUR.PRG => OSEND(235)\n Called from: .\\source\\function\\HARBOUR.PRG => ASEND(186)\n Called from: .\\source\\classes\\DIALOG.PRG => TDIALOG:INITIATE(654)\n Called from: .\\source\\classes\\DIALOG.PRG => TDIALOG:HANDLEEVENT(912)\n Called from: => DIALOGBOX(0)\n Called from: .\\source\\classes\\DIALOG.PRG => TDIALOG:ACTIVATE(273)\n Called from: .\\VTitle.PRG => TOOLS(308)\n Called from: .\\VTitle.PRG => (b)MAIN(233)\n Called from: .\\source\\classes\\WINDOW.PRG => TWINDOW:ACTIVATE(945)\n Called from: .\\VTitle.PRG => MAIN(233)\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->", "time": "15:22", "topic": "A Solution, using VTitles inside Dialog-Resources ?", "username": "ukoenig" } ]
A Solution, using VTitles inside Dialog-Resources ?
[ { "date": "2012-03-08", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi,\n\nAs you can see difference in screenshots as below, I think there is a paint problem in TGroup class.\n\nThe code is exactly the same.\n\n1) Look to the group title.\n2) disappears some lines in group.\n\n\n12.01 screenshoot\n[img:2l6d0qq4]http&#58;//www&#46;objekt&#46;com&#46;tr/fwh_test/fwhx_1201&#46;png[/img:2l6d0qq4]\n\n12.02 screenshoot\n[img:2l6d0qq4]http&#58;//www&#46;objekt&#46;com&#46;tr/fwh_test/fwhx_1202&#46;png[/img:2l6d0qq4]\n\nThanks", "time": "17:02", "topic": "A Strange Error in TGroup in 12.02", "username": "Horizon" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2012-03-09", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio\n\nAny comment?", "time": "09:51", "topic": "A Strange Error in TGroup in 12.02", "username": "Horizon" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2012-03-10", "forum": "FiveWin for Harbour/xHarbour", "text": "Hakan,\n\nPlease add this function inside FWH\\source\\classes\\group.prg:\n[code=fw:ynm8pc71]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">static</span> <span style=\"color: #00C800;\">function</span> IsAppThemed<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">return</span> .F.<br />&nbsp;</div>[/code:ynm8pc71]", "time": "18:24", "topic": "A Strange Error in TGroup in 12.02", "username": "Antonio Linares" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2012-03-11", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n\nIt works OK now. \n\nI just want to know that Should I change everytime group.prg in every new version or you changed it in your group.prg?\n\nThanks", "time": "10:29", "topic": "A Strange Error in TGroup in 12.02", "username": "Horizon" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2012-03-11", "forum": "FiveWin for Harbour/xHarbour", "text": "Hakan,\n\nPlease provide me a small PRG to reproduce the GROUP paint error here and we will fix it for FWH 12.03, thanks <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->", "time": "17:15", "topic": "A Strange Error in TGroup in 12.02", "username": "Antonio Linares" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2012-03-11", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n\nI have tried to simulate the my application. but I only simulate the group title error. I think it occurs when the group is resized.\n\n[code=fw:edmz25el]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"FiveWin.ch\"</span> <br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <br />  <br />  <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFnt <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"Verdana\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">-16</span> BOLD <br />    <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFnt1 <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"Verdana\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">-12</span><br /><br />   <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">620</span>, <span style=\"color: #000000;\">294</span> <span style=\"color: #0000ff;\">FONT</span> oFnt1 TRANSPARENT ;<br />        <span style=\"color: #0000ff;\">STYLE</span> nOr<span style=\"color: #000000;\">&#40;</span> WS_OVERLAPPEDWINDOW <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #B900B9;\">//COLOR CLR_BLACK,RGB(196,244,244)</span><br />        oDlg:<span style=\"color: #000000;\">SetColor</span><span style=\"color: #000000;\">&#40;</span>,<span style=\"color: #000000;\">9425383</span><span style=\"color: #000000;\">&#41;</span><br />   <br />  @ <span style=\"color: #000000;\">2</span>, <span style=\"color: #000000;\">3</span> GROUP oGrp <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">150</span>, <span style=\"color: #000000;\">150</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\" Group Text \"</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">PIXEL</span> TRANSPARENT;<br />    <span style=\"color: #0000ff;\">FONT</span> oFnt<br /><br />  @ <span style=\"color: #000000;\">65</span>, <span style=\"color: #000000;\">3</span> GROUP oGrp1 <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">150</span>, <span style=\"color: #000000;\">150</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\" Second Group Text \"</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">PIXEL</span> TRANSPARENT;<br />    <span style=\"color: #0000ff;\">FONT</span> oFnt<br />  <br />  @ <span style=\"color: #000000;\">80</span>, <span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">SAY</span> <span style=\"color: #ff0000;\">\"XXXXXXXXXXXXXXXXXXXXXXXXXX\"</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">PIXEL</span> <span style=\"color: #0000ff;\">FONT</span> oFnt1 TRANSPARENT<br />  <br />    @ <span style=\"color: #000000;\">100</span>,<span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">BUTTON</span> obtnCancel <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"&Cancel\"</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">PIXEL</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">50</span>,<span style=\"color: #000000;\">13</span> ;<br />        <span style=\"color: #0000ff;\">ACTION</span> oDlg:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />        <br />  oDlg:<span style=\"color: #000000;\">bResized</span> := <span style=\"color: #000000;\">&#123;</span>|| RESIZE_IT<span style=\"color: #000000;\">&#40;</span>oGrp, obtnCancel, oGrp1<span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span><br />    <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">CENTERED</span> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">INIT</span> RESIZE_IT<span style=\"color: #000000;\">&#40;</span>oGrp, obtnCancel, oGrp1<span style=\"color: #000000;\">&#41;</span><br />    <br />    oFnt:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />    oFnt1:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span> <br /><br />PROCEDURE RESIZE_IT<span style=\"color: #000000;\">&#40;</span>oGrp, obtnCancel, oGrp1<span style=\"color: #000000;\">&#41;</span><br />  oGrp:<span style=\"color: #000000;\">nHeight</span> := oDlg:<span style=\"color: #000000;\">nHeight</span><span style=\"color: #000000;\">-80</span>-oGrp:<span style=\"color: #000000;\">nTop</span><br />  oGrp:<span style=\"color: #000000;\">nWidth</span>  := oDlg:<span style=\"color: #000000;\">nWidth</span><span style=\"color: #000000;\">-29</span> <br />  <br />  oGrp1:<span style=\"color: #000000;\">nHeight</span> := oDlg:<span style=\"color: #000000;\">nHeight</span><span style=\"color: #000000;\">-80</span>-oGrp1:<span style=\"color: #000000;\">nTop</span><br />  oGrp1:<span style=\"color: #000000;\">nWidth</span>  := oDlg:<span style=\"color: #000000;\">nWidth</span><span style=\"color: #000000;\">-29</span> <br /><br />  obtnCancel:<span style=\"color: #000000;\">nTop</span> := oDlg:<span style=\"color: #000000;\">nHeight</span><span style=\"color: #000000;\">-70</span><br />  obtnCancel:<span style=\"color: #000000;\">nLeft</span> := oDlg:<span style=\"color: #000000;\">nWidth</span><span style=\"color: #000000;\">-120</span> <br /><span style=\"color: #00C800;\">return</span></div>[/code:edmz25el]", "time": "20:00", "topic": "A Strange Error in TGroup in 12.02", "username": "Horizon" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2012-03-21", "forum": "FiveWin for Harbour/xHarbour", "text": "up", "time": "08:55", "topic": "A Strange Error in TGroup in 12.02", "username": "Horizon" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2012-03-21", "forum": "FiveWin for Harbour/xHarbour", "text": "Hakan,\n\nYour example looks fine here, whats wrong with it ?\n\n[img:2hfo34fk]http&#58;//img811&#46;imageshack&#46;us/img811/7682/capturegx&#46;png[/img:2hfo34fk]", "time": "11:49", "topic": "A Strange Error in TGroup in 12.02", "username": "Antonio Linares" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2012-03-21", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi,\n\nLook at the group title.\n\n.rc\n[code=fw:7l0xwify]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">   <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">24</span> <span style=\"color: #ff0000;\">\"WindowsXP.Manifest\"</span> <br /> </div>[/code:7l0xwify]\n\n[img:7l0xwify]http&#58;//www&#46;objekt&#46;com&#46;tr/fwh_test/fwh1202group&#46;png[/img:7l0xwify]", "time": "12:31", "topic": "A Strange Error in TGroup in 12.02", "username": "Horizon" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2012-03-29", "forum": "FiveWin for Harbour/xHarbour", "text": "up", "time": "09:05", "topic": "A Strange Error in TGroup in 12.02", "username": "Horizon" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2012-03-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Try changing this (look at EMG) in group.prg:\n\n[code=fw:2zrya0al]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">METHOD</span> <span style=\"color: #0000ff;\">Paint</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <span style=\"color: #00C800;\">CLASS</span> TGroup<br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> aSize, hOldFont<br /><br />&nbsp; &nbsp;CallWindowProc<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">nOldProc</span>, ::<span style=\"color: #000000;\">hWnd</span>, WM_PAINT, ::<span style=\"color: #000000;\">hDC</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">if</span> .F. <span style=\"color: #B900B9;\">//IsAppThemed() //EMG</span><br />&nbsp; &nbsp; &nbsp; aSize = GetLabelDim<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hWnd</span>, ::<span style=\"color: #000000;\">cCaption</span>, ::<span style=\"color: #000000;\">oWnd</span>:<span style=\"color: #000000;\">oFont</span>:<span style=\"color: #000000;\">hFont</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; hOldFont = SelectObject<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hDC</span>, ::<span style=\"color: #000000;\">oWnd</span>:<span style=\"color: #000000;\">oFont</span>:<span style=\"color: #000000;\">hFont</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; SetBrushOrgEx<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hDC</span>, nBmpWidth<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">oBrush</span>:<span style=\"color: #000000;\">hBitmap</span> <span style=\"color: #000000;\">&#41;</span> - ::<span style=\"color: #000000;\">nLeft</span>, nBmpHeight<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">oBrush</span>:<span style=\"color: #000000;\">hBitmap</span> <span style=\"color: #000000;\">&#41;</span> - ::<span style=\"color: #000000;\">nTop</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; FillRect<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hDC</span>, <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">7</span>, aSize<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span> + <span style=\"color: #000000;\">2</span>, aSize<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span> + <span style=\"color: #000000;\">11</span> <span style=\"color: #000000;\">&#125;</span>, ::<span style=\"color: #000000;\">oBrush</span>:<span style=\"color: #000000;\">hBrush</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; SetBkMode<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hDC</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; TextOut<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hDC</span>, <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">9</span>, ::<span style=\"color: #000000;\">cCaption</span>, Len<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">cCaption</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; SelectObject<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hDC</span>, hOldFont <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span> &nbsp; <br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">1</span></div>[/code:2zrya0al]\n\nEMG", "time": "09:30", "topic": "A Strange Error in TGroup in 12.02", "username": "Enrico Maria Giordano" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2012-03-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Thanks Enrico,\n\nIf I use 12.01, There is not problem. \n\nI will wait a solution in 12.03.", "time": "08:34", "topic": "A Strange Error in TGroup in 12.02", "username": "Horizon" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2012-03-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Hakan,\n\nThis change is required in Class TGroup: (fwh\\source\\classes\\group.prg)\n\n[code=fw:1h1hjk74]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">METHOD</span> <span style=\"color: #0000ff;\">Paint</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <span style=\"color: #00C800;\">CLASS</span> TGroup<br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> aSize, hOldFont, oFont<br /><br />&nbsp; &nbsp;CallWindowProc<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">nOldProc</span>, ::<span style=\"color: #000000;\">hWnd</span>, WM_PAINT, ::<span style=\"color: #000000;\">hDC</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">if</span> IsAppThemed<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; oFont = <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">oFont</span> != <span style=\"color: #00C800;\">nil</span>, ::<span style=\"color: #000000;\">oFont</span>, ::<span style=\"color: #000000;\">oWnd</span>:<span style=\"color: #000000;\">oFont</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; ASize = GetLabelDim<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hWnd</span>, ::<span style=\"color: #000000;\">cCaption</span>, oFont:<span style=\"color: #000000;\">hFont</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; hOldFont = SelectObject<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hDC</span>, oFont:<span style=\"color: #000000;\">hFont</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; SetBrushOrgEx<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hDC</span>, nBmpWidth<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">oBrush</span>:<span style=\"color: #000000;\">hBitmap</span> <span style=\"color: #000000;\">&#41;</span> - ::<span style=\"color: #000000;\">nLeft</span>, nBmpHeight<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">oBrush</span>:<span style=\"color: #000000;\">hBitmap</span> <span style=\"color: #000000;\">&#41;</span> - ::<span style=\"color: #000000;\">nTop</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; FillRect<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hDC</span>, <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">7</span>, aSize<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span> + <span style=\"color: #000000;\">2</span>, aSize<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#93;</span> + <span style=\"color: #000000;\">11</span> <span style=\"color: #000000;\">&#125;</span>, ::<span style=\"color: #000000;\">oBrush</span>:<span style=\"color: #000000;\">hBrush</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; SetBkMode<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hDC</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; TextOut<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hDC</span>, <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">9</span>, ::<span style=\"color: #000000;\">cCaption</span>, Len<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">cCaption</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; SelectObject<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">hDC</span>, hOldFont <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span> &nbsp; <br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">1</span><br />&nbsp;</div>[/code:1h1hjk74]", "time": "11:19", "topic": "A Strange Error in TGroup in 12.02", "username": "Antonio Linares" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2012-04-02", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Antonio,\n\nI have copied the your emailed Fivehcm.lib to lib directory. I have have deleted the group.prg from my xbp file and compiled.\n\nResult :\n\n- The font problem is gone. It is OK now.\n- disapearing group line is same as fwh 12.02. (I know I could not prepare a small sample for it.)\n\nI have added to group.prg to my xbp file and I have remarked the below line:\n\n[code=fw:155lppgb]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">      <span style=\"color: #B900B9;\">//FillRect( ::hDC, { 0, 7, aSize[ 2 ] + 2, aSize[ 1 ] + 11 }, ::oBrush:hBrush )</span><br /> </div>[/code:155lppgb]\n\nIt is ok now. Is this line is necessary?\n\nThanks.", "time": "09:27", "topic": "A Strange Error in TGroup in 12.02", "username": "Horizon" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2012-04-02", "forum": "FiveWin for Harbour/xHarbour", "text": "Hakan,\n\nIn our first tests it was needed, but now, yes you are right we could remove it, as the SetBrushOrgEx() is properly filling the background where we paint the text <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->", "time": "09:36", "topic": "A Strange Error in TGroup in 12.02", "username": "Antonio Linares" } ]
A Strange Error in TGroup in 12.02
[ { "date": "2008-04-19", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\n\nIn the new Tools, i added the new FWH 8.04 option\nto select a brush for a defined Col.\nBecause everything can be done at runtime with preview,\nit must be possible, that the user can switch the brush On and Off\nlike with transparent .T. or .F.\n\nThe normal code is just :\n\nDEFINE BRUSH oBrush RESOURCE \"WALL\"\noLbx:aCols[2]:oBrush := oBrush\n\nIs it possible, to make the brush visible or not visible ?\n\nRegards\n\nUwe", "time": "13:34", "topic": "A Switch for the new oLbx:aCols[2]:oBrush := oBrush ?", "username": "ukoenig" } ]
A Switch for the new oLbx:aCols[2]:oBrush := oBrush ?
[ { "date": "2008-04-19", "forum": "FiveWin for Harbour/xHarbour", "text": "During runtime it is possible to assign a brush, change a brush or remove brush ( by assigning ocol:obrush := nil ).\n\nOn studying the code, the intention is that even a codeblock can be assigned to oBrush so that different rows can be painted with different brushes. Example oBrush := { || If( ordkeyno() % 2 == 0, oBrush1, oBrush2 }.\nBut due to a small bug this is now giving an error.\n\nMr Antonio.\nThis small correction given below will rectify the error and codeblocks will work for oBrush correctly. \n[code:aaxc28eq]\nPresent line 5360\n hBrush &#58;= &#58;&#58;oBrush&#58;hBrush\nshould be changed as\n hBrush &#58;= oBrush&#58;hBrush\n[/code:aaxc28eq]\nWith this correction CodeBlocks can be assigned to oCol:oBrush and it works perfectly. I made this correction in my copy and I am using this in my applications.", "time": "14:29", "topic": "A Switch for the new oLbx:aCols[2]:oBrush := oBrush ?", "username": "nageswaragunupudi" } ]
A Switch for the new oLbx:aCols[2]:oBrush := oBrush ?
[ { "date": "2008-04-19", "forum": "FiveWin for Harbour/xHarbour", "text": "Thank you very much,\n\nI included the option and it works fine.\nNow the user can choose a brush and test,\nhow it looks in relation to the rest of his settings.\n\nRegards\n\nUwe", "time": "16:42", "topic": "A Switch for the new oLbx:aCols[2]:oBrush := oBrush ?", "username": "ukoenig" } ]
A Switch for the new oLbx:aCols[2]:oBrush := oBrush ?
[ { "date": "2006-05-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Here it is:\n\n[code:3tewp2y7]#include \"Fivewin&#46;ch\"\n\n\nFUNCTION MAIN&#40;&#41;\n\n LOCAL oWnd, oPdf\n\n DEFINE WINDOW oWnd\n\n oPdf = TActiveX&#40;&#41;&#58;New&#40; oWnd, \"&#123;CA8A9780-280D-11CF-A24D-444553540000&#125;\" &#41;\n\n oPdf&#58;Do&#40; \"LoadFile\", \"filename\" &#41;\n\n oWnd&#58;oClient = oPdf\n\n ACTIVATE WINDOW oWnd\n\n RETURN NIL[/code:3tewp2y7]\n\nEMG", "time": "08:25", "topic": "A TActiveX working sample using Acrobat Reader 7", "username": "Enrico Maria Giordano" } ]
A TActiveX working sample using Acrobat Reader 7
[ { "date": "2006-05-28", "forum": "FiveWin for Harbour/xHarbour", "text": "This is an alternative:\n\n[code:3ctg68pp]#include \"Fivewin&#46;ch\"\n\n\nFUNCTION MAIN&#40;&#41;\n\n LOCAL oWnd, oPdf\n\n DEFINE WINDOW oWnd\n\n oPdf = TActiveX&#40;&#41;&#58;New&#40; oWnd, \"AcroPDF&#46;PDF\" &#41;\n\n oPdf&#58;Do&#40; \"LoadFile\", \"filename\" &#41;\n\n oWnd&#58;oClient = oPdf\n\n ACTIVATE WINDOW oWnd\n\n RETURN NIL[/code:3ctg68pp]\n\nBut they have a problem: the process AcroRd32.exe remains active after the end of the sample execution. Is there any way to unload it? I already tried various options without success: oPdf:End(), oPdf:Do( \"Close\" ), DeleteObject( oPdf:hActiveX ), etc.\n\nEMG", "time": "13:50", "topic": "A TActiveX working sample using Acrobat Reader 7", "username": "Enrico Maria Giordano" } ]
A TActiveX working sample using Acrobat Reader 7
[ { "date": "2006-05-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Enrico,\n\nHave you checked if after some time it gets unloaded ? Sometimes the activex remains loaded for some time and later on it gets closed.", "time": "12:01", "topic": "A TActiveX working sample using Acrobat Reader 7", "username": "Antonio Linares" } ]
A TActiveX working sample using Acrobat Reader 7
[ { "date": "2006-05-29", "forum": "FiveWin for Harbour/xHarbour", "text": "No, I will check it, thank you.\n\nEMG", "time": "12:19", "topic": "A TActiveX working sample using Acrobat Reader 7", "username": "Enrico Maria Giordano" } ]
A TActiveX working sample using Acrobat Reader 7
[ { "date": "2006-05-29", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Antonio Linares\":ytxrthbg]Enrico,\n\nHave you checked if after some time it gets unloaded ? Sometimes the activex remains loaded for some time and later on it gets closed.[/quote:ytxrthbg]\n\n\nAntonio, is there a way to know if the Activex Control is already loaded on memory, and a way to unloaded it if is true.\n\nWhile doing some tests with an epson ocx, I got plenty of problems, I needed to reboot to make things work, so I think it was because it get loaded...\n\nAny idea", "time": "13:56", "topic": "A TActiveX working sample using Acrobat Reader 7", "username": "Adolfo" } ]
A TActiveX working sample using Acrobat Reader 7
[ { "date": "2006-05-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Adolfo,\n\nWith some OCXs, like Acrobat Reader, if you press Ctrl+Alt+Del you can see AcroRd32.exe is loaded.\n\nOn some other OCXs where EXEs are not used, it may be more difficult to know it.", "time": "15:07", "topic": "A TActiveX working sample using Acrobat Reader 7", "username": "Antonio Linares" } ]
A TActiveX working sample using Acrobat Reader 7
[ { "date": "2014-10-01", "forum": "FiveWin for Harbour/xHarbour", "text": "New functions:\n\nThe program works now for XBrowse, XbrColumn or any other generic object.\nWorks from combobox or with pasted code.\nWe can select \"WITH OBJECT oBrw\" in the combobox or paste with object code of any browse variable.\n\n1) The program identifies if the pasted code belongs to Browse or Column or some other object. (In very few cases, where in doubt the program may alert to indicate the object type)\n2) For browse or column all the useful Variables and Methods will be displayed in addition to those contained in the pasted code.\n3) We can use for other objects also, but the implementation is limited to the data in the pasted code.\n4) Generated code includes only those items where the values are not empty. If a method which does not require parameters ( eg: MakeTotals(), CreateFromCode() ) are to be included, we may enter \"nil\" in the value column. If the value column is left empty, the method is not included in the generated code.\n5) Edit of values will be supported by comboboxes and indication of default values.\n\nFW_DbfToArray() implemented\n\nBest regards,\nOtto\n\n[img:2l6udlk9]http&#58;//www&#46;atzwanger-software&#46;com/fw/AC_Clip23&#46;jpg[/img:2l6udlk9]\n\n[img:2l6udlk9]http&#58;//www&#46;atzwanger-software&#46;com/fw/AC_Clip24&#46;jpg[/img:2l6udlk9]\n\n[img:2l6udlk9]http&#58;//www&#46;atzwanger-software&#46;com/fw/AC_Clip25&#46;jpg[/img:2l6udlk9]", "time": "06:01", "topic": "A U T O CODE for FW", "username": "Otto" } ]
A U T O CODE for FW
[ { "date": "2014-10-02", "forum": "FiveWin for Harbour/xHarbour", "text": "It is magnificent", "time": "20:38", "topic": "A U T O CODE for FW", "username": "cnavarro" } ]
A U T O CODE for FW
[ { "date": "2007-04-06", "forum": "FiveWin for Harbour/xHarbour", "text": "The best Easter for all my good friends of this forum, thanks for your help and support.", "time": "18:51", "topic": "A Very Happy Easter to All!!!!", "username": "jose_murugosa" } ]
A Very Happy Easter to All!!!!
[ { "date": "2007-04-06", "forum": "FiveWin for Harbour/xHarbour", "text": "Happy Easter!\n\nEMG", "time": "19:23", "topic": "A Very Happy Easter to All!!!!", "username": "Enrico Maria Giordano" } ]
A Very Happy Easter to All!!!!
[ { "date": "2007-04-07", "forum": "FiveWin for Harbour/xHarbour", "text": "Happy Easter Everybody.", "time": "00:15", "topic": "A Very Happy Easter to All!!!!", "username": "Jeff Barnes" } ]
A Very Happy Easter to All!!!!
[ { "date": "2007-04-07", "forum": "FiveWin for Harbour/xHarbour", "text": "Also happy easter to you all.", "time": "16:14", "topic": "A Very Happy Easter to All!!!!", "username": "driessen" } ]
A Very Happy Easter to All!!!!
[ { "date": "2007-04-08", "forum": "FiveWin for Harbour/xHarbour", "text": "Happy Easter to all of you <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> \n\nRegards,", "time": "02:23", "topic": "A Very Happy Easter to All!!!!", "username": "Kleyber" } ]
A Very Happy Easter to All!!!!
[ { "date": "2007-04-08", "forum": "FiveWin for Harbour/xHarbour", "text": "Happy Easter !!!", "time": "09:58", "topic": "A Very Happy Easter to All!!!!", "username": "Massimo Linossi" } ]
A Very Happy Easter to All!!!!
[ { "date": "2007-04-08", "forum": "FiveWin for Harbour/xHarbour", "text": "Happy Easter to all !!! \n<!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->", "time": "14:37", "topic": "A Very Happy Easter to All!!!!", "username": "Eugeniusz Owsiak" } ]
A Very Happy Easter to All!!!!
[ { "date": "2016-12-29", "forum": "FiveWin for Harbour/xHarbour", "text": "This is a very strange problem, and I first discovered it in 16.12. Rebuilding in 16.11 DOES NOT give the same result. \n\nI cannot replicate the problem on my computer, but have seen it occur on two of my clients' computers.\n\nIt only occurs in one area of the application.\n\nI have a multi-folder dialog. There is a button bar on the top of the dialog, and there are button bars on each of the folders. The bitmaps are all stored in the .rc file. Most of these bitmaps are used in multiple areas of the program, and display correctly.\n\nPreviously, and even on the current version on my computer, everything displays correctly. However, if I take the exact same program and place it on a client computer ( and this occurs at two different locations ), when the dialog appears, all of the bitmaps are identical, and consist of what looks like a blue and yellow shield ( like you might see for an anti-virus program ). That bmp is not part of the .rc ( which is linked into the application ).\n\nI wish I could give you some code, but I can't reproduce it on my development machine. \n\nHas anyone seen anything like this, or have any ideas. It has worked fine for years, but suddenly it pops up now.\n\nThanks for ANY ideas.\n\nTim", "time": "21:33", "topic": "A Very Strange Problem", "username": "TimStone" } ]
A Very Strange Problem
[ { "date": "2016-12-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Tim,\n\nDoes it look similar to these screenshots ?\n\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?p=196199#p196199\">viewtopic.php?p=196199#p196199</a><!-- l -->\n\n[url:1vixuevu]https&#58;//www&#46;dropbox&#46;com/sh/ctnzxlk544jaqpo/AADAfLWd0AMD7-DyqmtLAHfva?dl=0[/url:1vixuevu]", "time": "22:11", "topic": "A Very Strange Problem", "username": "Antonio Linares" } ]
A Very Strange Problem
[ { "date": "2016-12-29", "forum": "FiveWin for Harbour/xHarbour", "text": "I don't see it there. It looks like the security icon on the taskbar in Win 10, except its Blue and Yellow.\n\nIt replaces all the bitmaps and the browse. I see some strange things but this is really different.\n\nHere is how it normally looks:\n\n[img:23p4vvwt]http&#58;//www&#46;autoshopwriter&#46;com/images/ASWbmps&#46;png[/img:23p4vvwt]", "time": "22:26", "topic": "A Very Strange Problem", "username": "TimStone" } ]
A Very Strange Problem
[ { "date": "2016-12-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Tim,\n\n> Now imaging ALL bitmaps, plus the browse, being replaced by the same \"shield\" icon\n\nCould you get a screenshot ?", "time": "23:17", "topic": "A Very Strange Problem", "username": "Antonio Linares" } ]
A Very Strange Problem
[ { "date": "2016-12-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Tim,\n\nPlease do:\n\nMsgInfo( hb_compiler() )\n\nand let us know what Visual C++ you are using, thanks", "time": "23:21", "topic": "A Very Strange Problem", "username": "Antonio Linares" } ]
A Very Strange Problem
[ { "date": "2016-12-29", "forum": "FiveWin for Harbour/xHarbour", "text": "The problem only occurs on other machines so I can't replicate it.\n\nI'm using Harbour / MSVC 2015. I don't know if it happens with other builds. That is the place I observe it.\n\nTim", "time": "23:24", "topic": "A Very Strange Problem", "username": "TimStone" } ]
A Very Strange Problem
[ { "date": "2016-12-29", "forum": "FiveWin for Harbour/xHarbour", "text": "OK ... here is the bad screen ..\n\n[img:1xdrkkke]http&#58;//autoshopwriter&#46;com/images/BadBmp&#46;PNG[/img:1xdrkkke]", "time": "23:43", "topic": "A Very Strange Problem", "username": "TimStone" } ]
A Very Strange Problem
[ { "date": "2016-12-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Tim,\n\nPlease let me know what hb_compiler() shows with your VS2015 build, thanks", "time": "16:37", "topic": "A Very Strange Problem", "username": "Antonio Linares" } ]
A Very Strange Problem
[ { "date": "2016-12-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Microsoft Visual C++ 19.0.23506 (32 bit )\n\nMy Harbour build is dated April 2016 and it is one you provided.", "time": "17:27", "topic": "A Very Strange Problem", "username": "TimStone" } ]
A Very Strange Problem
[ { "date": "2016-12-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Tim,\n\nthanks\n\nwe are reviewing all our recent changes to find where such problem may come from", "time": "19:11", "topic": "A Very Strange Problem", "username": "Antonio Linares" } ]
A Very Strange Problem
[ { "date": "2017-01-03", "forum": "FiveWin for Harbour/xHarbour", "text": "Thank you. I'm holding an update release hoping this problem can be located quickly. I'd love to include 16.12 features but am stuck at 16.11.\n\nTim", "time": "17:45", "topic": "A Very Strange Problem", "username": "TimStone" } ]
A Very Strange Problem
[ { "date": "2007-12-01", "forum": "Bugs report & fixes / Informe de errores y arreglos", "text": "DEFINE FONT ofont1 name \"MS Sans Serif\" SIZE 0,-12 \n\noTree:bChanged = { ||oitem:=otree:getselected(),oitem:add(\"Show Chinesse words&#26174;&#31034;&#27721;&#23383;\")}\notree:setfont(ofont1)\n\n// otree of a dialog, \n\nThis works . \n\nIf font changes to \"arial\" will cause wrong display words . \n\nIf otree of a window or of a dialog from source code, will work.\n\nShuming Wang", "time": "04:07", "topic": "A Way of Treeview of odlg add item Chinese words", "username": "ShumingWang" } ]
A Way of Treeview of odlg add item Chinese words
[ { "date": "2008-05-23", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi,\r\n\r\nThis is my simple test using XMLDOM:\r\n\r\nI have instaled Windows Server 2003 SP2 e .NET 1.0 e 2.0 and SOAP Toolkit 3.0.\r\n\r\n[code:wixjr68p]\n#include \"FiveWin&#46;ch\"\n\nFunction main&#40;&#41;\n\n local RespText, objXMLHTTP\n\n oXMLDoc &#58;= TOLEAUTO&#40;&#41;&#58;New&#40;\"Microsoft&#46;XMLDOM\"&#41;\n \n // Allow the document to complete loading\n oXMLDoc&#58;async &#58;= &#46;f&#46;\n\n lSuccess &#58;= oXMLDoc&#58;load&#40; \"books&#46;xml\" &#41;\n\n x &#58;= oXMLDoc&#58;getElementsByTagName&#40; \"book\" &#41;\n y &#58;= oXMLDoc&#58;getElementsByTagName&#40; \"author\" &#41;\n\n for i = 1 to x&#58;length\n agendamentoDetails &#58;= x\n ? agendamentoDetails&#58;Item&#40;i-1&#41;&#58;NodeName + \" = \" + agendamentoDetails&#58;Item&#40;i-1&#41;&#58;Text\n ? y&#58;Item&#40;i-1&#41;&#58;Text\n next\n\n return nil\n[/code:wixjr68p]\n\nA XML table:\n[code:wixjr68p]\n<?xml version=\"1&#46;0\" encoding=\"ISO-8859-1\"?>\n<bookstore>\n <book category=\"COOKING\">\n <title lang=\"en\">Everyday Italian</title>\n <author>Giada De Laurentiis</author>\n <year>2005</year>\n <price>30&#46;00</price>\n </book>\n <book category=\"CHILDREN\">\n <title lang=\"en\">Harry Potter</title>\n <author>J K&#46; Rowling</author>\n <year>2005</year>\n <price>29&#46;99</price>\n </book>\n <book category=\"WEB\">\n <title lang=\"en\">XQuery Kick Start</title>\n <author>James McGovern</author>\n <year>2003</year>\n <price>49&#46;99</price>\n </book>\n <book category=\"WEB\">\n <title lang=\"en\">Learning XML</title>\n <author>Erik T&#46; Ray</author>\n <year>2003</year>\n <price>39&#46;95</price>\n </book>\n <book>\n <title lang=\"en\">Learning XML</title>\n <author>Erik T&#46; Ray</author>\n <year>2003</year>\n <price>39&#46;95</price>\n </book>\n</bookstore>\n[/code:wixjr68p]\r\n\r\nPS: Not tested in other Windows versions.", "time": "04:29", "topic": "A XMLDOM simple sample", "username": "Rochinha" } ]
A XMLDOM simple sample
[ { "date": "2008-05-23", "forum": "FiveWin for Harbour/xHarbour", "text": "Rochinha,\r\n\r\nThanks! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->", "time": "12:00", "topic": "A XMLDOM simple sample", "username": "Antonio Linares" } ]
A XMLDOM simple sample
[ { "date": "2008-05-29", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Rochinha\":1tw1msgt]Hi,\n\nThis is my simple test using XMLDOM:\n\nI have instaled Windows Server 2003 SP2 e .NET 1.0 e 2.0 and SOAP Toolkit 3.0.\n\n[code:1tw1msgt]\n#include \"FiveWin&#46;ch\"\n\nFunction main&#40;&#41;\n\n local RespText, objXMLHTTP\n\n oXMLDoc &#58;= TOLEAUTO&#40;&#41;&#58;New&#40;\"Microsoft&#46;XMLDOM\"&#41;\n \n // Allow the document to complete loading\n oXMLDoc&#58;async &#58;= &#46;f&#46;\n\n lSuccess &#58;= oXMLDoc&#58;load&#40; \"books&#46;xml\" &#41;\n\n x &#58;= oXMLDoc&#58;getElementsByTagName&#40; \"book\" &#41;\n y &#58;= oXMLDoc&#58;getElementsByTagName&#40; \"author\" &#41;\n\n for i = 1 to x&#58;length\n agendamentoDetails &#58;= x\n ? agendamentoDetails&#58;Item&#40;i-1&#41;&#58;NodeName + \" = \" + agendamentoDetails&#58;Item&#40;i-1&#41;&#58;Text\n ? y&#58;Item&#40;i-1&#41;&#58;Text\n next\n\n return nil\n[/code:1tw1msgt]\n\nA XML table:\n[code:1tw1msgt]\n<?xml version=\"1&#46;0\" encoding=\"ISO-8859-1\"?>\n<bookstore>\n <book category=\"COOKING\">\n <title lang=\"en\">Everyday Italian</title>\n <author>Giada De Laurentiis</author>\n <year>2005</year>\n <price>30&#46;00</price>\n </book>\n <book category=\"CHILDREN\">\n <title lang=\"en\">Harry Potter</title>\n <author>J K&#46; Rowling</author>\n <year>2005</year>\n <price>29&#46;99</price>\n </book>\n <book category=\"WEB\">\n <title lang=\"en\">XQuery Kick Start</title>\n <author>James McGovern</author>\n <year>2003</year>\n <price>49&#46;99</price>\n </book>\n <book category=\"WEB\">\n <title lang=\"en\">Learning XML</title>\n <author>Erik T&#46; Ray</author>\n <year>2003</year>\n <price>39&#46;95</price>\n </book>\n <book>\n <title lang=\"en\">Learning XML</title>\n <author>Erik T&#46; Ray</author>\n <year>2003</year>\n <price>39&#46;95</price>\n </book>\n</bookstore>\n[/code:1tw1msgt]\n\nPS: Not tested in other Windows versions.[/quote:1tw1msgt]\r\n\r\nHola Rochina,\r\n\r\nPrecisamente estoy necesitando trabajar con xmldom y web services, tu ejemplo es muy interesante para empezar, pero al compilarlo me da este error:\r\nUNRESOLVED EXTERNAL \"_HB_FUN___DBGENTRY\" ....\r\n que puede causarlo?", "time": "13:39", "topic": "A XMLDOM simple sample", "username": "jose_murugosa" } ]
A XMLDOM simple sample
[ { "date": "2008-05-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Me respondo a mi mismo....\r\n\r\nDebe compilarse junto a la lib de xharbour debug.lib.", "time": "13:49", "topic": "A XMLDOM simple sample", "username": "jose_murugosa" } ]
A XMLDOM simple sample
[ { "date": "2008-05-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Jose,\r\n\r\nThe sample work with you?\r\n\r\nSee other sample in <!-- m --><a class=\"postlink\" href=\"http://www.5volution.com/forum/xmlmerge.zip\">http://www.5volution.com/forum/xmlmerge.zip</a><!-- m -->\r\n\r\nThis sample merge a XML data with a Word document via OLE and XMLDOM.", "time": "22:29", "topic": "A XMLDOM simple sample", "username": "Rochinha" } ]
A XMLDOM simple sample
[ { "date": "2008-05-31", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Rochinha\":2fnfvghu]Jose,\n\nThe sample work with you?\n\nSee other sample in <!-- m --><a class=\"postlink\" href=\"http://www.5volution.com/forum/xmlmerge.zip\">http://www.5volution.com/forum/xmlmerge.zip</a><!-- m -->\n\nThis sample merge a XML data with a Word document via OLE and XMLDOM.[/quote:2fnfvghu]\r\n\r\nSi, el ejemplo anterior me ha funcionado perfectamente, inclusive modificandolo un poco he logrado ver en un browse la información e imprimirla con la clase treport.\r\n\r\nProbaré este que me sugieres y luego te cuento.\r\n\r\nMuchas gracias por tus aportes.", "time": "02:08", "topic": "A XMLDOM simple sample", "username": "jose_murugosa" } ]
A XMLDOM simple sample
[ { "date": "2008-06-02", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Rochinha\":3g2r0058]Jose,\n\nThe sample work with you?\n\nSee other sample in <!-- m --><a class=\"postlink\" href=\"http://www.5volution.com/forum/xmlmerge.zip\">http://www.5volution.com/forum/xmlmerge.zip</a><!-- m -->\n\nThis sample merge a XML data with a Word document via OLE and XMLDOM.[/quote:3g2r0058]\r\n\r\nEstoy teniendo este error con el xmlmerge.exe:\r\n\r\nApplication\r\n===========\r\n Path and name: C:\\xmlmerge\\XMLMERGE.EXE (32 bits)\r\n Size: 1,111,552 bytes\r\n Time from start: 0 hours 0 mins 0 secs \r\n Error occurred at: 06/01/08, 20:55:33\r\n Error description: Error BASE/1081 Argument error: +\r\n Args:\r\n [ 1] = C C:\\xmlmerge\\\r\n [ 2] = U \r\n\r\nStack Calls\r\n===========\r\n Called from: => OLEMERGE(42)\r\n\r\nSystem\r\n======\r\n CPU type: Intel(R) Pentium(R) 4 CPU 3.06GHz 3066 Mhz\r\n Hardware memory: 504 megs\r\n\r\n Free System resources: 90 %\r\n GDI resources: 90 %\r\n User resources: 90 %\r\n\r\n Compiler version: Harbour Alpha build 45.0 Intl. (Flex)\r\n Windows version: 5.1, Build 2600 Service Pack 2\r\n\r\n Windows total applications running: 0\r\n\r\nVariables in use\r\n================\r\n Procedure Type Value\r\n ==========================\r\n OLEMERGE\r\n Local 1: U \r\n Local 2: U \r\n Local 3: L .T.\r\n Local 4: C \"C:\\xmlmerge\"\r\n Local 5: U \r\n Local 6: U \r\n Local 7: U \r\n Local 8: U \r\n Local 9: U \r\n Local 10: U \r\n Local 11: U \r\n Local 12: U \r\n Local 13: C \"C:\\xmlmerge\"\r\n Local 14: U \r\n Local 15: U \r\n Local 16: N 0\r\n\r\nLinked RDDs\r\n===========\r\n DBF\r\n DBFFPT\r\n DBFBLOB\r\n DBFNTX\r\n\r\nDataBases in use\r\n================\r\n\r\nClasses in use:\r\n===============\r\n 1 HBCLASS\r\n 2 ERROR\r\n 3 HBOBJECT\r\n 4 TREG32\r\n\r\nMemory Analysis\r\n===============\r\n 107 Static variables\r\n\r\n Dynamic memory consume:\r\n Actual Value: 0 bytes\r\n Highest Value: 0 bytes\r\n\u001a", "time": "00:57", "topic": "A XMLDOM simple sample", "username": "jose_murugosa" } ]
A XMLDOM simple sample
[ { "date": "2008-06-02", "forum": "FiveWin for Harbour/xHarbour", "text": "Jose,\r\n\r\nsee how to use XMLMerge.exe:\r\n\r\n[i:1qxaetfj]XMLMerge arquivo.doc arquivo.xml[/i:1qxaetfj]\r\n\r\nExample: \r\n[i:1qxaetfj]XMLMerge teste.rtf teste.xml[/i:1qxaetfj]\r\n\r\nTESTE.XML code:\r\n[code:1qxaetfj]\n<?xml version=\"1&#46;0\" encoding=\"ISO-8859-1\"?> \n<olemerge> \n\n <campos>nome</campos> \n <campos>email</campos> \n <campos>site</campos> \n\n <dados>Jose Carlos da rocha</dados> \n <dados>irochinha@itelefonica&#46;com&#46;br</dados> \n <dados>http&#58;//www&#46;5volution&#46;com</dados> \n\n</olemerge>\n[/code:1qxaetfj]\n\nOpen a new word document and put this lines:\n[code:1qxaetfj]\nHello,\n\nMy name is &#NOME#& and my email is &#EMAIL#&\n\nVisite my website at &#SITE#&&#46;\n[/code:1qxaetfj]\r\n\r\nSave with name TESTE.DOC or TESTE.RTF and run the XMLMerge.exe.", "time": "03:59", "topic": "A XMLDOM simple sample", "username": "Rochinha" } ]
A XMLDOM simple sample
[ { "date": "2008-06-02", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello Rochinha,\r\n\r\nI would like to have a look on your xmldom example but I get this error:\r\n\r\n\r\nPath and name: C:\\FWH\\samples\\xmldom\\XMLMERGE.EXE (32 bits)\r\n Size: 1,111,552 bytes\r\n Time from start: 0 hours 0 mins 0 secs \r\n Error occurred at: 06/02/08, 19:57:59\r\n Error description: Error BASE/1081 Argument error: +\r\n Args:\r\nRegards,\r\nOtto", "time": "18:59", "topic": "A XMLDOM simple sample", "username": "Otto" } ]
A XMLDOM simple sample
[ { "date": "2008-06-03", "forum": "FiveWin for Harbour/xHarbour", "text": "Otto,\r\n\r\nThe XMLMerge is a command line tool.\r\n\r\nYou need pass two parameters:\r\n\r\n[i:3i3nknjl]XMLMerge arquivo.doc arquivo.xml[/i:3i3nknjl]\r\n\r\nOtherwise, i rebuild the XMLMerge, download it in <!-- m --><a class=\"postlink\" href=\"http://www.5volution.com/forum/xmlmerge.zip\">http://www.5volution.com/forum/xmlmerge.zip</a><!-- m -->", "time": "13:35", "topic": "A XMLDOM simple sample", "username": "Rochinha" } ]
A XMLDOM simple sample
[ { "date": "2010-10-01", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\n\nto place any Control inside a Explorerbar-panel, I have to adjust the Height,\nto get empty space for the embedded Controls.\nMy Solution for the Moment : adding empty Links, until I reach the needed Height..\nIs there a better way how to do it ?\n\n[img:1jcwmq5j]http&#58;//www&#46;pflegeplus&#46;com/pictures/panel5&#46;jpg[/img:1jcwmq5j]\n\nBest Regards\nUwe <!-- s:roll: --><img src=\"{SMILIES_PATH}/icon_rolleyes.gif\" alt=\":roll:\" title=\"Rolling Eyes\" /><!-- s:roll: -->", "time": "01:14", "topic": "A better Solution to adjust Panel-Height / Explorerbar ?", "username": "ukoenig" } ]
A better Solution to adjust Panel-Height / Explorerbar ?