messages
listlengths
1
1
topic
stringlengths
2
60
[ { "date": "2016-06-16", "forum": "FiveWin for Harbour/xHarbour", "text": "Rick,\n \n[img:3s6albvr]http&#58;//www&#46;service-fivewin&#46;de/IMAGES/Header2&#46;jpg[/img:3s6albvr]\n\na setting for header AND footer\n[color=#0000FF:3s6albvr]oBrw1:l2007 := .T.[/color:3s6albvr]\n\n[color=#FF0000:3s6albvr][size=150:3s6albvr]1[/size:3s6albvr][/color:3s6albvr] // gradient\noBrw1:bClrGrad := { | lInvert | If( ! lInvert, ;\n\t\t\t{ { 0.50, 14342874, 16777215 }, ;\n\t\t\t{ 0.50, 16777215, 14342874 } }, ;\n\t\t\t{ { 0.50, 14342874, 16777215 }, ;\n\t\t\t{ 0.50, 16777215, 14342874 } } ) } // default colour gradient spec\n\n[color=#FF0000:3s6albvr][size=150:3s6albvr]2[/size:3s6albvr][/color:3s6albvr]\n// single color with ( 4 same color defines )\noBrw1:bClrGrad := { || { { 0.1, 14342874, 14342874 }, ;\n { 0.1, 14342874, 14342874 } } } \n\n------------------------\n------------------------\n\n[color=#FF0000:3s6albvr][size=150:3s6albvr]3 + 4[/size:3s6albvr][/color:3s6albvr]\nbClrHeader and bClrFooter You can use to color a single column\notherwise You can use AEval(... for ALL columns\n\n[color=#FF0000:3s6albvr]oBrw1:l2007 := .F.[/color:3s6albvr].\nAEval( oBrw1:aCols, { |o| o:bClrHeader := { || { CLR_BLUE, 14342874 } } } )\nAEval( oBrw1:aCols, { |o| o:bClrFooter := { || { CLR_BLUE, 14342874 } } } )\n\n[color=#FF0000:3s6albvr][size=150:3s6albvr]5[/size:3s6albvr][/color:3s6albvr]\ncolering a single column-header ( column 2 )\noBrw1:aCols[2]:bClrHeader := { || { CLR_BLUE, 255 } }\n\nregards\nUwe <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->", "time": "18:41", "topic": "Change Color of xBrowse Column Headers and Footers", "username": "ukoenig" } ]
Change Color of xBrowse Column Headers and Footers
[ { "date": "2016-06-16", "forum": "FiveWin for Harbour/xHarbour", "text": "Thank you ALL !! appreciate your help\n\nRick Lipkin", "time": "19:09", "topic": "Change Color of xBrowse Column Headers and Footers", "username": "Rick Lipkin" } ]
Change Color of xBrowse Column Headers and Footers
[ { "date": "2017-01-18", "forum": "FiveWin for Harbour/xHarbour", "text": "oBrw4:aCols[2]:bClrHeader := { || { CLR_RED, 155 } }\n\noBrw4:kleuren:bClrHeader := { || { CLR_GREEN, 155 } } // Col Nr. changed to HeaderName", "time": "10:58", "topic": "Change Color of xBrowse Column Headers and Footers", "username": "Marc Venken" } ]
Change Color of xBrowse Column Headers and Footers
[ { "date": "2017-01-18", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi\nHow to change xBrowse Header character color? I saw it black color.", "time": "06:39", "topic": "Change Color of xBrowse Column Headers and Footers", "username": "richard-service" } ]
Change Color of xBrowse Column Headers and Footers
[ { "date": "2017-01-18", "forum": "FiveWin for Harbour/xHarbour", "text": "or include\n\n[code=fw:38e4romy]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />WITH OBJECT oBrw<br />&nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp;:<span style=\"color: #000000;\">bClrHeader</span> := <span style=\"color: #000000;\">&#123;</span> || <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">255</span>, <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #B900B9;\">// red text and keeps the background </span><br />&nbsp; &nbsp; &nbsp;<span style=\"color: #B900B9;\">// same for footer </span><br />&nbsp; &nbsp; &nbsp;:<span style=\"color: #000000;\">bClrFooter</span> := <span style=\"color: #000000;\">&#123;</span> || <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">255</span>, <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #B900B9;\">// red text and keeps the background &nbsp;</span><br /><br />END<br />&nbsp;</div>[/code:38e4romy]\n\nregards\nUwe <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->", "time": "11:04", "topic": "Change Color of xBrowse Column Headers and Footers", "username": "ukoenig" } ]
Change Color of xBrowse Column Headers and Footers
[ { "date": "2017-01-18", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Marc, Uwe\nThanks a lot. Solved.", "time": "11:31", "topic": "Change Color of xBrowse Column Headers and Footers", "username": "richard-service" } ]
Change Color of xBrowse Column Headers and Footers
[ { "date": "2017-01-20", "forum": "FiveWin for Harbour/xHarbour", "text": "About header colors:\n\nbClrHeader should return an array of length 2 or 3.\n1st element is used as Text Color.\n\nWhen oBrw:l2007 is false or when oBrw:lFatStyle is true,\n2nd element is used as back color\nIf Array length is 3, then 3rd element is used for line color in the header, other wise text color is used for lines.\n\nWhen oBrw:l2007 is true, 2nd and 3rd elements are ignored and oBrw:bClrGrad is used for header back.", "time": "01:40", "topic": "Change Color of xBrowse Column Headers and Footers", "username": "nageswaragunupudi" } ]
Change Color of xBrowse Column Headers and Footers
[ { "date": "2008-05-23", "forum": "FiveWin for Harbour/xHarbour", "text": "How to change dialog style define from resource?\r\n\r\n\r\nRC:\r\n\r\nINFO DIALOG 6, 15, 473, 347\r\nSTYLE WS_POPUP | WS_VISIBLE | WS_SYSMENU\r\nFONT 10, \"Courier\"\r\n{\r\n}\r\n\r\nPRG:\r\n\r\n//perfectly as expected\r\nDEFINE DIALOG oDlg RESOURCE 'INFO'\r\n... \r\nACTIVATE DIALOG oDlg\r\n\r\n\r\n//-------------------\r\n//on the other prg with child window\r\n\r\nDEFINE WINDOW oWnd TITLE \"Test Child\" MDICHID\r\n\r\n DEFINE DIALOG oDlg RESOURCE 'INFO' OF oWnd\r\n ... \r\n ACTIVATE DIALOG oDlg NOWAIT;\r\n ON INIT SetWindowLong( oDlg:hWnd, GWL_EXSTYLE, nOr(WS_CHILD ) )\r\n \r\n \r\nACTIVATE WINDOW oWnd\r\n//-------------------\r\n\r\nnot working as expected...??? the oDlg must be transform to child of oWnd\r\n\r\nany help?\r\n\r\nThe purpose is to use dialog 'INFO' as popup dialog somewhere and a child of oWnd somewhere within the app.\r\n\r\nHow to change dialog style at runtime?\r\n\r\n\r\n-Best Regards,", "time": "05:49", "topic": "Change Dialog Style at runtime", "username": "fraxzi" } ]
Change Dialog Style at runtime
[ { "date": "2008-05-23", "forum": "FiveWin for Harbour/xHarbour", "text": "I GOT IT!!!\r\n\r\n\r\nOh my!!! that was easy and fast reply too <!-- s:P --><img src=\"{SMILIES_PATH}/icon_razz.gif\" alt=\":P\" title=\"Razz\" /><!-- s:P --> <!-- s:P --><img src=\"{SMILIES_PATH}/icon_razz.gif\" alt=\":P\" title=\"Razz\" /><!-- s:P --> <!-- s:P --><img src=\"{SMILIES_PATH}/icon_razz.gif\" alt=\":P\" title=\"Razz\" /><!-- s:P --> \r\n\r\nI put\r\n\r\n....\r\nACTIVATE DIALOG oDlg NOWAIT CENTERED;\r\n ON INIT SetParent( oDlg:hWnd, oWnd:hWnd )\r\n....\r\n\r\nNow I can use dialog as popup and child to any window....\r\n\r\nWhat am I thinking.... <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> \r\n\r\n\r\nThanks!", "time": "05:55", "topic": "Change Dialog Style at runtime", "username": "fraxzi" } ]
Change Dialog Style at runtime
[ { "date": "2008-05-23", "forum": "FiveWin for Harbour/xHarbour", "text": "Yet... still not able to change dialog style at runtime...\r\n\r\nThe above is just a workaround.... <!-- s:wink: --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\":wink:\" title=\"Wink\" /><!-- s:wink: --> \r\n\r\n\r\nFeel free to post your solution please.... <!-- s:idea: --><img src=\"{SMILIES_PATH}/icon_idea.gif\" alt=\":idea:\" title=\"Idea\" /><!-- s:idea: -->", "time": "06:14", "topic": "Change Dialog Style at runtime", "username": "fraxzi" } ]
Change Dialog Style at runtime
[ { "date": "2008-05-23", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\r\n\r\nThere is a toppic for V-tools in the forum.\r\nThere, i change everything at runtime.\r\nAfterwards i write the source for it.\r\nYou find it at :\r\n\r\n<!-- m --><a class=\"postlink\" href=\"http://www.pflegeplus.com/fw_downloads/vtools.zip\">http://www.pflegeplus.com/fw_downloads/vtools.zip</a><!-- m -->\r\n\r\nWhen you need, i can send you the complete source-part of the\r\ndialog-handling of V-Tools.\r\n\r\nThe new Version 2.0 is nearly finished with many new functions\r\nand support Vista and the new FWH 8.05\r\n\r\nIt writes now the complete source of a design and includes\r\nthe make file as well, building the exe-file.\r\n\r\nIn another 2 weeks it be be finished.\r\n\r\nBest Regards\r\n\r\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->", "time": "08:45", "topic": "Change Dialog Style at runtime", "username": "ukoenig" } ]
Change Dialog Style at runtime
[ { "date": "2008-05-23", "forum": "FiveWin for Harbour/xHarbour", "text": "Frances,\r\n\r\nSome styles can be changed at runtime, some others can't be change. Its a Windows limitation.\r\n\r\nIn those cases you can only end() the dialog (destroy it) and create a new one with the right styles.", "time": "11:41", "topic": "Change Dialog Style at runtime", "username": "Antonio Linares" } ]
Change Dialog Style at runtime
[ { "date": "2008-05-23", "forum": "FiveWin for Harbour/xHarbour", "text": "Mr. Antonio,\r\n\r\nAfter years of programming with Xharbour.org/FWH....\r\nFivewin is so robust and flexible you can have some workaround effortlessly... to fit one's style in coding...\r\n\r\n\r\n\r\nGlad <!-- s8) --><img src=\"{SMILIES_PATH}/icon_cool.gif\" alt=\"8)\" title=\"Cool\" /><!-- s8) --> you're <!-- s8) --><img src=\"{SMILIES_PATH}/icon_cool.gif\" alt=\"8)\" title=\"Cool\" /><!-- s8) --> here!\r\n\r\n\r\nBest regards,", "time": "16:09", "topic": "Change Dialog Style at runtime", "username": "fraxzi" } ]
Change Dialog Style at runtime
[ { "date": "2007-07-12", "forum": "FiveWin for Harbour/xHarbour", "text": "I cannot rely on the users' shortcut to ensure I have the right \"working directory\"\n\nHow can I find the name of the directory of the EXE that is being run so I can change to the directory where the EXE is with \n\nDirChange(ALLTRIM( CurDrive() + \":\\\" + EXEDIR????()))", "time": "11:01", "topic": "Change Directory to where the EXE is", "username": "Ollie" } ]
Change Directory to where the EXE is
[ { "date": "2007-07-12", "forum": "FiveWin for Harbour/xHarbour", "text": "[code:2mu51gkp]CFILEPATH&#40; GETMODULEFILENAME&#40; GETINSTANCE&#40;&#41; &#41; &#41; + \"YOUREXE&#46;EXE\"[/code:2mu51gkp]\n\nEMG", "time": "11:20", "topic": "Change Directory to where the EXE is", "username": "Enrico Maria Giordano" } ]
Change Directory to where the EXE is
[ { "date": "2007-07-12", "forum": "FiveWin for Harbour/xHarbour", "text": "Thank you very much.", "time": "15:13", "topic": "Change Directory to where the EXE is", "username": "Ollie" } ]
Change Directory to where the EXE is
[ { "date": "2013-09-18", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi everyone;\n\nWhen a control is disabled, it shows in a shade of gray --as it should and as the expected windows behavior. Having said that however, here is an unusual question: is there a way to disable a BUTTONBMP control object and yet change the text (fg) color? How?\n\nThank you for any help;\n\n\nReinaldo.", "time": "23:32", "topic": "Change Disable Fg color", "username": "reinaldocrespo" } ]
Change Disable Fg color
[ { "date": "2013-09-19", "forum": "FiveWin for Harbour/xHarbour", "text": "Should I guess that this is just not possible?", "time": "22:38", "topic": "Change Disable Fg color", "username": "reinaldocrespo" } ]
Change Disable Fg color
[ { "date": "2013-09-20", "forum": "FiveWin for Harbour/xHarbour", "text": "I'm not sure I understand the question. Does your bitmap button have a text bitmap? Or, is there such a thing as a bitmap button that also has text (I don't remember seeing such a button)?\n\nRegards,\nJames", "time": "00:30", "topic": "Change Disable Fg color", "username": "James Bott" } ]
Change Disable Fg color
[ { "date": "2013-09-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Here is a sample:\n\n[code=fw:2bhj9xx8]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />   <span style=\"color: #0000ff;\">REDEFINE</span> BUTTONBMP <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">202</span> <span style=\"color: #0000ff;\">OF</span> ::<span style=\"color: #000000;\">oDlg</span> BITMAP <span style=\"color: #ff0000;\">\"exit16\"</span> TEXTLEFT ;<br />      <span style=\"color: #0000ff;\">ACTION</span> ::<span style=\"color: #000000;\">oDlg</span>:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> CANCEL ;<br />      TOOLTIP <span style=\"color: #ff0000;\">\"Exit Dialog\"</span><br /><br />   <span style=\"color: #0000ff;\">REDEFINE</span> BUTTONBMP oBtn <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">201</span> <span style=\"color: #0000ff;\">OF</span> ::<span style=\"color: #000000;\">oDlg</span> BITMAP <span style=\"color: #ff0000;\">\"Save16\"</span> TEXTLEFT ;<br />      TOOLTIP <span style=\"color: #ff0000;\">\"Save Sample Login Information\"</span><br /><br />   oBtn:<span style=\"color: #000000;\">bAction</span> := <span style=\"color: #000000;\">&#123;</span> || ::<span style=\"color: #000000;\">SavePatientInfo</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>, ;<br />      iif<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">bOnSave</span> != <span style=\"color: #00C800;\">NIL</span>, EVAL<span style=\"color: #000000;\">&#40;</span> ::<span style=\"color: #000000;\">bOnSave</span>, <span style=\"color: #00C800;\">SELF</span> <span style=\"color: #000000;\">&#41;</span>, <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span><br /><br /> </div>[/code:2bhj9xx8]\n\n[img:2bhj9xx8]http&#58;//ssfl&#46;dynalias&#46;com&#58;/temp_files/ButtonBMP&#46;png[/img:2bhj9xx8]\n\nWhen oBtn is disabled ( as in oBtn:disable() ) text shows in gray -as expected. The question is: is there any way to show foreground text on some other color when the button is disabled?\n\n\nReinaldo", "time": "01:14", "topic": "Change Disable Fg color", "username": "reinaldocrespo" } ]
Change Disable Fg color
[ { "date": "2013-09-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Rienaldo,\n\nAccording to Microsoft's documentation, there is a color setting for this:\n\n[quote:1atu9gyv]COLOR_GRAYTEXT\tDisabled (gray) text in buttons. This color is set to 0 if the current display driver does not support a solid gray color.[/quote:1atu9gyv]\n\nSee here: <!-- m --><a class=\"postlink\" href=\"http://msdn.microsoft.com/en-us/library/windows/desktop/bb775941(v=vs.85\">http://msdn.microsoft.com/en-us/library ... 41(v=vs.85</a><!-- m -->).aspx\n\nI hope this helps.\n\n--------------------\n\nI note that you are using a button labeled \"Exit.\" Assuming this is on some type of a data entry screen, this is not the Windows standard--\"exit\" is reserved only for exiting a program. When you use it elsewhere it is confusing to the user. \n\nIf the screen is modal, standard terms are \"OK\" and \"Cancel.\" I am assuming your example is a non-modal window, and in this case the standard terms would be \"Save\" and \"Close.\"\n\nJust FYI.\n\nRegards,\nJames", "time": "14:31", "topic": "Change Disable Fg color", "username": "James Bott" } ]
Change Disable Fg color
[ { "date": "2013-09-20", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote:u0ziw7f5]standard terms are \"OK\" and \"Cancel.\" [/quote:u0ziw7f5]\n\nAlways good to be reminded. I should be paying more attention to this.\n\nThank you very much.\n\n\nReinaldo.", "time": "14:35", "topic": "Change Disable Fg color", "username": "reinaldocrespo" } ]
Change Disable Fg color
[ { "date": "2010-04-14", "forum": "FiveWin for CA-Clipper", "text": "Is it possible to Change FONT and FONT SIZE on MsgInfo(), MsgYesNo() ... functions ... ore get the source of them.\n\nBest regards,", "time": "09:46", "topic": "Change FONT and FONT SIZE on MsgInfo() function", "username": "avista" } ]
Change FONT and FONT SIZE on MsgInfo() function
[ { "date": "2010-04-14", "forum": "FiveWin for CA-Clipper", "text": "I think not. They are only Windows API calls.\n\nEMG", "time": "14:30", "topic": "Change FONT and FONT SIZE on MsgInfo() function", "username": "Enrico Maria Giordano" } ]
Change FONT and FONT SIZE on MsgInfo() function
[ { "date": "2012-09-14", "forum": "FiveWin for Harbour/xHarbour", "text": "This syntax belongs to the tooltip xbrowse, changing his source?\nexample: Lucida Console and other\n\n[code=fw:w6h0o1cf]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #000000;\">&#123;</span><span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span>IVE->RECEBID = <span style=\"color: #ff0000;\">\"S\"</span>,;<br />                <span style=\"color: #ff0000;\">\"Nº Venda : \"</span>+IVE->NUMNVEN +CRLF+;<br />                <span style=\"color: #ff0000;\">\"Forma de Pagamento Já descriminada : \"</span>+CRLF+;<br />             <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> !Empty<span style=\"color: #000000;\">&#40;</span>ive->vistadh<span style=\"color: #000000;\">&#41;</span>,vforma01+<span style=\"color: #ff0000;\">\" : \"</span>+transform<span style=\"color: #000000;\">&#40;</span>ive->vistadh,<span style=\"color: #ff0000;\">\"@E &vpict001\"</span><span style=\"color: #000000;\">&#41;</span>+CRLF,<span style=\"color: #ff0000;\">\"\"</span><span style=\"color: #000000;\">&#41;</span>+;<br />             <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> !Empty<span style=\"color: #000000;\">&#40;</span>ive->vistach<span style=\"color: #000000;\">&#41;</span>,vforma02+<span style=\"color: #ff0000;\">\" : \"</span>+transform<span style=\"color: #000000;\">&#40;</span>ive->vistach,<span style=\"color: #ff0000;\">\"@E &vpict001\"</span><span style=\"color: #000000;\">&#41;</span>+CRLF,<span style=\"color: #ff0000;\">\"\"</span><span style=\"color: #000000;\">&#41;</span>+;<br />             <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> !Empty<span style=\"color: #000000;\">&#40;</span>ive->prazoch<span style=\"color: #000000;\">&#41;</span>,vforma03+<span style=\"color: #ff0000;\">\" : \"</span>+transform<span style=\"color: #000000;\">&#40;</span>ive->prazoch,<span style=\"color: #ff0000;\">\"@E &vpict001\"</span><span style=\"color: #000000;\">&#41;</span>+CRLF,<span style=\"color: #ff0000;\">\"\"</span><span style=\"color: #000000;\">&#41;</span>+;<br />             <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> !Empty<span style=\"color: #000000;\">&#40;</span>ive->prazoct<span style=\"color: #000000;\">&#41;</span>,vforma04+<span style=\"color: #ff0000;\">\" : \"</span>+transform<span style=\"color: #000000;\">&#40;</span>ive->prazoct,<span style=\"color: #ff0000;\">\"@E &vpict001\"</span><span style=\"color: #000000;\">&#41;</span>+CRLF,<span style=\"color: #ff0000;\">\"\"</span><span style=\"color: #000000;\">&#41;</span>+;<br />             <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> !Empty<span style=\"color: #000000;\">&#40;</span>ive->prazoap<span style=\"color: #000000;\">&#41;</span>,vforma05+<span style=\"color: #ff0000;\">\" : \"</span>+transform<span style=\"color: #000000;\">&#40;</span>ive->prazoap,<span style=\"color: #ff0000;\">\"@E &vpict001\"</span><span style=\"color: #000000;\">&#41;</span>+CRLF,<span style=\"color: #ff0000;\">\"\"</span><span style=\"color: #000000;\">&#41;</span>+;<br />             <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> !Empty<span style=\"color: #000000;\">&#40;</span>ive->prazotk<span style=\"color: #000000;\">&#41;</span>,vforma06+<span style=\"color: #ff0000;\">\" : \"</span>+transform<span style=\"color: #000000;\">&#40;</span>ive->prazotk,<span style=\"color: #ff0000;\">\"@E &vpict001\"</span><span style=\"color: #000000;\">&#41;</span>+CRLF,<span style=\"color: #ff0000;\">\"\"</span><span style=\"color: #000000;\">&#41;</span>+;<br />             <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> !Empty<span style=\"color: #000000;\">&#40;</span>ive->prazofi<span style=\"color: #000000;\">&#41;</span>,vforma07+<span style=\"color: #ff0000;\">\" : \"</span>+transform<span style=\"color: #000000;\">&#40;</span>ive->prazofi,<span style=\"color: #ff0000;\">\"@E &vpict001\"</span><span style=\"color: #000000;\">&#41;</span>+CRLF,<span style=\"color: #ff0000;\">\"\"</span><span style=\"color: #000000;\">&#41;</span>+;<br />             <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> !Empty<span style=\"color: #000000;\">&#40;</span>ive->prazocd<span style=\"color: #000000;\">&#41;</span>,vforma08+<span style=\"color: #ff0000;\">\" : \"</span>+transform<span style=\"color: #000000;\">&#40;</span>ive->prazocd,<span style=\"color: #ff0000;\">\"@E &vpict001\"</span><span style=\"color: #000000;\">&#41;</span>+CRLF,<span style=\"color: #ff0000;\">\"\"</span><span style=\"color: #000000;\">&#41;</span>+;<br />             <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> !Empty<span style=\"color: #000000;\">&#40;</span>ive->prazodi<span style=\"color: #000000;\">&#41;</span>,vforma09+<span style=\"color: #ff0000;\">\" : \"</span>+transform<span style=\"color: #000000;\">&#40;</span>ive->prazodi,<span style=\"color: #ff0000;\">\"@E &vpict001\"</span><span style=\"color: #000000;\">&#41;</span>+CRLF,<span style=\"color: #ff0000;\">\"\"</span><span style=\"color: #000000;\">&#41;</span>+;<br />             <span style=\"color: #ff0000;\">\"Para Demais alteraçoes Duplo Click !\"</span>,;<br />             <span style=\"color: #ff0000;\">\"Sem Forma de Pagamento !\"</span>+CRLF+;<br />             <span style=\"color: #ff0000;\">\"Para Realizar Forma de Pagamento Duplo click.\"</span><span style=\"color: #000000;\">&#41;</span>,<span style=\"color: #ff0000;\">\"Informaçao\"</span>,<span style=\"color: #ff0000;\">\"\"</span>,nRGB<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">255</span>,<span style=\"color: #000000;\">255</span>,<span style=\"color: #000000;\">255</span><span style=\"color: #000000;\">&#41;</span>,nRGB<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">58</span>,<span style=\"color: #000000;\">116</span>,<span style=\"color: #000000;\">241</span><span style=\"color: #000000;\">&#41;</span>,oFon03 <span style=\"color: #000000;\">&#125;</span></div>[/code:w6h0o1cf]\n\nofont wrote at the end but only for testing\n\nHelp !! <!-- s:P --><img src=\"{SMILIES_PATH}/icon_razz.gif\" alt=\":P\" title=\"Razz\" /><!-- s:P --> <!-- s:o --><img src=\"{SMILIES_PATH}/icon_surprised.gif\" alt=\":o\" title=\"Surprised\" /><!-- s:o --> <!-- s8) --><img src=\"{SMILIES_PATH}/icon_cool.gif\" alt=\"8)\" title=\"Cool\" /><!-- s8) -->", "time": "15:16", "topic": "Change Font in Tooltip", "username": "Matheusfarias" } ]
Change Font in Tooltip
[ { "date": "2015-05-07", "forum": "FiveWin for Harbour/xHarbour", "text": "hello to all,\n\nare there some way to change the say's font of the undefined SAY, I mean if we define says in dialog (resource) is possible to change the font of the SAY without redefine it?\n \nregards\n\nMarcelo", "time": "03:38", "topic": "Change Font undefined SAY", "username": "Marcelo Via Giglio" } ]
Change Font undefined SAY
[ { "date": "2015-05-07", "forum": "FiveWin for Harbour/xHarbour", "text": "Marcelo,\n\nat the end of the defined dialog ( or window ) add :\n\n[code=fw:1zeiidzq]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />AEVAL<span style=\"color: #000000;\">&#40;</span> oDlg:<span style=\"color: #000000;\">aControls</span>, ;<br />     <span style=\"color: #000000;\">&#123;</span> | oCtl | IIF<span style=\"color: #000000;\">&#40;</span> oCtl:<span style=\"color: #000000;\">ClassName</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> == <span style=\"color: #ff0000;\">\"TSAY\"</span>, ;    <span style=\"color: #B900B9;\">// only SAY is used</span><br />                       <span style=\"color: #000000;\">&#40;</span> oCtl:<span style=\"color: #000000;\">SetFont</span><span style=\"color: #000000;\">&#40;</span> oFont1  <span style=\"color: #000000;\">&#41;</span>, ;   <span style=\"color: #B900B9;\">// change font</span><br />                         oCtl:<span style=\"color: #000000;\">Setcolor</span><span style=\"color: #000000;\">&#40;</span> <span style=\"color: #000000;\">255</span>,  <span style=\"color: #000000;\">&#41;</span>, ;   &nbsp;<span style=\"color: #B900B9;\">// change to red</span><br />                         oCtl:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span>, <span style=\"color: #00C800;\">NIL</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#41;</span> <br /> </div>[/code:1zeiidzq]\n\nbest regards\nUwe <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->", "time": "11:20", "topic": "Change Font undefined SAY", "username": "ukoenig" } ]
Change Font undefined SAY
[ { "date": "2015-05-07", "forum": "FiveWin for Harbour/xHarbour", "text": "Thanks, \n\nI want to change the font of the says no redefined from a dialog, I think your solution is for says explicitly defined\n\nThanks and regards\n\nMarcelo", "time": "12:37", "topic": "Change Font undefined SAY", "username": "Marcelo Via Giglio" } ]
Change Font undefined SAY
[ { "date": "2015-05-07", "forum": "FiveWin for Harbour/xHarbour", "text": "Marcelo\n\nI hope this is what you are looking for ?\n\nRick Lipkin\n\n[code=fw:n4bra5w9]<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: #B900B9;\">//---------------------</span><br />Func Main<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">Local</span> oFontA,oFontB,oSay,cSay,oBtn1<br /><br />oFontB  := TFont<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"Ms Sans Serif\"</span>,,<span style=\"color: #000000;\">-6</span>,.F.,.T. ,,,,.F. <span style=\"color: #000000;\">&#41;</span><br />oFontA  := TFont<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"New Times Roman\"</span>,,<span style=\"color: #000000;\">-10</span>,.F.,.T. ,,,,.F. <span style=\"color: #000000;\">&#41;</span><br />cSay   &nbsp; := <span style=\"color: #ff0000;\">\"Testing Boiler Plate Text\"</span><br /><br />LightGreyGrad<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <span style=\"color: #B900B9;\">// creates gradient and the transparent flag for dialog</span><br /><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">300</span>, <span style=\"color: #000000;\">300</span><br /><br />   @ <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">Say</span> oSay <span style=\"color: #0000ff;\">PROMPT</span> cSay <span style=\"color: #0000ff;\">OF</span> oDlg<br />          oSay:<span style=\"color: #000000;\">SetFont</span><span style=\"color: #000000;\">&#40;</span> oFontB <span style=\"color: #000000;\">&#41;</span><br />          oSay:<span style=\"color: #000000;\">SetColor</span><span style=\"color: #000000;\">&#40;</span>nRgb<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">7</span>,<span style=\"color: #000000;\">7</span>,<span style=\"color: #000000;\">224</span><span style=\"color: #000000;\">&#41;</span><span style=\"color: #000000;\">&#41;</span> <span style=\"color: #B900B9;\">// blue</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;\">\"Change Font\"</span> <span style=\"color: #0000ff;\">of</span> oDlg <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">40</span>,<span style=\"color: #000000;\">12</span> ;<br />          <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">&#40;</span> oSay:<span style=\"color: #000000;\">SetFont</span><span style=\"color: #000000;\">&#40;</span>oFontA<span style=\"color: #000000;\">&#41;</span>,oSay:<span style=\"color: #000000;\">SetColor</span><span style=\"color: #000000;\">&#40;</span>CLR_HRED<span style=\"color: #000000;\">&#41;</span>,oSay:<span style=\"color: #0000ff;\">ReFresh</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</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: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">FONT</span> oFontB<br /><span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">FONT</span> oFontA<br /><br /><span style=\"color: #00C800;\">Return</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #00C800;\">nil</span><span style=\"color: #000000;\">&#41;</span><br /><br /><br /><span style=\"color: #B900B9;\">//------------------</span><br />Func LightGreyGrad<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />SetDlgGradient<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">&#123;</span> .<span style=\"color: #000000;\">50</span>, nRGB<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #000000;\">216</span>, <span style=\"color: #000000;\">216</span>, <span style=\"color: #000000;\">216</span> <span style=\"color: #000000;\">&#41;</span>, nRGB<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #000000;\">255</span>, <span style=\"color: #000000;\">255</span>, <span style=\"color: #000000;\">255</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">Return</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #00C800;\">nil</span><span style=\"color: #000000;\">&#41;</span><br /><br /> </div>[/code:n4bra5w9]", "time": "14:40", "topic": "Change Font undefined SAY", "username": "Rick Lipkin" } ]
Change Font undefined SAY
[ { "date": "2015-05-07", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Marcelo,\n\nyou want to change the font of an undefined control, so wou'll have \"to get your hands dirty\".\n\nFirst, get the handle (hWnd) of every child control in your dialog, then check the id (-1) and type (Static) of that control to identify your target(s), and then change the font. Sth like\n\n[code=fw:y1ucsetb]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />   <span style=\"color: #B900B9;\">// oDlg your Dialog and oFont the font to set to</span><br />   hCtrl := GetWindow<span style=\"color: #000000;\">&#40;</span> oDlg:<span style=\"color: #000000;\">hWnd</span>, GW_CHILD <span style=\"color: #000000;\">&#41;</span><br />   <span style=\"color: #00C800;\">WHILE</span> hCtrl != <span style=\"color: #000000;\">0</span><br />      <span style=\"color: #00C800;\">IF</span> GetClassName<span style=\"color: #000000;\">&#40;</span> hCtrl <span style=\"color: #000000;\">&#41;</span> == <span style=\"color: #ff0000;\">\"Static\"</span> .AND. GetWindowLong<span style=\"color: #000000;\">&#40;</span> hCtrl, GWL_ID <span style=\"color: #000000;\">&#41;</span> == <span style=\"color: #000000;\">-1</span><br />         SendMessage<span style=\"color: #000000;\">&#40;</span>  hCtrl, WM_SETFONT, oFont:<span style=\"color: #000000;\">hFont</span> <span style=\"color: #000000;\">&#41;</span><br />      <span style=\"color: #00C800;\">ENDIF</span><br />      hCtrl := GetWindow<span style=\"color: #000000;\">&#40;</span> hCtrl, GW_HWNDNEXT <span style=\"color: #000000;\">&#41;</span><br />   <span style=\"color: #00C800;\">ENDDO</span><br /> </div>[/code:y1ucsetb]\n\nWarning: I haven't tryed it, so it is not under warranty <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) --> I think it should work.", "time": "15:45", "topic": "Change Font undefined SAY", "username": "Carlos Mora" } ]
Change Font undefined SAY
[ { "date": "2015-05-07", "forum": "FiveWin for Harbour/xHarbour", "text": "I think he want to change the fonts of the text controls with an ID of -1 in the resource.", "time": "14:59", "topic": "Change Font undefined SAY", "username": "Gale FORd" } ]
Change Font undefined SAY
[ { "date": "2015-05-07", "forum": "FiveWin for Harbour/xHarbour", "text": "Gale\n\nYou are correct .. control ID -1 can not be changed .. you have to create a Text Control with a valid ID in your .rc and then REDEFINE with Color and Font with Code.\n\nRick Lipkin\n\n[code=fw:1rd0mdxg]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />LTEXT <span style=\"color: #ff0000;\">\"Vendor Id\"</span>, <span style=\"color: #000000;\">112</span>, <span style=\"color: #000000;\">8</span>, <span style=\"color: #000000;\">39</span>, <span style=\"color: #000000;\">60</span>, <span style=\"color: #000000;\">12</span>, SS_NOPREFIX | WS_GROUP<br /> </div>[/code:1rd0mdxg]\n\n[code=fw:1rd0mdxg]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">SAY</span> oSay27 <span style=\"color: #0000ff;\">Id</span> <span style=\"color: #000000;\">112</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">UPDATE</span><br />oSay27:<span style=\"color: #000000;\">SetFont</span><span style=\"color: #000000;\">&#40;</span> oFontB <span style=\"color: #000000;\">&#41;</span><br />oSay27:<span style=\"color: #000000;\">SetColor</span><span style=\"color: #000000;\">&#40;</span> nRgb<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #000000;\">7</span>,<span style=\"color: #000000;\">7</span>,<span style=\"color: #000000;\">224</span> <span style=\"color: #000000;\">&#41;</span><span style=\"color: #000000;\">&#41;</span><br /> </div>[/code:1rd0mdxg]", "time": "15:03", "topic": "Change Font undefined SAY", "username": "Rick Lipkin" } ]
Change Font undefined SAY
[ { "date": "2015-05-08", "forum": "FiveWin for Harbour/xHarbour", "text": "Thanks to all for the responses\n\nCarlos thanks your suggestion, this work very well, now \n\nare there the possibility to change the color too?\n\nbest regards\n\nMarcelo", "time": "02:43", "topic": "Change Font undefined SAY", "username": "Marcelo Via Giglio" } ]
Change Font undefined SAY
[ { "date": "2015-05-08", "forum": "FiveWin for Harbour/xHarbour", "text": "Marcelo,\n\nYou can get the fish, or learn how to fish <!-- s;) --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\";)\" title=\"Wink\" /><!-- s;) -->\nThe matter is: using a control's (windows) handle, change it's color (like ::SetColor() does). One of the blessings of using FW is that you have 99% of the source code, so we have the very basic resource for research. Take a look into TWindows source and find out by yourself, i'm pretty sure you can! Show me that i'm not wrong <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->\n\nBest regards", "time": "14:10", "topic": "Change Font undefined SAY", "username": "Carlos Mora" } ]
Change Font undefined SAY
[ { "date": "2015-05-08", "forum": "FiveWin for Harbour/xHarbour", "text": "Carlos,\n\ngood philosophy, if I find the solution, I will publish it here\n\nThanks\n\nMarcelo", "time": "23:33", "topic": "Change Font undefined SAY", "username": "Marcelo Via Giglio" } ]
Change Font undefined SAY
[ { "date": "2015-05-09", "forum": "FiveWin for Harbour/xHarbour", "text": "Marcelo\n\nSeveral years ago I was faced with a similar situation .. look for a workaround for Static text ID -1 or just go through each .rc and assign and replace each -1 with an ID number of your choice.\n\nWhen you have a unique ID for your text, it makes it so much easier to code fonts,color and transparency.\n[code=fw:1sujijum]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0000ff;\">from</span> .rc<br />LTEXT <span style=\"color: #ff0000;\">\"Vendor Id\"</span>, <span style=\"color: #000000;\">112</span>, <span style=\"color: #000000;\">8</span>, <span style=\"color: #000000;\">39</span>, <span style=\"color: #000000;\">60</span>, <span style=\"color: #000000;\">12</span>, SS_NOPREFIX | WS_GROUP<br /> </div>[/code:1sujijum] \n[code=fw:1sujijum]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">SAY</span> oSay27 <span style=\"color: #0000ff;\">Id</span> <span style=\"color: #000000;\">112</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">UPDATE</span><br />oSay27:<span style=\"color: #000000;\">SetFont</span><span style=\"color: #000000;\">&#40;</span> oFontB <span style=\"color: #000000;\">&#41;</span><br />oSay27:<span style=\"color: #000000;\">SetColor</span><span style=\"color: #000000;\">&#40;</span> nRgb<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #000000;\">7</span>,<span style=\"color: #000000;\">7</span>,<span style=\"color: #000000;\">224</span> <span style=\"color: #000000;\">&#41;</span><span style=\"color: #000000;\">&#41;</span><br /> </div>[/code:1sujijum]\n\nJust my 2 cents worth.\nRick Lipkin", "time": "14:38", "topic": "Change Font undefined SAY", "username": "Rick Lipkin" } ]
Change Font undefined SAY
[ { "date": "2023-01-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Is there any example of an interactive color change in Footer (xBrowse) ?", "time": "11:06", "topic": "Change Footer colors (xBrowse)", "username": "Natter" } ]
Change Footer colors (xBrowse)
[ { "date": "2023-01-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Did you already make a looking for \"footer color\"?\nRegards", "time": "17:00", "topic": "Change Footer colors (xBrowse)", "username": "FranciscoA" } ]
Change Footer colors (xBrowse)
[ { "date": "2023-01-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi,\n [code=fw:22ekfnjq]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;oCol:<span style=\"color: #000000;\">bClrFooter</span> &nbsp; &nbsp;:= <span style=\"color: #000000;\">&#123;</span>|| <span style=\"color: #000000;\">&#123;</span><span style=\"color: #00C800;\">IF</span><span style=\"color: #000000;\">&#40;</span>oBrw:<span style=\"color: #000000;\">oCol</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">9</span><span style=\"color: #000000;\">&#41;</span>:<span style=\"color: #000000;\">nTotal</span> > <span style=\"color: #000000;\">0</span>, CLR_RED, CLR_BLACK<span style=\"color: #000000;\">&#41;</span>, <span style=\"color: #000000;\">&#125;</span> &nbsp;<span style=\"color: #000000;\">&#125;</span><br /><br />&nbsp;</div>[/code:22ekfnjq]", "time": "05:39", "topic": "Change Footer colors (xBrowse)", "username": "Willi Quintana" } ]
Change Footer colors (xBrowse)
[ { "date": "2023-01-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Thank you for your help !\nOf course, I immediately tried the construction of\n aCols[cl]:bClrFooter:={||{RGB(...), RGB(...)}}\n aCols[cl]:RefreshFooter()\n But at the same time, only the font color changes, and the background color does not change <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( -->", "time": "11:21", "topic": "Change Footer colors (xBrowse)", "username": "Natter" } ]
Change Footer colors (xBrowse)
[ { "date": "2023-01-28", "forum": "FiveWin for Harbour/xHarbour", "text": "return color pair { nClrText, nClrBack } when your bClrFooter is evaluated.", "time": "13:44", "topic": "Change Footer colors (xBrowse)", "username": "nageswaragunupudi" } ]
Change Footer colors (xBrowse)
[ { "date": "2023-01-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Sorry, I got it! Is the update method not enough aCols[cl]:RefreshFooter() ?", "time": "09:54", "topic": "Change Footer colors (xBrowse)", "username": "Natter" } ]
Change Footer colors (xBrowse)
[ { "date": "2023-01-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi,\nthis code...\n\n[code=fw:22usqbs2]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />&nbsp; &nbsp; oCol:<span style=\"color: #000000;\">bClrFooter</span> &nbsp; &nbsp;:= <span style=\"color: #000000;\">&#123;</span>|| <span style=\"color: #000000;\">&#123;</span><span style=\"color: #00C800;\">IF</span><span style=\"color: #000000;\">&#40;</span>oBrw:<span style=\"color: #000000;\">oCol</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">9</span><span style=\"color: #000000;\">&#41;</span>:<span style=\"color: #000000;\">nTotal</span> > <span style=\"color: #000000;\">0</span>, CLR_RED, CLR_BLACK<span style=\"color: #000000;\">&#41;</span>, CLR_YELLOW<span style=\"color: #000000;\">&#125;</span> &nbsp;<span style=\"color: #000000;\">&#125;</span><br />&nbsp;</div>[/code:22usqbs2]", "time": "13:51", "topic": "Change Footer colors (xBrowse)", "username": "Willi Quintana" } ]
Change Footer colors (xBrowse)
[ { "date": "2023-01-30", "forum": "FiveWin for Harbour/xHarbour", "text": "hi Friends\n\n[code=fw:33ecz7zk]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />&nbsp; &nbsp;oCol:<span style=\"color: #000000;\">bClrFooter</span> &nbsp; &nbsp;:= <span style=\"color: #000000;\">&#123;</span>|| <span style=\"color: #000000;\">&#123;</span>CLR_GREEN, CLR_BLUE<span style=\"color: #000000;\">&#125;</span> &nbsp;<span style=\"color: #000000;\">&#125;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #B900B9;\">// &nbsp;CLR_BLUE not working.........</span><br />&nbsp;</div>[/code:33ecz7zk]", "time": "15:08", "topic": "Change Footer colors (xBrowse)", "username": "Willi Quintana" } ]
Change Footer colors (xBrowse)
[ { "date": "2023-01-30", "forum": "FiveWin for Harbour/xHarbour", "text": "[code=fw:718bpgzt]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> aData &nbsp; &nbsp;:= <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #ff0000;\">\"ONE &nbsp;\"</span>, <span style=\"color: #000000;\">2000</span> <span style=\"color: #000000;\">&#125;</span>, <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #ff0000;\">\"TWO &nbsp;\"</span>, <span style=\"color: #000000;\">-5000</span> <span style=\"color: #000000;\">&#125;</span>, <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #ff0000;\">\"THREE\"</span>, <span style=\"color: #000000;\">2000</span> <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#125;</span><br /><br />&nbsp; &nbsp;XBROWSER aData FASTEDIT SETUP BrwSetup<span style=\"color: #000000;\">&#40;</span> oBrw <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #00C800;\">static</span> <span style=\"color: #00C800;\">function</span> BrwSetup<span style=\"color: #000000;\">&#40;</span> oBrw <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;SetGetColorFocus<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;oBrw:<span style=\"color: #000000;\">lFooter</span> := .t.<br />&nbsp; &nbsp;oBrw:<span style=\"color: #000000;\">l2007</span> &nbsp; := .f.<br />&nbsp; &nbsp;WITH OBJECT oBrw:<span style=\"color: #000000;\">aCols</span><span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span><br />&nbsp; &nbsp; &nbsp; :<span style=\"color: #000000;\">nFooterType</span> &nbsp; := AGGR_SUM<br />&nbsp; &nbsp; &nbsp; :<span style=\"color: #000000;\">bClrFooter</span> &nbsp; &nbsp;:= <span style=\"color: #000000;\">&#123;</span> || <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">&#40;</span> oBrw:<span style=\"color: #000000;\">oCol</span><span style=\"color: #000000;\">&#40;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#41;</span>:<span style=\"color: #000000;\">nTotal</span> < <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">&#123;</span> CLR_WHITE, CLR_HRED <span style=\"color: #000000;\">&#125;</span>, <span style=\"color: #000000;\">&#123;</span> CLR_BLACK, CLR_HGREEN <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span><br />&nbsp; &nbsp;END<br />&nbsp; &nbsp;oBrw:<span style=\"color: #000000;\">MakeTotals</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br />&nbsp;</div>[/code:718bpgzt]\n\n[url=https&#58;//imageshack&#46;com/i/pnI506HNg:718bpgzt][img:718bpgzt]https&#58;//imagizer&#46;imageshack&#46;com/img923/5369/I506HN&#46;gif[/img:718bpgzt][/url:718bpgzt]", "time": "19:08", "topic": "Change Footer colors (xBrowse)", "username": "nageswaragunupudi" } ]
Change Footer colors (xBrowse)
[ { "date": "2023-01-31", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Mr. Rao,\n\nWhich application do you use to create gif files.\n\nThanks.", "time": "16:43", "topic": "Change Footer colors (xBrowse)", "username": "Horizon" } ]
Change Footer colors (xBrowse)
[ { "date": "2023-02-01", "forum": "FiveWin for Harbour/xHarbour", "text": "ScreenToGif", "time": "08:13", "topic": "Change Footer colors (xBrowse)", "username": "nageswaragunupudi" } ]
Change Footer colors (xBrowse)
[ { "date": "2013-04-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Good afternoon.\n\nis there any way to know in which to get there was a change in a dialog", "time": "16:46", "topic": "Change GET", "username": "aferra" } ]
Change GET
[ { "date": "2013-04-26", "forum": "FiveWin for Harbour/xHarbour", "text": "From Demont Frank\n\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=3&t=11752&start=0&hilit=acontrols#p58011\">viewtopic.php?f=3&t=11752&start=0&hilit=acontrols#p58011</a><!-- l -->", "time": "17:20", "topic": "Change GET", "username": "Antonio Mart." } ]
Change GET
[ { "date": "2012-10-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi ,\n\n I want to change the TEXT Color ONLY when GET is focused. Please guide me how I can set it ?\n\nThanks in advance..!\nShridhar", "time": "12:02", "topic": "Change GET TEXT COLOR when GET Focused.", "username": "shri_fwh" } ]
Change GET TEXT COLOR when GET Focused.
[ { "date": "2012-10-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Shridhar,\nmaybe SetGetColorFocus() is what you are looking for.\nBest regrads,\nOtto", "time": "12:14", "topic": "Change GET TEXT COLOR when GET Focused.", "username": "Otto" } ]
Change GET TEXT COLOR when GET Focused.
[ { "date": "2012-10-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Shridhar,\n\nChanging a SINGLE-get ( not global !!! ),\notherwise Ottos solution.\n\n[color=#0000FF:165wr099]REDEFINE GET oGet VAR nTickCount ID 970 PICTURE \"99999\" OF oDlg UPDATE[/color:165wr099]\n\nThis changes the GET ON FOCUS to RED with black text\n[color=#FF0000:165wr099]oGet1:bGotFocus [/color:165wr099]:= { | nKey, nFlags | oGet:SetColor( 0, 255 ) }\n\nThis changes the GET to WHITE with black text\n[color=#FF0000:165wr099]oGet1:bLostFocus [/color:165wr099]:= { | nKey, nFlags | oGet:SetColor( 0, 16777215 ) }\n\nBest Regards\nUwe <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->", "time": "12:29", "topic": "Change GET TEXT COLOR when GET Focused.", "username": "ukoenig" } ]
Change GET TEXT COLOR when GET Focused.
[ { "date": "2012-10-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Otto, Uwe , \n\n Want to set globally but, as SetGetColorFocus() function I can set color only for Background not for Text. Is there any way so I can set color for both Text and Background globally ?\n\nThanks\nShridhar", "time": "12:50", "topic": "Change GET TEXT COLOR when GET Focused.", "username": "shri_fwh" } ]
Change GET TEXT COLOR when GET Focused.
[ { "date": "2009-10-08", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\n\nI need to change GET alignment in run time, I don't remember but I think it is possible sending some message to the object, some help?,\nI want to use only one get control\n\nregards\n\nMarcelo", "time": "13:44", "topic": "Change GET alignment", "username": "Marcelo Via Giglio" } ]
Change GET alignment
[ { "date": "2017-09-09", "forum": "FiveWin for Harbour/xHarbour", "text": "We can change the header with this code :\n\noBrw1:bChange := { || oBrw2:cHeaders := { FIELD->CODE + '1', FIELD->CODE + '2', FIELD->CODE + '3' }, oBrw2:RefreshHeaders() }\n\nBut can we also change the Groupheader ?\n\naMaand = Array with 12 months\nnMaand is actual month\n\nOn start, the groepheader is Januari, but when I change the combo to March, it should change.\n\nThe Combo :\n\n[code=fw:2ooggp52]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">@ <span style=\"color: #000000;\">65</span>,<span style=\"color: #000000;\">550</span> <span style=\"color: #0000ff;\">COMBOBOX</span> oCbx <span style=\"color: #0000ff;\">VAR</span> nMaand <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">100</span>,<span style=\"color: #000000;\">400</span> <span style=\"color: #0000ff;\">PIXEL</span> HEIGHTGET <span style=\"color: #000000;\">18</span> <span style=\"color: #0000ff;\">OF</span> oDlg  ;<br />      <span style=\"color: #0000ff;\">ITEMS</span> aMaanden <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">CHANGE</span> <span style=\"color: #000000;\">&#40;</span> ;<br />         tn := oRs:<span style=\"color: #000000;\">FieldPos</span><span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"T\"</span> + LTrim<span style=\"color: #000000;\">&#40;</span> Str<span style=\"color: #000000;\">&#40;</span> nMaand <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span> + <span style=\"color: #ff0000;\">\"_1\"</span> <span style=\"color: #000000;\">&#41;</span>, ;<br />         oBrw<span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">6</span> <span style=\"color: #000000;\">&#93;</span>:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span><br /> </div>[/code:2ooggp52]\n\n\n\n:SetGroupHeader( aMaanden[nMaand], oBrw[6]:oCol(\"T1\"):nCreationOrder, oBrw[6]:oCol(\"M4\"):nCreationOrder ) // header Januari = 0K\n\nTried :\n\noBrw[6]:bChange := { || oBrw[6]:cGroupHeader := { aMaanden[nMaand] }, oBrw[6]:RefreshHeaders() }", "time": "09:03", "topic": "Change Groupheaders in Xbrowse on new Values", "username": "Marc Venken" } ]
Change Groupheaders in Xbrowse on new Values
[ { "date": "2017-09-09", "forum": "FiveWin for Harbour/xHarbour", "text": "Marc,\n\noBrowse:SetGroupHeader( 'NOVO TITULO', 1, 14 )", "time": "23:06", "topic": "Change Groupheaders in Xbrowse on new Values", "username": "MGA" } ]
Change Groupheaders in Xbrowse on new Values
[ { "date": "2017-01-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\n\nI a browse I have a Char Field. It look like : \"Iphone<br>64mb<br>green<br>touchscreen\" enz..\n\nIt is used for a import in a php shopcart, where the <BR> will take care that each item is on a new line for viewing.\n\nI would like tho see also from the browse and his Tooltip the Items on each new line\n\nIphone\n64 mb\nGreen\nTouchscreen\n\nI tried to change the <BR> what is HTML inside the below function to CRLF , but with no succes.\n\nMaybe a other idea ?\n\nThis code shows the tooltip :\n\n[code=fw:3w360paj]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><span style=\"color: #0000ff;\">from</span> browse :<br />  oBrw:<span style=\"color: #000000;\">bToolTips</span>   := ;<br />        <span style=\"color: #000000;\">&#123;</span> | oBrw,r,c,f,oMouseCol,nMouseRow| MyColToolTip<span style=\"color: #000000;\">&#40;</span> oBrw,r,c,f,oMouseCol,nMouseRow <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span><br /><br /><br /><span style=\"color: #00C800;\">Function</span> MyColToolTip<span style=\"color: #000000;\">&#40;</span> oBrw, r, c, f, oMouseCol, nMouseRow <span style=\"color: #000000;\">&#41;</span><br /><br />   <span style=\"color: #00C800;\">local</span> uBm, uVal<br /><br />   <span style=\"color: #00C800;\">if</span> nMouseRow != oBrw:<span style=\"color: #000000;\">nRowSel</span><br />      uBm   := oBrw:<span style=\"color: #000000;\">BookMark</span><br />      Eval<span style=\"color: #000000;\">&#40;</span> oBrw:<span style=\"color: #000000;\">bSkip</span>, nMouseRow - oBrw:<span style=\"color: #000000;\">nRowSel</span> <span style=\"color: #000000;\">&#41;</span><br />      uVal  := oMouseCol:<span style=\"color: #000000;\">Value</span><br />      oBrw:<span style=\"color: #000000;\">BookMark</span> := uBm<br />   <span style=\"color: #00C800;\">else</span><br />      uVal  := oMouseCol:<span style=\"color: #000000;\">Value</span><br />   <span style=\"color: #00C800;\">endif</span><br /><br /><span style=\"color: #00C800;\">return</span> cValToChar<span style=\"color: #000000;\">&#40;</span> uVal <span style=\"color: #000000;\">&#41;</span><br /><br /> </div>[/code:3w360paj]", "time": "00:16", "topic": "Change Layout of content of the tooltip", "username": "Marc Venken" } ]
Change Layout of content of the tooltip
[ { "date": "2017-01-17", "forum": "FiveWin for Harbour/xHarbour", "text": "[code=fw:qtwytpbl]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> cTags &nbsp; &nbsp;:= <span style=\"color: #ff0000;\">\"Iphone<br>64mb<br>green<br>touchscreen\"</span> <br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> cStr &nbsp; &nbsp;:= <span style=\"color: #ff0000;\">\"\"</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> aStr &nbsp; &nbsp;:= <span style=\"color: #000000;\">&#123;</span><span style=\"color: #000000;\">&#125;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;aStr := HB_ATokens<span style=\"color: #000000;\">&#40;</span> cTags, <span style=\"color: #ff0000;\">\"<br>\"</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;aEVal<span style=\"color: #000000;\">&#40;</span> aStr, <span style=\"color: #000000;\">&#123;</span> | a | cStr += a + CRLF <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;? cStr<br />&nbsp;</div>[/code:qtwytpbl]", "time": "01:06", "topic": "Change Layout of content of the tooltip", "username": "cnavarro" } ]
Change Layout of content of the tooltip
[ { "date": "2017-01-17", "forum": "FiveWin for Harbour/xHarbour", "text": "[code=fw:2uyxg5g4]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">function</span> MyColToolTip<span style=\"color: #000000;\">&#40;</span> oBrw, r, c, f, oMouseCol, nMouseRow <span style=\"color: #000000;\">&#41;</span><br /><br />   <span style=\"color: #00C800;\">local</span> uBm, uVal<br /><br />   <span style=\"color: #00C800;\">if</span> nMouseRow != oBrw:<span style=\"color: #000000;\">nRowSel</span><br />      uBm   := oBrw:<span style=\"color: #000000;\">BookMark</span><br />      Eval<span style=\"color: #000000;\">&#40;</span> oBrw:<span style=\"color: #000000;\">bSkip</span>, nMouseRow - oBrw:<span style=\"color: #000000;\">nRowSel</span> <span style=\"color: #000000;\">&#41;</span><br />      uVal  := oMouseCol:<span style=\"color: #000000;\">Value</span><br />      oBrw:<span style=\"color: #000000;\">BookMark</span> := uBm<br />   <span style=\"color: #00C800;\">else</span><br />      uVal  := oMouseCol:<span style=\"color: #000000;\">Value</span><br />   <span style=\"color: #00C800;\">endif</span><br /><br />   uVal     := cValToChar<span style=\"color: #000000;\">&#40;</span> uVal <span style=\"color: #000000;\">&#41;</span><br />   uVal     := StrTran<span style=\"color: #000000;\">&#40;</span> uVal, <span style=\"color: #ff0000;\">\"<br>\"</span>, CRLF <span style=\"color: #000000;\">&#41;</span><br /><br /><br /><span style=\"color: #00C800;\">return</span> uVal<br /> </div>[/code:2uyxg5g4]\n\n[url=https&#58;//imageshack&#46;com/i/pnsB5xuRp:2uyxg5g4][img:2uyxg5g4]http&#58;//imagizer&#46;imageshack&#46;us/v2/xq90/923/sB5xuR&#46;png[/img:2uyxg5g4][/url:2uyxg5g4]", "time": "03:26", "topic": "Change Layout of content of the tooltip", "username": "nageswaragunupudi" } ]
Change Layout of content of the tooltip
[ { "date": "2017-01-17", "forum": "FiveWin for Harbour/xHarbour", "text": "If you want to display multi-line in both xbrowse and also in tool-tips\n[code=fw:1gupisqe]<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;\">function</span> Main<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> oDlg, oBrw, oFont<br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> aData := <span style=\"color: #000000;\">&#123;</span> ;<br />&nbsp; &nbsp; &nbsp;<span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">1</span>, &nbsp;<span style=\"color: #ff0000;\">\"Iphone<br>64mb<br>green<br>touchscreen\"</span> <span style=\"color: #000000;\">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp;<span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">2</span>, &nbsp;<span style=\"color: #ff0000;\">\"brand2<br>32mb<br>black<br>touchscreen\"</span> <span style=\"color: #000000;\">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp;<span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">3</span>, &nbsp;<span style=\"color: #ff0000;\">\"brand3<br>16mb<br>white<br>touchscreen\"</span> <span style=\"color: #000000;\">&#125;</span> &nbsp;<span style=\"color: #000000;\">&#125;</span><br /><br />&nbsp; &nbsp;SetBalloon<span style=\"color: #000000;\">&#40;</span> .T. <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"TAHOMA\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">-14</span><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">300</span>,<span style=\"color: #000000;\">400</span> <span style=\"color: #0000ff;\">PIXEL</span> <span style=\"color: #0000ff;\">FONT</span> oFont TRUEPIXEL<br /><br />&nbsp; &nbsp;@ <span style=\"color: #000000;\">20</span>,<span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">XBROWSE</span> oBrw <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">-20</span>,<span style=\"color: #000000;\">-20</span> <span style=\"color: #0000ff;\">PIXEL</span> <span style=\"color: #0000ff;\">OF</span> oDlg ;<br />&nbsp; &nbsp; &nbsp; DATASOURCE aData COLUMNS <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">2</span> ;<br />&nbsp; &nbsp; &nbsp; COLSIZES <span style=\"color: #000000;\">50</span>,<span style=\"color: #000000;\">100</span> ;<br />&nbsp; &nbsp; &nbsp; CELL LINES NOBORDER<br /><br />&nbsp; &nbsp;WITH OBJECT oBrw<br />&nbsp; &nbsp; &nbsp; :<span style=\"color: #000000;\">aCols</span><span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span>:<span style=\"color: #000000;\">bEditValue</span> := <span style=\"color: #000000;\">&#123;</span> || StrTran<span style=\"color: #000000;\">&#40;</span> oBrw:<span style=\"color: #000000;\">aRow</span><span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span>, <span style=\"color: #ff0000;\">\"<br>\"</span>, CRLF <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span><br />&nbsp; &nbsp; &nbsp; :<span style=\"color: #000000;\">nDataLines</span> := <span style=\"color: #000000;\">4</span><br />&nbsp; &nbsp; &nbsp; :<span style=\"color: #000000;\">bToolTips</span> := <span style=\"color: #000000;\">&#123;</span> | oBrw,r,c,f,oMouseCol,nMouseRow| MyColToolTip<span style=\"color: #000000;\">&#40;</span> oBrw,r,c,f,oMouseCol,nMouseRow <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span><br />&nbsp; &nbsp; &nbsp; :<span style=\"color: #000000;\">CreateFromCode</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;END<br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">CENTERED</span><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">FONT</span> oFont<br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #00C800;\">function</span> MyColToolTip<span style=\"color: #000000;\">&#40;</span> oBrw, r, c, f, oMouseCol, nMouseRow <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> uBm, uVal<br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">if</span> nMouseRow != oBrw:<span style=\"color: #000000;\">nRowSel</span><br />&nbsp; &nbsp; &nbsp; uBm &nbsp; := oBrw:<span style=\"color: #000000;\">BookMark</span><br />&nbsp; &nbsp; &nbsp; Eval<span style=\"color: #000000;\">&#40;</span> oBrw:<span style=\"color: #000000;\">bSkip</span>, nMouseRow - oBrw:<span style=\"color: #000000;\">nRowSel</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; uVal &nbsp;:= oMouseCol:<span style=\"color: #000000;\">Value</span><br />&nbsp; &nbsp; &nbsp; oBrw:<span style=\"color: #000000;\">BookMark</span> := uBm<br />&nbsp; &nbsp;<span style=\"color: #00C800;\">else</span><br />&nbsp; &nbsp; &nbsp; uVal &nbsp;:= oMouseCol:<span style=\"color: #000000;\">Value</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">endif</span><br /><br /><span style=\"color: #00C800;\">return</span> cValToChar<span style=\"color: #000000;\">&#40;</span> uVal <span style=\"color: #000000;\">&#41;</span><br />&nbsp;</div>[/code:1gupisqe]\n\n[url=https&#58;//imageshack&#46;com/i/pn6WVJdhp:1gupisqe][img:1gupisqe]http&#58;//imagizer&#46;imageshack&#46;us/v2/xq90/923/6WVJdh&#46;png[/img:1gupisqe][/url:1gupisqe]", "time": "03:33", "topic": "Change Layout of content of the tooltip", "username": "nageswaragunupudi" } ]
Change Layout of content of the tooltip
[ { "date": "2017-01-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Thank you all.\n\nI found a post that it is not yet possible to keep the Tooltip Balloon longer on screen \n\nOptions : \n\n1 by time : we can set the time, or\n2 Keep visible as long as we are on the cell, and change when we change to a other cell.\n\nIs this also for Xbrowse ? Maybe Xbrowse has this option inside...\n\n[quote=\"nageswaragunupudi\":3pn6pc48]For many years it is already possible to set title, icon and colors of tooltip.\n\nObj:cToolTip can be assigned with Text or Array or CodeBlock. Codeblock can return either text or array\nAdvantage of codeblock is that we can change the text,etc displayed according to the context at the time of display of tooltip.\n\nArray Specs:\nObj:cToolTip := { cText, cTitle, nIcon, nClrText, nClrBack }\n\n[quote:3pn6pc48]\nMarch 2008\n===========\n* Enhancement: Tooltips can now have user defined header, icon and colors, \nby specifying the tooltip as an array in the format \n{ cToolTipText, [cHeader, [nIcon]], [nForeColor], [nBackColor] }. \nIf the tooltip is specified as a codeblock, it can evaluate to a \ncharacter value or an array.\n[/quote:3pn6pc48]\n\nNow we shall consider adding width, delaytype and delaytime[/quote:3pn6pc48]", "time": "22:17", "topic": "Change Layout of content of the tooltip", "username": "Marc Venken" } ]
Change Layout of content of the tooltip
[ { "date": "2017-01-18", "forum": "FiveWin for Harbour/xHarbour", "text": "Implemented and is due to be released in 17.01", "time": "03:41", "topic": "Change Layout of content of the tooltip", "username": "nageswaragunupudi" } ]
Change Layout of content of the tooltip
[ { "date": "2017-01-18", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"nageswaragunupudi\":33jd2z6u]Implemented and is due to be released in 17.01[/quote:33jd2z6u]\nMr.Rao\nHow about use C5ToolTip?", "time": "06:55", "topic": "Change Layout of content of the tooltip", "username": "richard-service" } ]
Change Layout of content of the tooltip
[ { "date": "2017-01-18", "forum": "FiveWin for Harbour/xHarbour", "text": "You are free to use C5ToolTip class if you like. It offers more flexibility. This is a class independent of Windows API. Each tooltip involves writing of more code.\n\nThe tooltips we discussed earlier were tooltips provided by Windows API and usage is simple.", "time": "07:10", "topic": "Change Layout of content of the tooltip", "username": "nageswaragunupudi" } ]
Change Layout of content of the tooltip
[ { "date": "2017-01-25", "forum": "FiveWin for Harbour/xHarbour", "text": "In FWH 17.01, we introduced bCellToolTip, which is extremely easier to implement than bToolTip. We recommend using bCellToolTip in the place of bToolTip and deprecate using bToolTip.\n\nThe sample above is re-written using bCellToolTip\n[code=fw:1d6gpbxy]<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;\">function</span> Main<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> oDlg, oBrw, oFont<br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> aData := <span style=\"color: #000000;\">&#123;</span> ;<br />&nbsp; &nbsp; &nbsp;<span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">1</span>, &nbsp;<span style=\"color: #ff0000;\">\"Iphone<br>64mb<br>green<br>touchscreen\"</span> <span style=\"color: #000000;\">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp;<span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">2</span>, &nbsp;<span style=\"color: #ff0000;\">\"brand2<br>32mb<br>black<br>touchscreen\"</span> <span style=\"color: #000000;\">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp;<span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">3</span>, &nbsp;<span style=\"color: #ff0000;\">\"brand3<br>16mb<br>white<br>touchscreen\"</span> <span style=\"color: #000000;\">&#125;</span> &nbsp;<span style=\"color: #000000;\">&#125;</span><br /><br />&nbsp; &nbsp;SetBalloon<span style=\"color: #000000;\">&#40;</span> .T. <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"TAHOMA\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">-14</span><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">300</span>,<span style=\"color: #000000;\">400</span> <span style=\"color: #0000ff;\">PIXEL</span> <span style=\"color: #0000ff;\">FONT</span> oFont TRUEPIXEL<br /><br />&nbsp; &nbsp;@ <span style=\"color: #000000;\">20</span>,<span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">XBROWSE</span> oBrw <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">-20</span>,<span style=\"color: #000000;\">-20</span> <span style=\"color: #0000ff;\">PIXEL</span> <span style=\"color: #0000ff;\">OF</span> oDlg ;<br />&nbsp; &nbsp; &nbsp; DATASOURCE aData COLUMNS <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">2</span> ;<br />&nbsp; &nbsp; &nbsp; COLSIZES <span style=\"color: #000000;\">50</span>,<span style=\"color: #000000;\">100</span> ;<br />&nbsp; &nbsp; &nbsp; CELL LINES NOBORDER<br /><br />&nbsp; &nbsp;WITH OBJECT oBrw<br />&nbsp; &nbsp; &nbsp; :<span style=\"color: #000000;\">aCols</span><span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span>:<span style=\"color: #000000;\">bEditValue</span> := <span style=\"color: #000000;\">&#123;</span> || StrTran<span style=\"color: #000000;\">&#40;</span> oBrw:<span style=\"color: #000000;\">aRow</span><span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">&#93;</span>, <span style=\"color: #ff0000;\">\"<br>\"</span>, CRLF <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span><br />&nbsp; &nbsp; &nbsp; :<span style=\"color: #000000;\">nDataLines</span> := <span style=\"color: #000000;\">4</span><br />&nbsp; &nbsp; &nbsp; :<span style=\"color: #000000;\">bCellToolTips</span> := <span style=\"color: #000000;\">&#123;</span> | oCol | cValToChar<span style=\"color: #000000;\">&#40;</span> oCol:<span style=\"color: #000000;\">Value</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span><br />&nbsp; &nbsp; &nbsp; :<span style=\"color: #000000;\">CreateFromCode</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;END<br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">CENTERED</span><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">FONT</span> oFont<br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br />&nbsp;</div>[/code:1d6gpbxy]", "time": "16:44", "topic": "Change Layout of content of the tooltip", "username": "nageswaragunupudi" } ]
Change Layout of content of the tooltip
[ { "date": "2017-01-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Mr. Rao,\n\nCan we set duration time in bCellToolTip usage?\n\nThanks,", "time": "12:27", "topic": "Change Layout of content of the tooltip", "username": "Horizon" } ]
Change Layout of content of the tooltip
[ { "date": "2017-01-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Yes, from FWH 17.01 onwards.\nIn the above codeblock instead of returning a character value, return array with 7th element as time in milliseconds.\nFor complete specification, please see whatsnew.txt of FWH 17.01", "time": "13:07", "topic": "Change Layout of content of the tooltip", "username": "nageswaragunupudi" } ]
Change Layout of content of the tooltip
[ { "date": "2012-01-09", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi.\n\nI'd like to change the menu items on menu option n (say 5) via code. Can someone help?\n\nThank you,\n\n\nReinaldo.", "time": "23:16", "topic": "Change MenuItems on the fly", "username": "reinaldocrespo" } ]
Change MenuItems on the fly
[ { "date": "2012-01-10", "forum": "FiveWin for Harbour/xHarbour", "text": "Try this:\n\n[code=fw:blflxhv3]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">oMenu:<span style=\"color: #000000;\">aItems</span><span style=\"color: #000000;\">&#91;</span> <span style=\"color: #000000;\">5</span> <span style=\"color: #000000;\">&#93;</span>:<span style=\"color: #000000;\">SetPrompt</span><span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"Changed\"</span> <span style=\"color: #000000;\">&#41;</span></div>[/code:blflxhv3]\n\nEMG", "time": "00:11", "topic": "Change MenuItems on the fly", "username": "Enrico Maria Giordano" } ]
Change MenuItems on the fly
[ { "date": "2012-01-10", "forum": "FiveWin for Harbour/xHarbour", "text": "Enrico;\n\nHi.\n\nHow about removing all submenu options from oMenu:aItems[5] and then adding 3 new submenu items with actions to oMenu:aItems[ 5 ]?\n\nThank you,\n\n\nReinaldo.", "time": "01:54", "topic": "Change MenuItems on the fly", "username": "reinaldocrespo" } ]
Change MenuItems on the fly
[ { "date": "2012-01-10", "forum": "FiveWin for Harbour/xHarbour", "text": "Please look inside mru.prg.\n\nEMG", "time": "11:08", "topic": "Change MenuItems on the fly", "username": "Enrico Maria Giordano" } ]
Change MenuItems on the fly
[ { "date": "2012-01-10", "forum": "FiveWin for Harbour/xHarbour", "text": "Yes!\n\nThank you Enrico.\n\n\nReinaldo.", "time": "22:15", "topic": "Change MenuItems on the fly", "username": "reinaldocrespo" } ]
Change MenuItems on the fly
[ { "date": "2023-04-15", "forum": "FiveWin for Harbour/xHarbour", "text": "Dear All,\n\nHow can I change background color (ClrPane) of POPMENU? I try COLORMENU COLORSELECT but it doesn't change.\n\nThanks in advance,", "time": "03:21", "topic": "Change POPMENU background color?", "username": "dutch" } ]
Change POPMENU background color?
[ { "date": "2023-04-15", "forum": "FiveWin for Harbour/xHarbour", "text": "Maybe:\n\n[url:29yto4mm]https&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=3&t=30894[/url:29yto4mm]\n\n[url:29yto4mm]https&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=6&t=24251&start=0[/url:29yto4mm]\n\n[url:29yto4mm]https&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=3&t=36238[/url:29yto4mm]\n\n[url:29yto4mm]https&#58;//www&#46;fivetechsoft&#46;com/forums/viewtopic&#46;php?t=39718[/url:29yto4mm]\n\nRegards, saludos.", "time": "12:49", "topic": "Change POPMENU background color?", "username": "karinha" } ]
Change POPMENU background color?
[ { "date": "2023-04-15", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"dutch\":2io64tdi]Dear All,\n\nHow can I change background color (ClrPane) of POPMENU? I try COLORMENU COLORSELECT but it doesn't change.\n\nThanks in advance,[/quote:2io64tdi]\n\nTo be able to use those clauses, you have to define the 2013 style or simply use the COLORS clause\n\nMENU oMnu COLORS .....\n\n[code=fw:2io64tdi]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">MENU</span> oPopup <span style=\"color: #0000ff;\">POPUP</span> <span style=\"color: #000000;\">2013</span> <span style=\"color: #0000ff;\">FONT</span> oFontX NOBORDER ;<br />&nbsp; &nbsp; &nbsp; COLORMENU CLR_VSBAR, CLR_BLUE ; <span style=\"color: #B900B9;\">//nClrTxtBrw ; //nClrBackBrw</span><br />&nbsp; &nbsp; &nbsp; COLORSELECT nClrTxtBrw, nClrTxtBrw, nClrBackBrw ;<br />&nbsp; &nbsp; &nbsp; LEFTCOLOR CLR_WHITE, CLR_HGRAY COLORSEPARATOR CLR_BLUE COLORBOX CLR_WHITE<br />&nbsp;</div>[/code:2io64tdi]", "time": "19:18", "topic": "Change POPMENU background color?", "username": "cnavarro" } ]
Change POPMENU background color?
[ { "date": "2023-04-15", "forum": "FiveWin for Harbour/xHarbour", "text": "hi,\n\ni use this\n[code=fw:1nlfw1cc]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">   <span style=\"color: #00C800;\">IF</span> BGcolor = Rgb<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#41;</span><br />      <span style=\"color: #B900B9;\">//  msginfo(\"oMenu black\")</span><br />      <span style=\"color: #0000ff;\">MENU</span> oMenu <span style=\"color: #000000;\">2013</span> <span style=\"color: #0000ff;\">POPUP</span> ;<br />              COLORMENU BGcolor, BFcolor ;<br />              COLORPNEL BFcolor, BGcolor ;<br />              COLORLEFT BFcolor, BGcolor ;<br />              COLORSELECT BFcolor, BGcolor, BFcolor<br /><br />   ELSEIF BGColor = <span style=\"color: #000000;\">256</span> * <span style=\"color: #000000;\">256</span> * <span style=\"color: #000000;\">256</span> - <span style=\"color: #000000;\">1</span>                               <span style=\"color: #B900B9;\">// 16777215</span><br />      <span style=\"color: #B900B9;\">//  msginfo(\"oMenu white\")</span><br />      <span style=\"color: #0000ff;\">MENU</span> oMenu <span style=\"color: #000000;\">2013</span> <span style=\"color: #0000ff;\">POPUP</span> ;<br />              COLORSELECT GetSysColor<span style=\"color: #000000;\">&#40;</span> COLOR_MENUHILIGHT <span style=\"color: #000000;\">&#41;</span>, GetSysColor<span style=\"color: #000000;\">&#40;</span> COLOR_MENUHILIGHT <span style=\"color: #000000;\">&#41;</span>, GetSysColor<span style=\"color: #000000;\">&#40;</span> COLOR_MENU <span style=\"color: #000000;\">&#41;</span><br /><br />   <span style=\"color: #00C800;\">ELSE</span><br />      <span style=\"color: #0000ff;\">MENU</span> oMenu <span style=\"color: #000000;\">2013</span> <span style=\"color: #0000ff;\">POPUP</span> ;<br />              COLORMENU BGcolor, BFcolor ;<br />              COLORPNEL BFcolor, BGcolor ;<br />              COLORLEFT BFcolor, BGcolor ;<br />              COLORSELECT BFcolor, BFcolor, BGcolor<br />   <span style=\"color: #00C800;\">ENDIF</span></div>[/code:1nlfw1cc]\n[img:1nlfw1cc]https&#58;//i&#46;postimg&#46;cc/SxmpCH7v/Popup-menu-black&#46;jpg[/img:1nlfw1cc]\n[img:1nlfw1cc]https&#58;//i&#46;postimg&#46;cc/7PQCBMQ9/Popup-menu-white&#46;jpg[/img:1nlfw1cc]", "time": "19:35", "topic": "Change POPMENU background color?", "username": "Jimmy" } ]
Change POPMENU background color?
[ { "date": "2023-04-16", "forum": "FiveWin for Harbour/xHarbour", "text": "Dear All,\n\nThank you so much, it works well now.", "time": "04:15", "topic": "Change POPMENU background color?", "username": "dutch" } ]
Change POPMENU background color?
[ { "date": "2020-07-14", "forum": "FiveWin for Harbour/xHarbour", "text": "Dear All,\n\nCan I change color or theme of TExplorer?\n\nThanks in advance,", "time": "10:13", "topic": "Change TExplorer theme or Color ?", "username": "dutch" } ]
Change TExplorer theme or Color ?
[ { "date": "2020-07-14", "forum": "FiveWin for Harbour/xHarbour", "text": "Dutch,\n\nFor the entire ExplorerBar you have:\n::nTopColor, ::nBottomColor\n\nYou can modify the DATA aGradient in each TaskPanel:\n\nAlso you have \n DATA nClrTextSpecial INIT CLR_WHITE\n DATA nClrHover INIT RGB( 66, 142, 255 )\nand nClrText", "time": "11:01", "topic": "Change TExplorer theme or Color ?", "username": "Antonio Linares" } ]
Change TExplorer theme or Color ?
[ { "date": "2023-06-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi,\n\nI have a Text on ButtonBar via TSay class. I need to change it with pressing \"Change It\" button. \n\nAny help?\n\nThanks.\n\n[code=fw:x2mj116s]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />   <span style=\"color: #00C800;\">local</span> oWnd, oBar, oBold, oFont1, oSay11<br /><br />    <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont1 <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"Arial\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">-35</span><br />    <br />   <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"FWH17.04 : ButtonBar Group Labels\"</span><br />   <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTONBAR</span> oBar <span style=\"color: #0000ff;\">OF</span> oWnd <span style=\"color: #000000;\">2007</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">56</span>,<span style=\"color: #000000;\">56</span> HEIGHT <span style=\"color: #000000;\">80</span><br /><br />   oBold := oBar:<span style=\"color: #000000;\">oFont</span>:<span style=\"color: #000000;\">Bold</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />   oBar:<span style=\"color: #000000;\">oGrpFont</span>  := oBold<br /><br />   <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar  <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Change it\"</span> <span style=\"color: #0000ff;\">action</span> Change_Text<span style=\"color: #000000;\">&#40;</span>oSay11<span style=\"color: #000000;\">&#41;</span><br />    @ <span style=\"color: #000000;\">3</span>,<span style=\"color: #000000;\">100</span> <span style=\"color: #0000ff;\">say</span> oSay11 <span style=\"color: #0000ff;\">Prompt</span> <span style=\"color: #ff0000;\">\"Test1\"</span> <span style=\"color: #0000ff;\">of</span> oBar <span style=\"color: #0000ff;\">size</span> <span style=\"color: #000000;\">500</span>,<span style=\"color: #000000;\">56</span> <span style=\"color: #0000ff;\">pixel</span> TRANSPARENT <span style=\"color: #0000ff;\">FONT</span> oFont1 <span style=\"color: #0000ff;\">CENTER</span> VCENTER <span style=\"color: #0000ff;\">COLOR</span> CLR_RED <span style=\"color: #0000ff;\">UPDATE</span> <br /><br />   <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">CENTERED</span><br />   <span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">FONT</span> oBold<br />   oFont1:=<span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #00C800;\">function</span> Change_Text<span style=\"color: #000000;\">&#40;</span>oSay<span style=\"color: #000000;\">&#41;</span><br />    oSay:<span style=\"color: #000000;\">SetText</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"New Text\"</span><span style=\"color: #000000;\">&#41;</span><br />    oSay:<span style=\"color: #0000ff;\">refresh</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #00C800;\">return</span> .t.</div>[/code:x2mj116s]", "time": "13:47", "topic": "Change Text on ButtonBar!", "username": "Horizon" } ]
Change Text on ButtonBar!
[ { "date": "2023-06-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Una forma sería:\n[code=fw:3deb4jnj]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> oWnd, oBar, oBold, oFont1, oSay11, cText := <span style=\"color: #ff0000;\">\"Test 1\"</span><br /><br />&nbsp; &nbsp; <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont1 <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"Arial\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">-35</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"FWH17.04 : ButtonBar Group Labels\"</span><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTONBAR</span> oBar <span style=\"color: #0000ff;\">OF</span> oWnd <span style=\"color: #000000;\">2007</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">56</span>,<span style=\"color: #000000;\">56</span> HEIGHT <span style=\"color: #000000;\">80</span><br /><br />&nbsp; &nbsp;oBold := oBar:<span style=\"color: #000000;\">oFont</span>:<span style=\"color: #000000;\">Bold</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;oBar:<span style=\"color: #000000;\">oGrpFont</span> &nbsp;:= oBold<br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar &nbsp;<span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Change it\"</span> <span style=\"color: #0000ff;\">action</span> Change_Text<span style=\"color: #000000;\">&#40;</span>oSay11,@cText<span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; @ <span style=\"color: #000000;\">3</span>,<span style=\"color: #000000;\">100</span> <span style=\"color: #0000ff;\">say</span> oSay11 <span style=\"color: #0000ff;\">Prompt</span> cText <span style=\"color: #0000ff;\">of</span> oBar <span style=\"color: #0000ff;\">size</span> <span style=\"color: #000000;\">500</span>,<span style=\"color: #000000;\">56</span> <span style=\"color: #0000ff;\">pixel</span> TRANSPARENT <span style=\"color: #0000ff;\">FONT</span> oFont1 <span style=\"color: #0000ff;\">CENTER</span> VCENTER <span style=\"color: #0000ff;\">COLOR</span> CLR_RED <span style=\"color: #0000ff;\">UPDATE</span><br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">CENTERED</span><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">FONT</span> oBold<br />&nbsp; &nbsp;oFont1:=<span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #00C800;\">function</span> Change_Text<span style=\"color: #000000;\">&#40;</span>oSay,cText<span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; cText := <span style=\"color: #ff0000;\">\"New Text\"</span><br />&nbsp; &nbsp; oSay:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #00C800;\">return</span> .t.</div>[/code:3deb4jnj]", "time": "14:22", "topic": "Change Text on ButtonBar!", "username": "cmsoft" } ]
Change Text on ButtonBar!
[ { "date": "2023-06-27", "forum": "FiveWin for Harbour/xHarbour", "text": "[code=fw:3b6e46a0]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">function</span> BarSay<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> oWnd, oBar, oSay1, oSay2<br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> cPrompt1 := <span style=\"color: #ff0000;\">\"ONE\"</span><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">local</span> nMth &nbsp; &nbsp; := <span style=\"color: #000000;\">0</span><br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">FROM</span> <span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">0</span> <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">300</span>,<span style=\"color: #000000;\">500</span> <span style=\"color: #0000ff;\">PIXEL</span><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTONBAR</span> oBar <span style=\"color: #0000ff;\">OF</span> oWnd <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">45</span>,<span style=\"color: #000000;\">45</span> <span style=\"color: #000000;\">2010</span><br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> <span style=\"color: #0000ff;\">OF</span> oBar <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Change\"</span> <span style=\"color: #0000ff;\">CENTER</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">&#40;</span> ;<br />&nbsp; &nbsp; &nbsp; cPrompt1 := <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">&#40;</span> cPrompt1 == <span style=\"color: #ff0000;\">\"ONE\"</span>, <span style=\"color: #ff0000;\">\"TWO\"</span>, <span style=\"color: #ff0000;\">\"ONE\"</span> <span style=\"color: #000000;\">&#41;</span>, ;<br />&nbsp; &nbsp; &nbsp; nMth &nbsp;:= <span style=\"color: #000000;\">&#40;</span> ++nMth <span style=\"color: #000000;\">&#41;</span> % <span style=\"color: #000000;\">12</span>, ;<br />&nbsp; &nbsp; &nbsp; oBar:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;@ <span style=\"color: #000000;\">3</span>,<span style=\"color: #000000;\">100</span> <span style=\"color: #0000ff;\">SAY</span> cPrompt1 <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">80</span>,<span style=\"color: #000000;\">40</span> <span style=\"color: #0000ff;\">PIXEL</span> <span style=\"color: #0000ff;\">OF</span> oBar VCENTER<br />&nbsp; &nbsp;@ <span style=\"color: #000000;\">3</span>,<span style=\"color: #000000;\">200</span> <span style=\"color: #0000ff;\">SAY</span> <span style=\"color: #000000;\">&#123;</span> || ntocmonth<span style=\"color: #000000;\">&#40;</span> nMth + <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#125;</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">80</span>,<span style=\"color: #000000;\">40</span> <span style=\"color: #0000ff;\">PIXEL</span> <span style=\"color: #0000ff;\">OF</span> oBar VCENTER<br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> oWnd <span style=\"color: #0000ff;\">CENTERED</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br />&nbsp;</div>[/code:3b6e46a0]", "time": "04:21", "topic": "Change Text on ButtonBar!", "username": "nageswaragunupudi" } ]
Change Text on ButtonBar!
[ { "date": "2023-06-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Thank you Mr. Rao, Cesar.", "time": "16:03", "topic": "Change Text on ButtonBar!", "username": "Horizon" } ]
Change Text on ButtonBar!
[ { "date": "2006-09-15", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi!\n\nI'm trying to implement a control access menu based in SysTreeView32.\nI want to check/uncheck menu items that the user can or not access.\n\n[code:3voqq14b]\n&#123;-&#125;--Menu 1 \n | |---&#91; &#93; Menu 1&#46;1 \n | |---&#91;x&#93; Menu 1&#46;2 \n | +---&#91; &#93; Menu 1&#46;3 \n |\n&#123;-&#125;--Menu 2 \n |---&#91;x&#93; Menu 2&#46;1 \n +---&#91;x&#93; Menu 2&#46;2 \n[/code:3voqq14b]\n\nUsing TreeView I did any like this and I will use a bitmap to checked and other to unchecked state.\n\n1. How can I change bitmap when we click over?\n2. How can I know if a item is checked or not to save the results in a database?\n\nBest regards,\nMaurilio[/img]", "time": "15:19", "topic": "Change Treeview bitmap at runtime", "username": "Maurilio Viana" } ]
Change Treeview bitmap at runtime
[ { "date": "2006-09-15", "forum": "FiveWin for Harbour/xHarbour", "text": "Although not as fancy, a browse would be much easier to program.\n\nJames", "time": "16:22", "topic": "Change Treeview bitmap at runtime", "username": "James Bott" } ]
Change Treeview bitmap at runtime
[ { "date": "2006-09-15", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Maurilio Viana\":1xvxc5lz]1. How can I change bitmap when we click over?[/quote:1xvxc5lz]\n\nTry to change the image in the oImageList and then use SetImageList() method.\n\n[quote=\"Maurilio Viana\":1xvxc5lz]2. How can I know if a item is checked or not to save the results in a database?[/quote:1xvxc5lz]\n\nStore the info in an array or a database and toggle it when you click on a tree item.\n\nEMG", "time": "16:40", "topic": "Change Treeview bitmap at runtime", "username": "Enrico Maria Giordano" } ]
Change Treeview bitmap at runtime
[ { "date": "2006-09-15", "forum": "FiveWin for Harbour/xHarbour", "text": "Maurilio\n\nFrom the oImageList \n\n\n IF oItem:nImage = 1\n oItem:Set( ,2)\n oItem:nImage := 2\n ELSE\n oItem:Set( ,1)\n oItem:nImage := 1\n ENDIF\n\nRegards Maurizio", "time": "17:24", "topic": "Change Treeview bitmap at runtime", "username": "Maurizio" } ]
Change Treeview bitmap at runtime
[ { "date": "2006-09-15", "forum": "FiveWin for Harbour/xHarbour", "text": "Olá Maurilio beleza <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\nO que você precisa seia algo como a imagem abaixo ?\n\n[img:1ac4igp4]http&#58;//br&#46;geocities&#46;com/qiinformatica2000/treee&#46;PNG[/img:1ac4igp4]\n\nAbraços,\n\nRossine.", "time": "20:27", "topic": "Change Treeview bitmap at runtime", "username": "Rossine" } ]
Change Treeview bitmap at runtime
[ { "date": "2006-09-15", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Rossine\":1bnhwghg]\nO que você precisa seia algo como a imagem abaixo ?\n[/quote:1bnhwghg]\n\nIsso mesmo, Rossine!\n\n[ ]'s\nMaurilio", "time": "21:33", "topic": "Change Treeview bitmap at runtime", "username": "Maurilio Viana" } ]
Change Treeview bitmap at runtime
[ { "date": "2006-09-16", "forum": "FiveWin for Harbour/xHarbour", "text": "Olá Maurilio,\n\nSe eu não estou enganado eu peguei este exemplo aqui mesmo <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> \n\n[url:13snl9z1]http&#58;//geocities&#46;yahoo&#46;com&#46;br/qiinformatica2000/tree&#46;zip[/url:13snl9z1]\n\nEste exemplo tem vários recursos:\n\n- Mudar a cor do fundo\n- Mudar o label das opções ( Basta clicar duas vezes emcima delas)\n- Opção para acionar um calendário\n- Mudar o bitmap ao clicar duas vezes, etc...\n\nEspero que te ajude <!-- s:wink: --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\":wink:\" title=\"Wink\" /><!-- s:wink: --> \n\nAbraços,\n\nRossine.", "time": "13:29", "topic": "Change Treeview bitmap at runtime", "username": "Rossine" } ]
Change Treeview bitmap at runtime
[ { "date": "2006-09-16", "forum": "FiveWin for Harbour/xHarbour", "text": "where is the ch files ?\n---------------", "time": "17:43", "topic": "Change Treeview bitmap at runtime", "username": "Silvio" } ]
Change Treeview bitmap at runtime
[ { "date": "2006-09-18", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Rossine\":1z6c8a67]\nSe eu não estou enganado eu peguei este exemplo aqui mesmo <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> \n[url:1z6c8a67]http&#58;//geocities&#46;yahoo&#46;com&#46;br/qiinformatica2000/tree&#46;zip[/url:1z6c8a67]\n[/quote:1z6c8a67]\n\nObrigado, Rossine!\nVou testar. Eu estava apanhando, pois eu estava tentando montar como um browse e estava horrivel, o treeview tem opcao de esconder os sub-itens...\n\n[ ]'s\nMaurilio", "time": "12:05", "topic": "Change Treeview bitmap at runtime", "username": "Maurilio Viana" } ]
Change Treeview bitmap at runtime
[ { "date": "2008-05-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Old:\r\nFWH27\r\nXHB 09961\r\nBCC\r\n\r\nNew:\r\nFWH705\r\nXHB 1.00\r\nBCC\r\n\r\n\r\nAo rodar minha aplicação, aparece uma tela MS-DOS por trás.\r\n\t\r\nWhen executo my application, shows a screen in the background MSDOS", "time": "18:27", "topic": "Change Version Problem", "username": "marcelocabral" } ]
Change Version Problem
[ { "date": "2008-05-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Marcelo,\r\n\r\nTienes que enlazar GTGUI.lib en vez de GTWIN.lib", "time": "18:34", "topic": "Change Version Problem", "username": "Antonio Linares" } ]
Change Version Problem
[ { "date": "2008-05-20", "forum": "FiveWin for Harbour/xHarbour", "text": "[img:yybwampb]http&#58;//picasaweb&#46;google&#46;com&#46;br/kabrau/TelasCompatilhadas/photo#5202514276493173938[/img:yybwampb]\r\n\r\n[url]http://picasaweb.google.com.br/kabrau/TelasCompatilhadas/photo#5202514276493173938\r\n[/url]", "time": "18:34", "topic": "Change Version Problem", "username": "marcelocabral" } ]
Change Version Problem
[ { "date": "2008-05-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Marcelo, \r\n\r\nTienes que enlazar GTGUI.lib en vez de GTWIN.lib", "time": "18:36", "topic": "Change Version Problem", "username": "Antonio Linares" } ]
Change Version Problem
[ { "date": "2008-05-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Gracias !!!\r\nThanks !!!", "time": "18:37", "topic": "Change Version Problem", "username": "marcelocabral" } ]
Change Version Problem
[ { "date": "2013-02-28", "forum": "Utilities / Utilidades", "text": "[url:cqdfp82x]http&#58;//social&#46;technet&#46;microsoft&#46;com/Forums/en-US/w8itprogeneral/thread/a5699003-9233-4ddc-96fc-e3c1e4a2a81b/[/url:cqdfp82x]\n\nHKEY_CURRENT_USER\\Control Panel\\Colors", "time": "09:18", "topic": "Change Windows Background color in Windows 8", "username": "Antonio Linares" } ]
Change Windows Background color in Windows 8
[ { "date": "2013-07-23", "forum": "Utilities / Utilidades", "text": "regedit.exe\n\nsearch for WindowText, repeat with F3\n\nchange two lines above (Window) from 255 255 255 to 180 180 180", "time": "22:15", "topic": "Change Windows Background color in Windows 8", "username": "Antonio Linares" } ]
Change Windows Background color in Windows 8
[ { "date": "2013-12-27", "forum": "Utilities / Utilidades", "text": "Antonio,\n\n[quote=\"Antonio Linares\":1arjmvec]regedit.exe\n\nsearch for WindowText, repeat with F3\n\nchange two lines above (Window) from 255 255 255 to 180 180 180[/quote:1arjmvec]\n\nDid you mean Window, not WindowText, right?\n\nEMG", "time": "23:41", "topic": "Change Windows Background color in Windows 8", "username": "Enrico Maria Giordano" } ]
Change Windows Background color in Windows 8