messages
listlengths 1
1
| topic
stringlengths 2
60
|
---|---|
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\r\ncould you please show how we could automatically check how often the delimiter is present?\r\n\r\nThanks in advance\r\nOtto\r\n\r\nPS: O.T. I use so many times for checking if a variable is empty\r\nthis code:\r\nif len(ALLTRIM(cText) = 0\r\nIs there a build in function existing?",
"time": "07:52",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "Otto"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto,\r\n\r\nUse StrCharCount( cText, cChar ). Its also implemented in C code so it is very fast. Example:\r\n[code:bol2xibg]\n#include \"FiveWin.ch\"\n\nfunction Main()\n\n local cText := \"C813354668;1063567698;0160 / 1853735;E+;NX;07.07.08;18:58:11;01732644433;VF;;00:28;0;0,0823;0,0000;NX\"\n local n, cResult := \"\", nTimes := StrCharCount( cText, \";\" ) + 1\n \n for n = 1 to nTimes\n cResult += StrToken( cText, n, \";\" ) + CRLF\n next \n \n MsgInfo( cResult )\n \nreturn nil \n[/code:bol2xibg]",
"time": "07:58",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "Antonio Linares"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":37vkogfj]Otto,\nUse StrCharCount( cText, cChar ). ...[/quote:37vkogfj]\r\n\r\nAntonio,\r\n Can cChar length be bigger than 1? For example StrCharCount(cText, CRLF)\r\n\r\n TIA",
"time": "08:55",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "hua"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto,\r\n\r\n[quote:2jj86d5x]PS: O.T. I use so many times for checking if a variable is empty\nthis code:\nif len(ALLTRIM(cText) = 0\nIs there a build in function existing?[/quote:2jj86d5x]\r\n\r\nMaybe you can use this? \r\n[code:2jj86d5x]if empty(cText)\n...[/code:2jj86d5x]",
"time": "09:44",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "gkuhnert"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hua,\r\n\r\nNo, just one char.\r\n\r\nBut you could use StrTran() to replace CRLFs into \";\" or similar",
"time": "09:54",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "Antonio Linares"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you very much erverybody for his help.\r\n\r\nWith the informations, i can solve the problem and help\r\nthe customer today.\r\n\r\nBest Regrds\r\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "10:07",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "ukoenig"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\r\n\r\nonce again, thank you very much for the help.\r\nWith your solutions, everything is solved and works perfect now.\r\nMy customer is happy.\r\n\r\nRegards\r\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "11:37",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "ukoenig"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\r\ni got a customer response :\r\n\r\nThis month, he had to convert : 181000 Textlines / 12,3 MB\r\nWith the old functions before, the used converting-time\r\nwas round about => 8 Minutes.\r\n\r\nWith the new functions ( on a Intel Pentium 4 ),\r\ni used the very nice sample from nageswaragunupudi,\r\nvery fast, only 1.4 Seconds.\r\n\r\nGreat !!!\r\n\r\nRegards\r\nUwe",
"time": "12:50",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "ukoenig"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "good nas!!",
"time": "13:31",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "Silvio"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Otto\r\n\r\n> \"PS: O.T. I use so many times for checking if a variable is empty\r\nthis code:\r\nif len(ALLTRIM(cText) = 0\r\nIs there a build in function existing?\"\r\n\r\nThe following should work:\r\n\r\n[code:3ldzg9dm]IF Empty( cText )[/code:3ldzg9dm]\r\n\r\nAlso covers other data types\r\n\r\nRegards\r\n\r\nxProgrammer",
"time": "13:45",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "xProgrammer"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe,\r\n\r\nIf you avoid the use of the AEval(), I would say that you can get a better time <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\r\n\r\nBut if the customer is happy with it, then leave it as it is <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "17:37",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "Antonio Linares"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr Uwe\r\n\r\n>\r\nThis month, he had to convert : 181000 Textlines / 12,3 MB \r\nWith the old functions before, the used converting-time \r\nwas round about => 8 Minutes. \r\n\r\nWith the new functions ( on a Intel Pentium 4 ), \r\ni used the very nice sample from nageswaragunupudi, \r\nvery fast, only 1.4 Seconds.\r\n>\r\n\r\nGlad the sample was useful to you. But I am surprised at the speed you mentioned. As I arleady said while posting the sample, it was not optimised for speed. I meant it to demonstrate that what you wanted could be done. According my tests here 40,000 rows took more than 2 seconds. 180,000 rows might have taken more time, unless you removed the field width checking loop. Anyway glad that the customer is happy with the speeds.\r\n\r\nThe program has 3 main steps.\r\n1. Parsing the data\r\n2. Checking for maximum field widths\r\n3. Writing DBF.\r\n\r\nStep 1 takes the least time. Can be optimized further but the benefits will not be perceptible and optimization excercise would only be of academic interest.\r\nStep 2 and 3 are the real time killers.\r\n\r\nIf we know in advance the safe maximum field lengths of each field, then I would totally avoid steps 1 and 2. I would straight away copy from buffer to buffer in a C routine, building an image of DBF file and DBF header and written in raw mode using fcreate and fwrite. That would really be the fastest way.\r\n\r\nI may post the alternative purely for academic interest.\r\n\r\nMr Antonio\r\n\r\n>>\r\nIf you avoid the use of the AEval(), I would say that you can get a better time\r\n>>\r\n \r\nIs it so? I have been all the time under the impression that AEval would be a bit faster than For Next loop with index variable being maitained at Harbour level. Is for..next loop really faster than AEval ? Thanks in advance for clarification on this issue.",
"time": "02:12",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "nageswaragunupudi"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "hello mr. nageswaragunupudi,\r\n\r\ni got these informations after a phonecall with my customer.\r\nFor my tests, i could only use 1000 textlines ( a part of the file ).\r\nThe complete, converted textfile contains all phonecalls of 1 month.\r\n\r\nI will ask him again tomorrow, to count the running time exactly.\r\nAs well, i will double the testfile a few times, to get many lines.\r\nI do the test on my 2 different computers and stop the time there.\r\n\r\nThe result ( the exact time with 2 var-defines start and end )\r\n\r\nMy 1. computer :\r\n-------------------\r\nIntel Pentium\r\nD 820 Dual Core\r\n2,8 GHz / 800 Mhz FSB\r\n\r\nFor 100 000 Textlines the exact running-time was 4,2 Seconds \r\n---------------------------------------------------------------------------\r\nThe original structure has shown 1 empty line between two textlines.\r\nThat means, there have been 50 000 converted lines and 50 000 emty lines in relation to the running time.\r\n\r\nI am not shure, if the processor of my custumer is much faster.\r\nMy time seems to be more realistic.\r\nbut even 4.2 seconds is a very good time.\r\n\r\nGreetings from Germany\r\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "02:50",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "ukoenig"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":3llkv0c3]\nNo, just one char.\n\nBut you could use StrTran() to replace CRLFs into \";\" or similar[/quote:3llkv0c3]\r\n\r\nThanks for the idea Antonio. I've been using the following to achieve the same purpose. Maybe it's not as optimized as StrCharCount() because of the do..while loop.\r\n\r\n[code:3llkv0c3]function CountCrLf(cStr)\n local num := 1, nret := 0\n // Desc: Count the no. of occurences of CRLF (Each line is terminated with a CRLF)\n // AtNum() is a function from ct.lib. \n do while atnum(CRLF, cStr, num++) != 0\n nRet++\n enddo\nreturn nRet\n[/code:3llkv0c3]",
"time": "02:55",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "hua"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hua,\r\n\r\nStrCharCount() is implemented in C, which means \"machine code\" generation. No \"virtual machine\" intervention at all.",
"time": "07:25",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "Antonio Linares"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Rao,\r\n\r\nA simple test:\r\n[code:25r22fl7]\n#include \"FiveWin.ch\"\n\nfunction Main()\n\n local a := Array( 1000000 ), n\n local nStep1 := GetTickCount(), nStep2, nStep3\n\n AEval( a, { || Date() } )\n nStep2 = GetTickCount()\n\n for n = 1 to 1000000\n Date()\n next \n\n nStep3 = GetTickCount()\n\n MsgInfo( \"AEval() ...\" + Str( nStep2 - nStep1 ) + CRLF + ;\n \"for next ... \" + Str( nStep3 - nStep2 ) )\n\nreturn nil\n[/code:25r22fl7]\r\nThe technical explanation is that to evaluate a codeblock a new \"virtual machine\" frame has to be built (increase and decrease of the stack). Using a for next just keeps using the same virtual machine frame. The calling to Date() from both, also forces a new virtual machine frame, but it is common for both ways.",
"time": "07:26",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "Antonio Linares"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "BTW, lets compare with the above example Harbour and xHarbour speed:\r\n\r\n1. Harbour:\r\n\r\n AEval ... 421\r\n for next ... 265\r\n\r\n2. xHarbour:\r\n\r\n AEval ... 749\r\n for next ... 483\r\n\r\nSo Uwe, your application built using Harbour will be even faster <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "07:30",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "Antonio Linares"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\r\n\r\nWow, this is disappointing--two functions tested and both much slower with xHarbour. I would have guessed that they were both almost the same speed.\r\n\r\nAny ideas why this is?\r\n\r\nIt also makes you wonder if two out of two was just a coincindence, or is xHarbour much slower overall?\r\n\r\nJames",
"time": "07:58",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "James Bott"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr Antonio\r\n\r\n>\r\nhe technical explanation is that to evaluate a codeblock a new \"virtual machine\" frame has to be built (increase and decrease of the stack). Using a for next just keeps using the same virtual machine frame. The calling to Date() from both, also forces a new virtual machine frame, but it is common for both ways.\r\n>\r\n\r\nThanks for the clarification. I shall keep this in mind while coding in future. However much I am aware of this, I wonder why does it not strike my mind when I am writing my code.\r\n\r\n>\r\nyour application built using Harbour will be even faster\r\n>\r\n\r\nI am really surprised to see the benchmarks. To be honest let me confess that I have been under the \"impression\" that xHarbour is faster than harbour, mainly going by the claims in the xharbour website. I never checked by myself. I wouldn't be surprised if many of my professional colleagues share similar opinion, rightly or wrongly. While i am not interested in initiating a debate on this issue, I realise that we better do our own benchmarks and then decide by ourselves.",
"time": "07:58",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "nageswaragunupudi"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2008-08-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "According to Przemek (current Harbour tech leader), Harbour is much faster than xHarbour, mainly because it is better implemented internally.\r\n\r\nLess people working on it and better internal organization (no rush to implement features) resulted in a faster virtual machine execution and smaller EXEs.\r\n\r\nCuriously enough, though we are technical people, most of you consider xHarbour as a faster compiler. Just \"hype\" caused by the \"marketing\" and \"flock follow\" (aka \"lamb\") effect... <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "08:09",
"topic": "A converter from text-file ( with delimiters ) to DBF ?",
"username": "Antonio Linares"
}
] |
A converter from text-file ( with delimiters ) to DBF ?
|
[
{
"date": "2006-02-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "TMdiFrame:\n\n1) It seems that the correct default colors for an MDI frame window are\n\n[code:1kktky64]nClrFore := GetSysColor( COLOR_WINDOWTEXT ), nClrBack := GetSysColor( COLOR_APPWORKSPACE ),;[/code:1kktky64]\n\ninstead of the current\n\n[code:1kktky64]nClrFore := CLR_BLACK, nClrBack := GetSysColor( COLOR_WINDOW ),;[/code:1kktky64]\n\n2) We get a better look of the window icon if\n\n[code:1kktky64]SendMessage( ::hWnd, WM_SETICON, 0, oIcon:hIcon )[/code:1kktky64]\n\nis commented out.\n\nTMdiChild:\n\n1) As for TMdiFrame, it is better to comment out\n\n[code:1kktky64]::SendMsg( WM_SETICON, 0, oIcon:hIcon )[/code:1kktky64]\n\nEMG",
"time": "19:33",
"topic": "A coupe of little changes for TMdiFrame and TMdiChild",
"username": "Enrico Maria Giordano"
}
] |
A coupe of little changes for TMdiFrame and TMdiChild
|
[
{
"date": "2006-02-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nImplemented,\n\nmany thanks!",
"time": "12:03",
"topic": "A coupe of little changes for TMdiFrame and TMdiChild",
"username": "Antonio Linares"
}
] |
A coupe of little changes for TMdiFrame and TMdiChild
|
[
{
"date": "2006-02-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you!\n\nEMG",
"time": "12:38",
"topic": "A coupe of little changes for TMdiFrame and TMdiChild",
"username": "Enrico Maria Giordano"
}
] |
A coupe of little changes for TMdiFrame and TMdiChild
|
[
{
"date": "2010-10-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nI finished my new Explorerbar-solution ( changed from Folder-selections, I did before )\nMaybe it might be interesting to show, how a Explorerbar can be used as well.\nAfter many Tests and calculations, I got my final Result with a complete overview\nof possible Settings and Selections.\nNo exit-buttons are needed in a Sub-dialog. A click on any Symbol inside the Explorerbar closes the\nactivated Dialog and opens the new one. The Explorer-bar-position ( righthand side ) is calculated from \nthe screensize, to work on other screen-resolutions as well. \nA combination of vertical and horizontal Selections is included, also it shows different Gradients used in one Panel.\nIn case someone needs more Informations, I can explain in details how to do it. \nI still have to wait for the next FWH-release, to finish the new TFolderEx-Tool. \nAfter that, You can test by Yourself how it works. \n\n[img:37foqkko]http://www.pflegeplus.com/pictures/fldsample1.jpg[/img:37foqkko]\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "13:25",
"topic": "A different Explorerbar-sample",
"username": "ukoenig"
}
] |
A different Explorerbar-sample
|
[
{
"date": "2010-10-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Nice Job. =]",
"time": "14:31",
"topic": "A different Explorerbar-sample",
"username": "lailton.webmaster"
}
] |
A different Explorerbar-sample
|
[
{
"date": "2010-10-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "With some calculations, it works also in Horizontal-direction :\n\n[img:2432ox4e]http://www.pflegeplus.com/pictures/fldsample2.jpg[/img:2432ox4e]\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "16:07",
"topic": "A different Explorerbar-sample",
"username": "ukoenig"
}
] |
A different Explorerbar-sample
|
[
{
"date": "2017-05-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "On a Xbrowse I have some fields ( Qta,Desc,Price,Importe) \n\nI did this table for a restaurant application.\n\nNow let me tell you what is my problem \n\nWhen customers pay the bill they may want to pay \"alla romana\" ie everyone who is sitting on the same table can only pay for the products he has personally taken.\nI can not find a way to do this\n\nThat is, if the total account is 45 euros and the customers are 8 I have to pay to each one only the products he has consumed\n\nHow can this be done?",
"time": "16:18",
"topic": "A different payment",
"username": "Silvio.Falconi"
}
] |
A different payment
|
[
{
"date": "2017-05-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Just a Idea :\n\nYou have the Xbrowse wich will have all articles that are served on the table.\n\nI would think of adding into the dialog besides the xbrowse as many buttons as that the customer alow to pay pro table (In Belgium often this is not allowed <!-- s:wink: --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\":wink:\" title=\"Wink\" /><!-- s:wink: --> )\nOf cource, you can also just use one button !\n\nSo assume 8 people, you have 8 small buttons. You select the articles from the browse and hit button-1 for person 1\nYou do this with all persons until all items on the browse are selected. Since you have 8 buttons, it is easy to select again a item if it was cunsumed by someone else.\n\nAfther all is selected, you print one large bill, divided into 8 smaller onces for eacht person to pay.\n\nI hope you understand the idea...",
"time": "16:47",
"topic": "A different payment",
"username": "Marc Venken"
}
] |
A different payment
|
[
{
"date": "2017-05-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "the problem is also I cannot use check on the xbrowse because I making a Touch Ecr and the final user not use mouse and keyboard",
"time": "17:41",
"topic": "A different payment",
"username": "Silvio.Falconi"
}
] |
A different payment
|
[
{
"date": "2017-05-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Silvio:\n\nAn other idea, You must take the orders by table and person, for example\n\n18-1 table 18 person 1 Chicken 50.00\n18-2 table 18 person 2 only coffe 10.00\nTotal per table 60.00\n\nWith this, in xbrows you can make a tree and get the total by person and\nby table.\n\nRegards",
"time": "19:37",
"topic": "A different payment",
"username": "Armando"
}
] |
A different payment
|
[
{
"date": "2017-05-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Silvio.Falconi\":hj2ykd7u]the problem is also I cannot use check on the xbrowse because I making a Touch Ecr and the final user not use mouse and keyboard[/quote:hj2ykd7u]\n\nNever used touchscreen, but can't you select items in the browse with a fingertip and than hit a button with a finger ? No Mouse/keyboard is needed then.\n\nThe problem is that you don't know in front if the table is going to split into person by person bill, so you need to seperate the list when they ask the bill.\n\nIs the Touch Ecr a hardware handheld like a Ipad or so ?",
"time": "22:44",
"topic": "A different payment",
"username": "Marc Venken"
}
] |
A different payment
|
[
{
"date": "2017-05-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Who use touch ECR, user or customer?\n- if user,\n you can \n 1 you must have split button for split the item 1 by 1 (if any more quantity than 1)\n 2 select the item to pay ( add check column in xbrowse ), you will know the total.\n 3 let the user to press pay button and settle only they select.\n- if customer \n 1 you must post item by item, in case of separated bill.\n 2,3 the same as above \nHope it help.",
"time": "05:03",
"topic": "A different payment",
"username": "dutch"
}
] |
A different payment
|
[
{
"date": "2017-05-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ecr is user from final user \n\nthis a first beta release !!\n\n[img:3lunwwrb]https://s10.postimg.org/k8xzno34p/jpg.jpg[/img:3lunwwrb]",
"time": "00:19",
"topic": "A different payment",
"username": "Silvio.Falconi"
}
] |
A different payment
|
[
{
"date": "2017-05-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This is my POS screen. You can see what's function you should have.\n[size=150:1y9h1aa9]1.Items function[/size:1y9h1aa9]\n- split items for which quantity more than 1.\n[img:1y9h1aa9]https://preview.ibb.co/m4Rg2a/Items.png[/img:1y9h1aa9]\n[size=150:1y9h1aa9]2.Table function[/size:1y9h1aa9]\n- split bill (separated bill) and then you can move the item from 1st bill to 2nd bill.\n[img:1y9h1aa9]https://preview.ibb.co/hFGg2a/Table.png[/img:1y9h1aa9]\nI hope it help.",
"time": "03:17",
"topic": "A different payment",
"username": "dutch"
}
] |
A different payment
|
[
{
"date": "2017-06-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I'm thinking to create another dialog with two xbrowse \n\n1. with all products \n2 empty \n\non the middle button ==> and <== to insert products from first xbtowse to second \n\nwhen I insert a product the procedure must erase the product on first xbrowse ( if not have a quantity >1) or change the quantity of the product\n\n\non bottom the total price and the possibility to create on print the ticket",
"time": "17:50",
"topic": "A different payment",
"username": "Silvio.Falconi"
}
] |
A different payment
|
[
{
"date": "2017-06-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Perhaps I found a method but also not run ok \n\n[img:b2ik036s]https://s1.postimg.org/oaraq2onj/CONTISEPARATI.jpg[/img:b2ik036s]\n\n\n\n\nI create two xbrowse :\n\non first I insert the ticket and on the second I put an empty array\n\nIf I use the mouse the drag and drop run ok \n\nIf I press the two button I insert on the middle of the dialog ( I draw with red circles) \n\n the procedure make error not allways but sometimes and I not found why \n\nwhere is the error ?\n\nhere the code of these buttons \n\n[code=fw:b2ik036s]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> @ <span style=\"color: #000000;\">50</span>,<span style=\"color: #000000;\">245</span> <span style=\"color: #0000ff;\">BTNBMP</span> aBtnDropBrw<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">OF</span> oDlgDivide <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">30</span>, <span style=\"color: #000000;\">30</span> <span style=\"color: #0000ff;\">PIXEL</span> Filename <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\d</span>ropin.bmp\"</span> NOBORDER ;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span> AAdd<span style=\"color: #000000;\">(</span> oLbx2:<span style=\"color: #000000;\">aArrayData</span>, oLbx:<span style=\"color: #000000;\">aArrayData</span><span style=\"color: #000000;\">[</span> oLbx:<span style=\"color: #000000;\">nAt</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">)</span>, ;<br /> ADel<span style=\"color: #000000;\">(</span> oLbx:<span style=\"color: #000000;\">aArrayData</span>, oLbx:<span style=\"color: #000000;\">nAt</span>, .t. <span style=\"color: #000000;\">)</span>, ;<br /> oLbx:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span>.t.<span style=\"color: #000000;\">)</span>, oLbx2:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span>.t.<span style=\"color: #000000;\">)</span>,;<br /> oLbx:<span style=\"color: #000000;\">setfocus</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> ,SetTotals<span style=\"color: #000000;\">(</span>oLbx,oLbx2,oDlgDivide,aVars,aVars2<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span><br /><br /><br /><br /> @ <span style=\"color: #000000;\">90</span>,<span style=\"color: #000000;\">245</span> <span style=\"color: #0000ff;\">BTNBMP</span> aBtnDropBrw<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">]</span> <span style=\"color: #0000ff;\">OF</span> oDlgDivide <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">30</span>, <span style=\"color: #000000;\">30</span> <span style=\"color: #0000ff;\">PIXEL</span> Filename <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\d</span>ropout.bmp\"</span> NOBORDER ;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span> AAdd<span style=\"color: #000000;\">(</span> oLbx:<span style=\"color: #000000;\">aArrayData</span>, oLbx2:<span style=\"color: #000000;\">aArrayData</span><span style=\"color: #000000;\">[</span> oLbx2:<span style=\"color: #000000;\">nAt</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">)</span>, ;<br /> ADel<span style=\"color: #000000;\">(</span> oLbx2:<span style=\"color: #000000;\">aArrayData</span>, oLbx2:<span style=\"color: #000000;\">nAt</span>, .t. <span style=\"color: #000000;\">)</span>, ;<br /> oLbx:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span>.t.<span style=\"color: #000000;\">)</span>, oLbx2:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span>.t.<span style=\"color: #000000;\">)</span>,;<br /> oLbx2:<span style=\"color: #000000;\">setfocus</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>,SetTotals<span style=\"color: #000000;\">(</span>oLbx,oLbx2,oDlgDivide,aVars,aVars2<span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /> </div>[/code:b2ik036s]",
"time": "15:45",
"topic": "A different payment",
"username": "Silvio.Falconi"
}
] |
A different payment
|
[
{
"date": "2008-04-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nIn a old program of mine, there is a index on\nnumeric Customer-Numbers ( CDX ).\n\nThe index is => Index on STR(number)\nindex on LTRIM(STR(number)) doesn't work.\n\nWhen you do a seek on this field ( N 5 0 )\nas a sample you seek < 5 > you have to do - - - - 5\n4 blanks + \"5\"\n\nMust i write a function for this ?\n\nRegards\n\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "11:46",
"topic": "A easy way, to do incremental seek on numeric fields ?",
"username": "ukoenig"
}
] |
A easy way, to do incremental seek on numeric fields ?
|
[
{
"date": "2008-04-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe\n\nIndex on numeric work fine\n\nindex on number to ....\n\nand then seek 5 or whatever else\n\nno problem with it, i have many numeric indexs in my app\n\nRichard",
"time": "11:51",
"topic": "A easy way, to do incremental seek on numeric fields ?",
"username": "Richard Chidiak"
}
] |
A easy way, to do incremental seek on numeric fields ?
|
[
{
"date": "2008-04-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe,\n\n[quote:2t9sdoeu]index on LTRIM(STR(number)) doesn't work.[/quote:2t9sdoeu]\nthis is normal because all index keys need to be of constant same length.\n\nMoreover it's a bad design to use numeric fields for indexing.\nThey are better used for numeric operation / calculation.\n\nIf you can't avoid it i'd take 'strzero( nVal, nLen, nDec )' for indexing and searching.\n\nRegards,\nDetlef",
"time": "11:53",
"topic": "A easy way, to do incremental seek on numeric fields ?",
"username": "Detlef Hoefner"
}
] |
A easy way, to do incremental seek on numeric fields ?
|
[
{
"date": "2008-04-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Detlef Thank you,\n\nYes it is a very old application and\nto much work to change it.\n\nI will try Strzero\n\nRegards\n\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "12:01",
"topic": "A easy way, to do incremental seek on numeric fields ?",
"username": "ukoenig"
}
] |
A easy way, to do incremental seek on numeric fields ?
|
[
{
"date": "2009-06-10",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola amigos:\nEstoy comenzando con TMySql. Agradezco lo que voy avanzando a mis colegas del foro, especialmente a Gabo, Willi y William, quienes me han apoyado para comenzar.\nHe logrado presentar una tabla utilizando FWH+xHarbour+TMySql con TxBrowse. Sin embargo (hasta hoy) noto un extraño comportamiento de xBrowse. Si se usa las flechas arriba y sobrepasa Bof(), xBrowse borra de pantalla el primer registro. Lo mismo si se usa la barra Scrol Vertical. Dejo, aquí, el codigo autocontenido, por si desean probarlo y ayudarme a depurarlo. En todos mis programas anteriores nunca se presentó el inconveniente descrito.\n\n#include \"fivewin.ch\"\n#include \"xBrowse.ch\"\n\nSTATIC oCon\n\n//----------------------------------\nFUNCTION main()\nMSGRun( \"Conectando a server-sql, espere...\", \"SOFTWARE\", ;\n {|| oCon := TMYsqlServer():new( \"localhost\", \"root\", \"xxx\", 3306)} )\n\nIF oCon:lError\n MsgStop( \"Error: No se estableció conexión, verifique y reintente...\",\"Alto\" )\n RETURN NIL\nENDIF\n\n\nIF !oCon:DBExist( \"tutor\" )\n MSGRun( \"Creando Base de Datos, aguarde...\",, {|| oCon:CreateDataBase( \"tutor\")} )\nENDIF\n\noCon:SelectDB( \"tutor\" )\nIF oCon:lError\n MsgStop( \"No se pudo seleccionar la Base de Datos...\",\"alto\" )\n RETURN NIL\nENDIF\n\n MisTablSql() //Crear tablas\n\n oCon:end()\n\nRETURN NIL\n\n//---------------------\nFunction MisTablSql()\nLOCAL cCmdSql, cQuery, oDatos, oDlg\nlocal oBrw, oCol, n:=0\n\nif oCon:TableExist( \"usuarios\" )\n oCon:DeleteTable(\"usuarios\")\nendif\n\ncCmdSql:= \"CREATE TABLE IF NOT EXISTS usuarios (\" +;\n \"CLAVE VARCHAR(10) NOT NULL COMMENT 'Clave',\" +;\n \"NOMBRE VARCHAR(30) NOT NULL COMMENT 'Nombre',\" +;\n \"PRIMARY KEY (CLAVE))\" +;\n \"ENGINE = InnoDB COMMENT 'usuarios';\"\n\noCon:Query(cCmdSql)\n\ncCmdSql := \"INSERT INTO USUARIOS (NOMBRE,CLAVE) VALUES('Francisco','002');\"\noCon:Query( cCmdSql )\ncCmdSql := \"INSERT INTO USUARIOS (NOMBRE,CLAVE) VALUES('Roberto','001');\"\noCon:Query( cCmdSql )\ncCmdSql := \"INSERT INTO USUARIOS (NOMBRE,CLAVE) VALUES('Alejandro','003');\"\noCon:Query( cCmdSql )\n\n**cQuery:= \"SELECT clave, nombre FROM usuarios\" //* FROM usuarios ORDER BY clave LIMIT 100\"\ncQuery:= \"SELECT * FROM usuarios ORDER BY clave\" \noDatos:= oCon:Query( cQuery )\n\noDatos:GoTop()\n\nDEFINE DIALOG oDlg FROM 2,2 TO 20,60 ;\n TITLE \"CLIENTES (FWH + xHARBOUR + TMySQL)\"\n\n oBrw := TXBrowse():New( oDlg ) \n\n SetMyBrwSql(oBrw, oDatos) \n\n oBrw:nMarqueeStyle := MARQSTYLE_HIGHLROW\n oBrw:nColDividerStyle := LINESTYLE_BLACK \n oBrw:nRowDividerStyle := LINESTYLE_BLACK \n oBrw:lColDividerComplete := .t. \n oBrw:bClrStd := {|| IF( (oDatos:Recno()%2)==0, ;\n { CLR_BLACK, RGB(250,240,188)},{CLR_BLACK,RGB(254,252,237)} ) }\n\n oCol := oBrw:AddCol() \n oCol:bStrData := { || oDatos:clave } \n oCol:cHeader := \"Clave \" \n oCol:nWidth := 40\n\n oCol := oBrw:AddCol() \n oCol:bStrData := { || oDatos:nombre } \n oCol:cHeader := \"Nombre \" \n oCol:nWidth := 100\n\n oBrw:CreateFromCode() \n oDlg:oClient := oBrw\n\n ACTIVATE DIALOG oDlg CENTER \nReturn nil\n\n//---------------------------------\nFUNCTION SetMyBrwSql( oBrw,oTable )\n oBrw:bGoTop := { || oTable:Gotop() }\n oBrw:bGoBottom := { || oTable:GoBottom() }\n oBrw:bSkip := { |n| oTable:Skip(n) }\n oBrw:bBof := { || oTable:Bof() }\n oBrw:bEof := { || oTable:Eof() }\n oBrw:bBookMark := { | n | if( n == nil, oTable:RecNo(),oTable:GoTo(n) ) }\n oBrw:bKeyNo := oBrw:bBookMark\n oBrw:bKeyCount := { || oTable:LastRec() }\n oBrw:oDbf := oTable\n\n if oBrw:oVScroll() != nil\n oBrw:oVscroll():SetRange( 1,oTable:Lastrec() )\n endif\n oBrw:Refresh()\nRETURN NIL\n\nAgradezco de antemano cualquier comentario.\nSaludos",
"time": "21:33",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "FranciscoA"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Francisco\n\nBuenas tardes, ¿podrías ayudarme a establecer la conexión al MySql?, e probado con las versiones:\n\n FW 6.12+ BCC551+xH 0.99.71\n FW 6.12+ BCC551+xH 1.2.1\n FW 11.01+ BCC582+xH 1.2.1\n FW 13.01+ BCC582+xH 1.2.3\n\ny NADA !!.\n\nGracias\n\nLuis",
"time": "21:17",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "ltorres"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Luis,\nAquí tienes este codigo ejemplo para empezar. Cualquier duda, solo pregunta en este foro y obtendrás toda la ayuda que necesites.\nUtilizo TMySql y mi version FHW1204.\n[code=fw:ssmqmr3r]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"FiveWin.ch\"</span><br /><br /><span style=\"color: #00C800;\">Static</span> oServer<br /><br /><span style=\"color: #B900B9;\">//----------------</span><br /><span style=\"color: #00C800;\">Function</span> Main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">local</span> cHost, cUser, cPass, nPort, cNomBDD<br /><br /><span style=\"color: #B900B9;\">//CONECCION CON SERVIDOR</span><br />cHost := <span style=\"color: #ff0000;\">\"localhost\"</span> <span style=\"color: #B900B9;\">// \"127.0.0.1\" //en modo local, ó \"19x.16x.0.17\" //IP servidor </span><br />cUser := <span style=\"color: #ff0000;\">\"Luis\"</span> <span style=\"color: #B900B9;\">// usuario</span><br />cPass := <span style=\"color: #ff0000;\">\"tupassword\"</span> <span style=\"color: #B900B9;\">// password</span><br />nPort := <span style=\"color: #ff0000;\">\"3306\"</span> <span style=\"color: #B900B9;\">// puerto para MySql</span><br />cNomBDD := <span style=\"color: #ff0000;\">\"tubasedatos\"</span> <span style=\"color: #B900B9;\">//Nombre base de datos</span><br /><br /><span style=\"color: #00C800;\">if</span> !IsInternet<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"No se puede establecer coneccion remota.\"</span>+CRLF+;<br /> <span style=\"color: #ff0000;\">\"No se tiene acceso a Internet.\"</span>,<span style=\"color: #ff0000;\">\"Advertencia\"</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">endif</span><br /><br /><span style=\"color: #00C800;\">if</span> !Coneccion<span style=\"color: #000000;\">(</span>cHost, cUser, cPass, nPort, cNomBDD<span style=\"color: #000000;\">)</span> <br /> <span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><span style=\"color: #00C800;\">endif</span><br /><span style=\"color: #B900B9;\">//FIN CONECCION CON SERVIDOR</span><br /><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">MAXIMIZED</span> <br /> ......<br /> ...... <br /> oServer:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">Return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><br /><span style=\"color: #B900B9;\">//CONECTAR CON SERVIDOR MYSQL Y CREAR BASE DE DATOS Y TABLAS</span><br /><span style=\"color: #B900B9;\">//----------------------------------</span><br /><span style=\"color: #00C800;\">Function</span> Coneccion<span style=\"color: #000000;\">(</span>cHost, cUser, cPass, nPort, cNomBDD<span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">local</span> cCmdSql<br /><br />MsgRun<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Conectando con servidor. Aguarde...\"</span>, <span style=\"color: #ff0000;\">\"FAPSOFTWARE\"</span>, ;<br /> <span style=\"color: #000000;\">{</span>|| oServer := TMYsqlServer<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">new</span><span style=\"color: #000000;\">(</span> cHost, cUser, cPass, nPort<span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">if</span> oServer:<span style=\"color: #000000;\">lError</span><br /> MsgStop<span style=\"color: #000000;\">(</span>oServer:<span style=\"color: #000000;\">Error</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">//Descrip en MySql.prg</span><br /> <span style=\"color: #00C800;\">Return</span> .f.<br /><span style=\"color: #00C800;\">endif</span><br /><br /><br /><span style=\"color: #B900B9;\">//CREAR BASE DE DATOS SI NO EXISTE</span><br />oServer:<span style=\"color: #000000;\">Query</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"CREATE DATABASE IF NOT EXISTS \"</span> + cNomBDD <span style=\"color: #000000;\">)</span> <br /><br /><span style=\"color: #00C800;\">if</span> oServer:<span style=\"color: #000000;\">lError</span><br /> MsgStop<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"No se pudo crear la Base de Datos \"</span>+cNomBDD,<span style=\"color: #ff0000;\">\"Alto\"</span> <span style=\"color: #000000;\">)</span><br /> oServer:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">return</span> .f.<br /><span style=\"color: #00C800;\">endif</span><br /><br /><br /><span style=\"color: #B900B9;\">//SELECCIONAR LA BASE DE DATOS</span><br />oServer:<span style=\"color: #000000;\">SelectDB</span><span style=\"color: #000000;\">(</span> cNomBDD <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">if</span> oServer:<span style=\"color: #000000;\">lError</span><br /> MsgStop<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"No se pudo seleccionar la Base de Datos (o no existe).\"</span>+CRLF+;<br /> <span style=\"color: #ff0000;\">\"Base de Datos: \"</span>+cNomBDD,<span style=\"color: #ff0000;\">\"Alto\"</span> <span style=\"color: #000000;\">)</span><br /> oServer:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">return</span> .f.<br /><span style=\"color: #00C800;\">endif</span><br /><br /><br /><span style=\"color: #B900B9;\">//CREAR TABLAS SI NO EXISTEN</span><br />cCmdSql:= <span style=\"color: #ff0000;\">\"CREATE TABLE IF NOT EXISTS usuarios(\"</span> +;<br /> <span style=\"color: #ff0000;\">\"NOMBRE VARCHAR(50) DEFAULT '' COMMENT 'Nombre del usuario',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"CODIGO VARCHAR(20) DEFAULT '' COMMENT 'Codigo acceso del usuario',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"ADMIN CHAR(1) DEFAULT '' COMMENT 'Tipo de Acceso',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"CONTA CHAR(1) DEFAULT '' COMMENT 'Acceso a Contab',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"CDIAR CHAR(1) DEFAULT '' COMMENT 'Acceso a Cdiario',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"RECJA CHAR(1) DEFAULT '' COMMENT 'Acceso a Rcaja tipo CD',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"RCAJA CHAR(1) DEFAULT '' COMMENT 'Acceso a RecibosC',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"DEPOS CHAR(1) DEFAULT '' COMMENT 'Acceso a Depositos',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"CHEQU CHAR(1) DEFAULT '' COMMENT 'Acceso a Cheques',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"NOTDC CHAR(1) DEFAULT '' COMMENT 'Acceso a Notas de Contab',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"FACTU CHAR(1) DEFAULT '' COMMENT 'Acceso a Facturas' )\"</span> +;<br /> <span style=\"color: #ff0000;\">\"ENGINE = InnoDB COMMENT 'usuarios';\"</span><br /><br />oServer:<span style=\"color: #000000;\">Query</span><span style=\"color: #000000;\">(</span>cCmdSql<span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">if</span> oServer:<span style=\"color: #000000;\">lError</span><br /> MsgStop<span style=\"color: #000000;\">(</span>oServer:<span style=\"color: #000000;\">Error</span><span style=\"color: #000000;\">)</span><br /> MsgStop<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"No se pudo crear la tabla USUARIOS, verifique.\"</span> <span style=\"color: #000000;\">)</span><br /> oServer:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">return</span> .f.<br /><span style=\"color: #00C800;\">endif</span><br /><br /><span style=\"color: #B900B9;\">//LAS DEMAS TABLAS...</span><br />...<br />...<br /><br /><span style=\"color: #00C800;\">Return</span> .t.<br /><br /> </div>[/code:ssmqmr3r]\nSaludos.",
"time": "22:03",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "FranciscoA"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "GRACIAS !!!\n\nVoy a probarlo",
"time": "22:06",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "ltorres"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Francisco,\n\nRevisa samples\\adoxb.prg y la clase TDataROw.\n\nEn los foros de inglés tienes ejemplos de ambos.\n\nEs un aproach mucho más sencillo y con menos código.\n\nUn saludo",
"time": "22:16",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "elvira"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Francisco\n\nYa compila pero no conecta, sale este mensaje, desde el YOG si conecta con los mismos datos, te adjunto la pantalla, creo que el problema mas que en el programa es en la configuración.\n\n[img:3cpoqt50]http://s2.subirimagenes.com/privadas/previo/thump_2104584error-conexion-mysql.jpg[/img:3cpoqt50]\n\nDe repente falta alguna libreria. etc.\n\nTe agradezco de antemano.\n\n[quote=\"ltorres\":3cpoqt50]GRACIAS !!!\n\nVoy a probarlo[/quote:3cpoqt50]",
"time": "22:49",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "ltorres"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Luis,\nPodés poner una imagen mas grande?\nSaludos.",
"time": "23:04",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "FranciscoA"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "para que conectes con MYSQL, debes de tener junto a tu App.exe la\nlibrería: LIBMYSQL.DLL\nsaludos",
"time": "03:00",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "sysctrl2"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Disculpen, por error coloque el enlace al preview, aquí esta la imagen de la configuración de mi prueba de conexión.\n\n[url:2e6do0c0]http://www.subirimagenes.com/privadas-errorconexionmysql-2105003.html[/url:2e6do0c0]\n[url=http://www.subirimagenes.com/privadas-errorconexionmysql-2105003.html:2e6do0c0][img:2e6do0c0]http://s2.subirimagenes.com/privadas/previo/thump_2105003error-conexion-mysql.jpg[/img:2e6do0c0][/url:2e6do0c0]\n\nEspero me puedan ayudar.\n\nGracias\n\n\nLuis",
"time": "21:13",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "ltorres"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Probá deshabilitando el firewall de windows. O configuralo para que permita a MySql.\nPostea aqui tu codigo para que todos lo podamos revisar y asi obtienes ayuda general del foro. (postea un codigo que podamos compilarlo facilmente)\nSaludos.",
"time": "04:29",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "FranciscoA"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Francisco\n\nEstoy usando el que me pusiste como ejemplo, solo ese, compila bien pero no conecta, con el utilitario YOG ingreso a la BD normal.\n\n[code=fw:xj2s88lx]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"FiveWin.ch\"</span><br /><br /><span style=\"color: #00C800;\">Static</span> oServer<br /><br /><span style=\"color: #B900B9;\">//----------------</span><br /><span style=\"color: #00C800;\">Function</span> Main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">local</span> cHost, cUser, cPass, nPort, cNomBDD<br /><br /><span style=\"color: #B900B9;\">//CONECCION CON SERVIDOR</span><br />cHost := <span style=\"color: #ff0000;\">'192.168.100.188'</span> <span style=\"color: #B900B9;\">// \"127.0.0.1\" //en modo local, ó \"19x.16x.0.17\" //IP servidor </span><br />cUser := <span style=\"color: #ff0000;\">'root'</span> <span style=\"color: #B900B9;\">// usuario</span><br />cPass := <span style=\"color: #ff0000;\">'mipass'</span> <span style=\"color: #B900B9;\">// password</span><br />nPort := <span style=\"color: #000000;\">3306</span> <span style=\"color: #B900B9;\">// puerto para MySql</span><br />cNomBDD := <span style=\"color: #ff0000;\">'mibd'</span> <span style=\"color: #B900B9;\">//Nombre base de datos</span><br /><br /><span style=\"color: #00C800;\">if</span> !IsInternet<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"No se puede establecer coneccion remota.\"</span>+CRLF+;<br /> <span style=\"color: #ff0000;\">\"No se tiene acceso a Internet.\"</span>,<span style=\"color: #ff0000;\">\"Advertencia\"</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">endif</span><br /><br /><span style=\"color: #00C800;\">if</span> !Coneccion<span style=\"color: #000000;\">(</span>cHost, cUser, cPass, nPort, cNomBDD<span style=\"color: #000000;\">)</span> <br /> <span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><span style=\"color: #00C800;\">endif</span><br /><span style=\"color: #B900B9;\">//FIN CONECCION CON SERVIDOR</span><br /><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">MAXIMIZED</span> <br /> <span style=\"color: #B900B9;\">//......</span><br /> <span style=\"color: #B900B9;\">//...... </span><br /> oServer:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">Return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><br /><span style=\"color: #B900B9;\">//CONECTAR CON SERVIDOR MYSQL Y CREAR BASE DE DATOS Y TABLAS</span><br /><span style=\"color: #B900B9;\">//----------------------------------</span><br /><span style=\"color: #00C800;\">Function</span> Coneccion<span style=\"color: #000000;\">(</span>cHost, cUser, cPass, nPort, cNomBDD<span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">local</span> cCmdSql<br /><br />MsgRun<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Conectando con servidor. Aguarde...\"</span>, <span style=\"color: #ff0000;\">\"FAPSOFTWARE\"</span>, ;<br /> <span style=\"color: #000000;\">{</span>|| oServer := TMYsqlServer<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">new</span><span style=\"color: #000000;\">(</span> cHost, cUser, cPass, nPort<span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">)</span><br /> <br /><span style=\"color: #B900B9;\">//cConString1:=\"MySQL=\"+lower(ALLTRIM(cConnName)) + \";\" + \"UID=\"+lower(ALLTRIM(cConnUsrs))+ \";\"+\"pwd=\"+lower(ALLTRIM(cConnPass))+ \";\" +\"dtb=\"+alltrim(LOWER(cConnBase))+\";PRT=3306\" </span><br /> <br /> nCon1 := SR_AddConnection<span style=\"color: #000000;\">(</span> CONNECT_MYSQL, cConString1 <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">if</span> oServer:<span style=\"color: #000000;\">lError</span><br /> MsgStop<span style=\"color: #000000;\">(</span>oServer:<span style=\"color: #000000;\">Error</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">//Descrip en MySql.prg</span><br /> <span style=\"color: #00C800;\">Return</span> .f.<br /><span style=\"color: #00C800;\">endif</span><br /><br /><br /><span style=\"color: #B900B9;\">//CREAR BASE DE DATOS SI NO EXISTE</span><br />oServer:<span style=\"color: #000000;\">Query</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"CREATE DATABASE IF NOT EXISTS \"</span> + cNomBDD <span style=\"color: #000000;\">)</span> <br /><br /><span style=\"color: #00C800;\">if</span> oServer:<span style=\"color: #000000;\">lError</span><br /> MsgStop<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"No se pudo crear la Base de Datos \"</span>+cNomBDD,<span style=\"color: #ff0000;\">\"Alto\"</span> <span style=\"color: #000000;\">)</span><br /> oServer:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">return</span> .f.<br /><span style=\"color: #00C800;\">endif</span><br /><br /><br /><span style=\"color: #B900B9;\">//SELECCIONAR LA BASE DE DATOS</span><br />oServer:<span style=\"color: #000000;\">SelectDB</span><span style=\"color: #000000;\">(</span> cNomBDD <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">if</span> oServer:<span style=\"color: #000000;\">lError</span><br /> MsgStop<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"No se pudo seleccionar la Base de Datos (o no existe).\"</span>+CRLF+;<br /> <span style=\"color: #ff0000;\">\"Base de Datos: \"</span>+cNomBDD,<span style=\"color: #ff0000;\">\"Alto\"</span> <span style=\"color: #000000;\">)</span><br /> oServer:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">return</span> .f.<br /><span style=\"color: #00C800;\">endif</span><br /><br /><br /><span style=\"color: #B900B9;\">//CREAR TABLAS SI NO EXISTEN</span><br />cCmdSql:= <span style=\"color: #ff0000;\">\"CREATE TABLE IF NOT EXISTS usuarios(\"</span> +;<br /> <span style=\"color: #ff0000;\">\"NOMBRE VARCHAR(50) DEFAULT '' COMMENT 'Nombre del usuario',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"CODIGO VARCHAR(20) DEFAULT '' COMMENT 'Codigo acceso del usuario',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"ADMIN CHAR(1) DEFAULT '' COMMENT 'Tipo de Acceso',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"CONTA CHAR(1) DEFAULT '' COMMENT 'Acceso a Contab',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"CDIAR CHAR(1) DEFAULT '' COMMENT 'Acceso a Cdiario',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"RECJA CHAR(1) DEFAULT '' COMMENT 'Acceso a Rcaja tipo CD',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"RCAJA CHAR(1) DEFAULT '' COMMENT 'Acceso a RecibosC',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"DEPOS CHAR(1) DEFAULT '' COMMENT 'Acceso a Depositos',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"CHEQU CHAR(1) DEFAULT '' COMMENT 'Acceso a Cheques',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"NOTDC CHAR(1) DEFAULT '' COMMENT 'Acceso a Notas de Contab',\"</span> +;<br /> <span style=\"color: #ff0000;\">\"FACTU CHAR(1) DEFAULT '' COMMENT 'Acceso a Facturas' )\"</span> +;<br /> <span style=\"color: #ff0000;\">\"ENGINE = InnoDB COMMENT 'usuarios';\"</span><br /><br />oServer:<span style=\"color: #000000;\">Query</span><span style=\"color: #000000;\">(</span>cCmdSql<span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">if</span> oServer:<span style=\"color: #000000;\">lError</span><br /> MsgStop<span style=\"color: #000000;\">(</span>oServer:<span style=\"color: #000000;\">Error</span><span style=\"color: #000000;\">)</span><br /> MsgStop<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"No se pudo crear la tabla USUARIOS, verifique.\"</span> <span style=\"color: #000000;\">)</span><br /> oServer:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">return</span> .f.<br /><span style=\"color: #00C800;\">endif</span><br /><br /><span style=\"color: #B900B9;\">//LAS DEMAS TABLAS...</span><br /><span style=\"color: #B900B9;\">//...</span><br /><span style=\"color: #B900B9;\">//...</span><br /><br /><span style=\"color: #00C800;\">Return</span> .t.<br /> <br /> </div>[/code:xj2s88lx]\n\nGracias\n\n\nLuis",
"time": "13:35",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "ltorres"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Una pregunta que versión de mysql estas usando ????",
"time": "16:41",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "Hector Pedro Lerda"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ante todo gracias Hector, el MySql es 5.5",
"time": "16:47",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "ltorres"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Luis\n\nRoot tiene permiso en el mysql para acceder desde cualquier lugar,",
"time": "17:03",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "Hector Pedro Lerda"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "y otra pregunta, tal vez sea tonta, que password estas usando? , porque en el ejemplo dejastes el indicativo pero al instalar el server debes haber colocado otro o instalastes el servidor con ese.",
"time": "17:12",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "Hector Pedro Lerda"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hector\n\nTengo el SQLYog y el MySql WorkBench, con ambos logro ingresar tanto a mi PC, como al servidor. Aún creo que el error es en la configuración del xDevStudio, alguna libreria o incompatibilidad entre ellas debe estar causando este problema, he probado con:\n\nFW 6.12+ BCC551+xH 0.99.71\nFW 6.12+ BCC551+xH 1.2.1\nFW 11.01+ BCC582+xH 1.2.1\nFW 13.01+ BCC582+xH 1.2.3\n\nAgradezco de antemano tu ayuda.\n\nLuis",
"time": "17:53",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "ltorres"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estimados\n\nTal vez enviándome la imagen de su configuración podría copiarla y ver como adaptarme a la misma, yo tengo xDevStudio, xEdit, Verce, xMate.... ustedes dirán.\n\nGracias\n\n\nLuis",
"time": "17:59",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "ltorres"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Luis\n\nYo trabaje con la Tmysql al principio con la versión 3.3 de mysql y nunca tuve ningún problema, luego cuando pase a mysql 5.xx me pase a la tdolphin y es la que uso, que tiene en una parte una forma muy similar a la tmysql por eso me resulto muy practica y ademas tienes a su creador en el foro con una intensa participación, por eso te recomendaría que pruebes con esta librería, que a mí en particular me permite hacer todo lo que necesito.\n\nSaludos",
"time": "18:09",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "Hector Pedro Lerda"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Luis,\nTengo dos sistemas (Contabilidad, y facturacion) desarrollados con TMySql y no tengo (hasta el momento) ningún problema. El codigo que te posteé es el mismo que uso en ambos.\nPrueba lo siguiente, por favor:\n1 - Crea, con el SqlYog, un nuevo usuario ej: \"Luis\", con el password \"Luis\"\n2 - Le das todos los privilegios sin exepcion: GRANT/REVOKE privileges (asegurate de esto) (Select ALL)\n3 - Asegurate de poner estos mismos valores en el main.prg: cUser := \"Luis\", cPass:=\"Luis\"\n4 - Prueba y me dices.\n\nTe digo esto, porque hice una prueba con el user \"root\" y me dió el mensaje que dices, porque no tengo definido ningún usuario root.\nUso el XVerce CW v.10 Fivewin 1204 + xHarbour + TMySql\nSaludos.",
"time": "19:50",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "FranciscoA"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Francisco\n\nCreé el nuevo usuario y nada!, sigo con la idea que es algo de la configuración de xDevStudio o incompatibilidad entre librerías, si pudieran postear como tienen distribuidas sus librerías en este editor y que versiones son, se los agradecería.\n\nAtentamente \n\n\nLuis",
"time": "16:02",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "ltorres"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Dame tu email para enviarte un ejecutable funcionando aquí.\nSaludos.",
"time": "16:25",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "FranciscoA"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mi correo es <!-- e --><a href=\"mailto:ltorreslm@hotmail.com\">ltorreslm@hotmail.com</a><!-- e -->\n\nGracias",
"time": "16:37",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "ltorres"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2013-08-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Te he enviado ejecutable,prg y otros. \nSaludos.",
"time": "23:13",
"topic": "A expertos en FWH+xHarbour+TMySql",
"username": "FranciscoA"
}
] |
A expertos en FWH+xHarbour+TMySql
|
[
{
"date": "2017-04-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "To Mr. Rao,\n\nMr. Rao, could it be possible to have some extra space at the bottom of the xBrowse footer-area ?\nIn many cases I have to add some infos of the table ( to be exported to Excel as well ).\nI think it would be a useful extension.\n\nMaybe something like used on header :\n\noBrw1:[color=#0000FF:1y9zbfoc]SetGroupHeader[/color:1y9zbfoc]( \"Rechnungen\", 1, 3 )\noBrw1:SetGroupHeader( cTitel1 + \" / \" + cJahrgang, 4, 7 )\n\nbut for the footer\n\noBrw1:[color=#BF0000:1y9zbfoc]SetGroupFooter[/color:1y9zbfoc]( \"KrK = Krankenkasse\", 1, 3 )\noBrw1:SetGroupFooter( \"PfK = Pflegeversicherung\", 4, 7 )\n[i:1y9zbfoc][b:1y9zbfoc]( just a idea !!! )[/b:1y9zbfoc][/i:1y9zbfoc]\n\nOne sample of a table :\nEach invoice belongs to a type like < KrK = Krankenkasse >\n9 different types are possible.\nThe table needs to be created for the tax consultant ( he doesn't know the meaning of the different invoice-type-styles )\n\n[img:1y9zbfoc]http://www.pflegeplus.com/IMAGES/XbrwInfo1.jpg[/img:1y9zbfoc]\n\nbest regards\nUwe <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->",
"time": "10:58",
"topic": "A extra Info-area at xBrowse-bottom ( footer ) ?",
"username": "ukoenig"
}
] |
A extra Info-area at xBrowse-bottom ( footer ) ?
|
[
{
"date": "2017-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Let us keep this in TODO list.\nMay not be possible very soon.",
"time": "15:26",
"topic": "A extra Info-area at xBrowse-bottom ( footer ) ?",
"username": "nageswaragunupudi"
}
] |
A extra Info-area at xBrowse-bottom ( footer ) ?
|
[
{
"date": "2020-03-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr. Rao:\n\nExcuse me, do you have or where can I find a xBrowse Sample with fastedit full (ADD, DELETE, MODIFY) ?\n\nRegards",
"time": "00:55",
"topic": "A fastedit sample with recordset?",
"username": "Armando"
}
] |
A fastedit sample with recordset?
|
[
{
"date": "2020-03-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Simplest:\n[code=fw:3jqqammc]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">XBROWSER oRs FASTEDIT</div>[/code:3jqqammc]\n\nFor a more detailed sample, please see \\fwh\\samples\\testxbr3.prg",
"time": "03:35",
"topic": "A fastedit sample with recordset?",
"username": "nageswaragunupudi"
}
] |
A fastedit sample with recordset?
|
[
{
"date": "2020-03-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr. Rao:\n\nThanks a lot, I will.\n\nRegards",
"time": "05:21",
"topic": "A fastedit sample with recordset?",
"username": "Armando"
}
] |
A fastedit sample with recordset?
|
[
{
"date": "2015-02-22",
"forum": "Off Topic / Otros temas",
"text": "Dear friends,\n\nIf you have facebook please do this favor for a good friend of mine:\n\n1. Look for \"Avenida fotógrafos\" and click like it.\n\n2. Look for this photo (in avenida fotógrafos page) and click on like it too.\n\nMy good old friend will be very happy, thanks <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\n[img:1suvh4cc]https://bitbucket.org/fivetech/screenshots/downloads/hijos_wolly.jpg[/img:1suvh4cc]",
"time": "18:27",
"topic": "A favor for a friend",
"username": "Antonio Linares"
}
] |
A favor for a friend
|
[
{
"date": "2015-02-23",
"forum": "Off Topic / Otros temas",
"text": "Done! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "20:52",
"topic": "A favor for a friend",
"username": "carlos vargas"
}
] |
A favor for a friend
|
[
{
"date": "2015-02-24",
"forum": "Off Topic / Otros temas",
"text": "Thanks to all, they won <!-- s;-) --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\";-)\" title=\"Wink\" /><!-- s;-) -->",
"time": "09:24",
"topic": "A favor for a friend",
"username": "Antonio Linares"
}
] |
A favor for a friend
|
[
{
"date": "2008-07-26",
"forum": "FiveLinux / FiveDroid (Android)",
"text": "Hi Antonio and fellow FiveLinuxers\r\n\r\nGROUP doesn't seem to work properly with the PIXEL option, I believe that FiveLinux.ch is not correctly translating the @ <row>, <col> GROUP command because it is not including a [ <lUpdate: UPDATE> ] to pass as <.lUpdate.> into TGroup():New() so the <.lPixel.> value is passed in the wrong position.\r\n\r\nThis seems to work:\r\n\r\n[code:1ymf4qkl]#xcommand @ <nRow>, <nCol> GROUP [ <oGroup> ] ;\n\t\t\t [ <label: LABEL, PROMPT> <cText> ] ;\n [ <of: OF, WINDOW, DIALOG> <oWnd> ] ;\n\t\t\t [ SIZE <nWidth>, <nHeight> ] ;\n \t [ <lPixel: PIXEL> ] ;\n [ <lUpdate: UPDATE> ] ;\n\t\t\t => ;\n [ <oGroup> := ] TGroup():New( <nRow>, <nCol>,;\n\t\t\t [<oWnd>], <cText>, <nWidth>, <nHeight>, <.lUpdate.>, <.lPixel.> )[/code:1ymf4qkl]\n\nTRadMenu supports the PIXEL clause in the placement of the TRadio representing the first element of the array passed in to TRadMenu and correctly passes the lPixel setting to its child TRadios but the incrementation of nRow needs to be adjusted. I am using:\n\n[code:1ymf4qkl] IF lPixel\n nRow += 30\n ELSE\n nRow += 2.5\n ENDIF[/code:1ymf4qkl]\r\n\r\nI am using 30 because it matches my spacing elsewhere. Maybe the vertical spacing should be a settable property of TRadMenu? Without this change the options pretty much block each other out when using the PIXEL clause.\r\n\r\nAs always these could be problems of my making, or have subsequently been fixed, but they certainly were issues with FiveLinux as it was here.\r\n\r\nRegards\r\nDoug\r\n(xProgrammer)",
"time": "13:52",
"topic": "A few minor glitches with GROUP, RADMENU",
"username": "xProgrammer"
}
] |
A few minor glitches with GROUP, RADMENU
|
[
{
"date": "2009-06-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi guys,\n \n These questions uses a reduced, self-contained example that'll appear way below as point of reference. Just copy it to \\fwh\\samples and compile and run it from there.\n\n So here's the question:\n 1. When I click on [b:3cb1n1m2]File -> Edit[/b:3cb1n1m2], the dialogue box appear but the second RTF control ([i:3cb1n1m2]oEdit[/i:3cb1n1m2]) doesn't appear. Why and how to solve this?\n\n 2. If user run this program and selects [b:3cb1n1m2]File -> Exit[/b:3cb1n1m2], the program terminates normally. However, if user runs [b:3cb1n1m2]File -> Edit[/b:3cb1n1m2] prior to that, this error message appears:\n[img:3cb1n1m2]http://img191.imageshack.us/img191/8034/rtf.th.jpg[/img:3cb1n1m2]\n\n Same question, why and how to solve it?\n\n[b:3cb1n1m2]TIA[/b:3cb1n1m2]\n \n p.s. I think [url=http://forums.fivetechsupport.com/viewtopic.php?p=37151:3cb1n1m2]this post[/url:3cb1n1m2] is basically asking the same issue. \n\n[code=fw:3cb1n1m2]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"FiveWin.ch\"</span><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"richedit.ch\"</span><br /><br /><span style=\"color: #00C800;\">static</span> oWnd, oRtf, cRtf, oEdit, cVar<br /><span style=\"color: #00C800;\">function</span> main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> o<br /> <span style=\"color: #00C800;\">local</span> hDll := LoadLibrary<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Riched20.dll\"</span> <span style=\"color: #000000;\">)</span><br /><br /><br /> <span style=\"color: #0000ff;\">define</span> <span style=\"color: #0000ff;\">window</span> oWnd <span style=\"color: #0000ff;\">menu</span> oMenu<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">color</span> <span style=\"color: #ff0000;\">\"w/b\"</span><br /><br /> cRtf := memoread<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"fiveodbc.rtf\"</span><span style=\"color: #000000;\">)</span><br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">20</span> RICHEDIT oRtf <span style=\"color: #0000ff;\">VAR</span> cRtf <span style=\"color: #0000ff;\">of</span> oWnd<br /> oRtf:<span style=\"color: #000000;\">setReadOnly</span><span style=\"color: #000000;\">(</span>.t.<span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">activate</span> <span style=\"color: #0000ff;\">window</span> oWnd ;<br /> <span style=\"color: #0000ff;\">on</span> <span style=\"color: #0000ff;\">init</span> adjustRtf<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">maximized</span><br /><br /> freeLibrary<span style=\"color: #000000;\">(</span>hDll<span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------</span><br /><span style=\"color: #00C800;\">function</span> adjustRtf<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #B900B9;\">// position at lower-half and make full use of screen width</span><br /> <span style=\"color: #00C800;\">local</span> nTop, nLeft, nHorRes, aRect, nHeight, nWidth<br /> nTop := <span style=\"color: #000000;\">600</span><br /> nLeft := <span style=\"color: #000000;\">10</span><br /> nHorRes := GetSysMetrics<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">)</span><br /> aRect := GetClientRect<span style=\"color: #000000;\">(</span>oWnd:<span style=\"color: #000000;\">hWnd</span><span style=\"color: #000000;\">)</span><br /> nHeight := aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">3</span><span style=\"color: #000000;\">]</span> - nTop - <span style=\"color: #000000;\">10</span><br /> nWidth := aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">4</span><span style=\"color: #000000;\">]</span> - aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">]</span> - <span style=\"color: #000000;\">20</span><br /> oRtf:<span style=\"color: #0000ff;\">move</span><span style=\"color: #000000;\">(</span>nTop, nLeft, nWidth, nHeight , .t. <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------</span><br /><span style=\"color: #00C800;\">function</span> oMenu<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">LOCAL</span> oMenu<br /><br /> <span style=\"color: #0000ff;\">MENU</span> oMenu <span style=\"color: #000000;\">2007</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"&File \"</span><br /> <span style=\"color: #0000ff;\">MENU</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Edit\"</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #00C800;\">edit</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"E&xit\"</span> <span style=\"color: #0000ff;\">ACTION</span> oWnd:<span style=\"color: #000000;\">end</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span><br /><br /><span style=\"color: #00C800;\">RETURN</span> oMenu<br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------</span><br /><span style=\"color: #00C800;\">function</span> <span style=\"color: #00C800;\">edit</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> aRect := GetCoors<span style=\"color: #000000;\">(</span>oRtf:<span style=\"color: #000000;\">hWnd</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> oDlg<br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">of</span> oWnd ;<br /> <span style=\"color: #0000ff;\">FROM</span> aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">]</span><span style=\"color: #000000;\">-33</span>, aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">]</span><span style=\"color: #000000;\">-10</span> <span style=\"color: #0000ff;\">TO</span> aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">3</span><span style=\"color: #000000;\">]</span><span style=\"color: #000000;\">+33</span><span style=\"color: #000000;\">+10</span>, aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">4</span><span style=\"color: #000000;\">]</span><span style=\"color: #000000;\">+10</span> ;<br /> <span style=\"color: #0000ff;\">STYLE</span> nOr<span style=\"color: #000000;\">(</span> DS_MODALFRAME, WS_POPUP, WS_VISIBLE<span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">PIXEL</span><br /><br /> cVar := cRtf<br /> @ aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">]</span>, aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">]</span> RICHEDIT oEdit <span style=\"color: #0000ff;\">VAR</span> cVar <span style=\"color: #0000ff;\">of</span> oDlg ;<br /> <span style=\"color: #0000ff;\">SIZE</span> oRtf:<span style=\"color: #000000;\">nWidth</span>, oRtf:<span style=\"color: #000000;\">nHeight</span> ;<br /> <span style=\"color: #0000ff;\">PIXEL</span><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg ;<br /> <span style=\"color: #0000ff;\">on</span> <span style=\"color: #0000ff;\">init</span> <span style=\"color: #000000;\">(</span> ;<br /> RtfBar<span style=\"color: #000000;\">(</span>oDlg<span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------</span><br /><span style=\"color: #00C800;\">function</span> rtfBar<span style=\"color: #000000;\">(</span>oDlg<span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> oBar, oBtns := array<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTONBAR</span> oBar <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">30</span>,<span style=\"color: #000000;\">33</span> 3DLOOK <span style=\"color: #000000;\">2007</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> oBtns<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">]</span> FILE <span style=\"color: #ff0000;\">\"..<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\s</span>ave.bmp\"</span> <span style=\"color: #0000ff;\">OF</span> oBar ;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span>oRtf:<span style=\"color: #000000;\">setText</span><span style=\"color: #000000;\">(</span>cVar<span style=\"color: #000000;\">)</span>, oDlg:<span style=\"color: #000000;\">end</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> ;<br /> TOOLTIP <span style=\"color: #ff0000;\">\"Save\"</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> </div>[/code:3cb1n1m2]",
"time": "09:03",
"topic": "A few questions with regards to RichEdit",
"username": "hua"
}
] |
A few questions with regards to RichEdit
|
[
{
"date": "2009-06-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n Any idea?",
"time": "07:36",
"topic": "A few questions with regards to RichEdit",
"username": "hua"
}
] |
A few questions with regards to RichEdit
|
[
{
"date": "2009-06-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hua,\n\nPlease try it this way:\n[code=fw:vzbs98se]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"FiveWin.ch\"</span><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"richedit.ch\"</span><br /><br /><span style=\"color: #00C800;\">static</span> oWnd, oRtf, cRtf, oEdit, cVar<br /><span style=\"color: #00C800;\">function</span> main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> o<br /> <span style=\"color: #00C800;\">local</span> hDll := LoadLibrary<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Riched20.dll\"</span> <span style=\"color: #000000;\">)</span><br /><br /><br /> <span style=\"color: #0000ff;\">define</span> <span style=\"color: #0000ff;\">window</span> oWnd <span style=\"color: #0000ff;\">menu</span> oMenu<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">color</span> <span style=\"color: #ff0000;\">\"w/b\"</span><br /><br /> cRtf := memoread<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"fiveodbc.rtf\"</span><span style=\"color: #000000;\">)</span><br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">20</span> RICHEDIT oRtf <span style=\"color: #0000ff;\">VAR</span> cRtf <span style=\"color: #0000ff;\">of</span> oWnd<br /> oRtf:<span style=\"color: #000000;\">setReadOnly</span><span style=\"color: #000000;\">(</span>.t.<span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">activate</span> <span style=\"color: #0000ff;\">window</span> oWnd ;<br /> <span style=\"color: #0000ff;\">on</span> <span style=\"color: #0000ff;\">init</span> adjustRtf<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">maximized</span><br /><br /> <span style=\"color: #B900B9;\">// freeLibrary(hDll)</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------</span><br /><span style=\"color: #00C800;\">function</span> adjustRtf<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #B900B9;\">// position at lower-half and make full use of screen width</span><br /> <span style=\"color: #00C800;\">local</span> nTop, nLeft, nHorRes, aRect, nHeight, nWidth<br /> nTop := <span style=\"color: #000000;\">600</span><br /> nLeft := <span style=\"color: #000000;\">10</span><br /> nHorRes := GetSysMetrics<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">)</span><br /> aRect := GetClientRect<span style=\"color: #000000;\">(</span>oWnd:<span style=\"color: #000000;\">hWnd</span><span style=\"color: #000000;\">)</span><br /> nHeight := aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">3</span><span style=\"color: #000000;\">]</span> - nTop - <span style=\"color: #000000;\">10</span><br /> nWidth := aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">4</span><span style=\"color: #000000;\">]</span> - aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">]</span> - <span style=\"color: #000000;\">20</span><br /> oRtf:<span style=\"color: #0000ff;\">move</span><span style=\"color: #000000;\">(</span>nTop, nLeft, nWidth, nHeight , .t. <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------</span><br /><span style=\"color: #00C800;\">function</span> oMenu<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">LOCAL</span> oMenu<br /><br /> <span style=\"color: #0000ff;\">MENU</span> oMenu <span style=\"color: #000000;\">2007</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"&File \"</span><br /> <span style=\"color: #0000ff;\">MENU</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Edit\"</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #00C800;\">edit</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"E&xit\"</span> <span style=\"color: #0000ff;\">ACTION</span> oWnd:<span style=\"color: #000000;\">end</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span><br /><br /><span style=\"color: #00C800;\">RETURN</span> oMenu<br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------</span><br /><span style=\"color: #00C800;\">function</span> <span style=\"color: #00C800;\">edit</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> aRect := GetCoors<span style=\"color: #000000;\">(</span>oRtf:<span style=\"color: #000000;\">hWnd</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> oDlg, oEdit<br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">of</span> oWnd ;<br /> <span style=\"color: #0000ff;\">FROM</span> aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">]</span><span style=\"color: #000000;\">-33</span>, aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">]</span><span style=\"color: #000000;\">-10</span> <span style=\"color: #0000ff;\">TO</span> aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">3</span><span style=\"color: #000000;\">]</span><span style=\"color: #000000;\">+33</span><span style=\"color: #000000;\">+10</span>, aRect<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">4</span><span style=\"color: #000000;\">]</span><span style=\"color: #000000;\">+10</span> ;<br /> <span style=\"color: #0000ff;\">STYLE</span> nOr<span style=\"color: #000000;\">(</span> DS_MODALFRAME, WS_POPUP, WS_VISIBLE<span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">PIXEL</span><br /><br /> cVar := cRtf<br /> @ <span style=\"color: #000000;\">6</span>, <span style=\"color: #000000;\">0</span> RICHEDIT oEdit <span style=\"color: #0000ff;\">VAR</span> cVar <span style=\"color: #0000ff;\">of</span> oDlg ;<br /> <span style=\"color: #0000ff;\">SIZE</span> oRtf:<span style=\"color: #000000;\">nWidth</span>, oRtf:<span style=\"color: #000000;\">nHeight</span> ;<br /> <span style=\"color: #0000ff;\">PIXEL</span><br /> <br /> oDlg:<span style=\"color: #000000;\">oClient</span> = oEdit<br /> <br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg ;<br /> <span style=\"color: #0000ff;\">on</span> <span style=\"color: #0000ff;\">init</span> <span style=\"color: #000000;\">(</span> RtfBar<span style=\"color: #000000;\">(</span>oDlg<span style=\"color: #000000;\">)</span>, oDlg:<span style=\"color: #000000;\">ReSize</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------</span><br /><span style=\"color: #00C800;\">function</span> rtfBar<span style=\"color: #000000;\">(</span>oDlg<span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">local</span> oBar, oBtns := array<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTONBAR</span> oBar <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">30</span>,<span style=\"color: #000000;\">33</span> 3DLOOK <span style=\"color: #000000;\">2007</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> oBtns<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">]</span> FILE <span style=\"color: #ff0000;\">\"..<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\s</span>ave.bmp\"</span> <span style=\"color: #0000ff;\">OF</span> oBar ;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span>oRtf:<span style=\"color: #000000;\">setText</span><span style=\"color: #000000;\">(</span>cVar<span style=\"color: #000000;\">)</span>, oDlg:<span style=\"color: #000000;\">end</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> ;<br /> TOOLTIP <span style=\"color: #ff0000;\">\"Save\"</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #00C800;\">function</span> ResetOleUninit<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> </div>[/code:vzbs98se]",
"time": "10:33",
"topic": "A few questions with regards to RichEdit",
"username": "Antonio Linares"
}
] |
A few questions with regards to RichEdit
|
[
{
"date": "2009-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks Antonio! The program is now working as expected and the error message after exiting the program is gone.\n\nI don't actually understands what ResetOleUninit() is for though <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "02:15",
"topic": "A few questions with regards to RichEdit",
"username": "hua"
}
] |
A few questions with regards to RichEdit
|
[
{
"date": "2009-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hua,\n\nYou are not using OLE there, so that change is fine <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "07:15",
"topic": "A few questions with regards to RichEdit",
"username": "Antonio Linares"
}
] |
A few questions with regards to RichEdit
|
[
{
"date": "2009-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr Antonio\n\n[quote=\"Antonio Linares\":3uzrybgk]Hua,\n\nYou are not using OLE there, so that change is fine <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->[/quote:3uzrybgk]\n\nDoes this interfere with an application extensively using TOleAuto() in other modules ?\nHow about making this a static function inside TRichEdi.Prg ?",
"time": "09:13",
"topic": "A few questions with regards to RichEdit",
"username": "nageswaragunupudi"
}
] |
A few questions with regards to RichEdit
|
[
{
"date": "2009-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Rao,\n\nI have been reviewing the source code of RESETOLEUNINIT() and there is no conflict with TOleAuto() except that a call to OleUninitialize() is done. \n\nWe need to check if OleInitialize() works like a DLL (using an internal counter). If yes, there should be no conflict at all with TOleAuto().",
"time": "11:30",
"topic": "A few questions with regards to RichEdit",
"username": "Antonio Linares"
}
] |
A few questions with regards to RichEdit
|
[
{
"date": "2008-02-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello from Germany\n\nI'm still busy with testing the DB-Tools, but it \nis possible, to show what's going on.\n\nIt is not everything translated in english,\nbut i think it is possible to understand.\nExcuse me, when not everything works 100 %\nfor the moment. It is still a lot to do.\nThe complete program-source will be\nfree for use, so you can make your own changes. \n\nVers. 8.2 f\nMany bugs removed. \nIni-Handling\nThe user can define the style and colors of \ndiolog-headers as well he can choose his\nown background or logo. \n-----------------------------------------\nVers. 8.2 e \nButtons in Quickbrowse / Dialog-Mode :\nNew, Del/Recal, Pack corrected.\n-----------------------------------------\nVers. 8.2 d \nNew INI-File Handling SET DATE-Format \nand Write-Format : INSERT / OVERWRITE\n-----------------------------------------\nVers. 8.2 c \nChecking ID-Nr. in Dialogs.\nBorlands RC-Editor had changed ID-Numbers\nafter copy from one dialog to another.\nThere was a error undefined ID-Nr.\n----------------------------------------\nVers. 8.2 a,b\nSome more translations\n----------------------------------------\n----------------------------------------- \n\n[img:10joe5xu]http://www.pflegeplus.com/pictures/outlook5.jpg[/img:10joe5xu]\n\nYou can choose between 2 modes : Dialog or Outlook2003.\n\nCreate a new database.\nChange database-structure with saving to different format.\nExcel-Export.\n\nDescription for Module : Quickbrowse\nAutomatic detection of NTX / CDX\n2 Browsers : 1 Listbrowse, 1 Recordbrowse\nIncremental search, but with a control-field\nQuick indexing, just a right click on the Col.\nThe index-key is shown in a control-field.\nA sample of a filter, you will see i the filter-field.\nThe Col-color changes to red and switches to Col 1\nFilter-setting. Keep all filters in a extra database.\nFrom there you can choose a filter without new writing.\nThe filterdatabase as well is filterd and shows only filters\nof the selected database.\nYou can create, delete and pack record.\nMuch more .....\n\n<!-- m --><a class=\"postlink\" href=\"http://www.pflegeplus.com/pictures/db_tools.zip\">http://www.pflegeplus.com/pictures/db_tools.zip</a><!-- m -->\n\nSome more ideas ?\n\nGreetings\nUwe",
"time": "20:19",
"topic": "A first overview of the DB-Tools ==> Vers. 8.2 f",
"username": "ukoenig"
}
] |
A first overview of the DB-Tools ==> Vers. 8.2 f
|
[
{
"date": "2008-02-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr ukoenig\n\nVery nice effort.\n\nI started the program. Clicked the Left button on the button bar \"QuickBrowse\". Selected DBF file and then I got this error.\n\n[code:2sul6u8e]\nAnwendung\n==========\n Pfad und Name : C:\\TESTS\\Bin\\G_tools.exe (32 bits)\n Größe : 2,006,528 bytes\n Zeit ab Start : 0 hours 0 mins 15 secs \n Fehler aufgetreten am : 16.02.2008, 09:32:37\n Fehler Beschreibung : Error FiveWin/1 Non defined Id: No: 10\n\nStack Aufrufe\n===========\n Aufruf von : CONTROL.PRG => TCONTROL:INITIATE(0)\n Aufruf von : BUTTON.PRG => TBUTTON:INITIATE(0)\n Aufruf von : => __OBJSENDMSG(0)\n Aufruf von : HARBOUR.PRG => OSEND(0)\n Aufruf von : HARBOUR.PRG => ASEND(0)\n Aufruf von : DIALOG.PRG => TDIALOG:INITIATE(0)\n Aufruf von : DIALOG.PRG => TDIALOG:HANDLEEVENT(0)\n Aufruf von : => DIALOGBOX(0)\n Aufruf von : DIALOG.PRG => TDIALOG:ACTIVATE(0)\n Aufruf von : g_dialog.PRG => PROG_1A(179)\n Aufruf von : g_Tools.PRG => (b)MAIN(76)\n Aufruf von : BTNBMP.PRG => TBTNBMP:CLICK(0)\n Aufruf von : BTNBMP.PRG => TBTNBMP:LBUTTONUP(0)\n Aufruf von : => TWINDOW:HANDLEEVENT(0)\n Aufruf von : CONTROL.PRG => TCONTROL:HANDLEEVENT(0)\n Aufruf von : BTNBMP.PRG => TBTNBMP:HANDLEEVENT(0)\n Aufruf von : WINDOW.PRG => _FWH(0)\n Aufruf von : g_Tools.PRG => NOGPF(0)\n Aufruf von : g_Tools.PRG => WINRUN(278)\n Aufruf von : WINDOW.PRG => TMDIFRAME:ACTIVATE(0)\n Aufruf von : g_Tools.PRG => MAIN(126)\n[/code:2sul6u8e]",
"time": "04:51",
"topic": "A first overview of the DB-Tools ==> Vers. 8.2 f",
"username": "nageswaragunupudi"
}
] |
A first overview of the DB-Tools ==> Vers. 8.2 f
|
[
{
"date": "2016-04-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I suggest you do not directly assign fonts to each button. Instead please assign fonts to the metro panel like this:\n\noPanel:oBtnFont:End()\noPanel:oBtnFont := oNewFontForBtnCaption\n\noPanel:oTextFont:End()\noPanel:oTextFont := oNewFontForBtnText\n\nYou do not destroy your fonts because oPanel destroys these new fonts when ends.",
"time": "23:54",
"topic": "A font-problem in METRO-app ?",
"username": "nageswaragunupudi"
}
] |
A font-problem in METRO-app ?
|
[
{
"date": "2016-04-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nI have a problem with fonts in my METRO-aplication\n\n[b:2vdpeft8]Fonts defined on top[/b:2vdpeft8]\n\n[color=#008000:2vdpeft8]DEFINE FONT oFontLarge NAME \"Arial\" SIZE 0, -50 BOLD ITALIC\nDEFINE FONT oFontTime NAME \"Arial\" SIZE 0, -25 BOLD ITALIC\nDEFINE FONT oFontMed NAME \"Arial\" SIZE 0, -20 BOLD\nDEFINE FONT oFontTiny NAME \"Arial\" SIZE 0, -15 \nDEFINE FONT oFontSys NAME \"Arial\" SIZE 0, -14 \nDEFINE FONT oFontText NAME \"Arial\" SIZE 0, -13\nDEFINE FONT oFontTage NAME \"Arial\" SIZE 0, -11\nIF nScreenW > 1600\n\tDEFINE FONT oTileFont NAME \"Arial\" SIZE 0, -20 BOLD\nELSE\n\tDEFINE FONT oTileFont NAME \"Arial\" SIZE 0, -16 BOLD\nENDIF[/color:2vdpeft8]\n\n[b:2vdpeft8]released at the end[/b:2vdpeft8]\n\n[color=#008000:2vdpeft8]oFontLarge:End() // Line 179\noFontTime:End()\noFontMed:End()\noFontTiny:End()\noFontSys:End()\noFontText:End()\noFontTage:End()\noTileFont:End() // Line 186[/color:2vdpeft8]\n\nMy 1. test NO buttons only the headline\nMy 2. test with 1 button\n\nI 'm getting the following messages iside the LOG file\n\n[color=#0000FF:2vdpeft8]From the 1. test\n08.04.2016 22:55:31: EXCESS RELEASE OF FONT Arial[ hFont : 0] ( nCount : 0 )\n<-TFONT:END(284) <-MAIN(179)\n------------------------------------------------------------\nfrom the 2. test\t\n08.04.2016 22:58:34: EXCESS RELEASE OF FONT Arial[ hFont : 0] ( nCount : 0 )\n<-TFONT:END(284) <-MAIN(186)\n------------------------------------------------------------[/color:2vdpeft8]\n\nadding ALL buttons the log-file looks like\n\n08.04.2016 23:15:26: EXCESS RELEASE OF FONT Arial[ hFont : 0] ( nCount : 0 )\n<-TFONT:END(284) <-TCONTROL:DESTROY(2122) <-TBTNBMP:DESTROY(912) <-TMETROBTN:DESTROY(900) \n<-TWINDOW:HANDLEEVENT(0) <-TCONTROL:HANDLEEVENT(1733) \n<-TMETROBTN:HANDLEEVENT(1766) <-_FWH(3278) <-WINRUN(0)\n------------------------------------------------------------\t\n08.04.2016 23:15:26: EXCESS RELEASE OF FONT Arial[ hFont : 0] ( nCount : -1 )\n <-TFONT:END(284) <-TCONTROL:DESTROY(2122) <-TBTNBMP:DESTROY(912) <-TMETROBTN:DESTROY(900) \n<-TWINDOW:HANDLEEVENT(0) <-TCONTROL:HANDLEEVENT(1733) \n<-TMETROBTN:HANDLEEVENT(1766) <-_FWH(3278) <-WINRUN(0)\n------------------------------------------------------------\t\n08.04.2016 23:15:26: EXCESS RELEASE OF FONT Arial[ hFont : 0] ( nCount : -2 )\n <-TFONT:END(284) <-TCONTROL:DESTROY(2122) <-TBTNBMP:DESTROY(912) <-TMETROBTN:DESTROY(900) \n<-TWINDOW:HANDLEEVENT(0) <-TCONTROL:HANDLEEVENT(1733) \n<-TMETROBTN:HANDLEEVENT(1766) <-_FWH(3278) <-WINRUN(0)\n------------------------------------------------------------\t\n08.04.2016 23:15:26: EXCESS RELEASE OF FONT Arial[ hFont : 0] ( nCount : -3 )\n <-TFONT:END(284) <-TCONTROL:DESTROY(2122) <-TBTNBMP:DESTROY(912) <-TMETROBTN:DESTROY(900) \n<-TWINDOW:HANDLEEVENT(0) <-TCONTROL:HANDLEEVENT(1733) \n<-TMETROBTN:HANDLEEVENT(1766) <-_FWH(3278) <-WINRUN(0)\n------------------------------------------------------------\t\n08.04.2016 23:15:26: EXCESS RELEASE OF FONT Arial[ hFont : 0] ( nCount : -4 )\n <-TFONT:END(284) <-TCONTROL:DESTROY(2122) <-TBTNBMP:DESTROY(912) <-TMETROBTN:DESTROY(900) \n<-TWINDOW:HANDLEEVENT(0) <-TCONTROL:HANDLEEVENT(1733) \n<-TMETROBTN:HANDLEEVENT(1766) <-_FWH(3278) <-WINRUN(0)\n...\n...\n48 times the same\n\nfonts are defined on top and released at the end\nWhy these errors ?\n\nthe typical button\n\nDEFINE METROBUTTON oSBtn[105] OF oMetro ;\nCOLOR CLR_WHITE, 255 ;\nCAPTION \"&Ende\" ;\nALIGN \"BOTTOMLEFT\" ;\nGROUP 3 ;\nFONT oTileFont ;\nBITMAP c_Pfad1 + \"exit.bmp\" ;\nBMPALIGN \"BOTTOMRIGHT\" ;\nSIZE 48, 48 ;\nBODYTEXT \"Pflegeplus; beenden\" ;\nTEXTALIGN \"TOPLEFT\" ;\nACTION oWnd:End() \noSBtn[105]:nClrCaption := CLR_WHITE\noSBtn[105]:oFont := [color=#0000FF:2vdpeft8]oTileFont[/color:2vdpeft8] \noSBtn[105]:oTextFont := [color=#0000FF:2vdpeft8]oTileFont[/color:2vdpeft8]\n\nbest regards\nUwe <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->",
"time": "22:06",
"topic": "A font-problem in METRO-app ?",
"username": "ukoenig"
}
] |
A font-problem in METRO-app ?
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I tested but got funny results \nthe LOG-file messages are fixed.\n\nactivating : oPanel1:oFont, Title and buttons are using the same font\noPanel1:oBtnFont and oPanel1:oTextFont are not shown\n\nI used :\n[code=fw:2xv028fx]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">// my defined fonts</span><br /><span style=\"color: #B900B9;\">// ------------------</span><br /><span style=\"color: #B900B9;\">//DEFINE FONT oFontLarge NAME \"Arial\" SIZE 0, -50 BOLD</span><br /><span style=\"color: #B900B9;\">//DEFINE FONT oFontSmall NAME \"Arial\" SIZE 0, -16 BOLD</span><br /><span style=\"color: #B900B9;\">//DEFINE FONT oFontTiny NAME \"Arial\" SIZE 0, -12 BOLD</span><br /><br />oPanel1:<span style=\"color: #000000;\">oFont</span>:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br />oPanel1:<span style=\"color: #000000;\">oFont</span> := oFontLarge <span style=\"color: #B900B9;\">// Title</span><br />oPanel1:<span style=\"color: #000000;\">oBtnFont</span>:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br />oPanel1:<span style=\"color: #000000;\">oBtnFont</span> := oFontTiny <span style=\"color: #B900B9;\">// Button</span><br />oPanel1:<span style=\"color: #000000;\">oTextFont</span>:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br />oPanel1:<span style=\"color: #000000;\">oTextFont</span> := oFontSmall <span style=\"color: #B900B9;\">// Button</span><br /><br /><span style=\"color: #B900B9;\">// defined in METHOD New(.....</span><br /><span style=\"color: #B900B9;\">// ------------------------------------------</span><br /><span style=\"color: #B900B9;\">// DEFINE FONT ::oFont NAME \"Segoe UI Light\" SIZE 0, -18 BOLD</span><br /><span style=\"color: #B900B9;\">// DEFINE FONT ::oFontB NAME \"Segoe UI Light\" SIZE 0, -14 BOLD</span><br /><span style=\"color: #B900B9;\">// DEFINE FONT ::oBtnFont NAME \"Segoe UI Light\" SIZE 0, -8 BOLD</span><br /><span style=\"color: #B900B9;\">// DEFINE FONT ::oTextFont NAME \"Segoe UI Light\" SIZE 0, -8 BOLD</span><br /> </div>[/code:2xv028fx]\n\nregards\nUwe <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->",
"time": "11:34",
"topic": "A font-problem in METRO-app ?",
"username": "ukoenig"
}
] |
A font-problem in METRO-app ?
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ok. Now font destruction issues are resolved.\nMay I know what other problems you have and what assistance I can provide?",
"time": "11:38",
"topic": "A font-problem in METRO-app ?",
"username": "nageswaragunupudi"
}
] |
A font-problem in METRO-app ?
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It seems the fonts are not used :\n\noPanel1:oFont:End()\noPanel1:oFont := oFontLarge // Title\n\n[img:2104yjyp]http://www.pflegeplus.com/IMAGES/Metrob5.jpg[/img:2104yjyp]\n\noPanel1:oBtnFont:End()\noPanel1:oBtnFont := oFontTiny // Button\noPanel1:oTextFont:End()\noPanel1:oTextFont // Button\n\n[img:2104yjyp]http://www.pflegeplus.com/IMAGES/Metrob6.jpg[/img:2104yjyp]\n\na typical defined button\n\nDEFINE METROBUTTON oSBtn[1] OF oPanel1 ;\nCOLOR nMText1A, nMColor1 ;\nCAPTION \"&Patienten\" ;\nALIGN \"TOPCENTER\" ;\nGROUP 1 ;\nBITMAP c_Pfad1 + \"Patient.bmp\" ;\nBMPALIGN \"MIDDLECENTER\" ;\nSIZE 50, 50 ; \nACTION ( NEU_DBF1(), P_INDEX() ) ;\nBODYTEXT \"Daten\" ;\nTEXTALIGN \"BOTTOMLEFT\" \noSBtn[1]:nClrCaption\t:= nMText1B\n\nregards\nUwe <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( -->",
"time": "11:43",
"topic": "A font-problem in METRO-app ?",
"username": "ukoenig"
}
] |
A font-problem in METRO-app ?
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Please do these assignments \n[code=fw:11lahbi3]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">oPanel1:<span style=\"color: #000000;\">oFont</span>:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br />oPanel1:<span style=\"color: #000000;\">oFont</span> := oFontLarge <span style=\"color: #B900B9;\">// Title</span><br />oPanel1:<span style=\"color: #000000;\">oBtnFont</span>:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br />oPanel1:<span style=\"color: #000000;\">oBtnFont</span> := oFontTiny <span style=\"color: #B900B9;\">// Button</span><br />oPanel1:<span style=\"color: #000000;\">oTextFont</span>:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br />oPanel1:<span style=\"color: #000000;\">oTextFont</span> := oFontSmall <span style=\"color: #B900B9;\">// Button</span><br /> </div>[/code:11lahbi3]\nbefore creating any button and do not assign any fonts to the buttons.",
"time": "12:54",
"topic": "A font-problem in METRO-app ?",
"username": "nageswaragunupudi"
}
] |
A font-problem in METRO-app ?
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "to be sure, nothing strange is included\nI added the fonts to sample [b:1dpdrui6]< metrptst.prg >[/b:1dpdrui6] with the same results\ntitle and buttonfonts are the same\n\n[img:1dpdrui6]http://www.pflegeplus.com/IMAGES/MetroB7.jpg[/img:1dpdrui6]\n\nfrom original sample :\n\nfunction Main( cParam )\nlocal oWnd, oBar, oMetro, oBrush\nlocal cTitle := \"Start\"\n\nSET DATE ITALIAN\nSET CENTURY ON\n\n// added\n[color=#0000FF:1dpdrui6]DEFINE FONT oFontLarge NAME \"Arial\" SIZE 0, -50 BOLD\nDEFINE FONT oFontSmall NAME \"Arial\" SIZE 0, -16 BOLD\nDEFINE FONT oFontTiny NAME \"Arial\" SIZE 0, -12 BOLD[/color:1dpdrui6]\n...\n...\n\nstatic function MakeMetroPanel( oWnd )\nlocal oMetro, oBtn\n\nDEFINE METROPANEL oMetro OF oWnd TITLE \"Start\" ;\nCOLOR CLR_WHITE, CLR_GREEN ;\nON CLICK oWnd:End()\n\noMetro:lDesignMode := .t.\n\n// added\n[color=#0000FF:1dpdrui6]oMetro:oFont:End()\noMetro:oFont := oFontLarge\t// Title\noMetro:oBtnFont:End()\noMetro:oBtnFont := oFontTiny\t// Button\noMetro:oTextFont:End()\noMetro:oTextFont := oFontSmall\t// Button[/color:1dpdrui6]\n\n// the buttons :\nDEFINE METROBUTTON oBtn OF oMetro ;\n....\n....\n....\nany idea what could be wrong ?\n\n----------------\n----------------\n\n[b:1dpdrui6]it works using ( NO logfile-writings ) adding 2 lines :[/b:1dpdrui6]\n\n[color=#0000FF:1dpdrui6]FONT oFontSmall ;[/color:1dpdrui6]\n[color=#0000FF:1dpdrui6]TEXTFONT oFontTiny ;[/color:1dpdrui6]\n\n[img:1dpdrui6]http://www.pflegeplus.com/IMAGES/Metrob8.jpg[/img:1dpdrui6]\n\n// keeping :\noPanel1:oFont := oFontLarge // Title\n\n// not needed !!!\n//oPanel1:oBtnFont:End()\n//oPanel1:oBtnFont := oFontTiny // Button\n//oPanel1:oTextFont:End()\n//oPanel1:oTextFont\t:= oFontSmall // Button\n\nDEFINE METROBUTTON oBtn OF oMetro ;\nCOLOR CLR_HBLUE,CLR_WHITE ;\n[color=#0000FF:1dpdrui6]FONT oFontSmall ;[/color:1dpdrui6]\nCAPTION \"Metro\" ;\nALIGN \"MIDDLECENTER\" ;\nBITMAP \"..\\bitmaps\\fivetech3.bmp\" ;\nBMPALIGN \"BOTTOMLEFT\" ;\nSIZE 50, 50 ;\nBODYTEXT \"FiveWin Power\" ;\nTEXTALIGN \"BOTTOMRIGHT\" ;\n[color=#0000FF:1dpdrui6]TEXTFONT oFontTiny ;[/color:1dpdrui6]\nBACKGROUND \"..\\bitmaps\\fiveback.bmp\" ;\nLARGE\noBtn:nClrCaption := CLR_HRED\n\nregards\nUwe <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( -->",
"time": "15:48",
"topic": "A font-problem in METRO-app ?",
"username": "ukoenig"
}
] |
A font-problem in METRO-app ?
|
[
{
"date": "2013-03-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nas a free service, I offer to create\nany needed special TEXTLOGO\nwith a defined Background ( structure ) or transparent\nfor all friends and users of FWH.\nThe logo can be placed insided this toppic for download\nor can be send by email to Your address.\nJust define the \n\n[color=#0000FF:32ibzyw5][size=150:32ibzyw5]font\nsize\ntext\nstyle ( transparent or brush )\ncolor, gradient or brush\nstructure[/size:32ibzyw5][/color:32ibzyw5]\n\nYou will receice 2 Images\n1 with a selected background\nand a 2. alphablended transparent text ( PNG )\n\n[img:32ibzyw5]http://www.pflegeplus.com/pictures/inspiration.png[/img:32ibzyw5]\n\nIt can be a fullscreen-image\n\n[img:32ibzyw5]http://www.pflegeplus.com/pictures/inspiration2.png[/img:32ibzyw5]\n\nwith a defined background-color or gradient\n\n[img:32ibzyw5]http://www.pflegeplus.com/pictures/inspiration3.png[/img:32ibzyw5]\n\nany Font You want to use with a brushed text\n\n[img:32ibzyw5]http://www.pflegeplus.com/pictures/Mylogo1.png[/img:32ibzyw5]\n\nA combination of Image and Text\nuse a created transparent text and place it on a defined position \nof Your image, using PIXELFORMER\n\n[img:32ibzyw5]http://www.pflegeplus.com/pictures/inspiration4.png[/img:32ibzyw5]\n\nselect any combination of the styles like :\n\n[size=150:32ibzyw5]Brush[/size:32ibzyw5]\n[img:32ibzyw5]http://www.pflegeplus.com/pictures/DLogo1.jpg[/img:32ibzyw5]\n\n[size=150:32ibzyw5]Transformed[/size:32ibzyw5]\n[img:32ibzyw5]http://www.pflegeplus.com/pictures/DLogo2.jpg[/img:32ibzyw5]\n\n[size=150:32ibzyw5]Text-outline [/size:32ibzyw5]\n[img:32ibzyw5]http://www.pflegeplus.com/pictures/DLogo3.jpg[/img:32ibzyw5]\n\n[size=150:32ibzyw5]Text-border[/size:32ibzyw5]\n[img:32ibzyw5]http://www.pflegeplus.com/pictures/DLogo4.jpg[/img:32ibzyw5]\n\n[size=150:32ibzyw5]Text-shadow[/size:32ibzyw5]\n[img:32ibzyw5]http://www.pflegeplus.com/pictures/DLogo5.jpg[/img:32ibzyw5]\n\n[size=150:32ibzyw5]Frames[/size:32ibzyw5]\n[img:32ibzyw5]http://www.pflegeplus.com/pictures/DLogo6.jpg[/img:32ibzyw5]\n\n[size=150:32ibzyw5]Predefined Styles[/size:32ibzyw5]\n[img:32ibzyw5]http://www.pflegeplus.com/pictures/DLogo7.jpg[/img:32ibzyw5]\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "15:09",
"topic": "A free Forum-service : any Textlogo for FWH-users",
"username": "ukoenig"
}
] |
A free Forum-service : any Textlogo for FWH-users
|
[
{
"date": "2013-03-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe,\n\nmany thanks <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "10:09",
"topic": "A free Forum-service : any Textlogo for FWH-users",
"username": "Antonio Linares"
}
] |
A free Forum-service : any Textlogo for FWH-users
|
[
{
"date": "2013-03-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Halo Uwe..\n\nVery nice logo..\n\nCan you send me at: <!-- e --><a href=\"mailto:Mulyadi@ksk.co.id\">Mulyadi@ksk.co.id</a><!-- e -->\nThanks...\n\nBest regards..\n\n\nMulyadi\nFWH+xHarbour+ADO+Oracle",
"time": "05:10",
"topic": "A free Forum-service : any Textlogo for FWH-users",
"username": "Mulyadi"
}
] |
A free Forum-service : any Textlogo for FWH-users
|
[
{
"date": "2013-03-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You can add up to 3 textlines.\nSelection [color=#FF0000:3vtet3ma]<[b:3vtet3ma]Deformed[/b:3vtet3ma]>[/color:3vtet3ma] will use the 3 lines to create a Logo\n\n[img:3vtet3ma]http://www.pflegeplus.com/pictures/DLogo8.jpg[/img:3vtet3ma]\n\nThe needed Infos :\n\n[b:3vtet3ma]1. Text 1[/b:3vtet3ma]: [b:3vtet3ma][color=#FF0000:3vtet3ma]My special Logo[/color:3vtet3ma][/b:3vtet3ma]\n[b:3vtet3ma]1. Text 2[/b:3vtet3ma]: [b:3vtet3ma][color=#FF0000:3vtet3ma]---[/color:3vtet3ma][/b:3vtet3ma]\n[b:3vtet3ma]1. Text 3[/b:3vtet3ma]: [b:3vtet3ma][color=#FF0000:3vtet3ma]---[/color:3vtet3ma][/b:3vtet3ma]\n[b:3vtet3ma]1a. Format [/b:3vtet3ma]: [b:3vtet3ma][color=#FF0000:3vtet3ma]JPG[/color:3vtet3ma][/b:3vtet3ma]\n[b:3vtet3ma]1b. Format [/b:3vtet3ma]: [b:3vtet3ma][color=#FF0000:3vtet3ma]PNG[/color:3vtet3ma][/b:3vtet3ma]\n\n[b:3vtet3ma]2. Font [/b:3vtet3ma]: [b:3vtet3ma][color=#FF0000:3vtet3ma]Arial[/color:3vtet3ma][/b:3vtet3ma]\n\n[b:3vtet3ma]3. Background [/b:3vtet3ma]\n-------------\n[b:3vtet3ma]a) Color [/b:3vtet3ma]: -\n[b:3vtet3ma]b) Gradient [/b:3vtet3ma]: -\n[b:3vtet3ma]c) Material [/b:3vtet3ma]: [b:3vtet3ma][color=#FF0000:3vtet3ma]S 1[/color:3vtet3ma][/b:3vtet3ma]\n\n[b:3vtet3ma]4. Text-brush[/b:3vtet3ma]\n-------------\n[b:3vtet3ma]a) Color [/b:3vtet3ma]: -\n[b:3vtet3ma]b) Gradient [/b:3vtet3ma]: - -\n[b:3vtet3ma]c) Material [/b:3vtet3ma]: [b:3vtet3ma][color=#FF0000:3vtet3ma]V 2[/color:3vtet3ma][/b:3vtet3ma]\n\n[b:3vtet3ma]5. Deformed[/b:3vtet3ma] : [b:3vtet3ma][color=#FF0000:3vtet3ma]B 3[/color:3vtet3ma][/b:3vtet3ma]\n[b:3vtet3ma]6. Outline [/b:3vtet3ma]:[b:3vtet3ma] [color=#FF0000:3vtet3ma]B 1[/color:3vtet3ma][/b:3vtet3ma]\n[b:3vtet3ma]7. 3D-border [/b:3vtet3ma]: [b:3vtet3ma][color=#FF0000:3vtet3ma]B 12[/color:3vtet3ma][/b:3vtet3ma]\n[b:3vtet3ma]8. Shadow [/b:3vtet3ma]:[b:3vtet3ma] [color=#FF0000:3vtet3ma]B 2[/color:3vtet3ma][/b:3vtet3ma]\n[b:3vtet3ma]9. Frame [/b:3vtet3ma]: [b:3vtet3ma][color=#FF0000:3vtet3ma]E 1[/color:3vtet3ma] ( with selected Material )[/b:3vtet3ma]\n\nThe result from defined values\n\n[img:3vtet3ma]http://www.pflegeplus.com/pictures/myspeciallogo.png[/img:3vtet3ma]\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "12:43",
"topic": "A free Forum-service : any Textlogo for FWH-users",
"username": "ukoenig"
}
] |
A free Forum-service : any Textlogo for FWH-users
|
[
{
"date": "2013-03-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Very nice...",
"time": "17:59",
"topic": "A free Forum-service : any Textlogo for FWH-users",
"username": "Bayron"
}
] |
A free Forum-service : any Textlogo for FWH-users
|
[
{
"date": "2013-03-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "The first requested Logo :\n\n1. with Background ( Jpg )\n\n[img:5mlrcgfl]http://www.pflegeplus.com/pictures/jose1a.jpg[/img:5mlrcgfl]\n\n2. transparent Text ( PNG can be painted on any other Background )\n\n[color=#0000FF:5mlrcgfl][b:5mlrcgfl]oBmpAlpha:=TImage():Define(, \"Logo.png\")\n..\nACTIVATE DIALOG oDlg NOWAIT ; //CENTERED\nON PAINT (ABPaint( hDC,395,260, oBmpAlpha:hBitmap, 255 ))[/b:5mlrcgfl][/color:5mlrcgfl]\n\n[img:5mlrcgfl]http://www.pflegeplus.com/pictures/jose2a.png[/img:5mlrcgfl]\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "20:58",
"topic": "A free Forum-service : any Textlogo for FWH-users",
"username": "ukoenig"
}
] |
A free Forum-service : any Textlogo for FWH-users
|
[
{
"date": "2013-03-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You can select one of the predefined style as well. Next change the color\n\nSelect Col and Row\n\nPredefined Styles = E 5\n\nYou can change the Background- and Textbrush like :\n\n3. Background \n-------------\na) Color : -\nb) Gradient : -\nc) Material : S 1\n\n4. Text-brush\n-------------\na) Color : -\nb) Gradient : - -\nc) Material : V 2\n\n\n[img:3u2poeng]http://www.pflegeplus.com/pictures/DLogo7.jpg[/img:3u2poeng]\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "21:52",
"topic": "A free Forum-service : any Textlogo for FWH-users",
"username": "ukoenig"
}
] |
A free Forum-service : any Textlogo for FWH-users
|
[
{
"date": "2013-03-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Fantastic Many thanks",
"time": "22:10",
"topic": "A free Forum-service : any Textlogo for FWH-users",
"username": "wilsongamboa"
}
] |
A free Forum-service : any Textlogo for FWH-users
|
[
{
"date": "2013-03-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Wilson,\n\nno problem, to select another style with maybe more textlines ( new )\nor a predefined style.\nI changed the selection defines like < A 5 >\nhave a look at the new style pictures.\n\nSamples of 3 - line Logos\nMouse rightclick /save to save this transparent PNG\n\n[img:1rsgpnyu]http://www.pflegeplus.com/pictures/Joselogo1.png[/img:1rsgpnyu]\n\n[img:1rsgpnyu]http://www.pflegeplus.com/pictures/Joselogo2.png[/img:1rsgpnyu]\n\n[img:1rsgpnyu]http://www.pflegeplus.com/pictures/Jose5.png[/img:1rsgpnyu]\n\nRegards\nUwe <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->",
"time": "20:35",
"topic": "A free Forum-service : any Textlogo for FWH-users",
"username": "ukoenig"
}
] |
A free Forum-service : any Textlogo for FWH-users
|
[
{
"date": "2013-03-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe many thanks nices logos specialy the last",
"time": "01:36",
"topic": "A free Forum-service : any Textlogo for FWH-users",
"username": "wilsongamboa"
}
] |
A free Forum-service : any Textlogo for FWH-users
|
[
{
"date": "2014-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear friends,\n\nTonight Otto let me know this sad news, that we must share here, because though Stephan has gone, it has been a pleasure to meet him here, always kind, helping, another true Clipper-heart, with who we have shared many moments:\n\n[url:1svkd7ga]http://www.uni-kassel.de/fb14bau/fileadmin/datas/fb14/Institute/IBW/Bauinformatik/Personenfotos/3001074975_1-8f9fa8c5b3164b6f9ab98711e49c71e8.pdf[/url:1svkd7ga]\n\n[quote:1svkd7ga]The University of Kassel takes leave of Mr. Stefan Haupt * 7 9 1961 † 14 4 2014 Mr. Stefan Haupt was as technical staff in field construction computer science and at the same time as an IT administrator in the Department of Bauin- engineer and environmental engineering at the University of Kassel worked. He was instrumental in setting up the IT infrastructure of the department and has all the phases of technological development in teaching with distinctive expertise and responsible commitment supported. In grateful appreciation of his personality and his performance we always hold him in good memory. With him we lose a to- reliable and valued employees and colleagues, all of us very will be missing. Our sympathy goes to his wife and two children. His death is upsetting and leaves a large gap in our Department. We will honor his remembrance. University of Kassel The President The Staff, students and Prof. Dr. Rolf-Dieter Postlep colleagues from the Department of Civil Engineering and Environmental Engineering[/quote:1svkd7ga]",
"time": "02:38",
"topic": "A friend has gone but he remains in our hearts",
"username": "Antonio Linares"
}
] |
A friend has gone but he remains in our hearts
|
[
{
"date": "2014-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ditto",
"time": "03:50",
"topic": "A friend has gone but he remains in our hearts",
"username": "hua"
}
] |
A friend has gone but he remains in our hearts
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.