messages
listlengths 1
1
| topic
stringlengths 2
60
|
---|---|
[
{
"date": "2011-05-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Daniel,\n\nIn BTNBMP, how do I set 2010 style?.\n\nThank you.",
"time": "17:27",
"topic": "2010 style",
"username": "ukservice"
}
] |
2010 style
|
[
{
"date": "2011-05-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello\n\nFivewin have 4 different class to design a button, TButton, TButtonbmp, TBtnbmp, TRbbtn\n\neach one have a different behaviors and different way to customizable \n\nto BtnBmp by programing we can not build all features of 2010 style, instead you can use TButton, TButtonbmp (skinbutton), TRbbtn (changing colors data )",
"time": "20:32",
"topic": "2010 style",
"username": "Daniel Garcia-Gil"
}
] |
2010 style
|
[
{
"date": "2011-05-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Daniel,\n\nAnd why don´t you modify BTNBMP to accept 2010 clause?.\n\nThank you.",
"time": "16:44",
"topic": "2010 style",
"username": "ukservice"
}
] |
2010 style
|
[
{
"date": "2011-06-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Daniel, can you share the code of rb2010 sample? thanks",
"time": "14:19",
"topic": "2010 style",
"username": "norberto"
}
] |
2010 style
|
[
{
"date": "2011-06-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello\n\nsure... <!-- s:-D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":-D\" title=\"Very Happy\" /><!-- s:-D -->\n\n[code=fw:4szj7h4s]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"ribbon.ch\"</span><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"xbrowse.ch\"</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> oApp := TApplication<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <br /> oApp:<span style=\"color: #000000;\">Run</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span> <br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">CLASS</span> TApplication<br /><br /> <span style=\"color: #00C800;\">DATA</span> oWnd<br /> <span style=\"color: #00C800;\">DATA</span> oRBar<br /> <br /> <span style=\"color: #00C800;\">METHOD</span> <span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">METHOD</span> BuildMenu<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">METHOD</span> BuildRibbon<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <br /> <span style=\"color: #00C800;\">METHOD</span> BackStage<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">)</span><br /> <br /> <span style=\"color: #00C800;\">METHOD</span> Resize<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">)</span><br /> <br /> <span style=\"color: #00C800;\">METHOD</span> Run<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <br /><span style=\"color: #00C800;\">ENDCLASS</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">METHOD</span> <span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TApplication<br /><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">WINDOW</span> ::<span style=\"color: #000000;\">oWnd</span> <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"RibbonBar Style 2010 - Test\"</span>;<br /> <span style=\"color: #0000ff;\">MENU</span> ::<span style=\"color: #000000;\">BuildMenu</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">COLOR</span> <span style=\"color: #ff0000;\">\"N/W*\"</span><br /><br /> ::<span style=\"color: #000000;\">BuildRibbon</span><span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">)</span><br /><br /> SET <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #0000ff;\">OF</span> ::<span style=\"color: #000000;\">oWnd</span> <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #ff0000;\">\"Testing Class RibbonBar Style 2010 and Message Bar 2010 colors\"</span> ;<br /> <span style=\"color: #0000ff;\">CENTERED</span> CLOCK KEYBOARD <span style=\"color: #000000;\">2010</span><br /> <br /> ::<span style=\"color: #000000;\">oWnd</span>:<span style=\"color: #0000ff;\">Center</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">Self</span><br /><br /><span style=\"color: #00C800;\">METHOD</span> Run<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TApplication<br /> <br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">WINDOW</span> ::<span style=\"color: #000000;\">oWnd</span> <span style=\"color: #0000ff;\">MAXIMIZED</span> <br /> <br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #00C800;\">METHOD</span> Resize<span style=\"color: #000000;\">(</span> nSizeType, nWidth, nHeight <span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TApplication<br /><br /> <span style=\"color: #00C800;\">local</span> n<br /> <br /> <span style=\"color: #00C800;\">if</span> nWidth != <span style=\"color: #00C800;\">NIL</span><br /> ::<span style=\"color: #000000;\">oTitle</span>:<span style=\"color: #0000ff;\">Move</span><span style=\"color: #000000;\">(</span> , , nWidth - <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">for</span> n = <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #000000;\">2</span><br /> ::<span style=\"color: #000000;\">aBrw</span><span style=\"color: #000000;\">[</span> n + <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span>:<span style=\"color: #0000ff;\">Move</span><span style=\"color: #000000;\">(</span> , nWidth / <span style=\"color: #000000;\">2</span> + <span style=\"color: #000000;\">10</span>, nWidth / <span style=\"color: #000000;\">2</span> - <span style=\"color: #000000;\">20</span> <span style=\"color: #000000;\">)</span><br /> ::<span style=\"color: #000000;\">aTtls</span><span style=\"color: #000000;\">[</span> n + <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">]</span>:<span style=\"color: #0000ff;\">Move</span><span style=\"color: #000000;\">(</span> , nWidth / <span style=\"color: #000000;\">2</span> + <span style=\"color: #000000;\">10</span>, nWidth / <span style=\"color: #000000;\">2</span> - <span style=\"color: #000000;\">20</span> <span style=\"color: #000000;\">)</span><br /> ::<span style=\"color: #000000;\">aBrw</span><span style=\"color: #000000;\">[</span> n <span style=\"color: #000000;\">]</span>:<span style=\"color: #0000ff;\">Move</span><span style=\"color: #000000;\">(</span> , <span style=\"color: #000000;\">10</span>, nWidth / <span style=\"color: #000000;\">2</span> - <span style=\"color: #000000;\">20</span> <span style=\"color: #000000;\">)</span><br /> ::<span style=\"color: #000000;\">aTtls</span><span style=\"color: #000000;\">[</span> n <span style=\"color: #000000;\">]</span>:<span style=\"color: #0000ff;\">Move</span><span style=\"color: #000000;\">(</span> , <span style=\"color: #000000;\">10</span>, nWidth / <span style=\"color: #000000;\">2</span> - <span style=\"color: #000000;\">20</span> <span style=\"color: #000000;\">)</span> <br /> <span style=\"color: #00C800;\">next</span><br /> <br /> ::<span style=\"color: #000000;\">oSplit</span>:<span style=\"color: #0000ff;\">Adjust</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <br /> <span style=\"color: #00C800;\">endif</span><br /> <br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br /><br /><br /><span style=\"color: #00C800;\">METHOD</span> BuildRibbon<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TApplication<br /><br /> <span style=\"color: #00C800;\">local</span> oMenu, oMainMenu<br /> <span style=\"color: #00C800;\">local</span> oGr, oGr1, oGr2, oGr3, oGr4<br /> <span style=\"color: #00C800;\">local</span> oBtn, oBtn1, oBtn2, oBtn3, oBtn4, oBtn5<br /> <span style=\"color: #00C800;\">local</span> oBtn6, oBtn7, oBtn8, oBtn9, oBtn10<br /> <span style=\"color: #00C800;\">local</span> oBtn11, oBtn12, oBtn13, oBtn14, oBtn15<br /> <span style=\"color: #00C800;\">local</span> oBtn16, oBtn17, oBtn18, oBtn19, oBtn20<br /> <span style=\"color: #00C800;\">local</span> oBtn21, oBtn22, oBtn23, oBtn24, oBtn25 <br /> <span style=\"color: #00C800;\">local</span> oBtn26, oBtn27, oBtn28, oBtn29, oBtn30<br /> <span style=\"color: #00C800;\">local</span> oBtn31, oBtn32, oBtn33, oBtn34, oBtn35<br /> <span style=\"color: #00C800;\">local</span> oSay1, oChk1, lVal1 := .T.<br /> <span style=\"color: #00C800;\">local</span> oTBtn0, oTBtn1, oTBtn2, oTBtn3<br /> <span style=\"color: #00C800;\">local</span> aClrMenu1 := <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">0.5</span>, RGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">69</span>, <span style=\"color: #000000;\">124</span>, <span style=\"color: #000000;\">188</span> <span style=\"color: #000000;\">)</span>, RGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">41</span>, <span style=\"color: #000000;\">93</span>, <span style=\"color: #000000;\">171</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span>, ;<br /> <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">0.5</span>, RGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">26</span>, <span style=\"color: #000000;\">64</span>, <span style=\"color: #000000;\">136</span> <span style=\"color: #000000;\">)</span>, RGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">56</span>, <span style=\"color: #000000;\">135</span>, <span style=\"color: #000000;\">191</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">}</span><br /> <span style=\"color: #00C800;\">local</span> aClrMenu2 := <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">0.5</span>, RGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">123</span>, <span style=\"color: #000000;\">178</span>, <span style=\"color: #000000;\">236</span> <span style=\"color: #000000;\">)</span>, RGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">71</span>, <span style=\"color: #000000;\">126</span>, <span style=\"color: #000000;\">205</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span>, ;<br /> <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">0.5</span>, RGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">17</span>, <span style=\"color: #000000;\">78</span>, <span style=\"color: #000000;\">175</span> <span style=\"color: #000000;\">)</span>, RGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">128</span>, <span style=\"color: #000000;\">225</span>, <span style=\"color: #000000;\">255</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">}</span><br /> <br /><br /> <span style=\"color: #0000ff;\">MENU</span> oMenu <span style=\"color: #0000ff;\">POPUP</span> <span style=\"color: #000000;\">2010</span> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Style Set\"</span> FILE <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\s</span>tyleset161.BMP\"</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Colors\"</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Font\"</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span><br /> <br /> <span style=\"color: #0000ff;\">DEFINE</span> RIBBONBAR ::<span style=\"color: #000000;\">oRBar</span> <span style=\"color: #0000ff;\">WINDOW</span> ::<span style=\"color: #000000;\">oWnd</span> ;<br /> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Archivo\"</span>, ;<br /> <span style=\"color: #ff0000;\">\"Configuración\"</span>, ;<br /> <span style=\"color: #ff0000;\">\"Ficheros\"</span>, ;<br /> <span style=\"color: #ff0000;\">\"Informes\"</span>, ;<br /> <span style=\"color: #ff0000;\">\"Ayudas\"</span> HEIGHT <span style=\"color: #000000;\">133</span> OPTION <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">2010</span> STARTBTN <span style=\"color: #000000;\">1</span><br /> <br /> ::<span style=\"color: #000000;\">oRBar</span>:<span style=\"color: #000000;\">bAction</span> = <span style=\"color: #000000;\">{</span>| nOpt, nOld | <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span> nOpt == ::<span style=\"color: #000000;\">oRBar</span>:<span style=\"color: #000000;\">nStart</span>, ::<span style=\"color: #000000;\">oRBar</span>:<span style=\"color: #000000;\">BackStage</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /> ::<span style=\"color: #000000;\">BackStage</span><span style=\"color: #000000;\">(</span> ::<span style=\"color: #000000;\">oRBar</span> <span style=\"color: #000000;\">)</span><br /><br /><br /> ADD GROUP oGr RIBBON ::<span style=\"color: #000000;\">oRBar</span> <span style=\"color: #0000ff;\">TO</span> OPTION <span style=\"color: #000000;\">2</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Clipboard\"</span> width <span style=\"color: #000000;\">130</span> <span style=\"color: #B900B9;\">//BITMAP \"..\\bitmap\\fivetech.BMP\"</span><br /> <br /> ADD GROUP oGr1 RIBBON ::<span style=\"color: #000000;\">oRBar</span> <span style=\"color: #0000ff;\">TO</span> OPTION <span style=\"color: #000000;\">2</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Font\"</span> WIDTH <span style=\"color: #000000;\">205</span> <br /> <br /> ADD GROUP oGr2 RIBBON ::<span style=\"color: #000000;\">oRBar</span> <span style=\"color: #0000ff;\">TO</span> OPTION <span style=\"color: #000000;\">2</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Paragraph\"</span> WIDTH <span style=\"color: #000000;\">215</span><br /> <br /> ADD GROUP oGr3 RIBBON ::<span style=\"color: #000000;\">oRBar</span> <span style=\"color: #0000ff;\">TO</span> OPTION <span style=\"color: #000000;\">2</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Styles\"</span> WIDTH <span style=\"color: #000000;\">75</span> BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\s</span>tyle16.BMP\"</span><br /> <br /> ADD GROUP oGr4 RIBBON ::<span style=\"color: #000000;\">oRBar</span> <span style=\"color: #0000ff;\">TO</span> OPTION <span style=\"color: #000000;\">2</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Editing\"</span><br /> <br /> @ <span style=\"color: #000000;\">2</span>,<span style=\"color: #000000;\">5</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn1 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Paste\"</span> BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\P</span>ASTE32.BMP\"</span> GROUP oGr <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Paste\"</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> ;<br /> SPLITPOPUP <span style=\"color: #0000ff;\">ROUND</span> RSIZE <span style=\"color: #000000;\">2</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">50</span>,<span style=\"color: #000000;\">65</span> <br /><br /> @ <span style=\"color: #000000;\">2</span>, <span style=\"color: #000000;\">55</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn2 GROUP oGr BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\c</span>ut16.BMP\"</span> ;<br /> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">60</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Cut\"</span> MOSTLEFT <span style=\"color: #0000ff;\">round</span> ;<br /> <span style=\"color: #0000ff;\">action</span> <span style=\"color: #000000;\">(</span> <span style=\"color: #0000ff;\">msginfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Cut\"</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <br /> @ <span style=\"color: #000000;\">24</span>, <span style=\"color: #000000;\">55</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn3 GROUP oGr BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\c</span>opy16.BMP\"</span> ;<br /> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">65</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Copy\"</span> MOSTLEFT <span style=\"color: #0000ff;\">round</span> <span style=\"color: #0000ff;\">action</span> <span style=\"color: #000000;\">(</span> <span style=\"color: #0000ff;\">msginfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Copy\"</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <br /><br /> @ <span style=\"color: #000000;\">46</span>, <span style=\"color: #000000;\">55</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn4 GROUP oGr BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\p</span>aste16.BMP\"</span> ;<br /> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">70</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Paste\"</span> MOSTLEFT <span style=\"color: #0000ff;\">round</span> ;<br /> <span style=\"color: #0000ff;\">action</span><span style=\"color: #000000;\">(</span> <span style=\"color: #0000ff;\">msginfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Paste\"</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <br /> @ <span style=\"color: #000000;\">68</span>, <span style=\"color: #000000;\">30</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oSay1 GROUP oGr <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">65</span>, <span style=\"color: #000000;\">15</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"A Say\"</span> SAYBUTTON<br /> <br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">05</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn5 GROUP oGr1 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\b</span>old16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> ;<br /> <span style=\"color: #0000ff;\">ACTION</span><span style=\"color: #000000;\">(</span> oBtn5:<span style=\"color: #000000;\">lSelected</span> := !oBtn5:<span style=\"color: #000000;\">lSelected</span> <span style=\"color: #000000;\">)</span><br /> <br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">30</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn6 GROUP oGr1 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\i</span>talic16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> ;<br /> <span style=\"color: #0000ff;\">ACTION</span><span style=\"color: #000000;\">(</span> oBtn6:<span style=\"color: #000000;\">lSelected</span> := !oBtn6:<span style=\"color: #000000;\">lSelected</span> <span style=\"color: #000000;\">)</span><br /> <br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">55</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn7 GROUP oGr1 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\u</span>nderline16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">35</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> <span style=\"color: #0000ff;\">Popup</span><br /> <br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">90</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn8 GROUP oGr1 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\s</span>trikethru16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span>;<br /> <span style=\"color: #0000ff;\">ACTION</span><span style=\"color: #000000;\">(</span> oBtn8:<span style=\"color: #000000;\">lSelected</span> := !oBtn8:<span style=\"color: #000000;\">lSelected</span> <span style=\"color: #000000;\">)</span><br /> <br /> <br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">115</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn9 GROUP oGr1 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\s</span>ubindex16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span>;<br /> <span style=\"color: #0000ff;\">ACTION</span><span style=\"color: #000000;\">(</span> oBtn9:<span style=\"color: #000000;\">lSelected</span> := !oBtn9:<span style=\"color: #000000;\">lSelected</span>, oBtn10:<span style=\"color: #000000;\">lSelected</span> := .f., oBtn10:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">140</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn10 GROUP oGr1 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\s</span>uperindex16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> ;<br /> <span style=\"color: #0000ff;\">ACTION</span><span style=\"color: #000000;\">(</span> oBtn10:<span style=\"color: #000000;\">lSelected</span> := !oBtn10:<span style=\"color: #000000;\">lSelected</span>, oBtn9:<span style=\"color: #000000;\">lSelected</span> := .f., oBtn9:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">165</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn11 GROUP oGr1 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\c</span>asing16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">35</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> <span style=\"color: #0000ff;\">POPUP</span><br /><br /><br /> @ <span style=\"color: #000000;\">40</span>, <span style=\"color: #000000;\">05</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn11 GROUP oGr1 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\h</span>ilight16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">35</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> <span style=\"color: #0000ff;\">POPUP</span><br /> <br /> @ <span style=\"color: #000000;\">40</span>, <span style=\"color: #000000;\">40</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn12 GROUP oGr1 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\f</span>ontcolor16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">35</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> <span style=\"color: #0000ff;\">POPUP</span><br /> <br /> @ <span style=\"color: #000000;\">40</span>, <span style=\"color: #000000;\">100</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn13 GROUP oGr1 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\f</span>ontsizeincrease16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span><br /><br /> <br /> @ <span style=\"color: #000000;\">40</span>, <span style=\"color: #000000;\">125</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn14 GROUP oGr1 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\f</span>ontsizedecrease16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span><br /> <br /> <br /> @ <span style=\"color: #000000;\">40</span>, <span style=\"color: #000000;\">175</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn16 GROUP oGr1 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\s</span>tyle16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> <br /><br /> @ <span style=\"color: #000000;\">64</span>, <span style=\"color: #000000;\">70</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oChk1 GROUP oGr1 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\c</span>heckon.bmp\"</span> MOSTLEFT <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">85</span>, <span style=\"color: #000000;\">18</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Checkbox\"</span> ;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span> lVal1 := ! lVal1, oChk1:<span style=\"color: #000000;\">SetFile</span><span style=\"color: #000000;\">(</span> <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span> lVal1, <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\c</span>heckon.bmp\"</span>, <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\c</span>heckoff.bmp\"</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /><br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">05</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn17 GROUP oGr2 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\u</span>norderedlist16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">35</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> <span style=\"color: #0000ff;\">POPUP</span><br /> <br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">40</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn18 GROUP oGr2 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\o</span>rderedlist16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">35</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> <span style=\"color: #0000ff;\">POPUP</span><br /> <br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">75</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn19 GROUP oGr2 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\m</span>ultilevellist16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">35</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> ;<br /> <span style=\"color: #0000ff;\">POPUP</span> <span style=\"color: #0000ff;\">MENU</span> oMenu<br /><br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">110</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn20 GROUP oGr2 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\t</span>extalignleft16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> ;<br /> <span style=\"color: #0000ff;\">ACTION</span><span style=\"color: #000000;\">(</span> ChangeSelect<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">{</span> oBtn20, oBtn21, oBtn22, oBtn23 <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">135</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn21 GROUP oGr2 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\t</span>extaligncenter16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> ;<br /> <span style=\"color: #0000ff;\">ACTION</span><span style=\"color: #000000;\">(</span> ChangeSelect<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">{</span> oBtn21, oBtn20, oBtn22, oBtn23 <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> <br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">160</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn22 GROUP oGr2 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\t</span>extalignright16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span>;<br /> <span style=\"color: #0000ff;\">ACTION</span><span style=\"color: #000000;\">(</span> ChangeSelect<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">{</span> oBtn22, oBtn21, oBtn20, oBtn23 <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <br /> <br /> @ <span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">185</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn23 GROUP oGr2 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\t</span>extalignjustify16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span>;<br /> <span style=\"color: #0000ff;\">ACTION</span><span style=\"color: #000000;\">(</span> ChangeSelect<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">{</span> oBtn23, oBtn21, oBtn22, oBtn20 <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /><br /> @ <span style=\"color: #000000;\">40</span>, <span style=\"color: #000000;\">05</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn24 GROUP oGr2 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\f</span>ill16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">35</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> <span style=\"color: #0000ff;\">POPUP</span><br /> <br /> @ <span style=\"color: #000000;\">40</span>, <span style=\"color: #000000;\">40</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn25 GROUP oGr2 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\b</span>orderbottom16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">35</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span><br /> <br /> @ <span style=\"color: #000000;\">40</span>, <span style=\"color: #000000;\">80</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn26 GROUP oGr2 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\i</span>ndentdecrease16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> <br /><br /> @ <span style=\"color: #000000;\">40</span>, <span style=\"color: #000000;\">105</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn27 GROUP oGr2 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\i</span>ndentincrease16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span><br /><br /> @ <span style=\"color: #000000;\">40</span>, <span style=\"color: #000000;\">135</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn28 GROUP oGr2 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\s</span>ort16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> <br /> <br /> @ <span style=\"color: #000000;\">40</span>, <span style=\"color: #000000;\">160</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn29 GROUP oGr2 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\p</span>aragraphspacing16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> <br /> <br /> @ <span style=\"color: #000000;\">40</span>, <span style=\"color: #000000;\">185</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn30 GROUP oGr2 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\i</span>nvisiblechars16.bmp\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">25</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">ROUND</span> <br /><br /> @ <span style=\"color: #000000;\">3</span>,<span style=\"color: #000000;\">5</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn31 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Change\"</span>+CRLF+<span style=\"color: #ff0000;\">\"Styles\"</span> BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\s</span>tylechange32.BMP\"</span> GROUP oGr3 ;<br /> <span style=\"color: #0000ff;\">ROUND</span> RSIZE <span style=\"color: #000000;\">2</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">65</span>,<span style=\"color: #000000;\">75</span> TOP<br /><br /> @ <span style=\"color: #000000;\">2</span>,<span style=\"color: #000000;\">5</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn32 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Find\"</span> BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\f</span>ind32.BMP\"</span> GROUP oGr4 ;<br /> SPLITPOPUP <span style=\"color: #0000ff;\">ROUND</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">50</span>,<span style=\"color: #000000;\">65</span><br /><br /> @ <span style=\"color: #000000;\">2</span>, <span style=\"color: #000000;\">55</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn33 GROUP oGr4 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\r</span>eplace16.BMP\"</span> ;<br /> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">80</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Replace\"</span> MOSTLEFT <span style=\"color: #0000ff;\">round</span> ;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">msginfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Replace\"</span> <span style=\"color: #000000;\">)</span><br /> <br /> @ <span style=\"color: #000000;\">24</span>, <span style=\"color: #000000;\">55</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn34 GROUP oGr4 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\g</span>oto16.BMP\"</span> ;<br /> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">65</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Go To\"</span> MOSTLEFT <span style=\"color: #0000ff;\">round</span> ;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">msginfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Go To\"</span> <span style=\"color: #000000;\">)</span><br /><br /> @ <span style=\"color: #000000;\">46</span>, <span style=\"color: #000000;\">55</span> ADD <span style=\"color: #0000ff;\">BUTTON</span> oBtn35 GROUP oGr4 BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\s</span>elect16.BMP\"</span> ;<br /> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">70</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Select\"</span> MOSTLEFT <span style=\"color: #0000ff;\">round</span> <span style=\"color: #0000ff;\">POPUP</span><br /><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /><br /><span style=\"color: #00C800;\">METHOD</span> BuildMenu<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <br /> <span style=\"color: #00C800;\">local</span> oMenu<br /><br /> <span style=\"color: #0000ff;\">MENU</span> oMenu <span style=\"color: #000000;\">2010</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"&Archivo\"</span><br /> <span style=\"color: #0000ff;\">MENU</span> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 1\"</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 2\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 2\"</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span><br /><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"&Edicion\"</span><br /> <span style=\"color: #0000ff;\">MENU</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 1 \"</span> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 2\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 2 \"</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 3\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 3\"</span><br /> <span style=\"color: #0000ff;\">SEPARATOR</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 4\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 4\"</span> <br /> <span style=\"color: #0000ff;\">SEPARATOR</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 5\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 5\"</span> <br /> <span style=\"color: #0000ff;\">MENU</span> <span style=\"color: #000000;\">2007</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 1\"</span><br /> <span style=\"color: #0000ff;\">SEPARATOR</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 2\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 2\"</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span> <br /> <span style=\"color: #0000ff;\">ENDMENU</span><br /><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"&Ver\"</span><br /> <span style=\"color: #0000ff;\">MENU</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 2\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 2\"</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span><br /> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"&Datos\"</span><br /> <span style=\"color: #0000ff;\">MENU</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 2\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 2\"</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span><br /> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"&Proceso\"</span><br /> <span style=\"color: #0000ff;\">MENU</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 2\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 2\"</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span><br /> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"&Impresiones\"</span><br /> <span style=\"color: #0000ff;\">MENU</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 2\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 2\"</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span> <br /><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"&Herramientas\"</span><br /> <span style=\"color: #0000ff;\">MENU</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 2\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 2\"</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span> <br /><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"In&ternet\"</span><br /> <span style=\"color: #0000ff;\">MENU</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 2\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 2\"</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span> <br /><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"&Ventanas\"</span><br /> <span style=\"color: #0000ff;\">MENU</span><br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 1\"</span> <br /> <span style=\"color: #0000ff;\">MENUITEM</span> <span style=\"color: #ff0000;\">\"Item 2\"</span> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Item 2\"</span><br /> <span style=\"color: #0000ff;\">ENDMENU</span> <br /><br /> <span style=\"color: #0000ff;\">ENDMENU</span><br /><br /><span style=\"color: #00C800;\">return</span> oMenu<br /><br /><br />Procedure ChangeSelect<span style=\"color: #000000;\">(</span> aObj <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">local</span> n<br /> <br /> aObj<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">lSelected</span> := .t.<br /> <span style=\"color: #00C800;\">for</span> n = <span style=\"color: #000000;\">2</span> <span style=\"color: #0000ff;\">to</span> len<span style=\"color: #000000;\">(</span> aObj <span style=\"color: #000000;\">)</span><br /> aObj<span style=\"color: #000000;\">[</span> n <span style=\"color: #000000;\">]</span>:<span style=\"color: #000000;\">lSelected</span> := .f.<br /> aObj<span style=\"color: #000000;\">[</span> n <span style=\"color: #000000;\">]</span>:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">next</span><br /><span style=\"color: #00C800;\">return</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #00C800;\">METHOD</span> BackStage<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #00C800;\">CLASS</span> TApplication<br /><br /> <span style=\"color: #00C800;\">local</span> oBackStage, oSelf := <span style=\"color: #00C800;\">Self</span><br /> <br /> <span style=\"color: #0000ff;\">DEFINE</span> BACKSTAGE oBackStage <br /> <br /> <span style=\"color: #0000ff;\">DEFINE</span> BSBUTTON <span style=\"color: #0000ff;\">OF</span> oBackStage <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Save\"</span> ;<br /> BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\a</span>lphabmp<span style=\"color: #000000;\">\\b</span>s_save.bmp\"</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span> oOpt:<span style=\"color: #000000;\">cPrompt</span> <span style=\"color: #000000;\">)</span>;<br /> GRADIENT <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">1</span>, nRGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">255</span>, <span style=\"color: #000000;\">255</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">)</span>, nRGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">255</span>, <span style=\"color: #000000;\">255</span>, <span style=\"color: #000000;\">255</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">}</span><br /> <br /> <span style=\"color: #0000ff;\">DEFINE</span> BSBUTTON <span style=\"color: #0000ff;\">OF</span> oBackStage <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Save As\"</span> ;<br /> BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\a</span>lphabmp<span style=\"color: #000000;\">\\b</span>s_saveas.bmp\"</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span> oOpt:<span style=\"color: #000000;\">cPrompt</span> <span style=\"color: #000000;\">)</span>;<br /> GRADIENT <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">1</span>, nRGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">242</span>, <span style=\"color: #000000;\">96</span>, <span style=\"color: #000000;\">96</span> <span style=\"color: #000000;\">)</span>, nRGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">195</span>, <span style=\"color: #000000;\">37</span>, <span style=\"color: #000000;\">37</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">}</span>;<br /> COLORTEXT CLR_BLACK, CLR_WHITE<br /> <br /> <span style=\"color: #0000ff;\">DEFINE</span> BSBUTTON <span style=\"color: #0000ff;\">OF</span> oBackStage <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Open\"</span> ;<br /> BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\a</span>lphabmp<span style=\"color: #000000;\">\\b</span>s_open.bmp\"</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span> oOpt:<span style=\"color: #000000;\">cPrompt</span> <span style=\"color: #000000;\">)</span><br /> <br /> <span style=\"color: #0000ff;\">DEFINE</span> BSBUTTON <span style=\"color: #0000ff;\">OF</span> oBackStage <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Close\"</span>;<br /> BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\a</span>lphabmp<span style=\"color: #000000;\">\\b</span>s_close.bmp\"</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span> oOpt:<span style=\"color: #000000;\">cPrompt</span> <span style=\"color: #000000;\">)</span><br /> <br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> BSSELECT <span style=\"color: #0000ff;\">OF</span> oBackStage <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Information\"</span>;<br /> COLORTEXT <span style=\"color: #00C800;\">NIL</span>, CLR_HRED <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span> oOpt:<span style=\"color: #000000;\">cPrompt</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> BSSELECT <span style=\"color: #0000ff;\">OF</span> oBackStage <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"New\"</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span> oOpt:<span style=\"color: #000000;\">cPrompt</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> BSSELECT <span style=\"color: #0000ff;\">OF</span> oBackStage <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Print\"</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span> oOpt:<span style=\"color: #000000;\">cPrompt</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> BSSELECT <span style=\"color: #0000ff;\">OF</span> oBackStage <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Save / Send\"</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span> oOpt:<span style=\"color: #000000;\">cPrompt</span> <span style=\"color: #000000;\">)</span>;<br /> GRADIENT <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">1</span>, nRGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">255</span>, <span style=\"color: #000000;\">255</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">)</span>, nRGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">255</span>, <span style=\"color: #000000;\">255</span>, <span style=\"color: #000000;\">255</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">}</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> BSSELECT <span style=\"color: #0000ff;\">OF</span> oBackStage <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Help\"</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span> oOpt:<span style=\"color: #000000;\">cPrompt</span> <span style=\"color: #000000;\">)</span>;<br /> COLORS nRGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">242</span>, <span style=\"color: #000000;\">96</span>, <span style=\"color: #000000;\">96</span> <span style=\"color: #000000;\">)</span>, nRGB<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">195</span>, <span style=\"color: #000000;\">37</span>, <span style=\"color: #000000;\">37</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">DEFINE</span> BSBUTTON <span style=\"color: #0000ff;\">OF</span> oBackStage <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Option\"</span> ;<br /> BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\a</span>lphabmp<span style=\"color: #000000;\">\\b</span>s_options.bmp\"</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span> oOpt:<span style=\"color: #000000;\">cPrompt</span> <span style=\"color: #000000;\">)</span><br /> <br /> <span style=\"color: #0000ff;\">DEFINE</span> BSBUTTON <span style=\"color: #0000ff;\">OF</span> oBackStage <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Exit\"</span> ;<br /> BITMAP <span style=\"color: #ff0000;\">\".<span style=\"color: #000000;\">\\b</span>itmaps<span style=\"color: #000000;\">\\a</span>lphabmp<span style=\"color: #000000;\">\\b</span>s_exit.bmp\"</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span> oSelf:<span style=\"color: #000000;\">oWnd</span>:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /> <br /> SET BACKSTAGE oBackStage <span style=\"color: #0000ff;\">TO</span> ::<span style=\"color: #000000;\">oRBar</span><br /><br /> <br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">nil</span><br /> <br /><br /> </div>[/code:4szj7h4s]",
"time": "14:30",
"topic": "2010 style",
"username": "Daniel Garcia-Gil"
}
] |
2010 style
|
[
{
"date": "2011-06-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "HI, set message and define message is the same?\n\ni use this way:\n\nDEFINE MESSAGE oMsgBar OF oWndMain PROMPT oSys[_Sistema_] NOINSET KEYBOARD 2010\n\nand dont respect colors of 2010 style.\n\nthaks for the code. <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->\n\n\nsorry, in my code i put this line : /*oMsgbar:l2007 := TRUE */, without this works fine. thanks",
"time": "14:34",
"topic": "2010 style",
"username": "norberto"
}
] |
2010 style
|
[
{
"date": "2011-06-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Daniel, i try compile my app with 2010 style menu, dont have the gray color , but blue, like old menu. same with your sample rb2010.prg. i missing something??\n\n[url=http://imageshack.us/photo/my-images/830/menuml.jpg/:3814c2fr][img:3814c2fr]http://img830.imageshack.us/img830/9072/menuml.jpg[/img:3814c2fr][/url:3814c2fr]\n\ninside is 2010 style\n\n[url=http://imageshack.us/photo/my-images/13/menu2i.jpg/:3814c2fr][img:3814c2fr]http://img13.imageshack.us/img13/9793/menu2i.jpg[/img:3814c2fr][/url:3814c2fr]\n\nthanks",
"time": "19:02",
"topic": "2010 style",
"username": "norberto"
}
] |
2010 style
|
[
{
"date": "2011-06-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Norberto\n\ni'll check.... \n\nthanks for feedback",
"time": "20:05",
"topic": "2010 style",
"username": "Daniel Garcia-Gil"
}
] |
2010 style
|
[
{
"date": "2011-06-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "thanks, im using fwh 1105 build 31/05, xharbour, windows 7 64 without themes.",
"time": "20:26",
"topic": "2010 style",
"username": "norberto"
}
] |
2010 style
|
[
{
"date": "2011-06-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Daniel, any news to solve this? thanks",
"time": "15:26",
"topic": "2010 style",
"username": "norberto"
}
] |
2010 style
|
[
{
"date": "2011-06-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Have you tested with the new build released today?",
"time": "15:43",
"topic": "2010 style",
"username": "mgsoft"
}
] |
2010 style
|
[
{
"date": "2011-06-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "yes. the same issue.",
"time": "15:44",
"topic": "2010 style",
"username": "norberto"
}
] |
2010 style
|
[
{
"date": "2011-06-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"norberto\":36rgwhbo]Daniel, i try compile my app with 2010 style menu, dont have the gray color , but blue, like old menu. same with your sample rb2010.prg. i missing something??\n\n[url=http://imageshack.us/photo/my-images/830/menuml.jpg/:36rgwhbo][img:36rgwhbo]http://img830.imageshack.us/img830/9072/menuml.jpg[/img:36rgwhbo][/url:36rgwhbo]\n\ninside is 2010 style\n\n[url=http://imageshack.us/photo/my-images/13/menu2i.jpg/:36rgwhbo][img:36rgwhbo]http://img13.imageshack.us/img13/9793/menu2i.jpg[/img:36rgwhbo][/url:36rgwhbo]\n\nthanks[/quote:36rgwhbo]\n\nit's work fine to me...\n\ncan you provide a little sample please...\n\n[url:36rgwhbo]http://www.sitasoft.net/fivewin/samples/testmnu.zip[/url:36rgwhbo]",
"time": "14:26",
"topic": "2010 style",
"username": "Daniel Garcia-Gil"
}
] |
2010 style
|
[
{
"date": "2011-06-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Daniel, i run the exe in zip file, compiled for you, this is image:\n\n[url=http://imageshack.us/photo/my-images/215/erro2011.jpg/:19joeoir][img:19joeoir]http://img215.imageshack.us/img215/4149/erro2011.jpg[/img:19joeoir][/url:19joeoir]\n\nyou can test this in windows 64 bits?",
"time": "14:43",
"topic": "2010 style",
"username": "norberto"
}
] |
2010 style
|
[
{
"date": "2011-06-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "now in xp virtual mode running in windows 7 64:\n\n\n[url=http://imageshack.us/photo/my-images/836/erromenu.jpg/:5lda4nzt][img:5lda4nzt]http://img836.imageshack.us/img836/8712/erromenu.jpg[/img:5lda4nzt][/url:5lda4nzt]\n\n[url=http://imageshack.us/photo/my-images/98/erromenu1.jpg/:5lda4nzt][img:5lda4nzt]http://img98.imageshack.us/img98/682/erromenu1.jpg[/img:5lda4nzt][/url:5lda4nzt]\n\n\n\nthis is your exe in zip file.\n\nthanks",
"time": "14:49",
"topic": "2010 style",
"username": "norberto"
}
] |
2010 style
|
[
{
"date": "2011-06-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello\n\nyes... it's correct 2010 behavior, only change the selection color\n\nThanks for feedback",
"time": "15:26",
"topic": "2010 style",
"username": "Daniel Garcia-Gil"
}
] |
2010 style
|
[
{
"date": "2011-06-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Daniel, how to solve this? same color of message bar 2010 in main menu?",
"time": "15:42",
"topic": "2010 style",
"username": "norberto"
}
] |
2010 style
|
[
{
"date": "2011-06-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"norberto\":e6aazaka]Daniel, how to solve this? same color of message bar 2010 in main menu?[/quote:e6aazaka]\n\nYes...\n\nthis screenshots was take from explorer of windows 7 32 bits\n\n[img:e6aazaka]http://www.sitasoft.net/fivewin/screen/ie1.png[/img:e6aazaka]\n\n[img:e6aazaka]http://www.sitasoft.net/fivewin/screen/ie2.png[/img:e6aazaka]",
"time": "16:02",
"topic": "2010 style",
"username": "Daniel Garcia-Gil"
}
] |
2010 style
|
[
{
"date": "2011-07-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Yes, I need it too.\n\nThank you very much.",
"time": "15:07",
"topic": "2010 style",
"username": "ukservice"
}
] |
2010 style
|
[
{
"date": "2012-09-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "hola\n\nla opcion 2010 esta a partir de que version de FW?\ngracias.",
"time": "03:44",
"topic": "2010 style",
"username": "goosfancito"
}
] |
2010 style
|
[
{
"date": "2011-06-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I use fivewin with xharbour (supplied by fivewin) and borland complier on win32 platform.\n\nIf I recompile existing prg's with 2010 parameters where applicable, what will my application look like?\n\nMy standard process is:\n\nMain Window ( some are MDI )\nDialogs containing browses, input fields, list boxes, etc. in other words, \"common\" components for business applications.\n\nWill these have a 2010 look and feel \"automatically\" or do I have to re-design each existing dialog with \"new\" controls, like the ribbon bar?",
"time": "14:56",
"topic": "2010 styles",
"username": "don lowenstein"
}
] |
2010 styles
|
[
{
"date": "2011-06-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Yes, automatically.\nNo need to redesign.",
"time": "18:14",
"topic": "2010 styles",
"username": "nageswaragunupudi"
}
] |
2010 styles
|
[
{
"date": "2010-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear developers, \n Happy New Year!\n\nmarco",
"time": "12:13",
"topic": "2011",
"username": "MarcoBoschi"
}
] |
2011
|
[
{
"date": "2010-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi, friends\n\nHappy New Year!!\n\nwonderfull 2011 to us.",
"time": "12:16",
"topic": "2011",
"username": "richard-service"
}
] |
2011
|
[
{
"date": "2010-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy New Year to All!!!! A GREAT 2011 for you.",
"time": "12:58",
"topic": "2011",
"username": "Kleyber"
}
] |
2011
|
[
{
"date": "2010-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy 2OII to all!\n\nCheers, \nRoman",
"time": "13:59",
"topic": "2011",
"username": "modicr"
}
] |
2011
|
[
{
"date": "2010-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Friends developers,\n\nA Happy New Year for All <!-- s:!: --><img src=\"{SMILIES_PATH}/icon_exclaim.gif\" alt=\":!:\" title=\"Exclamation\" /><!-- s:!: -->\n\nHappy 20II <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->",
"time": "15:03",
"topic": "2011",
"username": "lailton.webmaster"
}
] |
2011
|
[
{
"date": "2010-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy new year to all and thanks for the help you provided in past years.",
"time": "20:18",
"topic": "2011",
"username": "hag"
}
] |
2011
|
[
{
"date": "2011-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy New Year to all as well ..\n\nRick Lipkin",
"time": "17:18",
"topic": "2011",
"username": "Rick Lipkin"
}
] |
2011
|
[
{
"date": "2011-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Guys:\n\nHappy New Year to all of you !",
"time": "23:07",
"topic": "2011",
"username": "HunterEC"
}
] |
2011
|
[
{
"date": "2011-01-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Also from me a happy new year to everybody.",
"time": "02:24",
"topic": "2011",
"username": "driessen"
}
] |
2011
|
[
{
"date": "2015-06-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I have encountered problems running an xharbour application on 2012 servers. Data is not being saved reliably. Switching to 2008 server resolves the problem. I am using a ten year old version of xharbour. Will upgrading fix this or is there some other fix I should be aware of? Not doing anything fancy, using regular dbf files with ntx indexes.",
"time": "06:17",
"topic": "2012 server",
"username": "dtussman"
}
] |
2012 server
|
[
{
"date": "2015-06-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Yes, you should use a more recent version and try it again:\n\n[url:j6q1sz4p]https://bitbucket.org/fivetech/harbour-xharbour-builds/downloads/xharbour10121_20150503_bcc58.zip[/url:j6q1sz4p]\n\nSurely you will need to upgrade FWH too.",
"time": "09:45",
"topic": "2012 server",
"username": "Antonio Linares"
}
] |
2012 server
|
[
{
"date": "2015-06-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Since Windows 2008 server, I noticed the same problems now and then. But it also happens with recent versions of xHarbour or Harbour.\n\nWhat is the problem : it is a well known problem by Microsoft that SMB 2.0 (Server Message Block) which was introduced in Windows 2008 server, is making index-files of different types of databases corrupt. It usually happens on a network where a Windows 2008 server (or later versions) is combined with Windows 7 or Windows 8(.1).\n\nIf SMB 2.0 was disabled, the problem disappears.\n\nFor disabling SMB 2.0, an intervention is needed on the server, as well as on the workstations.\n\nMore about disabling and enabling SMB 2.0, you can find more information on : <!-- m --><a class=\"postlink\" href=\"https://support.microsoft.com/en-us/kb/2696547?wa=wsignin1.0\">https://support.microsoft.com/en-us/kb/ ... wsignin1.0</a><!-- m -->",
"time": "14:14",
"topic": "2012 server",
"username": "driessen"
}
] |
2012 server
|
[
{
"date": "2015-06-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Michel, thanks",
"time": "14:18",
"topic": "2012 server",
"username": "cnavarro"
}
] |
2012 server
|
[
{
"date": "2015-06-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Michel,\n\nGreat info, thanks! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "17:22",
"topic": "2012 server",
"username": "Antonio Linares"
}
] |
2012 server
|
[
{
"date": "2015-06-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks Michel, I had heard about this smb2 solution before and was hoping there was a way around it other than disabling, but apparently not. This seems like very bad news as it would imply that harbor applications can no longer be run reliably on any server of recent vintage without disabling smb2, which Microsoft doesn't recommend and is quite an inconvenience, especially when you have over 1200 installations as I do. Am I missing something? Thanks again!\n\nDavid",
"time": "21:23",
"topic": "2012 server",
"username": "dtussman"
}
] |
2012 server
|
[
{
"date": "2015-06-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "David\n\nI decided several years ago to migrate all my .dbf's to either Ms Access (.mdb) or MS Sql Server using Ado. All opportunistic locking issues, SMB problems and network slowness Immediately Stopped, Vanished.\n\nTo Me it was simpler to migrate my back end to SQL than to have to deal with over 3k desktops in a Government Environment, and I can assure you, The IT people in charge of dealing with Desktop Support would have 'run me out of town' if I had to ask them to 'dink' with their desktops or 'tweak' their network servers.\n\nProbably not the answer you wanted to hear, but Ms Access is FREE and there is a FREE version of Ms Sql server as well and the database code stays the same .. only the connection string to the databases changes. \n\nI know it will take time, but the results make for a more secure back end and all the locking and performance problems just go away.\n\nWas a 'no brainer' for me <!-- s:idea: --><img src=\"{SMILIES_PATH}/icon_idea.gif\" alt=\":idea:\" title=\"Idea\" /><!-- s:idea: --> \n\nRick Lipkin\n\nps .. no connection client or elaborate setup is needed .. Windows has it all built in if you use Access or Sql Server",
"time": "21:39",
"topic": "2012 server",
"username": "Rick Lipkin"
}
] |
2012 server
|
[
{
"date": "2015-06-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n\nVery interesting information I can read from you.\n\nI want to migrate my dbf-files to SQL too.\n\nBut can you advice me how I need to do that? I have no experience with SQL right now.\n\nThanks.",
"time": "21:58",
"topic": "2012 server",
"username": "driessen"
}
] |
2012 server
|
[
{
"date": "2015-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n\nI will second Michel's comment and am wondering also what would be the best way for me to go about following the route you suggest. Are you available as a consultant to help with this or can you recommend another resource? My application is 30 years old (began in dbaseII) and has been modified almost daily since then so as you can imagine its a monster plus I am not a trained programmer so the code is not exactly textbook, but it all works.\n\nRegards,\n\nDavid",
"time": "02:05",
"topic": "2012 server",
"username": "dtussman"
}
] |
2012 server
|
[
{
"date": "2015-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n Isn't MS Access is also a flat file database like dbf and as such will be affected by oplocks issue?\n\n1. Quote - \"[url=http://www.superbase.com/service_tech_support_oplocks.html:37lpctmm]However this protocol imposes a couple of problems for Xbase++/Clipper and even MS Access or Excel applications running in a shared network environment.[/url:37lpctmm]\"\n\n2. <!-- m --><a class=\"postlink\" href=\"http://www.granite.ab.ca/access/corruption/causesoplocks.htm\">http://www.granite.ab.ca/access/corrupt ... plocks.htm</a><!-- m -->\n\nThank you for sharing your experience",
"time": "07:50",
"topic": "2012 server",
"username": "hua"
}
] |
2012 server
|
[
{
"date": "2015-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Adordd its ready and it will be publish today. \nIll post the link here later.\n\nIt has been in development since Feb 2015 and being tested on real \"old\" application working in parallel with the actual application with ADS and passed all trials.\nThis app with adordd its now being tested intensively on concurrent access to check locking scheme and exclusive use. Will report results end next week.\n\nLucas DeBeltran helped a lot with his trials on his app and with his ideas.\nAntonio Linares and Rao Nages help a lot sharing the code of adofuncs.prg and their expertise of rdds and ado.\n\nWith adordd you can migrate immediately to any SQL server although all the trials have been made only with ADS, MySql and MS Access.\n\nNo change code required. Except:\n\n1) As with ADS in index expressions you have to evaluate vars before send it to adordd. \n\n2) Deleted records are immediately removed from table and cant be recovered again. So code like:\n[code=fw:92tb80ti]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />Delete record recno<br />BlankRec<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">//this will not work either comment it or place it before delete.</span><br /><br />delete all <span style=\"color: #B900B9;\">//this will not work take it from here</span><br /><span style=\"color: #00C800;\">while</span>....<br /> <span style=\"color: #00C800;\">if</span> lcondition <span style=\"color: #B900B9;\">//change condition to not</span><br /> recall record <span style=\"color: #B900B9;\">//delete each record here</span><br /> <span style=\"color: #00C800;\">endif</span><br />end<br /> </div>[/code:92tb80ti]\n\nThats it!\n\nAnd goes beyond others rdd:\n[code=fw:92tb80ti]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />hb_GetAdoConnection<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Execute</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"CREATE VIEW cView ....\"</span><span style=\"color: #000000;\">)</span><br /><br />sele <span style=\"color: #000000;\">0</span><br />use cView<br /><br />Browse<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> </div>[/code:92tb80ti]\n\nTrue locks as any other rdd.\nUpload tables to any Sql server just like:\n\n[code=fw:92tb80ti]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />use table VIA <span style=\"color: #ff0000;\">\"DBFCDX\"</span><br />copy <span style=\"color: #0000ff;\">to</span> sqltable via <span style=\"color: #ff0000;\">\"ADORDD\"</span><br />use sql table<br />Browse<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> </div>[/code:92tb80ti]\n\nPerformance its quite good.\nNo Sql knowledge. This will be only needed if you want to use and run sql statements directly from ado functions.\nYou write code exactly the same as for any other rdd.\n\nWith adordd we are free from all this kind of limitations with tables and index management already in actual and future operating systems and will extend the life of our applications further.\n\nAlthough ADO its already today an \"old\" framework I think it will stay around for the next coming years (I hope so)\n\nIll give support to it as long as you can supply precise ideas and sample code where something has not been foreseen in adordd scope of action.\n\nI hope that it will do the job for you all as it does for me.\n\nPs. Dont go for MSAccess go directly to any SQL server.",
"time": "09:44",
"topic": "2012 server",
"username": "AHF"
}
] |
2012 server
|
[
{
"date": "2015-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Go the best and most secure way – go RDP.\nOtto\n\n[url:1adol3bl]http://otto-atzwanger-gmbh.com/page-12[/url:1adol3bl]",
"time": "09:56",
"topic": "2012 server",
"username": "Otto"
}
] |
2012 server
|
[
{
"date": "2015-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "To All\n\nThere is no correct answer, only choices and how you chose to implement those choices has to be weighed out in time and effort on your part and the IT landscape of your client.\n\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=3&t=30888\">viewtopic.php?f=3&t=30888</a><!-- l -->\n\nAs far as Ms Access .. .mdb is basically a scaled down ( single portable file ) version of Ms Sql Server. .Mdb is primarily connected via 32 bit Ms Jet 4.0 and that has no problem running in a 32 or 64 bit Windows environment. HOWEVER, if you decide to compile your .EXE with 64 bit, you will need to ALSO setup the MS ACE OleDb ( client ) provider .. see link\n\n<!-- m --><a class=\"postlink\" href=\"http://stackoverflow.com/questions/14401729/difference-between-microsoft-jet-oledb-and-microsoft-ace-oledb\">http://stackoverflow.com/questions/1440 ... -ace-oledb</a><!-- m -->\n\nRick Lipkin",
"time": "14:59",
"topic": "2012 server",
"username": "Rick Lipkin"
}
] |
2012 server
|
[
{
"date": "2015-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": ">There is no correct answer\n\nRick, in this case you are wrong.\n\ndtussman has the problem because of mixed operating systems.\nTo work through RDP is the best way. Your program is running on a single OP system – in his case on the SERVER 2012.\nAlso a client server system can’t reach the stability of a system on a dedicated machine.\n\nNote\n------\nHere the only thing to know is that licensing of the CALs in WINDOWS Server 2012 foundation only works in “per device” mode.\n\nBest regards,\nOtto",
"time": "18:24",
"topic": "2012 server",
"username": "Otto"
}
] |
2012 server
|
[
{
"date": "2015-06-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto, \n\nIf I understand you you are advocating running my application on a terminal server and accessing through RDP. I already do this with several of my customers and it works great. I imagine it would be a huge job to migrate my application to sql regardless of what anyone says and I may not live that long anyway so the terminal server solution is very appealing. Would you agree? The customers like it because they think they are in the cloud, and you can run the application from anywhere including on Macs without having to mess with Parallels.\n\nDavid",
"time": "18:49",
"topic": "2012 server",
"username": "dtussman"
}
] |
2012 server
|
[
{
"date": "2015-06-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Which is better to convert a large legacy application to SQL: SQLRDD or ADORDD?",
"time": "18:22",
"topic": "2012 server",
"username": "dtussman"
}
] |
2012 server
|
[
{
"date": "2015-06-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I would say that AdoRdd is the best way to go as there is full source code available and Antonio Ferreira is providing a great support for it <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "20:29",
"topic": "2012 server",
"username": "Antonio Linares"
}
] |
2012 server
|
[
{
"date": "2015-06-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks Antonio,\n\nBack in the 90's after much deliberation I chose Fivewin to migrate from DOS to Windows and never regretted it, so I will probably go with your advice again!\n\nRegards,\n\nDavid",
"time": "20:40",
"topic": "2012 server",
"username": "dtussman"
}
] |
2012 server
|
[
{
"date": "2015-06-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "David,\n\nThanks for trusting in my advice and for your support along all these years <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nAntonio Ferreira has confirmed that he has ported a large app to AdoRdd without any source code modifications!\n\nThats great <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "20:44",
"topic": "2012 server",
"username": "Antonio Linares"
}
] |
2012 server
|
[
{
"date": "2015-06-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "David,\n\nI ported a large app with no code change.\n\nIn this case was easy because the app worked already with ADS so the indexes expressions with vars were all evaluated before sent to adordd.\n\nThis should be the only exception in the code of actual apps because vars are out of scope when sent to SQL so need to be evaluated before and sent the result as a string.\n\nLucas is also testing in his application and so far its seems its running quite good.",
"time": "08:29",
"topic": "2012 server",
"username": "AHF"
}
] |
2012 server
|
[
{
"date": "2015-06-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "No code changes? I was reading that ADDRDD Error thread and it seems like you have to do quite a bit of stuff with regard to files and indexes. Plus you can't use recno() anymore, which I use a lot. But if that's all there is I guess its not too bad.",
"time": "17:29",
"topic": "2012 server",
"username": "dtussman"
}
] |
2012 server
|
[
{
"date": "2015-06-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "David,\n\nYou have only to indicate at the begining of your application a few settings and that´s all.\n\nYes, you can use Recno().\n\nThis is a sample:\n\n[code=fw:28nz51mt]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> RddRegister<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"ADORDD\"</span>,<span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">)</span><br /> RddSetDefault<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"ADORDD\"</span><span style=\"color: #000000;\">)</span><br /><br /> SET DATE FORMAT <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #ff0000;\">\"dd-mm-yyyy\"</span> <span style=\"color: #B900B9;\">// Formato Fecha: DD-MM-AAAA</span><br /> SET CENTURY <span style=\"color: #0000ff;\">ON</span><br /> SET EPOCH <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #0000ff;\">YEAR</span><span style=\"color: #000000;\">(</span>DATE<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">-98</span><br /><br /><br /> SET ADO TABLES <span style=\"color: #0000ff;\">INDEX</span> LIST <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">{</span><span style=\"color: #000000;\">{</span> <span style=\"color: #ff0000;\">\"TABLE1\"</span>, <span style=\"color: #000000;\">{</span><span style=\"color: #ff0000;\">\"TEST1\"</span>, <span style=\"color: #ff0000;\">\"FIRST\"</span><span style=\"color: #000000;\">}</span> ,;<br /> <span style=\"color: #000000;\">{</span><span style=\"color: #ff0000;\">\"TEST2\"</span>, <span style=\"color: #ff0000;\">\"LAST\"</span><span style=\"color: #000000;\">}</span> ,;<br /> <span style=\"color: #000000;\">{</span><span style=\"color: #ff0000;\">\"TEST3\"</span>, <span style=\"color: #ff0000;\">\"AGE\"</span><span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">}</span>,;<br /> <span style=\"color: #000000;\">{</span><span style=\"color: #ff0000;\">\"LUCAS\"</span>, <span style=\"color: #000000;\">{</span><span style=\"color: #ff0000;\">\"LUCAS1\"</span>, <span style=\"color: #ff0000;\">\"NOMBRE\"</span><span style=\"color: #000000;\">}</span> ,;<br /> <span style=\"color: #000000;\">{</span><span style=\"color: #ff0000;\">\"LUCAS3\"</span>, <span style=\"color: #ff0000;\">\"NOMBRE\"</span>, <span style=\"color: #ff0000;\">\"WHERE NOMBRE = 'LUCAS'\"</span><span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">}</span><br /><br /><br /> SET ADODBF TABLES <span style=\"color: #0000ff;\">INDEX</span> LIST <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #000000;\">{</span> <span style=\"color: #000000;\">{</span> <span style=\"color: #ff0000;\">\"TABLE1\"</span>, <span style=\"color: #000000;\">{</span><span style=\"color: #ff0000;\">\"TEST1\"</span>, <span style=\"color: #ff0000;\">\"FIRST\"</span><span style=\"color: #000000;\">}</span> ,;<br /> <span style=\"color: #000000;\">{</span><span style=\"color: #ff0000;\">\"TEST2\"</span>, <span style=\"color: #ff0000;\">\"LAST\"</span><span style=\"color: #000000;\">}</span> ,;<br /> <span style=\"color: #000000;\">{</span><span style=\"color: #ff0000;\">\"TEST3\"</span>, <span style=\"color: #ff0000;\">\"AGE\"</span><span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">}</span>,;<br /> <span style=\"color: #000000;\">{</span><span style=\"color: #ff0000;\">\"LUCAS\"</span>, <span style=\"color: #000000;\">{</span><span style=\"color: #ff0000;\">\"LUCAS1\"</span>, <span style=\"color: #ff0000;\">\"NOMBRE\"</span><span style=\"color: #000000;\">}</span> ,;<br /> <span style=\"color: #000000;\">{</span><span style=\"color: #ff0000;\">\"LUCAS3\"</span>, <span style=\"color: #ff0000;\">\"NOMBRE\"</span>, <span style=\"color: #ff0000;\">\"NOMBRE = 'LUCAS'\"</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #000000;\">}</span><br /><br /><br /><br /><br /> SET ADO <span style=\"color: #00C800;\">DEFAULT</span> RECNO FIELD <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #ff0000;\">\"HBRECNO\"</span><br /><br /> SET AUTOPEN OFF <span style=\"color: #B900B9;\">//ON //might be OFF if you wish</span><br /><br /> <span style=\"color: #B900B9;\">//SET AUTORDER TO 1 // first index opened can be other</span><br /><br /> SET ADO FORCE LOCK OFF<br /><br /><br /> SET ADO <span style=\"color: #00C800;\">DEFAULT</span> DATABASE <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #ff0000;\">\"LUCASTABLE.MDB\"</span> ENGINE <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #ff0000;\">\"ACCESS\"</span> USER <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #ff0000;\">\"\"</span> PASSWORD <span style=\"color: #0000ff;\">TO</span> <span style=\"color: #ff0000;\">\"\"</span><br /><br /><br /> </div>[/code:28nz51mt]\n\n\nThat´s all.\n\nThe rest of your code is the SAME, including filters.",
"time": "17:53",
"topic": "2012 server",
"username": "lucasdebeltran"
}
] |
2012 server
|
[
{
"date": "2015-06-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks Lucas, \n\nThat was helpful\n\nDavid",
"time": "18:40",
"topic": "2012 server",
"username": "dtussman"
}
] |
2012 server
|
[
{
"date": "2016-10-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear driessen,\n can you post again the link in wich is explained exactly the operations to do in server and clients?\nI have a lot of problems",
"time": "08:32",
"topic": "2012 server",
"username": "MarcoBoschi"
}
] |
2012 server
|
[
{
"date": "2016-10-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "This is a post on Harbour Users group from someone experiencing slowness on Windows 2012 too - <!-- m --><a class=\"postlink\" href=\"https://groups.google.com/forum/#!topic/harbour-users/z-1OKaCvTxk\">https://groups.google.com/forum/#!topic ... -1OKaCvTxk</a><!-- m -->\n\nHTH",
"time": "02:48",
"topic": "2012 server",
"username": "hua"
}
] |
2012 server
|
[
{
"date": "2013-01-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Manigong Bagong Taon!!!",
"time": "09:55",
"topic": "2013",
"username": "fraxzi"
}
] |
2013
|
[
{
"date": "2012-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "<!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->\nHAPPY NEW YEAR\n<!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->",
"time": "13:49",
"topic": "2013",
"username": "MarcoBoschi"
}
] |
2013
|
[
{
"date": "2012-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I wish to all friends of the forum a great 2013.",
"time": "17:57",
"topic": "2013",
"username": "Massimo Linossi"
}
] |
2013
|
[
{
"date": "2012-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Let us all wish ourselves a Very Happy, Prosperous and Peaceful New Year 2013 all around the world.",
"time": "20:37",
"topic": "2013",
"username": "nageswaragunupudi"
}
] |
2013
|
[
{
"date": "2013-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Have a great year to all",
"time": "02:59",
"topic": "2013",
"username": "hag"
}
] |
2013
|
[
{
"date": "2013-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy New Year 2013.",
"time": "04:20",
"topic": "2013",
"username": "richard-service"
}
] |
2013
|
[
{
"date": "2013-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Wish you all a very happy and prosperous New Year.\n\nRegards\n[b:2za74bzs]Anser[/b:2za74bzs]",
"time": "05:16",
"topic": "2013",
"username": "anserkk"
}
] |
2013
|
[
{
"date": "2013-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy New Year",
"time": "06:38",
"topic": "2013",
"username": "Daniel Garcia-Gil"
}
] |
2013
|
[
{
"date": "2013-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy New Year to you all.\n\n-Ramesh Babu P",
"time": "06:45",
"topic": "2013",
"username": "RAMESHBABU"
}
] |
2013
|
[
{
"date": "2013-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "A very happy new year to you all.",
"time": "16:19",
"topic": "2013",
"username": "driessen"
}
] |
2013
|
[
{
"date": "2013-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy New Year",
"time": "18:54",
"topic": "2013",
"username": "Horizon"
}
] |
2013
|
[
{
"date": "2013-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy New Year ! Wishing you all guys an excellent and prosperous 2013, full of joy, health and happiness !",
"time": "22:20",
"topic": "2013",
"username": "HunterEC"
}
] |
2013
|
[
{
"date": "2013-01-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy New Year to all <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "03:31",
"topic": "2013",
"username": "hua"
}
] |
2013
|
[
{
"date": "2013-01-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[size=150:3hxlzttv][code=fw:3hxlzttv]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">Happy <span style=\"color: #000000;\">3</span>*ll*6l</div>[/code:3hxlzttv][/size:3hxlzttv]",
"time": "17:53",
"topic": "2013",
"username": "modicr"
}
] |
2013
|
[
{
"date": "2016-02-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "how have the same effect 2015 of buttonbar on toolbar ( TReBar class) or on ribbon class and btnbmp class ?\n\n\n[img:torcfyo8]http://www.infragistics.com/uploadedImages/Content/PRODUCTS/Windows_Forms/Controls/Toolbars/windows-forms-toolbars-ribbon-ui-key-features-image.jpg[/img:torcfyo8]\n\n[img:torcfyo8]https://www.devexpress.com/Products/NET/Controls/WinForms/i/landing/laptop/winforms-data-grid-control.png[/img:torcfyo8]",
"time": "12:54",
"topic": "2015 effect",
"username": "Silvio.Falconi"
}
] |
2015 effect
|
[
{
"date": "2016-02-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Silvio;\n\nIt looks impressive. Where did you get the screenshots from? Is that a 3rd party control lib?\n\nThank you for the information.\n\n\nReinaldo.",
"time": "16:37",
"topic": "2015 effect",
"username": "reinaldocrespo"
}
] |
2015 effect
|
[
{
"date": "2016-02-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "a web site donetcontrols windows control",
"time": "18:24",
"topic": "2015 effect",
"username": "Silvio.Falconi"
}
] |
2015 effect
|
[
{
"date": "2014-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[img:tuhoiiem]http://www.marcoboschi.it/public/cattura.jpg[/img:tuhoiiem]\n\nHappy New Year!",
"time": "17:59",
"topic": "2015 is coming",
"username": "MarcoBoschi"
}
] |
2015 is coming
|
[
{
"date": "2014-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "happy new year to all",
"time": "18:24",
"topic": "2015 is coming",
"username": "Silvio.Falconi"
}
] |
2015 is coming
|
[
{
"date": "2014-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy new year to all my FWH friends.\n\nI wish you a very succesfull year in good health for everyone of you.",
"time": "18:52",
"topic": "2015 is coming",
"username": "driessen"
}
] |
2015 is coming
|
[
{
"date": "2014-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy New Year to all!!!\n\nEMG",
"time": "19:01",
"topic": "2015 is coming",
"username": "Enrico Maria Giordano"
}
] |
2015 is coming
|
[
{
"date": "2014-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[img:retp3mts]https://bitbucket.org/fivetech/screenshots/downloads/2015.jpg[/img:retp3mts]",
"time": "20:55",
"topic": "2015 is coming",
"username": "Antonio Linares"
}
] |
2015 is coming
|
[
{
"date": "2014-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy new year to all Fivewinners!!!!",
"time": "22:55",
"topic": "2015 is coming",
"username": "Kleyber"
}
] |
2015 is coming
|
[
{
"date": "2015-01-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy New year to all !!!!!",
"time": "21:19",
"topic": "2015 is coming",
"username": "Jose Dolar"
}
] |
2015 is coming
|
[
{
"date": "2022-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[b:jp9klfpp]HAPPY NEW YEAR[/b:jp9klfpp]",
"time": "08:35",
"topic": "2023",
"username": "MarcoBoschi"
}
] |
2023
|
[
{
"date": "2022-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Best wishes for the new year to all!",
"time": "11:54",
"topic": "2023",
"username": "Enrico Maria Giordano"
}
] |
2023
|
[
{
"date": "2022-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[b:3qthxpc2][size=150:3qthxpc2]Wish all our members a Very Happy, Healthy and Prosperous New Year[/size:3qthxpc2][/b:3qthxpc2]",
"time": "16:21",
"topic": "2023",
"username": "nageswaragunupudi"
}
] |
2023
|
[
{
"date": "2022-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy new year to all Fivewinners and family. \n\nEnviado desde mi 21081111RG mediante Tapatalk",
"time": "17:17",
"topic": "2023",
"username": "rubenfernandez01"
}
] |
2023
|
[
{
"date": "2022-12-31",
"forum": "FiveWin for Harbour/xHarbour",
"text": "HAPPY NEW YEAR !!",
"time": "19:27",
"topic": "2023",
"username": "Rick Lipkin"
}
] |
2023
|
[
{
"date": "2023-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[b:2axl6hak]A healthy and peaceful happy new year for all of you.[/b:2axl6hak]",
"time": "10:52",
"topic": "2023",
"username": "Detlef"
}
] |
2023
|
[
{
"date": "2023-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thank you for the kind wishes! I hope that the new year brings everyone happiness, good health, and prosperity <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "17:32",
"topic": "2023",
"username": "Antonio Linares"
}
] |
2023
|
[
{
"date": "2023-01-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy year 2023 much peace and health to all\n\n <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->",
"time": "11:16",
"topic": "2023",
"username": "Ari"
}
] |
2023
|
[
{
"date": "2023-01-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy new year to all",
"time": "16:51",
"topic": "2023",
"username": "cnavarro"
}
] |
2023
|
[
{
"date": "2023-01-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I wish you all the very best in 2023. I have appreciated the continued support, and instruction, over the many years. \n\nI encourage you to continue to be ambassadors of good will in our global community of software developers. Our achievements, serving others in our societies through the development of tools to help them be more productive, is an important work. \n\nThank you for sharing your expertise and thoughts as we continue into this new year with Hope for a more peaceful existence on this planet.",
"time": "20:33",
"topic": "2023",
"username": "TimStone"
}
] |
2023
|
[
{
"date": "2024-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[b:2mnwwrcl]Best wishes to the staff of the coolest developer library in the world.\nHappy New Year[/b:2mnwwrcl]",
"time": "09:54",
"topic": "2024",
"username": "MarcoBoschi"
}
] |
2024
|
[
{
"date": "2024-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Wish all our members a Very Happy and Prosperous New Year",
"time": "10:33",
"topic": "2024",
"username": "nageswaragunupudi"
}
] |
2024
|
[
{
"date": "2024-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy New Year to all!!!",
"time": "11:36",
"topic": "2024",
"username": "Enrico Maria Giordano"
}
] |
2024
|
[
{
"date": "2024-01-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy New Year 2024 .. Rick Lipkin",
"time": "22:26",
"topic": "2024",
"username": "Rick Lipkin"
}
] |
2024
|
[
{
"date": "2024-01-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy New Yer 2024 to all!!",
"time": "12:52",
"topic": "2024",
"username": "jose_murugosa"
}
] |
2024
|
[
{
"date": "2024-01-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy new year for all best regards !!!",
"time": "16:08",
"topic": "2024",
"username": "wilsongamboa"
}
] |
2024
|
[
{
"date": "2024-01-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Happy New Year 2024 to All.",
"time": "11:50",
"topic": "2024",
"username": "richard-service"
}
] |
2024
|
[
{
"date": "2015-06-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I have a program compiled with 32bit bcc ( harbour and fivewin libs)\nThis error occurs only in windows 8.1 (not on XP) after the \"suspension\"\non windows 8.1 and also in XP compatible mode.\n\nIt happens ONLY at the moment the program try to seek on an index ( probably a \"static\" index that get lost after suspension mode)\n\n\nThe error is unrecovarable in any way i knew, and any update to the database, get lost.\n\nHoping to get some suggestion from you!\n\nThanks \nLorenzo",
"time": "10:38",
"topic": "2155 error hb_cdxindexCheckVersion fivewin/harbour",
"username": "lorenzoazz"
}
] |
2155 error hb_cdxindexCheckVersion fivewin/harbour
|
[
{
"date": "2015-06-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Try to use after recording a modified or new data DBCOMMIT ()",
"time": "10:48",
"topic": "2155 error hb_cdxindexCheckVersion fivewin/harbour",
"username": "cnavarro"
}
] |
2155 error hb_cdxindexCheckVersion fivewin/harbour
|
[
{
"date": "2015-06-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks for the reply.\n\nConsider that, the problem rises when hardware goes in suspension mode, so it happens when in stand-by,\nwhile you take a coffee break. \nI mean, if the hardware do not go in stand-by (as a notebook does) , there is no error when i go to recording!\nI cannot PREVENT the stand-by event, so i cannot dbcommit() before replace()...",
"time": "12:31",
"topic": "2155 error hb_cdxindexCheckVersion fivewin/harbour",
"username": "lorenzoazz"
}
] |
2155 error hb_cdxindexCheckVersion fivewin/harbour
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.