messages
listlengths 1
1
| topic
stringlengths 2
60
|
|---|---|
[
{
"date": "2006-02-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nOn a first review it looks as a Harbour vs xharbour related issue.\n\nWith Harbour it works ok <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->\n\nIt seems a difference between Harbour/xharbour Class TGet.",
"time": "19:39",
"topic": "Bug in TButton",
"username": "Antonio Linares"
}
] |
Bug in TButton
|
[
{
"date": "2006-02-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This way it works:\n[code:1z6n9bq4]\n @ 1, 1 GET cVar; \n VALID ( oDlg:aControls[ 1 ]:Assign(), !EMPTY( cVar ) ) \n[/code:1z6n9bq4]\nSo it seems that with xharbour the ::oGet DATA has not been assigned, thats why it remains \"empty\".",
"time": "19:56",
"topic": "Bug in TButton",
"username": "Antonio Linares"
}
] |
Bug in TButton
|
[
{
"date": "2006-02-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This is a fix:\n[code:2g61zxy7]\nMETHOD lValid() CLASS TGet\n\n local lRet := .t.\n\n if ::oGet:BadDate\n ::oGet:KillFocus()\n ::oGet:SetFocus()\n MsgBeep()\n return .f.\n else\n ::oGet:Assign() // New !!!\n if ValType( ::bValid ) == \"B\"\n lRet := Eval( ::bValid, Self )\n if ! lRet\n ::oWnd:nLastKey = 0\n endif\n endif\n endif\n\nreturn lRet\n[/code:2g61zxy7]",
"time": "20:23",
"topic": "Bug in TButton",
"username": "Antonio Linares"
}
] |
Bug in TButton
|
[
{
"date": "2006-02-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you, but I suspect that some other problems is hiding under the wood... <!-- s:-( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":-(\" title=\"Sad\" /><!-- s:-( -->\n\nEMG",
"time": "20:36",
"topic": "Bug in TButton",
"username": "Enrico Maria Giordano"
}
] |
Bug in TButton
|
[
{
"date": "2006-02-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nYes, we'll see. \n\nThe problem is that Class TGet is quite different from Harbour to xharbour.",
"time": "21:26",
"topic": "Bug in TButton",
"username": "Antonio Linares"
}
] |
Bug in TButton
|
[
{
"date": "2006-02-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio:\n\nThe last time I sent you a suggested fix in TGet [I forgot what it was\nabout <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) --> ], I pasted a modified version of ::EditUpdate() I've been using for several years now and in which I added the call to ::oGet:assign()\nto ensure the Clipper/[x]Harbour buffer was always in sync with FW/FWH's.\nThat could be an alternate fix for this problem:\n\nMETHOD EditUpdate() CLASS TGet\n\n if ::oGet:HasFocus\n ::DispText()\n ::oGet:Assign() // lkm\n endif\n\n ::SetPos( ::oGet:Pos )\n\nReturn Self\n\n\n[quote=\"Antonio Linares\":302k6lgp]This is a fix:\n[code:302k6lgp]\nMETHOD lValid() CLASS TGet\n\n local lRet := .t.\n\n if ::oGet:BadDate\n ::oGet:KillFocus()\n ::oGet:SetFocus()\n MsgBeep()\n return .f.\n else\n ::oGet:Assign() // New !!!\n if ValType( ::bValid ) == \"B\"\n lRet := Eval( ::bValid, Self )\n if ! lRet\n ::oWnd:nLastKey = 0\n endif\n endif\n endif\n\nreturn lRet\n[/code:302k6lgp][/quote:302k6lgp][code:302k6lgp][/code:302k6lgp]\n\nRegards,\n\nLuis",
"time": "18:00",
"topic": "Bug in TButton",
"username": "Luis Krause"
}
] |
Bug in TButton
|
[
{
"date": "2006-02-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":48zy97bd]Enrico,\n\nYes, we'll see. \n\nThe problem is that Class TGet is quite different from Harbour to xharbour.[/quote:48zy97bd]\n\nAfter some tests it seems all ok with your fix.\n\nThank you.\n\nEMG",
"time": "18:18",
"topic": "Bug in TButton",
"username": "Enrico Maria Giordano"
}
] |
Bug in TButton
|
[
{
"date": "2006-02-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Luis,\n\nThe fact is that Class TGet is different in Harbour and xharbour, thats why we need to asure that before we validate a GET, its related variable has been assigned. Placing it at lValid() is a way to be sure it gets done.",
"time": "19:42",
"topic": "Bug in TButton",
"username": "Antonio Linares"
}
] |
Bug in TButton
|
[
{
"date": "2006-03-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Running the following sample you can see that it shows the message \"cVar2 is empty\" if ALT-C is pressed (but not if the button is clicked):\n\n[code:2bhaiky7]#include \"Fivewin.ch\"\n\n\nFUNCTION MAIN()\n\n LOCAL oDlg\n\n LOCAL oGet1, cVar1 := SPACE( 30 )\n LOCAL oGet2, cVar2 := SPACE( 30 )\n\n DEFINE DIALOG oDlg\n\n @ 1, 1 GET oGet1 VAR cVar1\n\n oGet1:bLostFocus = { || cVar2 := \"Test\", oGet2:Refresh() }\n\n @ 2, 1 GET oGet2 VAR cVar2\n\n @ 3, 1 BUTTON \"&Close\";\n ACTION IF( !EMPTY( cVar2 ), oDlg:End(), MSGINFO( \"cVar2 is empty\" ) )\n\n ACTIVATE DIALOG oDlg;\n CENTER\n\n ? cVar2\n\n RETURN NIL[/code:2bhaiky7]\n\nA possible fix:\n\n[code:2bhaiky7]METHOD Click() CLASS TButton\n\n if ! ::lProcessing\n ::lProcessing = .t.\n\n if ::bAction != nil\n ::SetFocus() ///EMG\n Eval( ::bAction )\n endif\n\n if ! ::lCancel .and. ::oWnd:hWnd != 0 // A.L. 21/04/03\n Super:Click()\n endif // A.L. 21/04/03\n\n // Hernan Ceccarelli added 10-Junio-2001\n if ( GetFocus() == ::hWnd )\n ::PostMsg( BM_SETSTYLE, BS_DEFPUSHBUTTON, 1 )\n else\n if ! ::lDefault\n ::PostMsg( BM_SETSTYLE, BS_PUSHBUTTON, 1 )\n endif\n endif\n // Hernan Ceccarelli added 10-Junio-2001\n\n ::lProcessing = .f.\n endif\n\nreturn nil[/code:2bhaiky7]\n\nEMG",
"time": "18:42",
"topic": "Bug in TButton",
"username": "Enrico Maria Giordano"
}
] |
Bug in TButton
|
[
{
"date": "2006-03-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks Enrico! <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "19:32",
"topic": "Bug in TButton",
"username": "Antonio Linares"
}
] |
Bug in TButton
|
[
{
"date": "2006-02-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "The following sample shows that if you hit ALT-C the DIALOG is closed but the VALID of the GET is also executed while if you click on the button with the mouse the VALID is not executed (as it should be):\n\n[code:2r35uusq]#include \"Fivewin.ch\"\n\n\nFUNCTION MAIN()\n\n LOCAL oDlg\n\n LOCAL cVar := SPACE( 20 )\n\n DEFINE DIALOG oDlg\n\n @ 1, 1 GET cVar;\n VALID ( MSGINFO( \"Hello\" ), .T. )\n\n @ 3, 1 BUTTON \"&Close\";\n ACTION oDlg:End();\n CANCEL\n\n ACTIVATE DIALOG oDlg;\n CENTER\n\n RETURN NIL[/code:2r35uusq]\n\nEMG",
"time": "23:45",
"topic": "Bug in TButton CANCEL clause",
"username": "Enrico Maria Giordano"
}
] |
Bug in TButton CANCEL clause
|
[
{
"date": "2006-02-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nI think you have it backwards. It sounds like the bug is in the Alt-C not the clicking the button. Valids are NOT supposed to be executed when the CANCEL clause is used. If there were, then you could not cancel a new (empty) dialog without filling in any data necessary to meet any VALIDs (and then such data would be discarded). Correct?\n\nJames",
"time": "02:48",
"topic": "Bug in TButton CANCEL clause",
"username": "James Bott"
}
] |
Bug in TButton CANCEL clause
|
[
{
"date": "2006-02-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Yes, the bug is in the Alt-C. That's what I said (or that I was trying to say, sorry for my bad english).\n\nEMG",
"time": "13:48",
"topic": "Bug in TButton CANCEL clause",
"username": "Enrico Maria Giordano"
}
] |
Bug in TButton CANCEL clause
|
[
{
"date": "2006-02-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nQuite right - just tested - does the same on all of my dialogs - Cancel Button (with CANCEL clause) when clicked - no problem / Alt-C - big problem - GET is VALIDATED.\n\nDale.",
"time": "13:57",
"topic": "Bug in TButton CANCEL clause",
"username": "dpaterso"
}
] |
Bug in TButton CANCEL clause
|
[
{
"date": "2006-02-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\n[quote:21x2h3d6]Yes, the bug is in the Alt-C. That's what I said (or that I was trying to say, sorry for my bad english). [/quote:21x2h3d6]\n\nMy apologies, it was my misunderstanding--not your English. I misread this:\n\n[quote:21x2h3d6]click on the button with the mouse the VALID is not executed (as it should be): [/quote:21x2h3d6]\n\nI thought is said \"(but it should be).\"\n\nSo, as you said Alt-C should not execute the VALID. \n\nRegards,\nJames",
"time": "21:15",
"topic": "Bug in TButton CANCEL clause",
"username": "James Bott"
}
] |
Bug in TButton CANCEL clause
|
[
{
"date": "2006-02-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"James Bott\":2l9rvqit]My apologies, it was my misunderstanding--not your English. I misread this:[/quote:2l9rvqit]\n\nNo problems, James.\n\nEMG",
"time": "23:00",
"topic": "Bug in TButton CANCEL clause",
"username": "Enrico Maria Giordano"
}
] |
Bug in TButton CANCEL clause
|
[
{
"date": "2008-01-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "In the following sample, please press the down arrow till the thumb reaches about half the scrollbar and then try to press PAGE DOWN. You will see that the thumb itself moves up instead of down:\n\n[code:226429ng]#include \"Fivewin.ch\"\n#include \"Tcbrowse.ch\"\n\n\nFUNCTION MAIN()\n\n LOCAL oDlg, oBrw\n\n USE TEST\n\n DEFINE DIALOG oDlg;\n SIZE 400, 400\n\n @ 0, 0 BROWSE oBrw\n\n ADD COLUMN TO oBrw;\n DATA TEST -> last;\n HEADER \"LAST\"\n\n ADD COLUMN TO oBrw;\n DATA TEST -> first;\n HEADER \"FIRST\"\n\n ACTIVATE DIALOG oDlg;\n ON INIT oDlg:SetControl( oBrw );\n CENTER\n\n CLOSE\n\n RETURN NIL[/code:226429ng]\n\nEMG",
"time": "19:40",
"topic": "Bug in TCBrowse",
"username": "Enrico Maria Giordano"
}
] |
Bug in TCBrowse
|
[
{
"date": "2008-01-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "The same sample works fine if a TWBrowse is used instead of a TCBrowse.\n\nEMG",
"time": "19:41",
"topic": "Bug in TCBrowse",
"username": "Enrico Maria Giordano"
}
] |
Bug in TCBrowse
|
[
{
"date": "2008-06-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "In the following sample, the currently selected cell is black on black instead of the specified colors:\r\n\r\n[code:ef2vjkwd]#include \"Fivewin.ch\"\n#include \"Tcbrowse.ch\"\n\n\nFUNCTION MAIN()\n\n LOCAL oDlg, oBrw\n\n USE TEST\n\n DEFINE DIALOG oDlg;\n SIZE 400, 400\n\n @ 0, 0 BROWSE oBrw\n\n oBrw:bLogicLen = { || LastRec() }\n\n oBrw:lCellStyle = .T.\n\n oBrw:nClrForeFocus = { || CLR_HRED }\n oBrw:nClrBackFocus = { || CLR_HGREEN }\n\n ADD COLUMN TO oBrw;\n DATA \"Data\" + LTRIM( STR( RECNO() ) ) + \" \";\n HEADER \"DATA\"\n\n ADD COLUMN TO oBrw\n\n ACTIVATE DIALOG oDlg;\n ON INIT oDlg:SetControl( oBrw );\n CENTER\n\n CLOSE\n\n RETURN NIL[/code:ef2vjkwd]\r\n\r\nEMG",
"time": "19:26",
"topic": "Bug in TCBrowse",
"username": "Enrico Maria Giordano"
}
] |
Bug in TCBrowse
|
[
{
"date": "2008-06-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Any news?\r\n\r\nEMG",
"time": "13:34",
"topic": "Bug in TCBrowse",
"username": "Enrico Maria Giordano"
}
] |
Bug in TCBrowse
|
[
{
"date": "2008-06-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\r\n\r\nFixed <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) --> Please change these lines in Class TCBrowse:\r\n\r\nline 506:\r\n nClrFore := If( ValType( nClrForeFocus ) == \"B\", Eval( nClrForeFocus ), nClrForeFocus )\r\n\r\nline 519:\r\n nClrBack := If( ValType( nClrBackFocus ) == \"B\", Eval( nClrBackFocus ), nClrBackFocus )",
"time": "00:54",
"topic": "Bug in TCBrowse",
"username": "Antonio Linares"
}
] |
Bug in TCBrowse
|
[
{
"date": "2008-06-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Perfect! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\r\n\r\nEMG",
"time": "10:09",
"topic": "Bug in TCBrowse",
"username": "Enrico Maria Giordano"
}
] |
Bug in TCBrowse
|
[
{
"date": "2005-10-31",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "This is the sample. Valid is never executed:\n\n[code:2yrkhmc8]#include \"Fivewin.ch\"\n#include \"Tcbrowse.ch\"\n\n\nFUNCTION MAIN()\n\n LOCAL oDlg, oBrw, cVar\n\n LOCAL bValid := { || MsgInfo(), .T. }\n\n USE C:\\XHARBOUR\\TEST\n\n cVar = FIELD -> first\n\n DEFINE DIALOG oDlg SIZE 300, 300\n\n @ 0, 0 BROWSE oBrw;\n ON RIGHT CLICK oBrw:lEditCol( 1, @cVar, , bValid )\n\n ADD COLUMN TO oBrw;\n DATA TEST -> first;\n HEADER \"FIRST\"\n\n @ 6, 0 BUTTON \"Close\";\n ACTION oDlg:End()\n\n ACTIVATE DIALOG oDlg;\n CENTER\n\n RETURN NIL[/code:2yrkhmc8]\n\nEMG",
"time": "18:40",
"topic": "Bug in TCBrowse:lEditCol() method (fixed)",
"username": "Enrico Maria Giordano"
}
] |
Bug in TCBrowse:lEditCol() method (fixed)
|
[
{
"date": "2005-11-26",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Fixed. Please change this in source\\classes\\tcbrowse.prg line 863:\n\n @ 10, 0 BUTTON oBtn PROMPT \"\" ACTION ( oBtn:SetFocus(), oDlg:End(), lOk := .t. ) OF oDlg\n\nAlso, to get a better screen position change this in line 868:\n\n ACTIVATE DIALOG oDlg ;\n ON INIT ( oDlg:Move( aDim[ 1 ] + 1, aDim[ 2 ] + 1,;",
"time": "12:32",
"topic": "Bug in TCBrowse:lEditCol() method (fixed)",
"username": "Antonio Linares"
}
] |
Bug in TCBrowse:lEditCol() method (fixed)
|
[
{
"date": "2005-11-26",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Great, thank you!\n\nEMG",
"time": "17:40",
"topic": "Bug in TCBrowse:lEditCol() method (fixed)",
"username": "Enrico Maria Giordano"
}
] |
Bug in TCBrowse:lEditCol() method (fixed)
|
[
{
"date": "2012-12-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio\n\nthere is a problem in tcalenda.prg , you cann see it in TESTCAL2.PRG \nIf you do a double click (quicky ) on a day of previous month , you have :\n\n[quote:3q380bjv]Application\n===========\n Path and name: C:\\fwh_09\\samples\\testcal2.exe (32 bits)\n Size: 1,840,128 bytes\n Compiler version: xHarbour build 1.2.1 Intl. (SimpLex) (Rev. 9445)\n FiveWin Version: FWHX 12.06\n Windows version: 5.1, Build 2600 Service Pack 3\n\n Time from start: 0 hours 0 mins 1 secs \n Error occurred at: 05/12/2012, 10:58:06\n Error description: Error BASE/1082 Argument error: -\n Args:\n [ 1] = U \n [ 2] = N 52\n[/quote:3q380bjv]\n\nThe problem is in lButtonUP Line 614 \nIF IsOverDay( ::hWnd, nRow, nCol ) .AND. Abs( ::nRowDbl - nRow ) <= HEIGHTDBLCLICK .AND. Abs( ::nColDbl - nCol ) <= WIDTHDBLCLICK \n\nI solve with \nIF HB_IsNumeric( ::nRowDbl) .AND. IsOverDay( ::hWnd, nRow, nCol ) .AND. Abs( ::nRowDbl - nRow ) <= HEIGHTDBLCLICK .AND. Abs( ::nColDbl - nCol ) <= WIDTHDBLCLICK \n \n\nRegards Maurizio\n<!-- w --><a class=\"postlink\" href=\"http://www.nipeservice.com\">www.nipeservice.com</a><!-- w -->",
"time": "11:00",
"topic": "Bug in TCalenda",
"username": "Maurizio"
}
] |
Bug in TCalenda
|
[
{
"date": "2012-12-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Maurizio,\n\nImplemented this way, thanks!:\n\n[code=fw:23fn3od3]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <span style=\"color: #00C800;\">IF</span> ValType<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">nRowDbl</span> <span style=\"color: #000000;\">)</span> == <span style=\"color: #ff0000;\">\"N\"</span> .and. IsOverDay<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">hWnd</span>, nRow, nCol <span style=\"color: #000000;\">)</span> .AND. ;<br /> <span style=\"color: #0000ff;\">Abs</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">nRowDbl</span> - nRow <span style=\"color: #000000;\">)</span> <= HEIGHTDBLCLICK .AND. <span style=\"color: #0000ff;\">Abs</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">nColDbl</span> - nCol <span style=\"color: #000000;\">)</span> <= WIDTHDBLCLICK <br /> </div>[/code:23fn3od3]",
"time": "11:23",
"topic": "Bug in TCalenda",
"username": "Antonio Linares"
}
] |
Bug in TCalenda
|
[
{
"date": "2006-12-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Valid clause is evaluated on gotfocus instead of lostfocus in CBS_DROPDOWN combos:\n\n[code:1ym20wzr]#include \"Fivewin.ch\"\n\n\nFUNCTION MAIN()\n\n LOCAL oDlg\n\n LOCAL oCbx, cVar := SPACE( 20 )\n\n DEFINE DIALOG oDlg\n\n @ 1, 1 COMBOBOX oCbx VAR cVar;\n ITEMS { \"First\", \"Second\", \"Third\" };\n STYLE CBS_DROPDOWN;\n VALID ( MSGINFO( \"Valid\" ), .T. )\n\n @ 3, 1 BUTTON \"&Close\" ACTION oDlg:End()\n\n ACTIVATE DIALOG oDlg;\n CENTER\n\n RETURN NIL[/code:1ym20wzr]\n\nEMG",
"time": "19:00",
"topic": "Bug in TComboBox",
"username": "Enrico Maria Giordano"
}
] |
Bug in TComboBox
|
[
{
"date": "2006-12-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nThe problem is that when CBS_DROPDOWN style is used a Get is created as a child of the combobox, and when the combobox gets the focus, it gives it to the Get, thats why the bValid is fired.\n\nWe have tried to modify the code this way:\n\n oCbx:oGet:bValid = { || MsgInfo(), .t. }\n\nbut the wrong behavior persists. We may need to review the Class combobox to see if we can improve it.",
"time": "09:51",
"topic": "Bug in TComboBox",
"username": "Antonio Linares"
}
] |
Bug in TComboBox
|
[
{
"date": "2006-12-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you.\n\nEMG",
"time": "10:16",
"topic": "Bug in TComboBox",
"username": "Enrico Maria Giordano"
}
] |
Bug in TComboBox
|
[
{
"date": "2009-03-11",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "In the following sample, try to hit TAB on the keyboard giving the focus to the combobox. Why the VALID is evaluated on gotfocus?\n\n[code=fw:15tfb81p]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"Fivewin.ch\"</span><br /><br /><br /><span style=\"color: #00C800;\">FUNCTION</span> MAIN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">LOCAL</span> oDlg<br /><br /> <span style=\"color: #00C800;\">LOCAL</span> oCbx, cVar := SPACE<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">20</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg<br /><br /> @ <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #ff0000;\">\"&Close\"</span> <span style=\"color: #0000ff;\">ACTION</span> oDlg:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> @ <span style=\"color: #000000;\">3</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">COMBOBOX</span> oCbx <span style=\"color: #0000ff;\">VAR</span> cVar;<br /> <span style=\"color: #0000ff;\">ITEMS</span> <span style=\"color: #000000;\">{</span> <span style=\"color: #ff0000;\">\"First\"</span>, <span style=\"color: #ff0000;\">\"Second\"</span>, <span style=\"color: #ff0000;\">\"Third\"</span> <span style=\"color: #000000;\">}</span>;<br /> <span style=\"color: #0000ff;\">STYLE</span> CBS_DROPDOWN;<br /> <span style=\"color: #0000ff;\">VALID</span> <span style=\"color: #000000;\">(</span> <span style=\"color: #0000ff;\">MSGINFO</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Valid\"</span> <span style=\"color: #000000;\">)</span>, .T. <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg;<br /> <span style=\"color: #0000ff;\">CENTER</span><br /><br /> <span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span></div>[/code:15tfb81p]\n\nEMG",
"time": "13:33",
"topic": "Bug in TComboBox",
"username": "Enrico Maria Giordano"
}
] |
Bug in TComboBox
|
[
{
"date": "2006-03-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "The ESC key is disabled in the following sample (but it is not the only one) in the March build:\n\n[code:2flluljm]#include \"Fivewin.ch\"\n\n\nFUNCTION MAIN()\n\n LOCAL oDlg\n\n LOCAL oGet, cVar := SPACE( 30 )\n\n DEFINE DIALOG oDlg\n\n @ 1, 1 GET oGet VAR cVar MEMO\n\n @ 3, 1 BUTTON \"&Close\";\n ACTION oDlg:End()\n\n ACTIVATE DIALOG oDlg;\n CENTER\n\n RETURN NIL[/code:2flluljm]\n\nIt seems that the cause is a change in TControl:\n\n[code:2flluljm]METHOD KeyDown( nKey, nFlags ) CLASS TControl\n\n if nKey == VK_ESCAPE\n ::oWnd:KeyDown( nKey, nFlags )\n return 0\n endif[/code:2flluljm]\n\nThis is the previous working version:\n\n[code:2flluljm]METHOD KeyDown( nKey, nFlags ) CLASS TControl\n\n if nKey == VK_ESCAPE\n ::oWnd:KeyChar( nKey, nFlags )\n return 0\n endif[/code:2flluljm]\n\nEMG",
"time": "23:29",
"topic": "Bug in TControl",
"username": "Enrico Maria Giordano"
}
] |
Bug in TControl
|
[
{
"date": "2006-03-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nThis fix looks as the right one in Class TMultiGet:\n[code:3idp0qzr]\n if nKey == VK_ESCAPE // Windows API already sends it to dialogs!!!\n if ::oWnd:ChildLevel( TDialog() ) != 0 .and. ::oWnd:lModal\n return Super:KeyChar( nKey, nFlags ) // nil\n endif\n ...\n[/code:3idp0qzr]",
"time": "01:14",
"topic": "Bug in TControl",
"username": "Antonio Linares"
}
] |
Bug in TControl
|
[
{
"date": "2006-03-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It's not enough:\n\n[code:kpwa9b1z]#include \"Fivewin.ch\"\n\n\nFUNCTION MAIN()\n\n LOCAL oDlg, oBrw\n\n DEFINE DIALOG oDlg\n\n @ 1, 1 LISTBOX oBrw FIELDS SIZE 100, 30\n\n oBrw:bKeyChar = { || Tone( 440, 1 ) }\n\n @ 3, 1 BUTTON \"&Close\";\n ACTION oDlg:End()\n\n ACTIVATE DIALOG oDlg;\n CENTER\n\n RETURN NIL[/code:kpwa9b1z]\n\nWhat was the reason why you changed bKeyChar to bKeyDown in TControl:KeyDown() method?\n\nEMG",
"time": "09:33",
"topic": "Bug in TControl",
"username": "Enrico Maria Giordano"
}
] |
Bug in TControl
|
[
{
"date": "2006-03-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nBecause it had some wrong side effects",
"time": "10:08",
"topic": "Bug in TControl",
"username": "Antonio Linares"
}
] |
Bug in TControl
|
[
{
"date": "2006-03-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nIn dialog.prg copy Method KeyChar() to Method KeyDown() and it gets fixed.\n\nAnyhow, we are curious to know why the ESC comes now by KeyDown() instead of KeyChar().",
"time": "10:15",
"topic": "Bug in TControl",
"username": "Antonio Linares"
}
] |
Bug in TControl
|
[
{
"date": "2006-03-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Please, can you show the exact fix?\n\nEMG",
"time": "10:21",
"topic": "Bug in TControl",
"username": "Enrico Maria Giordano"
}
] |
Bug in TControl
|
[
{
"date": "2006-03-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n[code:nvmehlgr]\nMETHOD KeyDown( nKey, nFlags ) CLASS TDialog\n\n if nKey == VK_ESCAPE\n if ::oWnd == nil\n ::End()\n else\n if ::oWnd:ChildLevel( TMdiChild() ) != 0\n ::End()\n else\n if ::oWnd:ChildLevel( TDialog() ) != 0\n ::End()\n #ifdef __HARBOUR__\n elseif Upper( ::oWnd:ClassName() ) == \"TMDIFRAME\" // To avoid ESC being ignored\n ::End()\n #endif\n else\n return Super:KeyDown( nKey, nFlags )\n endif\n endif\n endif\n else\n return Super:KeyDown( nKey, nFlags )\n endif\n\nreturn nil\n[/code:nvmehlgr]",
"time": "10:23",
"topic": "Bug in TControl",
"username": "Antonio Linares"
}
] |
Bug in TControl
|
[
{
"date": "2006-03-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "It seems to work, thank you. Do I have to leave KeyChar() method in place or do I have to remove it?\n\nEMG",
"time": "10:42",
"topic": "Bug in TControl",
"username": "Enrico Maria Giordano"
}
] |
Bug in TControl
|
[
{
"date": "2006-03-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Antonio Linares\":2sl7430y]Enrico,\n\nThis fix looks as the right one in Class TMultiGet:\n[code:2sl7430y]\n if nKey == VK_ESCAPE // Windows API already sends it to dialogs!!!\n if ::oWnd:ChildLevel( TDialog() ) != 0 .and. ::oWnd:lModal\n return Super:KeyChar( nKey, nFlags ) // nil\n endif\n ...\n[/code:2sl7430y][/quote:2sl7430y]\n\nThis is no more needed.\n\nEMG",
"time": "10:57",
"topic": "Bug in TControl",
"username": "Enrico Maria Giordano"
}
] |
Bug in TControl
|
[
{
"date": "2006-03-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Enrico,\n\nThanks",
"time": "15:05",
"topic": "Bug in TControl",
"username": "Antonio Linares"
}
] |
Bug in TControl
|
[
{
"date": "2011-08-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "These are the lines from 563-565 [method _delete()][code=fw:3fde51o5]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">IsRecLocked</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">RecNo</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> .or. <span style=\"color: #000000;\">(</span> lLocked := ::<span style=\"color: #000000;\">RecLock</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">RecNo</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">nArea</span> <span style=\"color: #000000;\">)</span>-><span style=\"color: #000000;\">(</span> DbDelete<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> lDeleted := .f.</div>[/code:3fde51o5]\n\nShouldn't [i:3fde51o5]lDeleted := .t.[/i:3fde51o5] instead of [i:3fde51o5].f.[/i:3fde51o5]?\n\nAnd since the success of delete operation is already tracked using [i:3fde51o5]lDeleted[/i:3fde51o5], wouldn't it be better if [i:3fde51o5]method _delete()[/i:3fde51o5] returns [i:3fde51o5]lDeleted[/i:3fde51o5] instead of [i:3fde51o5]nil[/i:3fde51o5]?\n\nTIA",
"time": "03:24",
"topic": "Bug in TDatabase",
"username": "hua"
}
] |
Bug in TDatabase
|
[
{
"date": "2011-08-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote:airmgkpo]Shouldn't lDeleted := .t. instead of .f.?\n[/quote:airmgkpo]\nYou are right. Thanks for pointing out.\nFixed and available from next release.\n\n[quote:airmgkpo]And since the success of delete operation is already tracked using lDeleted, wouldn't it be better if method _delete() returns lDeleted instead of nil?\n[/quote:airmgkpo]\nAt present the return value is compatible with the return value of DBDELETE() function in RDD.\nBut I agree its a better idea to return lDelete instead.\nThis also will be available from next release.",
"time": "05:06",
"topic": "Bug in TDatabase",
"username": "nageswaragunupudi"
}
] |
Bug in TDatabase
|
[
{
"date": "2018-03-10",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Default value for lResizable parameter is missing:\n\n[code=fw:3ogxu5u9]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">METHOD</span> <span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span> nTop, nLeft, nBottom, nRight, cCaption, cResName, hResources,;<br /> lVbx, nStyle, nClrText, nClrBack, oBrush, oWnd, lPixels,;<br /> oIco, oFont, nHelpId, nWidth, nHeight, lTransparent, aNewGradColors,;<br /> cVarName, lUnicode, lTruePixel, lResizable <span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TDialog<br /><br /> <span style=\"color: #00C800;\">DEFAULT</span> hResources := GetResources<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, lVbx := .f.,;<br /> nClrText := GetSysColor<span style=\"color: #000000;\">(</span> COLOR_BTNTEXT <span style=\"color: #000000;\">)</span>, nClrBack := GetSysColor<span style=\"color: #000000;\">(</span> COLOR_BTNFACE <span style=\"color: #000000;\">)</span>,;<br /> lPixels := .f., nTop := <span style=\"color: #000000;\">0</span>, nLeft := <span style=\"color: #000000;\">0</span>, nBottom := <span style=\"color: #000000;\">10</span>, nRight := <span style=\"color: #000000;\">40</span>,;<br /> nWidth := <span style=\"color: #000000;\">0</span>, nHeight := <span style=\"color: #000000;\">0</span>, lTransparent := .f.,;<br /> nStyle := nOR<span style=\"color: #000000;\">(</span> DS_MODALFRAME, WS_POPUP, WS_CAPTION, WS_SYSMENU, ;<br /> <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> lResizable == .t., WS_MAXIMIZEBOX + WS_MINIMIZEBOX + WS_THICKFRAME, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>,;</div>[/code:3ogxu5u9]\n\nEMG",
"time": "12:48",
"topic": "Bug in TDialog [Fixed]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog [Fixed]
|
[
{
"date": "2018-03-10",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "It does not seem to cause any error, sorry.\n\nEMG",
"time": "13:33",
"topic": "Bug in TDialog [Fixed]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog [Fixed]
|
[
{
"date": "2018-03-10",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Anyway, the new clause RESIZEABLE is missing in dialog.ch.\n\nEMG",
"time": "15:01",
"topic": "Bug in TDialog [Fixed]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog [Fixed]
|
[
{
"date": "2018-03-15",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "[quote=\"Enrico Maria Giordano\":3taohz66]Anyway, the new clause RESIZEABLE is missing in dialog.ch.\n\nEMG[/quote:3taohz66]\n\nAny news?\n\nEMG",
"time": "11:22",
"topic": "Bug in TDialog [Fixed]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog [Fixed]
|
[
{
"date": "2018-03-16",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Fixed for next version",
"time": "00:43",
"topic": "Bug in TDialog [Fixed]",
"username": "cnavarro"
}
] |
Bug in TDialog [Fixed]
|
[
{
"date": "2018-03-16",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Thank you! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG",
"time": "09:47",
"topic": "Bug in TDialog [Fixed]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog [Fixed]
|
[
{
"date": "2014-02-15",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Cristobal,\n\nThe third case works fine so the problem is not related to the length checking. As I already wrote, the problem is in cDlg2Chr() function. Once it is fixed, we can probably remove the length checking.\n\nEMG",
"time": "14:40",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-15",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Enrico\nIf I had understood what you have written \nMy proposal is a temporary solution\nI've already tried",
"time": "14:46",
"topic": "Bug in TDialog title [Solved]",
"username": "cnavarro"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-15",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Cristobal,\n\nWe need of a real solution.\n\nEMG",
"time": "15:05",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-15",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Found! It seems that the correct solution is:\n\n WORD wSize = sizeof( DIALOG_RES ) + ( hb_parclen( 6 ) * 2 ) + \n 1 + 2 + ( hb_parclen( 9 ) * 2 ) + 3 + 1;\n\nPlease note the + 1 at the end of the line. With it I can use a title of 10000 characters without problems! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG",
"time": "16:18",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-14",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "The following sample demonstrates the problem. It doesn't show the dialog (tested under Win 8.1). It works correctly with a title up to 114 characters. In dialog.prg there is a check for maximum size of 140 characters. It should be lower to 114.\n\n[code=fw:1s84m7hi]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"Fivewin.ch\"</span><br /><br /><br /><span style=\"color: #00C800;\">FUNCTION</span> MAIN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">LOCAL</span> oDlg<br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg;<br /> <span style=\"color: #0000ff;\">TITLE</span> REPLICATE<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"X\"</span>, <span style=\"color: #000000;\">115</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg;<br /> <span style=\"color: #0000ff;\">CENTER</span><br /><br /> <span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span></div>[/code:1s84m7hi]\n\nEMG",
"time": "13:52",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-03-20",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "I forgot to mention that with the latest FWH (14.02) the problem seems to be vanished. <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG",
"time": "00:11",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-14",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "[quote:m4rsxoxq]\nThe following sample demonstrates the problem. It doesn't show the dialog (tested under Win 8.1). It works correctly with a title up to 114 characters. In dialog.prg there is a check for maximum size of 140 characters. It should be lower to 114.\n[/quote:m4rsxoxq]\n\nEnrico\n\nI use Windows 8.1 and Fwh 13.12\nThe version that appears Fivewin image is incorrect\nImage suit.\n[url=https://imageshack.com/i/5ihhzxp:m4rsxoxq][img:m4rsxoxq]http://imagizer.imageshack.us/v2/xq90/198/hhzx.png[/img:m4rsxoxq][/url:m4rsxoxq]",
"time": "22:03",
"topic": "Bug in TDialog title [Solved]",
"username": "cnavarro"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-14",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Cristobal,\n\nare you using Win 8.1 64 bit? If yes, can you send me your EXE to test it here?\n\nEMG",
"time": "22:08",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-14",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Enrico\nI've sent you an email",
"time": "22:24",
"topic": "Bug in TDialog title [Solved]",
"username": "cnavarro"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-14",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Cristobal,\n\nreceived and already answered! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG",
"time": "23:10",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-15",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "[quote=\"Enrico Maria Giordano\":zdwlg65n]Cristobal,\n\nreceived and already answered! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG[/quote:zdwlg65n]\n\nI answered",
"time": "00:10",
"topic": "Bug in TDialog title [Solved]",
"username": "cnavarro"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-15",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Some other clues. The following sample does work fine:\n\n[code=fw:17vjkax8]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"Fivewin.ch\"</span><br /><br /><br /><span style=\"color: #00C800;\">FUNCTION</span> MAIN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">LOCAL</span> oDlg<br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg;<br /><span style=\"color: #B900B9;\">// TITLE REPLICATE( \"X\", 115 )</span><br /><br /><span style=\"color: #B900B9;\">// oDlg:cCaption = REPLICATE( \"X\", 115 )</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> oDlg:<span style=\"color: #000000;\">SetText</span><span style=\"color: #000000;\">(</span> REPLICATE<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"X\"</span>, <span style=\"color: #000000;\">500</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>;<br /> <span style=\"color: #0000ff;\">CENTER</span><br /><br /> <span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span></div>[/code:17vjkax8]\n\nIt doesn't if you comment out ON INIT clause and uncomment one of the two commented lines. Please note that there is a check for a maximum of 140 characters in TDialog cCaption (that does not trim my 500 characters string) which seems unuseful now.\n\nAny ideas?\n\nEMG",
"time": "12:00",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-15",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "I traced the problem. It seems to be inside cDlg2Chr() function, probably in the calculation of wSize. But I guess we have to wait for Antonio to fix this.\n\nEMG",
"time": "12:25",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-15",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Enrico\nIt is true \nFw cCaption Controls the length of the dialogue in the first case\n[code=fw:wjeh3zay]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">TITLE</span> REPLICATE<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"X\"</span>, <span style=\"color: #000000;\">415</span> <span style=\"color: #000000;\">)</span><br /> </div>[/code:wjeh3zay]\n\nIn this second case, the length is not controlled\n[code=fw:wjeh3zay]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #B900B9;\">//TITLE REPLICATE( \"X\", 415 )</span><br /> oDlg:<span style=\"color: #000000;\">cCaption</span> = REPLICATE<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"X\"</span>, <span style=\"color: #000000;\">415</span> <span style=\"color: #000000;\">)</span><br /><br /> </div>[/code:wjeh3zay]\n\nIn this third case, the length is not controlled\n[code=fw:wjeh3zay]<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 /><br /><span style=\"color: #00C800;\">FUNCTION</span> MAIN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">LOCAL</span> oDlg<br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #B900B9;\">//TITLE REPLICATE( \"X\", 415 )</span><br /><br /> <span style=\"color: #B900B9;\">//oDlg:cCaption = REPLICATE( \"X\", 415 )</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> oDlg:<span style=\"color: #000000;\">SetText</span><span style=\"color: #000000;\">(</span> REPLICATE<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"X\"</span>, <span style=\"color: #000000;\">500</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>;<br /> <span style=\"color: #0000ff;\">VALID</span> <span style=\"color: #000000;\">(</span><span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span> Len<span style=\"color: #000000;\">(</span> oDlg:<span style=\"color: #000000;\">cCaption</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>, .T. <span style=\"color: #000000;\">)</span>;<br /> <span style=\"color: #0000ff;\">CENTER</span><br /><br /> <span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br /> </div>[/code:wjeh3zay]\n\nOne possible solution would be to add at the end of the Initiate method of TDialog: (no activate method)\n\n[code=fw:wjeh3zay]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> <span style=\"color: #00C800;\">if</span> ::<span style=\"color: #000000;\">bInit</span> != <span style=\"color: #00C800;\">nil</span><br /> lResult = Eval<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">bInit</span>, <span style=\"color: #00C800;\">Self</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">if</span> ValType<span style=\"color: #000000;\">(</span> lResult <span style=\"color: #000000;\">)</span> == <span style=\"color: #ff0000;\">\"L\"</span> .and. ! lResult<br /> lFocus = .f.<br /> <span style=\"color: #00C800;\">endif</span><br /> <span style=\"color: #00C800;\">endif</span><br /><br /><span style=\"color: #B900B9;\">// Add</span><br /> <span style=\"color: #00C800;\">if</span> len<span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">cCaption</span> <span style=\"color: #000000;\">)</span> > <span style=\"color: #000000;\">140</span><br /> ::<span style=\"color: #000000;\">cCaption</span> := <span style=\"color: #0000ff;\">Left</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">cCaption</span> , <span style=\"color: #000000;\">140</span> <span style=\"color: #000000;\">)</span><br /> ::<span style=\"color: #000000;\">SetText</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">cCaption</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">endif</span><br /> </div>[/code:wjeh3zay]\n\nIt's an idea and I have not tried yet\n\n\nTried",
"time": "12:54",
"topic": "Bug in TDialog title [Solved]",
"username": "cnavarro"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-15",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Enrico\n\nGreat, fine",
"time": "18:39",
"topic": "Bug in TDialog title [Solved]",
"username": "cnavarro"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-15",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "[quote=\"Enrico Maria Giordano\":3ox2a81h]Found! It seems that the correct solution is:\n\n WORD wSize = sizeof( DIALOG_RES ) + ( hb_parclen( 6 ) * 2 ) + \n 1 + 2 + ( hb_parclen( 9 ) * 2 ) + 3 + 1;\n\nPlease note the + 1 at the end of the line. With it I can use a title of 10000 characters without problems! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG[/quote:3ox2a81h]\n\nNo! Unfortunately this is not the right fix, sorry. <!-- s:-( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":-(\" title=\"Sad\" /><!-- s:-( -->\n\nOk, I will wait for Antonio... <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG",
"time": "22:50",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-15",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Enrico\nCreo que no he entendido bien tu problema:\nA.- Quieres un caption con mas de 140 caracteres\nB.- Controlar que el caption no tengas mas de 140 caracteres\nYo habia entendido la opcion B\nTengo un gran problema con el idioma ingles\n\nEnrico \nI think I misunderstood your problem: \nA. - You want a caption with more than 140 characters \nB. - Check that the caption does not have more than 140 characters \nI had understood the option B \nI have a big problem with the English language",
"time": "23:17",
"topic": "Bug in TDialog title [Solved]",
"username": "cnavarro"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-15",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Cristobal,\n\n[quote=\"cnavarro\":fhu7cr6f]Enrico \nI think I misunderstood your problem: \nA. - You want a caption with more than 140 characters \nB. - Check that the caption does not have more than 140 characters[/quote:fhu7cr6f]\n\nNo, the problem is that there is no such limit in the size of a dialog title (Windows API docs don't mention any limits). The current limit is only the result of a bug in cDlg2Chr() function. At least this is what I understood.\n\nIs it more clear now? <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG",
"time": "23:59",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-16",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Si, ahora me ha quedado muy muy claro\nGracias\n\nYes, it has now become very clear to me \nthanks",
"time": "01:05",
"topic": "Bug in TDialog title [Solved]",
"username": "cnavarro"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-16",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Enrico\n\ntry with \n\nwLen += ( iLenUnicode * 2 ) [color=#FF0000:3hmxuuor]+ 1[/color:3hmxuuor];",
"time": "14:55",
"topic": "Bug in TDialog title [Solved]",
"username": "Daniel Garcia-Gil"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-16",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Daniel,\n\n[quote=\"Daniel Garcia-Gil\":38c7zzxy]Enrico\n\ntry with \n\nwLen += ( iLenUnicode * 2 ) [color=#FF0000:38c7zzxy]+ 1[/color:38c7zzxy];[/quote:38c7zzxy]\n\nI now get:\n\nhb_xrealloc can't reallocate memory\n\n<!-- s:-( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":-(\" title=\"Sad\" /><!-- s:-( -->\n\nEMG",
"time": "15:14",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-16",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "what C compiler are you using?",
"time": "16:02",
"topic": "Bug in TDialog title [Solved]",
"username": "Daniel Garcia-Gil"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-16",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Daniel,\n\n[quote=\"Daniel Garcia-Gil\":owmyweyo]what C compiler are you using?[/quote:owmyweyo]\n\nBCC582\n\nEMG",
"time": "16:19",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-16",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Daniel,\n\n[quote=\"Daniel Garcia-Gil\":1oj88t60]Enrico\n\ntry with \n\nwLen += ( iLenUnicode * 2 ) [color=#FF0000:1oj88t60]+ 1[/color:1oj88t60];[/quote:1oj88t60]\n\nWith\n\n[code=fw:1oj88t60]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">wLen += iLenUnicode;</div>[/code:1oj88t60]\n\nit seems to work fine. What is your opinion about this possible fix?\n\nEMG",
"time": "16:35",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-17",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "[quote=\"Enrico Maria Giordano\":1g35qqpw]CODE: SELECT ALL EXPAND VIEW\nwLen += iLenUnicode;\n\n\nit seems to work fine. What is your opinion about this possible fix?[/quote:1g35qqpw]\n\nif work is fine <!-- s;-) --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\";-)\" title=\"Wink\" /><!-- s;-) -->",
"time": "11:07",
"topic": "Bug in TDialog title [Solved]",
"username": "Daniel Garcia-Gil"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-17",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Daniel,\n\n[quote=\"Daniel Garcia-Gil\":2ymk4tm2][quote=\"Enrico Maria Giordano\":2ymk4tm2]CODE: SELECT ALL EXPAND VIEW\nwLen += iLenUnicode;\n\n\nit seems to work fine. What is your opinion about this possible fix?[/quote:2ymk4tm2]\n\nif work is fine <!-- s;-) --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\";-)\" title=\"Wink\" /><!-- s;-) -->[/quote:2ymk4tm2]\n\nThe problem is that I don't understand the code of cDlg2Chr() function very well so I found that \"fix\" with trial and error. <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG",
"time": "11:56",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-17",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Enrico\n\nwe are filling a [url=http://msdn.microsoft.com/en-us/library/windows/desktop/ms645394(v=vs.85).aspx:2gwjg5vo]DLGTEMPLATE structure[/url:2gwjg5vo], is used like argument in the function [url=http://msdn.microsoft.com/en-us/library/windows/desktop/ms645436(v=vs.85).aspx:2gwjg5vo]CreateDialogIndirect[/url:2gwjg5vo]...\n\ncheck [url=http://msdn.microsoft.com/en-us/library/windows/desktop/ms645394(v=vs.85).aspx:2gwjg5vo]DLGTEMPLATE structure[/url:2gwjg5vo] remark section\n[quote:2gwjg5vo]\nIn a standard template for a dialog box, the DLGTEMPLATE structure is always immediately followed by three variable-length arrays that specify the menu, class, and title for the dialog box. When the DS_SETFONT style is specified, these arrays are also followed by a 16-bit value specifying point size and another variable-length array specifying a typeface name. Each array consists of one or more 16-bit elements. The menu, class, title, and font arrays must be aligned on WORD boundaries.\n...\nFollowing the class array is a title array that specifies a null-terminated Unicode string that contains the title of the dialog box. If the first element of this array is 0x0000, the dialog box has no title and the array has no other elements.\n...\n[/quote:2gwjg5vo]",
"time": "23:24",
"topic": "Bug in TDialog title [Solved]",
"username": "Daniel Garcia-Gil"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-17",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Daniel,\n\nSo what? Are you trying to say that my \"fix\" can be correct? <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG",
"time": "23:40",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-18",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "[quote=\"Enrico Maria Giordano\":27s1zbpp]Daniel,\n\nSo what? Are you trying to say that my \"fix\" can be correct? <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG[/quote:27s1zbpp]\n\nno i'm trying explain you...\n\n[quote=\"Enrico Maria Giordano\":27s1zbpp]The problem is that I don't understand the code of cDlg2Chr() function very well so I found that \"fix\" with trial and error. [/quote:27s1zbpp]",
"time": "01:51",
"topic": "Bug in TDialog title [Solved]",
"username": "Daniel Garcia-Gil"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-18",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Daniel,\n\n[quote=\"Daniel Garcia-Gil\":11wqmqwv]no i'm trying explain you...[/quote:11wqmqwv]\n\nOk. <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nAt the moment, I'm convinced that iLenUnicode doesn't have to double (*2) but I would hear your opinion.\n\nEMG",
"time": "10:53",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-25",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "I'm testing my fix and found no problem so far. The fix is:\n\nreplace\n\n[code=fw:1u30eumu]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">wLen += <span style=\"color: #000000;\">(</span> iLenUnicode * <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">)</span>;</div>[/code:1u30eumu]\n\nwith\n\n[code=fw:1u30eumu]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">wLen += iLenUnicode;</div>[/code:1u30eumu]\n\nin dlg2chr.c.\n\nEMG",
"time": "10:33",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-02-25",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "I spoke too fast! It doesn't work with dialogs without title. <!-- s:-( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":-(\" title=\"Sad\" /><!-- s:-( -->\n\nSorry, I give up for the moment.\n\nAny ideas?\n\nEMG",
"time": "11:21",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-03-10",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Up! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG",
"time": "23:53",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-07-10",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Antonio,\n\nwhy are you still imposing the limit of 140 characters in dialog title?\n\n[code=fw:2n7teb1b]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">::<span style=\"color: #000000;\">cCaption</span> = <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> cCaption != <span style=\"color: #00C800;\">nil</span>, <span style=\"color: #0000ff;\">SubStr</span><span style=\"color: #000000;\">(</span> cCaption, <span style=\"color: #000000;\">1</span>, <span style=\"color: #0000ff;\">Min</span><span style=\"color: #000000;\">(</span> Len<span style=\"color: #000000;\">(</span> cCaption <span style=\"color: #000000;\">)</span>, <span style=\"color: #000000;\">140</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>, <span style=\"color: #00C800;\">nil</span> <span style=\"color: #000000;\">)</span></div>[/code:2n7teb1b]\n\nI think it's not needed anymore. Can you confirm?\n\nEMG",
"time": "10:11",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-07-11",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Enrico,\n\nHave you tried to remove it and check if it works fine ? If so, yes, we can remove it <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "00:14",
"topic": "Bug in TDialog title [Solved]",
"username": "Antonio Linares"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2014-07-11",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Antonio,\n\nyes, I'm currently using a version of dialog.prg without it and found no problem. But it should be better if you tested it in all the Windows flavors. <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG",
"time": "09:12",
"topic": "Bug in TDialog title [Solved]",
"username": "Enrico Maria Giordano"
}
] |
Bug in TDialog title [Solved]
|
[
{
"date": "2011-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello!\n\nIn METHOD Redefine of CLASS TFolderEx this is missing:\n\n[code=fw:ji1r2cjn]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">::<span style=\"color: #000000;\">lTransparent</span> := lTransparent</div>[/code:ji1r2cjn]",
"time": "14:35",
"topic": "Bug in TFolderEx",
"username": "IBTC"
}
] |
Bug in TFolderEx
|
[
{
"date": "2011-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nI couldn't detect any Problems.\nYou can Download my new Tools for testing.\n\n[b:3k6ft9x4]The different Folder-Settings[/b:3k6ft9x4]\n\n[img:3k6ft9x4]http://www.pflegeplus.com/pictures/Backg4.jpg[/img:3k6ft9x4]\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "14:42",
"topic": "Bug in TFolderEx",
"username": "ukoenig"
}
] |
Bug in TFolderEx
|
[
{
"date": "2011-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Uwe!\n\n[quote=\"ukoenig\":2qkw67y7]\nI couldn't detect any Problems.\n[/quote:2qkw67y7]\n\nDid you try to make FolderEx from resource file with REDEFINE?\n\n[code=fw:2qkw67y7]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">FUNCTION</span> MAIN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> oDlg, oFld1<br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"DIALOG0\"</span><br /><br /> <span style=\"color: #0000ff;\">REDEFINE</span> FOLDEREX oFld1 <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">110</span> <span style=\"color: #0000ff;\">OF</span> oDlg ;<br /> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"&Clipper\"</span>, <span style=\"color: #ff0000;\">\"&and\"</span>, <span style=\"color: #ff0000;\">\"&Windows\"</span>, <span style=\"color: #ff0000;\">\"&Magic\"</span> ;<br /> <span style=\"color: #0000ff;\">DIALOGS</span> <span style=\"color: #ff0000;\">\"Sub1\"</span>, <span style=\"color: #ff0000;\">\"Sub2\"</span><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">CENTERED</span><br /><br /><span style=\"color: #00C800;\">return</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> </div>[/code:2qkw67y7]\n\nwith rc-file:\n\n[code=fw:2qkw67y7]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">DIALOG0 DIALOGEX <span style=\"color: #000000;\">44</span>, <span style=\"color: #000000;\">23</span>, <span style=\"color: #000000;\">220</span>, <span style=\"color: #000000;\">110</span><br /><span style=\"color: #0000ff;\">STYLE</span> 0x4L | DS_MODALFRAME| WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU<br />CAPTION <span style=\"color: #ff0000;\">\"\"</span><br /><span style=\"color: #0000ff;\">FONT</span> <span style=\"color: #000000;\">8</span>, <span style=\"color: #ff0000;\">\"MS Sans Serif\"</span><br /><span style=\"color: #000000;\">{</span><br /> CONTROL <span style=\"color: #ff0000;\">\"\"</span>, <span style=\"color: #000000;\">110</span>, <span style=\"color: #ff0000;\">\"SysTabControl32\"</span>, <span style=\"color: #000000;\">0</span> | WS_CHILD | WS_VISIBLE | WS_TABSTOP, <span style=\"color: #000000;\">4</span>, <span style=\"color: #000000;\">5</span>, <span style=\"color: #000000;\">213</span>, <span style=\"color: #000000;\">93</span><br /><span style=\"color: #000000;\">}</span><br /><br />sub1 DIALOGEX <span style=\"color: #000000;\">18</span>, <span style=\"color: #000000;\">18</span>, <span style=\"color: #000000;\">142</span>, <span style=\"color: #000000;\">67</span><br /><span style=\"color: #0000ff;\">STYLE</span> 0x4L | WS_CHILD | WS_VISIBLE<br /><span style=\"color: #0000ff;\">FONT</span> <span style=\"color: #000000;\">8</span>, <span style=\"color: #ff0000;\">\"MS Sans Serif\"</span><br /><span style=\"color: #000000;\">{</span><br /> CONTROL <span style=\"color: #ff0000;\">\"Text\"</span>, <span style=\"color: #000000;\">101</span>, <span style=\"color: #ff0000;\">\"BUTTON\"</span>, BS_AUTORADIOBUTTON | WS_CHILD | WS_VISIBLE | WS_GROUP | WS_TABSTOP, <span style=\"color: #000000;\">37</span>, <span style=\"color: #000000;\">30</span>, <span style=\"color: #000000;\">28</span>, <span style=\"color: #000000;\">12</span><br /><span style=\"color: #000000;\">}</span><br /><br />sub2 DIALOGEX <span style=\"color: #000000;\">18</span>, <span style=\"color: #000000;\">18</span>, <span style=\"color: #000000;\">142</span>, <span style=\"color: #000000;\">67</span><br /><span style=\"color: #0000ff;\">STYLE</span> 0x4L | WS_CHILD | WS_VISIBLE<br /><span style=\"color: #0000ff;\">FONT</span> <span style=\"color: #000000;\">8</span>, <span style=\"color: #ff0000;\">\"MS Sans Serif\"</span><br /><span style=\"color: #000000;\">{</span><br /> CONTROL <span style=\"color: #ff0000;\">\"Text\"</span>, <span style=\"color: #000000;\">102</span>, <span style=\"color: #ff0000;\">\"BUTTON\"</span>, BS_AUTORADIOBUTTON | WS_CHILD | WS_VISIBLE | WS_GROUP | WS_TABSTOP, <span style=\"color: #000000;\">37</span>, <span style=\"color: #000000;\">30</span>, <span style=\"color: #000000;\">28</span>, <span style=\"color: #000000;\">12</span><br /><span style=\"color: #000000;\">}</span></div>[/code:2qkw67y7]",
"time": "15:19",
"topic": "Bug in TFolderEx",
"username": "IBTC"
}
] |
Bug in TFolderEx
|
[
{
"date": "2011-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Yes, the Screenshot shows Folders from resource.\n\n[color=#0000FF:13ie8wlj]REDEFINE FOLDEREX oFld OF oWndFld ID 110 ;\nPROMPT \"T&est\",\"&Tabs\", \"&Bmp\", \"Br&ush\" ;\nON PAINT TAB PaintTab( Self, nOption ) ;\nBITMAPS c_Path + \"\\bitmaps\\\" + cTabBmp, ;\n c_Path + \"\\bitmaps\\\" + cTabBmp, ;\n\t\tc_Path + \"\\bitmaps\\\" + cTabBmp, ;\n\t\tc_Path + \"\\bitmaps\\\" + cTabBmp ;\nDIALOGS \"Sub1\", \"Sub2\", \"Sub3\", \"Sub4\" ;\nROUND 5 ;\nON CHANGE ( nTabPos := oFld:nOption )\n\noFld:lTransparent := .T.\noFld:nFolderHeight := nTabH\noFld:nSeparator := nTabS\noFld:bClrText := {| o, n | nTColor3 }\noFld:oFont := oTextFont\n\nREDEFINE SAY oSay3 ID 110 PROMPT cTEXTFONT1 OF oFld:aDialogs[1] FONT oTextFont PIXEL\noSay3:SetColor( nTColor2, )\noSay3:lTransparent := .T.\n\nREDEFINE RADIO oRadio3 VAR nRadio3 OF oFld:aDialogs[1] ID 120, 121 ;\nON CHANGE MsgBeep() ;\nCOLOR nTColor2\noRadio3:SetFont( oTextFont )\nAEval( oRadio3:aItems, { | oRad | oRad:lTransparent := .T. } )\n\nREDEFINE CHECKBOX oCheck3 VAR lCheck3 ID 130 OF oFld:aDialogs[1] ; \nON CHANGE oCheck3:SetText( \"New Text\" ) \noCheck3:lTransparent := .T. \noCheck3:SetFont( oTextFont )\noCheck3:SetColor( nTColor2 )[/color:13ie8wlj]\n\n[b:13ie8wlj]I think, Your problem comes from here :[/b:13ie8wlj]\n\nACTIVATE DIALOG oWndFld NOWAIT ;\nON INIT ( oWndFld:Move( 50, 580, NIL, NIL, .T. ), ;\n IIF( nOption2 = 2, GRADBRU2(), NIL ), ; // Dialog-Gradient\n oFld:SetOption( nTabpos ) ) ;\n[color=#FF0000:13ie8wlj]ON PAINT F_BACKGRD(oFld)[/color:13ie8wlj]\nRETURN NIL\n\n[code=fw:13ie8wlj]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">// --- Folder - Backgrounds ( Color, Gradient, Brush and Image ) ---</span><br /><br /><span style=\"color: #B900B9;\">// FOLDER-vars in use :</span><br /><span style=\"color: #B900B9;\">// -------------------------</span><br /><span style=\"color: #B900B9;\">//nOption3 := 3 // FOLDER-Background : Color, Gradient, Brush or Image</span><br /><span style=\"color: #B900B9;\">//nMove3 := 0.50 // Gradient Position 2. Color</span><br /><span style=\"color: #B900B9;\">//nColor3a := 14853684 // 1. Color</span><br /><span style=\"color: #B900B9;\">//nColor3b := 16312263 // 2. Color Gradient</span><br /><span style=\"color: #B900B9;\">//aColors3 := { { nMove3, nColor3a, nColor3b }, { nMove3, nColor3b, nColor3a } }</span><br /><span style=\"color: #B900B9;\">//lDirect3 := .T. // Vertical or Horizontal</span><br /><span style=\"color: #B900B9;\">//cBrush3 := \"Marble.bmp\" // Brush</span><br /><span style=\"color: #B900B9;\">//cImage3 := \"Back1.jpg\" // Image</span><br /><br /><span style=\"color: #00C800;\">FUNCTION</span> F_BACKGRD<span style=\"color: #000000;\">(</span>oFld<span style=\"color: #000000;\">)</span> <br /><span style=\"color: #00C800;\">LOCAL</span> n, oDlg, oBrush2, hDC1<br /><span style=\"color: #00C800;\">LOCAL</span> aColors := <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">{</span> nMOVE3, nCOLOR3a, nCOLOR3b <span style=\"color: #000000;\">}</span>, ;<br /> <span style=\"color: #000000;\">{</span> nMOVE3, nCOLOR3b, nCOLOR3a <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">}</span><br /><span style=\"color: #00C800;\">LOCAL</span> aRect := GetClientRect<span style=\"color: #000000;\">(</span> oFld:<span style=\"color: #000000;\">hWnd</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">FOR</span> n := <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> Len<span style=\"color: #000000;\">(</span> oFld:<span style=\"color: #000000;\">aDialogs</span> <span style=\"color: #000000;\">)</span> <br /> oDlg := oFld:<span style=\"color: #000000;\">aDialogs</span><span style=\"color: #000000;\">[</span> n <span style=\"color: #000000;\">]</span><br /> hDC1 = CreateCompatibleDC<span style=\"color: #000000;\">(</span> oDlg:<span style=\"color: #000000;\">GetDC</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> hBmp = CreateCompatibleBitMap<span style=\"color: #000000;\">(</span> oDlg:<span style=\"color: #000000;\">hDC</span>, oDlg:<span style=\"color: #000000;\">nWidth</span>, oDlg:<span style=\"color: #000000;\">nHeight</span> <span style=\"color: #000000;\">)</span><br /> hBmpOld = SelectObject<span style=\"color: #000000;\">(</span> hDC1, hBmp <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">IF</span> nOption3 = <span style=\"color: #000000;\">1</span> <span style=\"color: #B900B9;\">// Color</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BRUSH</span> oBrush2 <span style=\"color: #0000ff;\">COLOR</span> nColor3a<br /> FillRect<span style=\"color: #000000;\">(</span> hDC1, aRect, oBrush2:<span style=\"color: #000000;\">hBrush</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">ENDIF</span> <br /> <span style=\"color: #00C800;\">IF</span> nOption3 = <span style=\"color: #000000;\">2</span> <span style=\"color: #B900B9;\">// Gradient</span><br /> GradientFill<span style=\"color: #000000;\">(</span> hDC1, <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">0</span>, oDlg:<span style=\"color: #000000;\">nHeight</span>, oDlg:<span style=\"color: #000000;\">nWidth</span>, aColors, lDirect <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">ENDIF</span><br /> <span style=\"color: #00C800;\">IF</span> nOption3 = <span style=\"color: #000000;\">3</span> <span style=\"color: #B900B9;\">// Brush</span><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BRUSH</span> oBrush2 FILENAME c_Path + <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\\"</span> + cBrush3<br /> FillRect( hDC1, aRect, oBrush2:hBrush )<br /> ENDIF<br /> IF nOption3 = 4 // Image<br /> DEFINE IMAGE oTmp FILENAME c_Path + \"</span>\\<span style=\"color: #0000ff;\">bitmaps</span>\\<span style=\"color: #ff0000;\">\" + cImage3<br /> oBrush2 := TBrush():new( ,,,, ResizeBmp( oTmp:hBitmap, oDlg:nWidth, oDlg:nHeight, .T. ) ) <br /> oTmp:End()<br /> FillRect( hDC1, aRect, oBrush2:hBrush )<br /> ENDIF<br /> DeleteObject( oDlg:oBrush:hBrush )<br /> oDlg:oBrush:hBitmap = hBmp<br /> oDlg:oBrush:hBrush = CreatePatternBrush( hBmp ) <br /> SelectObject( hDC1, hBmpOld )<br /> oDlg:ReleaseDC()<br />NEXT<br /><br />RETURN( NIL )<br /></span></div>[/code:13ie8wlj]\n\nBest regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "15:30",
"topic": "Bug in TFolderEx",
"username": "ukoenig"
}
] |
Bug in TFolderEx
|
[
{
"date": "2011-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Uwe,\n\nAnd what happens if you don't have this line?\n\n[quote=\"ukoenig\":1y5w0rza]\noFld:lTransparent := .T.\n[/quote:1y5w0rza]\n\nDid you tried my sample code?\n\nIMO the sample code should work without insert oFld:lTransparent := .T./.F. in it.",
"time": "15:39",
"topic": "Bug in TFolderEx",
"username": "IBTC"
}
] |
Bug in TFolderEx
|
[
{
"date": "2011-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"ukoenig\":3n1mak6j]\n\n[b:3n1mak6j]I think, Your problem comes from here :[/b:3n1mak6j]\n\nACTIVATE DIALOG oWndFld NOWAIT ;\nON INIT ( oWndFld:Move( 50, 580, NIL, NIL, .T. ), ;\n IIF( nOption2 = 2, GRADBRU2(), NIL ), ; // Dialog-Gradient\n oFld:SetOption( nTabpos ) ) ;\n[color=#FF0000:3n1mak6j]ON PAINT F_BACKGRD(oFld)[/color:3n1mak6j]\nRETURN NIL\n[/quote:3n1mak6j]\n\nI didn't use this code, only the sample code I showed above. I informed about a problem (and also the solution!) with a reduced sample code. I can't understand why you show me a more complex code.",
"time": "15:42",
"topic": "Bug in TFolderEx",
"username": "IBTC"
}
] |
Bug in TFolderEx
|
[
{
"date": "2011-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ruediger,\n\nMany Tests I found, are not tested to the End with all possible Combinations.\nIn all of my Tools, I have to cover nearly everything, what can be done.\nSometimes, it makes it very complicated and many Tests are needed.\nThat is the Reason, that my Solutions are maybe looking a bit different.\n\nBest regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "16:03",
"topic": "Bug in TFolderEx",
"username": "ukoenig"
}
] |
Bug in TFolderEx
|
[
{
"date": "2011-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Uwe!\n\n[quote=\"ukoenig\":4hxz0z0p]\nThat is the Reason, that my Solutions are maybe looking a bit different.\n[/quote:4hxz0z0p]\n\nI understand. But if there is a bug in FWH source code obviously (missing line \"::lTransparent := lTransparent\" in METHOD Redefine of CLASS TFolderEx) this should IMO be fixed in FWH source code and not in the code of FWH user by inserting always/everyway \"oFld:lTransparent := .T.\" or \"oFld:lTransparent := .F.\".",
"time": "16:13",
"topic": "Bug in TFolderEx",
"username": "IBTC"
}
] |
Bug in TFolderEx
|
[
{
"date": "2011-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ruediger,\n\nWhat version of FWH are you using?\n\nI have the TFolderx.prg file dated 8/31/2010 and there is no passed parameter lTransparent to either the New() nor the Redefine() method.\n\nRegards,\nJames",
"time": "17:53",
"topic": "Bug in TFolderEx",
"username": "James Bott"
}
] |
Bug in TFolderEx
|
[
{
"date": "2011-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi James,\n\n[quote=\"James Bott\":osoih41e]\nWhat version of FWH are you using?\n[/quote:osoih41e]\n\nFWH 10.10, the TFoldex.prg file is dated 10/27/2010:\n\n[code=fw:osoih41e]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">METHOD</span> <span style=\"color: #0000ff;\">Redefine</span><span style=\"color: #000000;\">(</span> nID, oWnd, aDialogs, aBitmaps, aPrompts, nFolderHeight, ;<br /> aHelps, nRound, bAction, bClrTabs, bClrText, aAlign, ;<br /> lAdjust, nSeparator, nOption, bPopUp, lStretch, cLayout, bBmpAction,;<br /> nBright, lAnimate, nSpeed, oFont, lTransparent <span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TFolderEx <span style=\"color: #B900B9;\">//-->> byte-one 2010</span></div>[/code:osoih41e]",
"time": "19:14",
"topic": "Bug in TFolderEx",
"username": "IBTC"
}
] |
Bug in TFolderEx
|
[
{
"date": "2011-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ruediger,\n\nSURPRISE !!!\n\nwith my Functions, it works also without [color=#FF0000:lbj3i3f3]oFld:lTransparent := .T.[/color:lbj3i3f3]\n( I didn't test it before ) :\n\nREDEFINE FOLDEREX oFld OF oWndFld ID 110 ;\nPROMPT \"T&est\",\"&Tabs\", \"&Bmp\", \"Br&ush\" ;\nON PAINT TAB PaintTab( Self, nOption ) ;\nBITMAPS c_Path + \"\\bitmaps\\\" + cTabBmp, ;\n c_Path + \"\\bitmaps\\\" + cTabBmp, ;\n\t\tc_Path + \"\\bitmaps\\\" + cTabBmp, ;\n\t\tc_Path + \"\\bitmaps\\\" + cTabBmp ;\nDIALOGS \"Sub1\", \"Sub2\", \"Sub3\", \"Sub4\" ;\nROUND 5 ;\nON CHANGE ( nTabPos := oFld:nOption )\n[color=#FF0000:lbj3i3f3]// oFld:lTransparent := .T.[/color:lbj3i3f3]\noFld:nFolderHeight := nTabH\noFld:nSeparator := nTabS\noFld:bClrText := {| o, n | nTColor3 }\noFld:oFont := oTextFont\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "19:26",
"topic": "Bug in TFolderEx",
"username": "ukoenig"
}
] |
Bug in TFolderEx
|
[
{
"date": "2011-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Uwe,\n\nRegardless if your sample code works or not, there seems to be a missing default setting in the class which should be fixed. I agree with Ruediger.\n\nRegards,\nJames",
"time": "19:28",
"topic": "Bug in TFolderEx",
"username": "James Bott"
}
] |
Bug in TFolderEx
|
[
{
"date": "2011-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi James,\n\n[quote=\"James Bott\":2ip0h7si]a missing default setting in the class which should be fixed.\n[/quote:2ip0h7si]\n\nWith FWH 11.01 it is fixed (the TFoldex.prg file is dated 12/18/2010). <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->",
"time": "20:47",
"topic": "Bug in TFolderEx",
"username": "IBTC"
}
] |
Bug in TFolderEx
|
[
{
"date": "2009-10-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "In the following sample, try to paste the string \"123456789012345678901234567890\" in the GET and you will see that the picture is not respected:\n\n[code=fw:3c09oq4x]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"Fivewin.ch\"</span><br /><br /><br /><span style=\"color: #00C800;\">FUNCTION</span> MAIN<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">LOCAL</span> oDlg, oGet<br /><br /> <span style=\"color: #00C800;\">LOCAL</span> cVar := SPACE<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">39</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg<br /><br /> @ <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">GET</span> oGet <span style=\"color: #0000ff;\">VAR</span> cVar;<br /> <span style=\"color: #0000ff;\">PICTURE</span> <span style=\"color: #ff0000;\">\"999-999-999-999-999-999-999-999-999-999\"</span><br /><br /> @ <span style=\"color: #000000;\">3</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #ff0000;\">\"&Close\"</span> <span style=\"color: #0000ff;\">ACTION</span> oDlg:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg;<br /> <span style=\"color: #0000ff;\">CENTER</span><br /><br /> <span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span></div>[/code:3c09oq4x]\n\nEMG",
"time": "12:37",
"topic": "Bug in TGet",
"username": "Enrico Maria Giordano"
}
] |
Bug in TGet
|
[
{
"date": "2009-10-13",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Yes, it works correctly in pure xHarbour console mode. As in subject, the bug is in FWH TGet class.\n\nEMG",
"time": "20:26",
"topic": "Bug in TGet",
"username": "Enrico Maria Giordano"
}
] |
Bug in TGet
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.