topic
stringlengths
1
63
text
stringlengths
1
577k
2010 style
Hello Daniel, In BTNBMP, how do I set 2010 style?. Thank you.
2010 style
Hello Fivewin have 4 different class to design a button, TButton, TButtonbmp, TBtnbmp, TRbbtn each one have a different behaviors and different way to customizable to BtnBmp by programing we can not build all features of 2010 style, instead you can use TButton, TButtonbmp (skinbutton), TRbbtn (changing colors data )
2010 style
Daniel, And why don´t you modify BTNBMP to accept 2010 clause?. Thank you.
2010 style
Hi Daniel, can you share the code of rb2010 sample? thanks
2010 style
Hello sure... <!-- s:-D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":-D" title="Very Happy" /><!-- s:-D --> [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;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oApp := TApplication<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;oApp:<span style="color: #000000;">Run</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<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 />&nbsp; &nbsp;<span style="color: #00C800;">DATA</span> oWnd<br />&nbsp; &nbsp;<span style="color: #00C800;">DATA</span> oRBar<br />&nbsp; &nbsp;<br />&nbsp; &nbsp;<span style="color: #00C800;">METHOD</span> <span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">METHOD</span> BuildMenu<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">METHOD</span> BuildRibbon<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;<span style="color: #00C800;">METHOD</span> BackStage<span style="color: #000000;">&#40;</span> &nbsp;<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;<span style="color: #00C800;">METHOD</span> Resize<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;<span style="color: #00C800;">METHOD</span> Run<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<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;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #00C800;">CLASS</span> TApplication<br /><br /><br />&nbsp; &nbsp;<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 />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">MENU</span> ::<span style="color: #000000;">BuildMenu</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #0000ff;">COLOR</span> <span style="color: #ff0000;">"N/W*"</span><br /><br />&nbsp; &nbsp;::<span style="color: #000000;">BuildRibbon</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;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 />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">CENTERED</span> CLOCK KEYBOARD <span style="color: #000000;">2010</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;::<span style="color: #000000;">oWnd</span>:<span style="color: #0000ff;">Center</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<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;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #00C800;">CLASS</span> TApplication<br />&nbsp; &nbsp; &nbsp;<br /><br />&nbsp; &nbsp; &nbsp;<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 />&nbsp; &nbsp; &nbsp;<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;">&#40;</span> nSizeType, nWidth, nHeight <span style="color: #000000;">&#41;</span> <span style="color: #00C800;">CLASS</span> TApplication<br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> n<br />&nbsp; &nbsp; &nbsp; <br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> nWidth != <span style="color: #00C800;">NIL</span><br />&nbsp; &nbsp; &nbsp;::<span style="color: #000000;">oTitle</span>:<span style="color: #0000ff;">Move</span><span style="color: #000000;">&#40;</span> , , nWidth - <span style="color: #000000;">1</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp;<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 />&nbsp; &nbsp; &nbsp; &nbsp; ::<span style="color: #000000;">aBrw</span><span style="color: #000000;">&#91;</span> n + <span style="color: #000000;">2</span> <span style="color: #000000;">&#93;</span>:<span style="color: #0000ff;">Move</span><span style="color: #000000;">&#40;</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;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; ::<span style="color: #000000;">aTtls</span><span style="color: #000000;">&#91;</span> n + <span style="color: #000000;">2</span> <span style="color: #000000;">&#93;</span>:<span style="color: #0000ff;">Move</span><span style="color: #000000;">&#40;</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;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; ::<span style="color: #000000;">aBrw</span><span style="color: #000000;">&#91;</span> n <span style="color: #000000;">&#93;</span>:<span style="color: #0000ff;">Move</span><span style="color: #000000;">&#40;</span> , <span style="color: #000000;">10</span>, nWidth / <span style="color: #000000;">2</span> - <span style="color: #000000;">20</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; ::<span style="color: #000000;">aTtls</span><span style="color: #000000;">&#91;</span> n <span style="color: #000000;">&#93;</span>:<span style="color: #0000ff;">Move</span><span style="color: #000000;">&#40;</span> , <span style="color: #000000;">10</span>, nWidth / <span style="color: #000000;">2</span> - <span style="color: #000000;">20</span> <span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp;<span style="color: #00C800;">next</span><br />&nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp;::<span style="color: #000000;">oSplit</span>:<span style="color: #0000ff;">Adjust</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp;<br />&nbsp; <span style="color: #00C800;">endif</span><br />&nbsp; &nbsp;<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;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #00C800;">CLASS</span> TApplication<br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oMenu, oMainMenu<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oGr, oGr1, oGr2, oGr3, oGr4<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oBtn, &nbsp; oBtn1, &nbsp;oBtn2, &nbsp;oBtn3, &nbsp;oBtn4, oBtn5<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oBtn6, &nbsp;oBtn7, &nbsp;oBtn8, &nbsp;oBtn9, &nbsp;oBtn10<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oBtn11, oBtn12, oBtn13, oBtn14, oBtn15<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oBtn16, oBtn17, oBtn18, oBtn19, oBtn20<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oBtn21, oBtn22, oBtn23, oBtn24, oBtn25 <br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oBtn26, oBtn27, oBtn28, oBtn29, oBtn30<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oBtn31, oBtn32, oBtn33, oBtn34, oBtn35<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oSay1, oChk1, lVal1 := .T.<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oTBtn0, oTBtn1, oTBtn2, oTBtn3<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> aClrMenu1 := <span style="color: #000000;">&#123;</span> <span style="color: #000000;">&#123;</span> <span style="color: #000000;">0.5</span>, RGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">69</span>, <span style="color: #000000;">124</span>, <span style="color: #000000;">188</span> <span style="color: #000000;">&#41;</span>, RGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">41</span>, <span style="color: #000000;">93</span>, <span style="color: #000000;">171</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #000000;">0.5</span>, RGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">26</span>, <span style="color: #000000;">64</span>, <span style="color: #000000;">136</span> <span style="color: #000000;">&#41;</span>, RGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">56</span>, <span style="color: #000000;">135</span>, <span style="color: #000000;">191</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#125;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> aClrMenu2 := <span style="color: #000000;">&#123;</span> <span style="color: #000000;">&#123;</span> <span style="color: #000000;">0.5</span>, RGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">123</span>, <span style="color: #000000;">178</span>, <span style="color: #000000;">236</span> <span style="color: #000000;">&#41;</span>, RGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">71</span>, <span style="color: #000000;">126</span>, <span style="color: #000000;">205</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #000000;">0.5</span>, RGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">17</span>, <span style="color: #000000;">78</span>, <span style="color: #000000;">175</span> <span style="color: #000000;">&#41;</span>, RGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">128</span>, <span style="color: #000000;">225</span>, <span style="color: #000000;">255</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#125;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">MENU</span> oMenu <span style="color: #0000ff;">POPUP</span> <span style="color: #000000;">2010</span> <br />&nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"Colors"</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"Font"</span><br />&nbsp; &nbsp;<span style="color: #0000ff;">ENDMENU</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br />&nbsp; &nbsp;<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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">PROMPT</span> <span style="color: #ff0000;">"Archivo"</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"Configuración"</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"Ficheros"</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #ff0000;">"Informes"</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;::<span style="color: #000000;">oRBar</span>:<span style="color: #000000;">bAction</span> = <span style="color: #000000;">&#123;</span>| nOpt, nOld | <span style="color: #00C800;">if</span><span style="color: #000000;">&#40;</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;">&#40;</span><span style="color: #000000;">&#41;</span>, <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span><br />&nbsp; &nbsp;::<span style="color: #000000;">BackStage</span><span style="color: #000000;">&#40;</span> ::<span style="color: #000000;">oRBar</span> <span style="color: #000000;">&#41;</span><br /><br /><br />&nbsp; &nbsp;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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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;">&#40;</span> <span style="color: #0000ff;">Msginfo</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Paste"</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> ;<br />&nbsp; &nbsp;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 />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp;<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> &nbsp;MOSTLEFT <span style="color: #0000ff;">round</span> ;<br />&nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">action</span> <span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">msginfo</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Cut"</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp;<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> &nbsp;MOSTLEFT <span style="color: #0000ff;">round</span> <span style="color: #0000ff;">action</span> <span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">msginfo</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Copy"</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <br /><br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp;<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> &nbsp;MOSTLEFT <span style="color: #0000ff;">round</span> ;<br />&nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">action</span><span style="color: #000000;">&#40;</span> <span style="color: #0000ff;">msginfo</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Paste"</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;<span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#40;</span> oBtn5:<span style="color: #000000;">lSelected</span> := !oBtn5:<span style="color: #000000;">lSelected</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#40;</span> oBtn6:<span style="color: #000000;">lSelected</span> := !oBtn6:<span style="color: #000000;">lSelected</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#40;</span> oBtn8:<span style="color: #000000;">lSelected</span> := !oBtn8:<span style="color: #000000;">lSelected</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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> &nbsp;<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 />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#40;</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;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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> &nbsp;<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 />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#40;</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;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">ACTION</span> <span style="color: #000000;">&#40;</span> lVal1 := ! lVal1, oChk1:<span style="color: #000000;">SetFile</span><span style="color: #000000;">&#40;</span> <span style="color: #00C800;">If</span><span style="color: #000000;">&#40;</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;">&#41;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br /><br /><br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">POPUP</span> <span style="color: #0000ff;">MENU</span> oMenu<br /><br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;<span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#40;</span> ChangeSelect<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</span> oBtn20, oBtn21, oBtn22, oBtn23 <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#40;</span> ChangeSelect<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</span> oBtn21, oBtn20, oBtn22, oBtn23 <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#40;</span> ChangeSelect<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</span> oBtn22, oBtn21, oBtn20, oBtn23 <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> <br />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#40;</span> ChangeSelect<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</span> oBtn23, oBtn21, oBtn22, oBtn20 <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br /><br /><br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp; <br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp;<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 />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp;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 />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp;<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> &nbsp;MOSTLEFT <span style="color: #0000ff;">round</span> ;<br />&nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ACTION</span> <span style="color: #0000ff;">msginfo</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Replace"</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp;<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> &nbsp;MOSTLEFT <span style="color: #0000ff;">round</span> ;<br />&nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ACTION</span> <span style="color: #0000ff;">msginfo</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Go To"</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;@ <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 />&nbsp; &nbsp; &nbsp;<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> &nbsp;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;">&#40;</span><span style="color: #000000;">&#41;</span> <br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oMenu<br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">MENU</span> oMenu <span style="color: #000000;">2010</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"&Archivo"</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">MENU</span> <br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ENDMENU</span><br /><br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"&Edicion"</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">MENU</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">SEPARATOR</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">SEPARATOR</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">MENU</span> <span style="color: #000000;">2007</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">SEPARATOR</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ENDMENU</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ENDMENU</span><br /><br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"&Ver"</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">MENU</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ENDMENU</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"&Datos"</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">MENU</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ENDMENU</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"&Proceso"</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">MENU</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ENDMENU</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"&Impresiones"</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">MENU</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ENDMENU</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br /><br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"&Herramientas"</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">MENU</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ENDMENU</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br /><br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"In&ternet"</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">MENU</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ENDMENU</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br /><br />&nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"&Ventanas"</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">MENU</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ENDMENU</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">ENDMENU</span><br /><br /><span style="color: #00C800;">return</span> oMenu<br /><br /><br />Procedure ChangeSelect<span style="color: #000000;">&#40;</span> aObj <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> n<br />&nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp;aObj<span style="color: #000000;">&#91;</span> <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">lSelected</span> := .t.<br />&nbsp; &nbsp;<span style="color: #00C800;">for</span> n = <span style="color: #000000;">2</span> <span style="color: #0000ff;">to</span> len<span style="color: #000000;">&#40;</span> aObj <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; aObj<span style="color: #000000;">&#91;</span> n <span style="color: #000000;">&#93;</span>:<span style="color: #000000;">lSelected</span> := .f.<br />&nbsp; &nbsp; &nbsp; aObj<span style="color: #000000;">&#91;</span> n <span style="color: #000000;">&#93;</span>:<span style="color: #0000ff;">Refresh</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<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;">&#40;</span> &nbsp;<span style="color: #000000;">&#41;</span> <span style="color: #00C800;">CLASS</span> TApplication<br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> &nbsp;oBackStage, oSelf := <span style="color: #00C800;">Self</span><br />&nbsp; &nbsp; <br />&nbsp; &nbsp;<span style="color: #0000ff;">DEFINE</span> BACKSTAGE oBackStage <br />&nbsp; &nbsp;<br />&nbsp; &nbsp;<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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 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;">&#40;</span> oOpt:<span style="color: #000000;">cPrompt</span> <span style="color: #000000;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GRADIENT <span style="color: #000000;">&#123;</span> <span style="color: #000000;">&#123;</span> <span style="color: #000000;">1</span>, nRGB<span style="color: #000000;">&#40;</span> &nbsp;<span style="color: #000000;">255</span>, <span style="color: #000000;">255</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#41;</span>, nRGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">255</span>, <span style="color: #000000;">255</span>, <span style="color: #000000;">255</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#125;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />&nbsp; &nbsp;<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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 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;">&#40;</span> oOpt:<span style="color: #000000;">cPrompt</span> <span style="color: #000000;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GRADIENT <span style="color: #000000;">&#123;</span> <span style="color: #000000;">&#123;</span> <span style="color: #000000;">1</span>, &nbsp;nRGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">242</span>, <span style="color: #000000;">96</span>, <span style="color: #000000;">96</span> <span style="color: #000000;">&#41;</span>, nRGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">195</span>, <span style="color: #000000;">37</span>, <span style="color: #000000;">37</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#125;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; COLORTEXT CLR_BLACK, CLR_WHITE<br />&nbsp; &nbsp;<br />&nbsp; &nbsp;<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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 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;">&#40;</span> oOpt:<span style="color: #000000;">cPrompt</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;<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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 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;">&#40;</span> oOpt:<span style="color: #000000;">cPrompt</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br /><br />&nbsp; &nbsp;<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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 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;">&#40;</span> oOpt:<span style="color: #000000;">cPrompt</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<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;">&#40;</span> oOpt:<span style="color: #000000;">cPrompt</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<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;">&#40;</span> oOpt:<span style="color: #000000;">cPrompt</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<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;">&#40;</span> oOpt:<span style="color: #000000;">cPrompt</span> <span style="color: #000000;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; GRADIENT <span style="color: #000000;">&#123;</span> <span style="color: #000000;">&#123;</span> <span style="color: #000000;">1</span>, nRGB<span style="color: #000000;">&#40;</span> &nbsp;<span style="color: #000000;">255</span>, <span style="color: #000000;">255</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#41;</span>, nRGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">255</span>, <span style="color: #000000;">255</span>, <span style="color: #000000;">255</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#125;</span><br /><br />&nbsp; &nbsp;<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;">&#40;</span> oOpt:<span style="color: #000000;">cPrompt</span> <span style="color: #000000;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; COLORS nRGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">242</span>, <span style="color: #000000;">96</span>, <span style="color: #000000;">96</span> <span style="color: #000000;">&#41;</span>, nRGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">195</span>, <span style="color: #000000;">37</span>, <span style="color: #000000;">37</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 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;">&#40;</span> oOpt:<span style="color: #000000;">cPrompt</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />&nbsp; &nbsp;<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 />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 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;">&#40;</span> oSelf:<span style="color: #000000;">oWnd</span>:<span style="color: #000000;">End</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;SET BACKSTAGE oBackStage <span style="color: #0000ff;">TO</span> ::<span style="color: #000000;">oRBar</span><br /><br />&nbsp; &nbsp;<br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br />&nbsp; &nbsp; &nbsp; <br /><br />&nbsp;</div>[/code:4szj7h4s]
2010 style
HI, set message and define message is the same? i use this way: DEFINE MESSAGE oMsgBar OF oWndMain PROMPT oSys[_Sistema_] NOINSET KEYBOARD 2010 and dont respect colors of 2010 style. thaks for the code. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> sorry, in my code i put this line : /*oMsgbar:l2007 := TRUE */, without this works fine. thanks
2010 style
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?? [url=http&#58;//imageshack&#46;us/photo/my-images/830/menuml&#46;jpg/:3814c2fr][img:3814c2fr]http&#58;//img830&#46;imageshack&#46;us/img830/9072/menuml&#46;jpg[/img:3814c2fr][/url:3814c2fr] inside is 2010 style [url=http&#58;//imageshack&#46;us/photo/my-images/13/menu2i&#46;jpg/:3814c2fr][img:3814c2fr]http&#58;//img13&#46;imageshack&#46;us/img13/9793/menu2i&#46;jpg[/img:3814c2fr][/url:3814c2fr] thanks
2010 style
Norberto i'll check.... thanks for feedback
2010 style
thanks, im using fwh 1105 build 31/05, xharbour, windows 7 64 without themes.
2010 style
Daniel, any news to solve this? thanks
2010 style
Have you tested with the new build released today?
2010 style
yes. the same issue.
2010 style
[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?? [url=http&#58;//imageshack&#46;us/photo/my-images/830/menuml&#46;jpg/:36rgwhbo][img:36rgwhbo]http&#58;//img830&#46;imageshack&#46;us/img830/9072/menuml&#46;jpg[/img:36rgwhbo][/url:36rgwhbo] inside is 2010 style [url=http&#58;//imageshack&#46;us/photo/my-images/13/menu2i&#46;jpg/:36rgwhbo][img:36rgwhbo]http&#58;//img13&#46;imageshack&#46;us/img13/9793/menu2i&#46;jpg[/img:36rgwhbo][/url:36rgwhbo] thanks[/quote:36rgwhbo] it's work fine to me... can you provide a little sample please... [url:36rgwhbo]http&#58;//www&#46;sitasoft&#46;net/fivewin/samples/testmnu&#46;zip[/url:36rgwhbo]
2010 style
Daniel, i run the exe in zip file, compiled for you, this is image: [url=http&#58;//imageshack&#46;us/photo/my-images/215/erro2011&#46;jpg/:19joeoir][img:19joeoir]http&#58;//img215&#46;imageshack&#46;us/img215/4149/erro2011&#46;jpg[/img:19joeoir][/url:19joeoir] you can test this in windows 64 bits?
2010 style
now in xp virtual mode running in windows 7 64: [url=http&#58;//imageshack&#46;us/photo/my-images/836/erromenu&#46;jpg/:5lda4nzt][img:5lda4nzt]http&#58;//img836&#46;imageshack&#46;us/img836/8712/erromenu&#46;jpg[/img:5lda4nzt][/url:5lda4nzt] [url=http&#58;//imageshack&#46;us/photo/my-images/98/erromenu1&#46;jpg/:5lda4nzt][img:5lda4nzt]http&#58;//img98&#46;imageshack&#46;us/img98/682/erromenu1&#46;jpg[/img:5lda4nzt][/url:5lda4nzt] this is your exe in zip file. thanks
2010 style
Hello yes... it's correct 2010 behavior, only change the selection color Thanks for feedback
2010 style
Daniel, how to solve this? same color of message bar 2010 in main menu?
2010 style
[quote="norberto":e6aazaka]Daniel, how to solve this? same color of message bar 2010 in main menu?[/quote:e6aazaka] Yes... this screenshots was take from explorer of windows 7 32 bits [img:e6aazaka]http&#58;//www&#46;sitasoft&#46;net/fivewin/screen/ie1&#46;png[/img:e6aazaka] [img:e6aazaka]http&#58;//www&#46;sitasoft&#46;net/fivewin/screen/ie2&#46;png[/img:e6aazaka]
2010 style
Yes, I need it too. Thank you very much.
2010 style
hola la opcion 2010 esta a partir de que version de FW? gracias.
2010 styles
I use fivewin with xharbour (supplied by fivewin) and borland complier on win32 platform. If I recompile existing prg's with 2010 parameters where applicable, what will my application look like? My standard process is: Main Window ( some are MDI ) Dialogs containing browses, input fields, list boxes, etc. in other words, "common" components for business applications. Will 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?
2010 styles
Yes, automatically. No need to redesign.
2011
Dear developers, Happy New Year! marco
2011
Hi, friends Happy New Year!! wonderfull 2011 to us.
2011
Happy New Year to All!!!! A GREAT 2011 for you.
2011
Happy 2OII to all! Cheers, Roman
2011
Hello Friends developers, A Happy New Year for All <!-- s:!: --><img src="{SMILIES_PATH}/icon_exclaim.gif" alt=":!:" title="Exclamation" /><!-- s:!: --> Happy 20II <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
2011
Happy new year to all and thanks for the help you provided in past years.
2011
Happy New Year to all as well .. Rick Lipkin
2011
Guys: Happy New Year to all of you !
2011
Also from me a happy new year to everybody.
2012 server
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.
2012 server
Yes, you should use a more recent version and try it again: [url:j6q1sz4p]https&#58;//bitbucket&#46;org/fivetech/harbour-xharbour-builds/downloads/xharbour10121_20150503_bcc58&#46;zip[/url:j6q1sz4p] Surely you will need to upgrade FWH too.
2012 server
Since Windows 2008 server, I noticed the same problems now and then. But it also happens with recent versions of xHarbour or Harbour. What 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). If SMB 2.0 was disabled, the problem disappears. For disabling SMB 2.0, an intervention is needed on the server, as well as on the workstations. More 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 -->
2012 server
Michel, thanks
2012 server
Michel, Great info, thanks! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
2012 server
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! David
2012 server
David I 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. To 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. Probably 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. I 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. Was a 'no brainer' for me <!-- s:idea: --><img src="{SMILIES_PATH}/icon_idea.gif" alt=":idea:" title="Idea" /><!-- s:idea: --> Rick Lipkin ps .. no connection client or elaborate setup is needed .. Windows has it all built in if you use Access or Sql Server
2012 server
Rick, Very interesting information I can read from you. I want to migrate my dbf-files to SQL too. But can you advice me how I need to do that? I have no experience with SQL right now. Thanks.
2012 server
Rick, I 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. Regards, David
2012 server
Rick, Isn't MS Access is also a flat file database like dbf and as such will be affected by oplocks issue? 1. Quote - "[url=http&#58;//www&#46;superbase&#46;com/service_tech_support_oplocks&#46;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]" 2. <!-- 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 --> Thank you for sharing your experience
2012 server
Adordd its ready and it will be publish today. Ill post the link here later. It 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. This app with adordd its now being tested intensively on concurrent access to check locking scheme and exclusive use. Will report results end next week. Lucas DeBeltran helped a lot with his trials on his app and with his ideas. Antonio Linares and Rao Nages help a lot sharing the code of adofuncs.prg and their expertise of rdds and ado. With adordd you can migrate immediately to any SQL server although all the trials have been made only with ADS, MySql and MS Access. No change code required. Except: 1) As with ADS in index expressions you have to evaluate vars before send it to adordd. 2) Deleted records are immediately removed from table and cant be recovered again. So code like: [code=fw:92tb80ti]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Delete record recno<br />BlankRec<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp;<span style="color: #B900B9;">//this will not work either comment it or place it before delete.</span><br /><br />delete all &nbsp;<span style="color: #B900B9;">//this will not work take it from here</span><br /><span style="color: #00C800;">while</span>....<br />&nbsp;<span style="color: #00C800;">if</span> lcondition &nbsp;<span style="color: #B900B9;">//change condition to not</span><br />&nbsp; &nbsp;recall record &nbsp;<span style="color: #B900B9;">//delete each record here</span><br />&nbsp;<span style="color: #00C800;">endif</span><br />end<br />&nbsp;</div>[/code:92tb80ti] Thats it! And goes beyond others rdd: [code=fw:92tb80ti]<div class="fw" id="{CB}" style="font-family: monospace;"><br />hb_GetAdoConnection<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #000000;">Execute</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"CREATE VIEW cView ...."</span><span style="color: #000000;">&#41;</span><br /><br />sele <span style="color: #000000;">0</span><br />use cView<br /><br />Browse<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp;</div>[/code:92tb80ti] True locks as any other rdd. Upload tables to any Sql server just like: [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;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp;</div>[/code:92tb80ti] Performance its quite good. No Sql knowledge. This will be only needed if you want to use and run sql statements directly from ado functions. You write code exactly the same as for any other rdd. With 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. Although ADO its already today an "old" framework I think it will stay around for the next coming years (I hope so) Ill 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. I hope that it will do the job for you all as it does for me. Ps. Dont go for MSAccess go directly to any SQL server.
2012 server
Go the best and most secure way – go RDP. Otto [url:1adol3bl]http&#58;//otto-atzwanger-gmbh&#46;com/page-12[/url:1adol3bl]
2012 server
To All There 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. <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=30888">viewtopic.php?f=3&t=30888</a><!-- l --> As 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 <!-- 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 --> Rick Lipkin
2012 server
>There is no correct answer Rick, in this case you are wrong. dtussman has the problem because of mixed operating systems. To work through RDP is the best way. Your program is running on a single OP system – in his case on the SERVER 2012. Also a client server system can’t reach the stability of a system on a dedicated machine. Note ------ Here the only thing to know is that licensing of the CALs in WINDOWS Server 2012 foundation only works in “per device” mode. Best regards, Otto
2012 server
Otto, If 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. David
2012 server
Which is better to convert a large legacy application to SQL: SQLRDD or ADORDD?
2012 server
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:-) -->
2012 server
Thanks Antonio, Back 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! Regards, David
2012 server
David, Thanks 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:-) --> Antonio Ferreira has confirmed that he has ported a large app to AdoRdd without any source code modifications! Thats great <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
2012 server
David, I ported a large app with no code change. In this case was easy because the app worked already with ADS so the indexes expressions with vars were all evaluated before sent to adordd. This 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. Lucas is also testing in his application and so far its seems its running quite good.
2012 server
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.
2012 server
David, You have only to indicate at the begining of your application a few settings and that´s all. Yes, you can use Recno(). This is a sample: [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;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; RddRegister<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"ADORDD"</span>,<span style="color: #000000;">1</span><span style="color: #000000;">&#41;</span><br />&nbsp; RddSetDefault<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"ADORDD"</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;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 />&nbsp; &nbsp;SET CENTURY <span style="color: #0000ff;">ON</span><br />&nbsp; &nbsp;SET EPOCH <span style="color: #0000ff;">TO</span> <span style="color: #0000ff;">YEAR</span><span style="color: #000000;">&#40;</span>DATE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">-98</span><br /><br /><br />&nbsp; SET ADO TABLES <span style="color: #0000ff;">INDEX</span> LIST <span style="color: #0000ff;">TO</span> <span style="color: #000000;">&#123;</span><span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"TABLE1"</span>, <span style="color: #000000;">&#123;</span><span style="color: #ff0000;">"TEST1"</span>, <span style="color: #ff0000;">"FIRST"</span><span style="color: #000000;">&#125;</span> ,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#123;</span><span style="color: #ff0000;">"TEST2"</span>, <span style="color: #ff0000;">"LAST"</span><span style="color: #000000;">&#125;</span> ,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#123;</span><span style="color: #ff0000;">"TEST3"</span>, <span style="color: #ff0000;">"AGE"</span><span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#125;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#123;</span><span style="color: #ff0000;">"LUCAS"</span>, <span style="color: #000000;">&#123;</span><span style="color: #ff0000;">"LUCAS1"</span>, <span style="color: #ff0000;">"NOMBRE"</span><span style="color: #000000;">&#125;</span> ,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#123;</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;">&#125;</span> &nbsp; &nbsp; <span style="color: #000000;">&#125;</span> &nbsp; &nbsp; <span style="color: #000000;">&#125;</span><br /><br /><br />&nbsp; SET ADODBF TABLES <span style="color: #0000ff;">INDEX</span> LIST <span style="color: #0000ff;">TO</span> <span style="color: #000000;">&#123;</span> <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"TABLE1"</span>, <span style="color: #000000;">&#123;</span><span style="color: #ff0000;">"TEST1"</span>, <span style="color: #ff0000;">"FIRST"</span><span style="color: #000000;">&#125;</span> ,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span><span style="color: #ff0000;">"TEST2"</span>, <span style="color: #ff0000;">"LAST"</span><span style="color: #000000;">&#125;</span> ,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span><span style="color: #ff0000;">"TEST3"</span>, <span style="color: #ff0000;">"AGE"</span><span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#125;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#123;</span><span style="color: #ff0000;">"LUCAS"</span>, <span style="color: #000000;">&#123;</span><span style="color: #ff0000;">"LUCAS1"</span>, <span style="color: #ff0000;">"NOMBRE"</span><span style="color: #000000;">&#125;</span> ,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#123;</span><span style="color: #ff0000;">"LUCAS3"</span>, <span style="color: #ff0000;">"NOMBRE"</span>, <span style="color: #ff0000;">"NOMBRE = 'LUCAS'"</span> <span style="color: #000000;">&#125;</span> &nbsp; <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#125;</span><br /><br /><br /><br /><br />&nbsp; SET ADO <span style="color: #00C800;">DEFAULT</span> RECNO FIELD <span style="color: #0000ff;">TO</span> <span style="color: #ff0000;">"HBRECNO"</span><br /><br />&nbsp; SET AUTOPEN OFF <span style="color: #B900B9;">//ON //might be OFF if you wish</span><br /><br />&nbsp; <span style="color: #B900B9;">//SET AUTORDER TO 1 // first index opened can be other</span><br /><br />&nbsp; SET ADO FORCE LOCK OFF<br /><br /><br />&nbsp; SET ADO <span style="color: #00C800;">DEFAULT</span> DATABASE <span style="color: #0000ff;">TO</span> <span style="color: #ff0000;">"LUCASTABLE.MDB"</span> &nbsp;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 />&nbsp;</div>[/code:28nz51mt] That´s all. The rest of your code is the SAME, including filters.
2012 server
Thanks Lucas, That was helpful David
2012 server
Dear driessen, can you post again the link in wich is explained exactly the operations to do in server and clients? I have a lot of problems
2012 server
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 --> HTH
2013
Manigong Bagong Taon!!!
2013
<!-- 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 --> HAPPY NEW YEAR <!-- 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 -->
2013
I wish to all friends of the forum a great 2013.
2013
Let us all wish ourselves a Very Happy, Prosperous and Peaceful New Year 2013 all around the world.
2013
Have a great year to all
2013
Happy New Year 2013.
2013
Wish you all a very happy and prosperous New Year. Regards [b:2za74bzs]Anser[/b:2za74bzs]
2013
Happy New Year
2013
Happy New Year to you all. -Ramesh Babu P
2013
A very happy new year to you all.
2013
Happy New Year
2013
Happy New Year ! Wishing you all guys an excellent and prosperous 2013, full of joy, health and happiness !
2013
Happy New Year to all <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
2013
[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]
2015 effect
how have the same effect 2015 of buttonbar on toolbar ( TReBar class) or on ribbon class and btnbmp class ? [img:torcfyo8]http&#58;//www&#46;infragistics&#46;com/uploadedImages/Content/PRODUCTS/Windows_Forms/Controls/Toolbars/windows-forms-toolbars-ribbon-ui-key-features-image&#46;jpg[/img:torcfyo8] [img:torcfyo8]https&#58;//www&#46;devexpress&#46;com/Products/NET/Controls/WinForms/i/landing/laptop/winforms-data-grid-control&#46;png[/img:torcfyo8]
2015 effect
Hello Silvio; It looks impressive. Where did you get the screenshots from? Is that a 3rd party control lib? Thank you for the information. Reinaldo.
2015 effect
a web site donetcontrols windows control
2015 is coming
[img:tuhoiiem]http&#58;//www&#46;marcoboschi&#46;it/public/cattura&#46;jpg[/img:tuhoiiem] Happy New Year!
2015 is coming
happy new year to all
2015 is coming
Happy new year to all my FWH friends. I wish you a very succesfull year in good health for everyone of you.
2015 is coming
Happy New Year to all!!! EMG
2015 is coming
[img:retp3mts]https&#58;//bitbucket&#46;org/fivetech/screenshots/downloads/2015&#46;jpg[/img:retp3mts]
2015 is coming
Happy new year to all Fivewinners!!!!
2015 is coming
Happy New year to all !!!!!
2023
[b:jp9klfpp]HAPPY NEW YEAR[/b:jp9klfpp]
2023
Best wishes for the new year to all!
2023
[b:3qthxpc2][size=150:3qthxpc2]Wish all our members a Very Happy, Healthy and Prosperous New Year[/size:3qthxpc2][/b:3qthxpc2]
2023
Happy new year to all Fivewinners and family. Enviado desde mi 21081111RG mediante Tapatalk
2023
HAPPY NEW YEAR !!
2023
[b:2axl6hak]A healthy and peaceful happy new year for all of you.[/b:2axl6hak]
2023
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:-) -->
2023
Happy year 2023 much peace and health to all <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
2023
Happy new year to all
2023
I wish you all the very best in 2023. I have appreciated the continued support, and instruction, over the many years. I 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. Thank you for sharing your expertise and thoughts as we continue into this new year with Hope for a more peaceful existence on this planet.
2024
[b:2mnwwrcl]Best wishes to the staff of the coolest developer library in the world. Happy New Year[/b:2mnwwrcl]
2024
Wish all our members a Very Happy and Prosperous New Year
2024
Happy New Year to all!!!
2024
Happy New Year 2024 .. Rick Lipkin
2024
Happy New Yer 2024 to all!!
2024
Happy new year for all best regards !!!
2024
Happy New Year 2024 to All.
2155 error hb_cdxindexCheckVersion fivewin/harbour
I have a program compiled with 32bit bcc ( harbour and fivewin libs) This error occurs only in windows 8.1 (not on XP) after the "suspension" on windows 8.1 and also in XP compatible mode. It happens ONLY at the moment the program try to seek on an index ( probably a "static" index that get lost after suspension mode) The error is unrecovarable in any way i knew, and any update to the database, get lost. Hoping to get some suggestion from you! Thanks Lorenzo
2155 error hb_cdxindexCheckVersion fivewin/harbour
Try to use after recording a modified or new data DBCOMMIT ()
2155 error hb_cdxindexCheckVersion fivewin/harbour
Thanks for the reply. Consider that, the problem rises when hardware goes in suspension mode, so it happens when in stand-by, while you take a coffee break. I mean, if the hardware do not go in stand-by (as a notebook does) , there is no error when i go to recording! I cannot PREVENT the stand-by event, so i cannot dbcommit() before replace()...