topic
stringlengths
1
63
text
stringlengths
1
577k
sincronizar con la tienda virtual
Compañeros, Buenas tardes: Tengo una aplicación de gestión comercial corriendo con DBF/CDX todo correcto. Algunos de mis clientes me plantean la posibilidad de que dicha aplicación pueda sincronizarse con sus tiendas online para el control real de stock. Supongo que sería posible a través de algún programa puente (o algo así), pero ¿es muy complicado enlazarlo? ¿Hay ejemplo en este foro? Mil gracias. Un saludo a todos. LORENZO.
sincronizar con la tienda virtual
Busca Prestashop en el foro
sintaxis de BitMap
Hola buen dia, tengo una opcion Verificador de Precios; en clipper 5.03, necesito desplegar la imagen del producto, he tratado de hacerlo en fivewin, pero no he podido controlar la posicion y tamaño de la imagen, esto para ejecutarlo desde clipper.. de antemano Muchas Gracias.
sintaxis de BitMap
Puedes mostrar un ejemplo PRG de cómo lo estás haciendo ? Una imagen también ayudaría mucho
sintaxis de BitMap
Sr Linares por anticipado Gracias por la atencion, el siguiente es la rutina que he tratado de usar par desplegar una imagen .bmp : #include "FiveWin.ch" function Main() * local ruta := "e:\lapdell\jj\mdulce\verif\paris.bmp" local ruta := "paris.bmp" BmpPresenta( ruta, "VERIFICADOR DE PRECIOS" ) return nil function BmpPresenta( cBmp, cTitulo ) local oWnd, oBmp DEFAULT cTitulo := "Muestra imagen" if file( cBmp ) DEFINE BITMAP oBmp FILE cBmp DEFINE DIALOG oWnd TITLE cTitulo ; SIZE oBmp:nWidth(), oBmp:nHeight PIXEL ACTIVATE DIALOG oWnd CENTERED ; ON PAINT PalBmpDraw( hDC, 300, 300, oBmp:hBitmap ) * ON PAINT PalBmpDraw( hDC, 0, 0, oBmp:hBitmap ) oBmp:End() else MsgAlert( "..Archivo Inexistente !" ) endif return nil cuando uso los parametros 0, 0 despliega la imagen completa abarcando toda la ventana; si uso 300, 300 mueve la imagen al extremo inferior derecho pero incompleta. mi necesidad es desplegar la imagen completa , llamandola desde la aplicacion en clipper .. Gracias, por el apoyo
sintaxis de BitMap
Sr. Linares, entiendo lo valioso de su tiempo, aun no tengo respuesta o sugerencia respecto a mi peticion sobre el desplegar imagen .bmp sobre una consulta desde clipper 5.3... para un verificador de precios.. Gracias Anticipadas
sintaxis de BitMap
para imprimir un codigo de barras bidimensinal cbb utilizo: Oprinter:SayBitMap(pos1, pos2, "salida.bmp", tam1, tam2) de que depende que algunas imagenes si se imprimen y otras no... habra que configura algunos parametros Gracias
sintaxis tsbutton
Buenas tardes para todos, estoy intentando compilar con FW1903 un prg que contiene los TSBUTTON, Pero al compilar me arroja un error de sintaxis. [code=fw:30k0pytr]<div class="fw" id="{CB}" style="font-family: monospace;"><br />c:\dlyma\prg\R32_caja.prg<span style="color: #000000;">&#40;</span><span style="color: #000000;">594</span><span style="color: #000000;">&#41;</span> Error E0030  Syntax error: <span style="color: #ff0000;">"syntax error at 'SBUTTON'"</span><br />c:\dlyma\prg\R32_caja.prg<span style="color: #000000;">&#40;</span><span style="color: #000000;">595</span><span style="color: #000000;">&#41;</span> Error E0030  Syntax error: <span style="color: #ff0000;">"syntax error at 'SBUTTON'"</span><br />c:\dlyma\prg\R32_caja.prg<span style="color: #000000;">&#40;</span><span style="color: #000000;">596</span><span style="color: #000000;">&#41;</span> Error E0030  Syntax error: <span style="color: #ff0000;">"syntax error at 'SBUTTON'"</span><br /> </div>[/code:30k0pytr] Los tengo botones están definidos de la siguiente manera: [code=fw:30k0pytr]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   <span style="color: #0000ff;">REDEFINE</span> SBUTTON oBtn_5 <span style="color: #0000ff;">ID</span> <span style="color: #000000;">4020</span> <span style="color: #0000ff;">OF</span> oCuadro <span style="color: #0000ff;">PROMPT</span> <span style="color: #ff0000;">"Cajon"</span>     COLORS CLR_BLACK, nRGB<span style="color: #000000;">&#40;</span><span style="color: #000000;">198</span>,  <span style="color: #000000;">8</span>,<span style="color: #000000;">8</span>  <span style="color: #000000;">&#41;</span>, nRGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">147</span>,  <span style="color: #000000;">60</span>,  <span style="color: #000000;">60</span><span style="color: #000000;">&#41;</span> OFFICE <span style="color: #0000ff;">FONT</span> oFont0 <span style="color: #0000ff;">ACTION</span> oLamcla:<span style="color: #000000;">autoriza</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">192</span><span style="color: #000000;">&#41;</span><br />   <span style="color: #0000ff;">REDEFINE</span> SBUTTON oBtn_6 <span style="color: #0000ff;">ID</span> <span style="color: #000000;">4019</span> <span style="color: #0000ff;">OF</span> oCuadro <span style="color: #0000ff;">PROMPT</span> <span style="color: #ff0000;">"Opciones"</span>  COLORS CLR_BLACK, nRGB<span style="color: #000000;">&#40;</span><span style="color: #000000;">198</span>,  <span style="color: #000000;">8</span>,<span style="color: #000000;">8</span>  <span style="color: #000000;">&#41;</span>, nRGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">147</span>,  <span style="color: #000000;">60</span>,  <span style="color: #000000;">60</span><span style="color: #000000;">&#41;</span> OFFICE <span style="color: #0000ff;">FONT</span> oFont0 <span style="color: #0000ff;">MENU</span> <span style="color: #0000ff;">ACTION</span> MenuPop<span style="color: #000000;">&#40;</span> oBtn_6 <span style="color: #000000;">&#41;</span><br />   <span style="color: #0000ff;">REDEFINE</span> SBUTTON oBtn_7 <span style="color: #0000ff;">ID</span> <span style="color: #000000;">4018</span> <span style="color: #0000ff;">OF</span> oCuadro <span style="color: #0000ff;">PROMPT</span> <span style="color: #ff0000;">"Gastos"</span>    COLORS CLR_BLACK, nRGB<span style="color: #000000;">&#40;</span><span style="color: #000000;">198</span>,  <span style="color: #000000;">8</span>,<span style="color: #000000;">8</span>  <span style="color: #000000;">&#41;</span>, nRGB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">147</span>,  <span style="color: #000000;">60</span>,  <span style="color: #000000;">60</span><span style="color: #000000;">&#41;</span> OFFICE <span style="color: #0000ff;">FONT</span> oFont0 <span style="color: #0000ff;">ACTION</span> oLamcla:<span style="color: #000000;">autoriza</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">194</span><span style="color: #000000;">&#41;</span><br /> </div>[/code:30k0pytr] De antemano gracias. Saludos
sintaxis tsbutton
¿FW ya incluye TSBUTTON por defecto? NO. Esta clase és del Maestro Manuel Mercado. [img:3bqg5a7j]https&#58;//i&#46;imgur&#46;com/SyoRFKB&#46;png[/img:3bqg5a7j] Saludos.
sintaxis tsbutton
karinha, gracias. Sabes en donde la puedo descargar? Saludos
sintaxis tsbutton
[url:411sbhjp]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=6&t=34016&p=201277&hilit=tsbutton#p201277[/url:411sbhjp] [url:411sbhjp]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=4&t=16710&p=86646&hilit=tsbutton+download#p86646[/url:411sbhjp]
sintaxis tsbutton
[code=fw:2eg4z2lu]<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;">"TSButton.ch"</span><br />&nbsp;</div>[/code:2eg4z2lu]
sintaxis tsbutton
[code=fw:23vwac2d]<div class="fw" id="{CB}" style="font-family: monospace;"><br />c:\dlyma\prg\R32_caja.prg<span style="color: #000000;">&#40;</span><span style="color: #000000;">15</span><span style="color: #000000;">&#41;</span> Error F0029 &nbsp;Can<span style="color: #ff0000;">'t open #include file: '</span>TSButton.ch<span style="color: #ff0000;">'<br /></span></div>[/code:23vwac2d] Tienes el archivo de cabecera?
sintaxis tsbutton
[code=fw:3rzyfumq]<div class="fw" id="{CB}" style="font-family: monospace;"><br />* ============================================================================<br />* Commands <span style="color: #00C800;">for</span> Classes TSButton, TSLines TSRadio TSTSay &nbsp;Version <span style="color: #000000;">4.0</span> <span style="color: #000000;">1</span>/Aug/<span style="color: #000000;">2002</span><br />* ============================================================================<br /><br />*=============================================================================<br />* TSButton.ch &nbsp;Version <span style="color: #000000;">4.0</span> <span style="color: #000000;">1</span>/Aug/<span style="color: #000000;">2002</span><br />* Creating Buttons <span style="color: #0000ff;">from</span> resources<br />*=============================================================================<br /><br />#xcommand <span style="color: #0000ff;">REDEFINE</span> SBUTTON <span style="color: #000000;">&#91;</span><oBtn><span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">ID</span> <nId> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <caption: <span style="color: #0000ff;">PROMPT</span>, CAPTION, TITLE> <cPrompt> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <of:<span style="color: #0000ff;">OF</span>, <span style="color: #0000ff;">WINDOW</span>, DIALOG> <oWnd> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <resource: <span style="color: #0000ff;">NAME</span>, <span style="color: #0000ff;">RESNAME</span>, <span style="color: #0000ff;">RESOURCE</span>, RESOURCES> <aResource,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <file: <span style="color: #000000;">FILE</span>, FILENAME, DISK> <aFile,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <action:<span style="color: #0000ff;">ACTION</span>, EXEC, <span style="color: #0000ff;">ON</span> CLICK> <uAction,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <help:<span style="color: #0000ff;">HELP</span>, HELPID, <span style="color: #0000ff;">HELP</span> ID> <nHelpId> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">MESSAGE</span> <cMsg> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">WHEN</span> <uWhen> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">VALID</span> <uValid> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <border: <span style="color: #000000;">BORDER</span>, NOBORDER, NOBOX, LOOK W97, W97, NOBOXTR> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> TOOLTIP <cToolTip> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">FONT</span> <oFont> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lCancel: <span style="color: #000000;">CANCEL</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <color: <span style="color: #0000ff;">COLOR</span>, COLORS> <aColors,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">TEXT</span> <span style="color: #000000;">&#91;</span>POSITION<span style="color: #000000;">&#93;</span> <nCaptPos> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lOpaque: <span style="color: #000000;">BITMAP</span> OPAQUE, OPAQUE> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <shape: <span style="color: #000000;">RECT</span>, <span style="color: #0000ff;">ROUND</span>, ROUNDRECT, BITMAP, XP, OFFICE, CRYSTAL, SUNSET> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">BRUSH</span> <oBrush> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">MENU</span> <span style="color: #000000;">&#91;</span><span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#93;</span> <uMenu,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lAdjust: <span style="color: #0000ff;">ADJUST</span> > <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; => ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <oBtn> := <span style="color: #000000;">&#93;</span> TSButton<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #0000ff;">ReDefine</span><span style="color: #000000;">&#40;</span> <nId>, <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aResource>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aFile>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <cMsg>, <span style="color: #000000;">&#91;</span><span style="color: #000000;">&#123;</span>|This|<uAction><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><nHelpId><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>border<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>, <oWnd>, <<span style="color: #000000;">&#123;</span>uWhen<span style="color: #000000;">&#125;</span>>, <<span style="color: #000000;">&#123;</span>uValid<span style="color: #000000;">&#125;</span>>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<cToolTip>, <cPrompt>, <oFont>, <.lCancel.>, <span style="color: #000000;">&#91;</span><nCaptPos><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aColors>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <.lOpaque.>, <oBrush>, <span style="color: #000000;">&#91;</span> Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>shape<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span><span style="color: #000000;">&#123;</span>|Self|<uMenu><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><.lAdjust.><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br /><br />#xcommand <span style="color: #0000ff;">REDEFINE</span> SBUTTON <span style="color: #000000;">&#91;</span><oBtn><span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">ID</span> <nId> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <caption: <span style="color: #0000ff;">PROMPT</span>, CAPTION, TITLE> <cPrompt> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <of:<span style="color: #0000ff;">OF</span>, <span style="color: #0000ff;">WINDOW</span>, DIALOG> <oWnd> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <resource: <span style="color: #0000ff;">NAME</span>, <span style="color: #0000ff;">RESNAME</span>, <span style="color: #0000ff;">RESOURCE</span>, RESOURCES> <aResource,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <file: <span style="color: #000000;">FILE</span>, FILENAME, DISK> <aFile,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <action:<span style="color: #0000ff;">ACTION</span>, EXEC, <span style="color: #0000ff;">ON</span> CLICK> <uAction,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <help:<span style="color: #0000ff;">HELP</span>, HELPID, <span style="color: #0000ff;">HELP</span> ID> <nHelpId> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">MESSAGE</span> <cMsg> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">WHEN</span> <uWhen> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">VALID</span> <uValid> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <border: <span style="color: #000000;">BORDER</span>, NOBORDER, NOBOX, LOOK W97, W97, NOBOXTR> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> TOOLTIP <cToolTip> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">FONT</span> <oFont> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lCancel: <span style="color: #000000;">CANCEL</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <color: <span style="color: #0000ff;">COLOR</span>, COLORS> <aColors,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">TEXT</span> <span style="color: #000000;">&#91;</span>POSITION<span style="color: #000000;">&#93;</span> <nCaptPos> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lOpaque: <span style="color: #000000;">BITMAP</span> OPAQUE, OPAQUE> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SHAPE <cShape> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">BRUSH</span> <oBrush> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">MENU</span> <span style="color: #000000;">&#91;</span><span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#93;</span> <uMenu,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lAdjust: <span style="color: #0000ff;">ADJUST</span> > <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; => ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <oBtn> := <span style="color: #000000;">&#93;</span> TSButton<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #0000ff;">ReDefine</span><span style="color: #000000;">&#40;</span> <nId>, <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aResource>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aFile>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <cMsg>, <span style="color: #000000;">&#91;</span><span style="color: #000000;">&#123;</span>|This|<uAction><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><nHelpId><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>border<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>, <oWnd>, <<span style="color: #000000;">&#123;</span>uWhen<span style="color: #000000;">&#125;</span>>, <<span style="color: #000000;">&#123;</span>uValid<span style="color: #000000;">&#125;</span>>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<cToolTip>, <cPrompt>, <oFont>, <.lCancel.>, <span style="color: #000000;">&#91;</span><nCaptPos><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aColors>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <.lOpaque.>, <oBrush>, Upper<span style="color: #000000;">&#40;</span><cShape><span style="color: #000000;">&#41;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span><span style="color: #000000;">&#123;</span>|Self|<uMenu><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><.lAdjust.><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br /><br />*=============================================================================<br />* TSButton.ch &nbsp;Version <span style="color: #000000;">4.0</span> <span style="color: #000000;">1</span>/Aug/<span style="color: #000000;">2002</span><br />* Creating Buttons <span style="color: #0000ff;">from</span> code<br />*=============================================================================<br /><br />#xcommand @ <nRow>, <nCol> SBUTTON <span style="color: #000000;">&#91;</span><oBtn><span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <caption: <span style="color: #0000ff;">PROMPT</span>, CAPTION, TITLE> <cPrompt> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <of:<span style="color: #0000ff;">OF</span>, <span style="color: #0000ff;">WINDOW</span>, DIALOG> <oWnd> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <resource: <span style="color: #0000ff;">NAME</span>, <span style="color: #0000ff;">RESNAME</span>, RESOURCE> <aResource,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <file: <span style="color: #000000;">FILE</span>, FILENAME, DISK> <aFile,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">SIZE</span> <aSize,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lPixel: <span style="color: #0000ff;">PIXEL</span>, PIXELS> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">ACTION</span> <uAction,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <default: <span style="color: #000000;">DEFAULT</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">FONT</span> <oFont> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">MESSAGE</span> <cMsg> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> TOOLTIP <cToolTip> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <help:<span style="color: #0000ff;">HELP</span>, HELPID, <span style="color: #0000ff;">HELP</span> ID> <nHelpId> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">WHEN</span> <uWhen> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">VALID</span> <uValid> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <border: <span style="color: #000000;">BORDER</span>, NOBORDER, NOBOX, LOOK W97, W97, NOBOXTR> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lCancel: <span style="color: #000000;">CANCEL</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lAdjust: <span style="color: #0000ff;">ADJUST</span> > <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <color: <span style="color: #0000ff;">COLOR</span>, COLORS> <aColors,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">TEXT</span> <span style="color: #000000;">&#91;</span>POSITION<span style="color: #000000;">&#93;</span> <nCaptPos> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lOpaque: <span style="color: #000000;">BITMAP</span> OPAQUE, OPAQUE> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <shape: <span style="color: #000000;">RECT</span>, <span style="color: #0000ff;">ROUND</span>, ROUNDRECT, BITMAP, OFFICE, XP, CRYSTAL, SUNSET> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">BRUSH</span> <oBrush> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">MENU</span> <span style="color: #000000;">&#91;</span><span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#93;</span> <uMenu,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; => ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <oBtn> := <span style="color: #000000;">&#93;</span> TSButton<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span> <nRow>, <nCol>, <span style="color: #000000;">&#91;</span><cPrompt><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span><oWnd><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aResource>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span>\<span style="color: #000000;">&#123;</span><aFile>\<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span>\<span style="color: #000000;">&#123;</span><aSize>\<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span><.lPixel.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><span style="color: #000000;">&#123;</span>|This|<uAction><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><<span style="color: #000000;">&#123;</span>uWhen<span style="color: #000000;">&#125;</span>><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><<span style="color: #000000;">&#123;</span>uValid<span style="color: #000000;">&#125;</span>><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span><.<span style="color: #00C800;">default</span>.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><oFont><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><cMsg><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><cToolTip><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><nHelpId><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span>Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>border<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><.lCancel.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><.lAdjust.><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span>\<span style="color: #000000;">&#123;</span><aColors>\<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><nCaptPos><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><.lOpaque.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><oBrush><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>shape<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><span style="color: #000000;">&#123;</span>|Self|<uMenu><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br /><br />#xcommand @ <nRow>, <nCol> SBUTTON <span style="color: #000000;">&#91;</span><oBtn><span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <caption: <span style="color: #0000ff;">PROMPT</span>, CAPTION, TITLE> <cPrompt> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <of:<span style="color: #0000ff;">OF</span>, <span style="color: #0000ff;">WINDOW</span>, DIALOG> <oWnd> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <resource: <span style="color: #0000ff;">NAME</span>, <span style="color: #0000ff;">RESNAME</span>, RESOURCE> <aResource,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <file: <span style="color: #000000;">FILE</span>, FILENAME, DISK> <aFile,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">SIZE</span> <aSize,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lPixel: <span style="color: #0000ff;">PIXEL</span>, PIXELS> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">ACTION</span> <uAction,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <default: <span style="color: #000000;">DEFAULT</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">FONT</span> <oFont> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">MESSAGE</span> <cMsg> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> TOOLTIP <cToolTip> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <help:<span style="color: #0000ff;">HELP</span>, HELPID, <span style="color: #0000ff;">HELP</span> ID> <nHelpId> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">WHEN</span> <uWhen> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">VALID</span> <uValid> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <border: <span style="color: #000000;">BORDER</span>, NOBORDER, NOBOX, LOOK W97, W97, NOBOXTR> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lCancel: <span style="color: #000000;">CANCEL</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lAdjust: <span style="color: #0000ff;">ADJUST</span> > <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <color: <span style="color: #0000ff;">COLOR</span>, COLORS> <aColors,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">TEXT</span> <span style="color: #000000;">&#91;</span>POSITION<span style="color: #000000;">&#93;</span> <nCaptPos> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lOpaque: <span style="color: #000000;">BITMAP</span> OPAQUE, OPAQUE> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SHAPE <cShape> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">BRUSH</span> <oBrush> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">MENU</span> <span style="color: #000000;">&#91;</span><span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#93;</span> <uMenu,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; => ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <oBtn> := <span style="color: #000000;">&#93;</span> TSButton<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span> <nRow>, <nCol>, <span style="color: #000000;">&#91;</span><cPrompt><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span><oWnd><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aResource>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span>\<span style="color: #000000;">&#123;</span><aFile>\<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span>\<span style="color: #000000;">&#123;</span><aSize>\<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span><.lPixel.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><span style="color: #000000;">&#123;</span>|This|<uAction><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><<span style="color: #000000;">&#123;</span>uWhen<span style="color: #000000;">&#125;</span>><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><<span style="color: #000000;">&#123;</span>uValid<span style="color: #000000;">&#125;</span>><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span><.<span style="color: #00C800;">default</span>.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><oFont><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><cMsg><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><cToolTip><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><nHelpId><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span>Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>border<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><.lCancel.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><.lAdjust.><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span>\<span style="color: #000000;">&#123;</span><aColors>\<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><nCaptPos><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><.lOpaque.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><oBrush><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> Upper<span style="color: #000000;">&#40;</span><cShape><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><span style="color: #000000;">&#123;</span>|Self|<uMenu><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br /><br />*=============================================================================<br />* TSButton.ch &nbsp;Version <span style="color: #000000;">4.0</span> <span style="color: #000000;">1</span>/Aug/<span style="color: #000000;">2002</span><br />* Defining Buttons <span style="color: #00C800;">for</span> <span style="color: #0000ff;">Buttonbar</span><br />*=============================================================================<br /><br />#xcommand <span style="color: #0000ff;">DEFINE</span> SBUTTON <span style="color: #000000;">&#91;</span> <oBtn> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <bar: <span style="color: #0000ff;">OF</span>, <span style="color: #0000ff;">BUTTONBAR</span> > <oBar> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">SIZE</span> <aSize,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <caption: <span style="color: #0000ff;">PROMPT</span>, CAPTION, TITLE> <cPrompt> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <resource: <span style="color: #0000ff;">NAME</span>, <span style="color: #0000ff;">RESNAME</span>, <span style="color: #0000ff;">RESOURCE</span>, RESOURCES> <aResource,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <file: <span style="color: #000000;">FILE</span>, FILENAME, FILENAMES, DISK> <aFile,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">ACTION</span> &nbsp;<uAction,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">WHEN</span> <uWhen> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">FONT</span> <oFont> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">MESSAGE</span> <cMsg> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> TOOLTIP <cToolTip> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <help:<span style="color: #0000ff;">HELP</span>, HELPID, <span style="color: #0000ff;">HELP</span> ID> <nHelpId> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #000000;">&#91;</span>ANIMATED<span style="color: #000000;">&#93;</span> <border: <span style="color: #000000;">BORDER</span>, NOBORDER, NOBOX, LOOK W97, W97, NOBOXTR> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lCancel: <span style="color: #000000;">CANCEL</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lAdjust: <span style="color: #0000ff;">ADJUST</span> > <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <color: <span style="color: #0000ff;">COLOR</span>, COLORS> <aColors,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">TEXT</span> <span style="color: #000000;">&#91;</span>POSITION<span style="color: #000000;">&#93;</span> <nCaptPos> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lOpaque: <span style="color: #000000;">BITMAP</span> OPAQUE, OPAQUE> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <shape: <span style="color: #000000;">RECT</span>, <span style="color: #0000ff;">ROUND</span>, ROUNDRECT, BITMAP> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">BRUSH</span> <oBrush> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">MENU</span> <span style="color: #000000;">&#91;</span><span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#93;</span> <uMenu,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <group: <span style="color: #000000;">GROUP</span> > <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #00C800;">AT</span> <nPos> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">ON</span> DROP <bDrop> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; => ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <oBtn> := <span style="color: #000000;">&#93;</span> TSButton<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #000000;">NewBar</span><span style="color: #000000;">&#40;</span> <oBar>, <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aSize>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><cPrompt><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aResource>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aFile>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><span style="color: #000000;">&#123;</span>|This|<uAction><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span><<span style="color: #000000;">&#123;</span>uWhen<span style="color: #000000;">&#125;</span>><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><oFont><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><cMsg><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><cToolTip><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><nHelpId><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>border<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><.lCancel.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><.lAdjust.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aColors>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span><nCaptPos><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><.lOpaque.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span> Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>shape<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><oBrush><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span><span style="color: #000000;">&#123;</span>|This|<uMenu><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><.group.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><nPos><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span>\<span style="color: #000000;">&#123;</span>||<bDrop>\<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br /><br />*=============================================================================<br />* TSButton.ch &nbsp;Version <span style="color: #000000;">4.0</span> <span style="color: #000000;">1</span>/Aug/<span style="color: #000000;">2002</span><br />* Defining the <span style="color: #0000ff;">Buttonbar</span><br />*=============================================================================<br /><br />#xcommand <span style="color: #0000ff;">DEFINE</span> SBUTTONBAR <span style="color: #000000;">&#91;</span> <oBar> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <size: <span style="color: #0000ff;">SIZE</span>, BUTTONSIZE, SIZEBUTTON > <nWidth>, <nHeight> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <_3d: _3D, 3D, 3DLOOK, _3DLOOK> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <mode: <span style="color: #000000;">TOP</span>, <span style="color: #0000ff;">LEFT</span>, <span style="color: #0000ff;">RIGHT</span>, BOTTOM, FLOAT> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <wnd: <span style="color: #0000ff;">OF</span>, <span style="color: #0000ff;">WINDOW</span>, DIALOG> <oWnd> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">CURSOR</span> <oCursor> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lLabels: <span style="color: #000000;">LABELS</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <cShape: <span style="color: #000000;">OFFICE</span>, CRYSTAL> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">FONT</span> <oFont> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <color: <span style="color: #0000ff;">COLOR</span>, COLORS> <nClrFore> <span style="color: #000000;">&#91;</span>,<nClrBack><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">BRUSH</span> <oBrush> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; => ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <oBar> := <span style="color: #000000;">&#93;</span> TSBar<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span> <oWnd>, <nWidth>, <nHeight>, <._3d.>, <span style="color: #000000;">&#91;</span> Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>mode<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>, <oCursor>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<oFont>, <.lLabels.>, <nClrFore>, <nClrBack>, <oBrush>, <span style="color: #000000;">&#91;</span> Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>cShape<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br /><br />#xcommand @ <nRow>, <nCol> SBUTTONBAR <span style="color: #000000;">&#91;</span> <oBar> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">SIZE</span> <nWidth>, <nHeight> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> BUTTONSIZE <nBtnWidth>, <nBtnHeight> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <_3d: 3D, 3DLOOK, _3DLOOK> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <mode: <span style="color: #000000;">TOP</span>, <span style="color: #0000ff;">LEFT</span>, <span style="color: #0000ff;">RIGHT</span>, BOTTOM, FLOAT> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <wnd: <span style="color: #0000ff;">OF</span>, <span style="color: #0000ff;">WINDOW</span>, DIALOG> <oWnd> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">CURSOR</span> <oCursor> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lLabels: <span style="color: #000000;">LABELS</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <cShape: <span style="color: #000000;">OFFICE</span>, CRYSTAL> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">FONT</span> <oFont> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <color: <span style="color: #0000ff;">COLOR</span>, COLORS> <nClrFore> <span style="color: #000000;">&#91;</span>,<nClrBack><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">BRUSH</span> <oBrush> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; => ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <oBar> := <span style="color: #000000;">&#93;</span> TBar<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #000000;">NewAt</span><span style="color: #000000;">&#40;</span> <nRow>, <nCol>, <nWidth>, <nHeight>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<nBtnWidth>, <nBtnHeight>, <oWnd>, <._3d.>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>mode<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>, <oCursor>, &nbsp;<oFont>, <.lLabels.>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<nClrFore>, <nClrBack>, <oBrush>, <.lLabels.>, <span style="color: #000000;">&#91;</span> Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>cShape<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br /><br />*=============================================================================<br />* TSButton.ch &nbsp;Version <span style="color: #000000;">4.0</span> <span style="color: #000000;">1</span>/Aug/<span style="color: #000000;">2002</span><br />* Creating Series or Matrixes <span style="color: #0000ff;">of</span> buttons<br />* <aBtn> must be an array with n elements that indicates the number <span style="color: #0000ff;">of</span> buttons<br />* <span style="color: #00C800;">if</span> you want a mattrix <span style="color: #0000ff;">of</span> buttons, the array must be multidimentional<br />* <aAction> must be a unidimentional array with the total nuber <span style="color: #0000ff;">of</span> elements<br />* <aPrompt> must be a unidimentional array with the total nuber <span style="color: #0000ff;">of</span> elements<br />*=============================================================================<br /><br />#xcommand @ <nRow>, <nCol> &nbsp;SBGROUP <aBtn> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <caption: <span style="color: #0000ff;">PROMPT</span>, CAPTION, TITLE> <aPrompt> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <of:<span style="color: #0000ff;">OF</span>, <span style="color: #0000ff;">WINDOW</span>, DIALOG> <oWnd> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <resource: <span style="color: #0000ff;">NAME</span>, <span style="color: #0000ff;">RESNAME</span>, RESOURCE> <aResource,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <file: <span style="color: #000000;">FILE</span>, FILENAME, DISK> <aFile,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">SIZE</span> <aSize,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> SPACE <nSpace> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lPixel: <span style="color: #0000ff;">PIXEL</span>, PIXELS> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">ACTION</span> <aAction> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">FONT</span> <oFont> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">MESSAGE</span> <cMsg> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> TOOLTIP <cToolTip> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <help:<span style="color: #0000ff;">HELP</span>, HELPID, <span style="color: #0000ff;">HELP</span> ID> <nHelpId> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">WHEN</span> <uWhen> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">VALID</span> <uValid> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <border: <span style="color: #000000;">BORDER</span>, NOBORDER, NOBOX, LOOK W97, W97, NOBOXTR> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lCancel: <span style="color: #000000;">CANCEL</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lAdjust: <span style="color: #0000ff;">ADJUST</span> > <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <color: <span style="color: #0000ff;">COLOR</span>, COLORS> <aColors,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">TEXT</span> <span style="color: #000000;">&#91;</span>POSITION<span style="color: #000000;">&#93;</span> <nCaptPos> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lOpaque: <span style="color: #000000;">BITMAP</span> OPAQUE, OPAQUE> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <shape: <span style="color: #000000;">RECT</span>, <span style="color: #0000ff;">ROUND</span>, ROUNDRECT, SHAPE, BITMAP, OFFICE, XP, CRYSTAL, SUNSET> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">BRUSH</span> <oBrush> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">MENU</span> <span style="color: #000000;">&#91;</span><span style="color: #0000ff;">ACTION</span><span style="color: #000000;">&#93;</span> <uMenu,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; => ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TSButton<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #000000;">NewGroup</span><span style="color: #000000;">&#40;</span> <aBtn>, <nRow>, <nCol>, <span style="color: #000000;">&#91;</span><aPrompt><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><oWnd><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aResource>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aFile>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aSize>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><.lPixel.><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span><aAction><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><<span style="color: #000000;">&#123;</span>uWhen<span style="color: #000000;">&#125;</span>><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><<span style="color: #000000;">&#123;</span>uValid<span style="color: #000000;">&#125;</span>><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><nSpace><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><oFont><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span><cMsg><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><cToolTip><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><nHelpId><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span> Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>border<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span><.lCancel.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><.lAdjust.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aColors>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><nCaptPos><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span><.lOpaque.><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><oBrush><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span>Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>shape<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><span style="color: #000000;">&#123;</span>|Self|<uMenu><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br /><br /><span style="color: #B900B9;">// caption position</span><br /><span style="color: #00D7D7;">#define</span> ON_TOP &nbsp; &nbsp; <span style="color: #000000;">1</span><br /><span style="color: #00D7D7;">#define</span> ON_LEFT &nbsp; &nbsp;<span style="color: #000000;">2</span><br /><span style="color: #00D7D7;">#define</span> ON_BOTTOM &nbsp;<span style="color: #000000;">3</span><br /><span style="color: #00D7D7;">#define</span> ON_RIGHT &nbsp; <span style="color: #000000;">4</span><br /><span style="color: #00D7D7;">#define</span> ON_CENTER &nbsp;<span style="color: #000000;">5</span><br /><span style="color: #00D7D7;">#define</span> ON_TOP_OUT <span style="color: #000000;">6</span><br /><span style="color: #00D7D7;">#define</span> ON_BOTTOM_OUT <span style="color: #000000;">7</span><br /><br />*=============================================================================<br />* TSButton.ch &nbsp;Version <span style="color: #000000;">4.0</span> <span style="color: #000000;">1</span>/Aug/<span style="color: #000000;">2002</span><br />* <span style="color: #00C800;">Static</span> Lines and Boxes <span style="color: #000000;">&#40;</span>TSLines Now included in SButton.lib<span style="color: #000000;">&#41;</span><br />*=============================================================================<br /><br />*=============================================================================<br />* TSButton.ch &nbsp;Version <span style="color: #000000;">4.0</span> <span style="color: #000000;">1</span>/Aug/<span style="color: #000000;">2002</span><br />* <span style="color: #00C800;">Static</span> Lines and Boxes <span style="color: #0000ff;">from</span> code<br />*=============================================================================<br /><br />#xcommand @ <nTop>, <nLeft> <span style="color: #000000;">&#91;</span><span style="color: #00C800;">STATIC</span> <oLine><span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <cType: <span style="color: #000000;">HORZ</span> LINE, HLINE, VERT LINE, VLINE, WHITE BOX, WBOX, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GRAY BOX, GBOX, BLACK BOX, BBOX> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">SIZE</span> <nWidth> <span style="color: #000000;">&#91;</span>, <nHeight > <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">OF</span> <oWnd> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <Colors: <span style="color: #0000ff;">COLOR</span>, COLORS> <nClrLite> <span style="color: #000000;">&#91;</span>,<nClrDark> <span style="color: #000000;">&#91;</span>,<nClrText> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <lPixel: <span style="color: #0000ff;">PIXEL</span>, PIXELS> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <lUpdate: <span style="color: #000000;">UPDATE</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <lRounded: <span style="color: #000000;">ROUNDED</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <label:<span style="color: #000000;">LABEL</span>, <span style="color: #0000ff;">TEXT</span>, PROMPT> <cLabel> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">FONT</span> <oFont> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> ALIGN <nAlign> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <lDesign: <span style="color: #000000;">DESIGN</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp;=> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <oLine> := <span style="color: #000000;">&#93;</span> TSLines<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span> <nTop>, <nLeft>, <nWidth>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<nHeight>, Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>cType<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span>, <oWnd>, <nClrLite>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<nClrDark>, <nClrText>, <.lPixel.>, <.lUpdate.>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<.lRounded.>, <cLabel>, <oFont>, <nAlign>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<.lDesign.> <span style="color: #000000;">&#41;</span><br /><br />*=============================================================================<br />* TSButton.ch &nbsp;Version <span style="color: #000000;">4.0</span> <span style="color: #000000;">1</span>/Aug/<span style="color: #000000;">2002</span><br />* <span style="color: #00C800;">Static</span> Lines and Boxes <span style="color: #0000ff;">from</span> resources<br />*=============================================================================<br /><br />#xcommand <span style="color: #0000ff;">REDEFINE</span> <span style="color: #000000;">&#91;</span><span style="color: #00C800;">STATIC</span> <oLine> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <cType: <span style="color: #000000;">HORZ</span> LINE, HLINE, VERT LINE, VLINE, WHITE BOX, WBOX, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GRAY BOX, GBOX, BLACK BOX, BBOX> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">ID</span> <nId> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">OF</span> <oWnd> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <Colors: <span style="color: #0000ff;">COLOR</span>, COLORS> <nClrLite> <span style="color: #000000;">&#91;</span>,<nClrDark> <span style="color: #000000;">&#91;</span>,<nClrText> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <lUpdate: <span style="color: #000000;">UPDATE</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <lRounded: <span style="color: #000000;">ROUNDED</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <label:<span style="color: #000000;">LABEL</span>, <span style="color: #0000ff;">TEXT</span>, PROMPT> <cLabel> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">FONT</span> <oFont> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> ALIGN <nAlign> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <lDesign: <span style="color: #000000;">DESIGN</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp;=> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <oLine> := <span style="color: #000000;">&#93;</span> TSLines<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #0000ff;">ReDefine</span><span style="color: #000000;">&#40;</span> Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>cType<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span>, <nId>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<oWnd>, <nClrLite>, <nClrDark>, <nClrText>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<.lUpdate.>, <.lRounded.>, <cLabel>, <oFont>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<nAlign>, <.lDesign.> <span style="color: #000000;">&#41;</span><br /><br />*=============================================================================<br />* TSButton.ch &nbsp;Version <span style="color: #000000;">4.0</span> <span style="color: #000000;">1</span>/Aug/<span style="color: #000000;">2002</span><br />* TSTSay <span style="color: #0000ff;">from</span> code<br />*=============================================================================<br /><br />#xcommand @ <nRow>, <nCol> STSAY <span style="color: #000000;">&#91;</span> <oSay> <label: <span style="color: #0000ff;">PROMPT</span>,<span style="color: #0000ff;">VAR</span> > <span style="color: #000000;">&#93;</span> <cText> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">PICTURE</span> <cPict> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <dlg: <span style="color: #0000ff;">OF</span>,<span style="color: #0000ff;">WINDOW</span>,<span style="color: #0000ff;">DIALOG</span> > <oWnd> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">FONT</span> <oFont> <span style="color: #000000;">&#93;</span> &nbsp;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lCenter: <span style="color: #0000ff;">CENTERED</span>, <span style="color: #0000ff;">CENTER</span> > <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lRight: &nbsp;<span style="color: #0000ff;">RIGHT</span> > &nbsp; &nbsp;<span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lBorder: <span style="color: #000000;">BORDER</span> > &nbsp; <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lPixel: <span style="color: #0000ff;">PIXEL</span>, PIXELS > <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <color: <span style="color: #0000ff;">COLOR</span>, COLORS> <aColors,...> <span style="color: #000000;">&#93;</span> ; <span style="color: #B900B9;">// nClrText, nClrLight, nClrDark</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">SIZE</span> <nWidth>, <nHeight> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <design: <span style="color: #000000;">DESIGN</span> > &nbsp;<span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <update: <span style="color: #0000ff;">UPDATE</span> > &nbsp;<span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lShaded: <span style="color: #000000;">SHADED</span>, SHADOW > <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <cRaised: <span style="color: #000000;">RAISED</span>, BASS > <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> BLINK <aBlink,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">WHEN</span> <uWhen> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; => ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <oSay> := <span style="color: #000000;">&#93;</span> TSTSay<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span> <nRow>, <nCol>, <<span style="color: #000000;">&#123;</span>cText<span style="color: #000000;">&#125;</span>>, <span style="color: #000000;">&#91;</span><oWnd><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span><cPict><span style="color: #000000;">&#93;</span>, <oFont>, <.lCenter.>, <.lRight.>, <.lBorder.>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <.lPixel.>, <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aColors>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <nWidth>, <nHeight>, <.design.>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <.<span style="color: #0000ff;">update</span>.>, <.lShaded.>, <span style="color: #000000;">&#91;</span>Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>cRaised<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aBlink>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><<span style="color: #000000;">&#123;</span>uWhen<span style="color: #000000;">&#125;</span>><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br /><br />*=============================================================================<br />* TSButton.ch &nbsp;Version <span style="color: #000000;">4.0</span> <span style="color: #000000;">1</span>/Aug/<span style="color: #000000;">2002</span><br />* TSTSay <span style="color: #0000ff;">from</span> resources<br />*=============================================================================<br /><br />#xcommand <span style="color: #0000ff;">REDEFINE</span> STSAY <span style="color: #000000;">&#91;</span><oSay><span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <label: <span style="color: #0000ff;">PROMPT</span>, VAR> <cText> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">PICTURE</span> <cPict> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">ID</span> <nId> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <dlg: <span style="color: #0000ff;">OF</span>,<span style="color: #0000ff;">WINDOW</span>,<span style="color: #0000ff;">DIALOG</span> > <oWnd> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <color: <span style="color: #0000ff;">COLOR</span>, COLORS> <aColors,...> <span style="color: #000000;">&#93;</span> ; <span style="color: #B900B9;">// nClrText, nClrLight, nClrDark</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <update: <span style="color: #0000ff;">UPDATE</span> > <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">FONT</span> <oFont> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lShaded: <span style="color: #000000;">SHADED</span>, SHADOW > <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <cRaised: <span style="color: #000000;">RAISED</span>, BASS > <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> BLINK <aBlink,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">WHEN</span> <uWhen> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp;=> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <oSay> := <span style="color: #000000;">&#93;</span> TSTSay<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #0000ff;">ReDefine</span><span style="color: #000000;">&#40;</span> <nId>, <<span style="color: #000000;">&#123;</span>cText<span style="color: #000000;">&#125;</span>>, <oWnd>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <cPict>, <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aColors>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <.<span style="color: #0000ff;">update</span>.>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <oFont>, <.lShaded.>, <span style="color: #000000;">&#91;</span>Upper<span style="color: #000000;">&#40;</span><<span style="color: #000000;">&#40;</span>cRaised<span style="color: #000000;">&#41;</span>><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aBlink>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span><<span style="color: #000000;">&#123;</span>uWhen<span style="color: #000000;">&#125;</span>><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br /><br />*=============================================================================<br />* TSButton.ch &nbsp;Version <span style="color: #000000;">4.0</span> <span style="color: #000000;">1</span>/Aug/<span style="color: #000000;">2002</span><br />* TSRadio <span style="color: #0000ff;">from</span> code<br />*=============================================================================<br /><br />#xcommand @ <nRow>, <nCol> SRADIO <span style="color: #000000;">&#91;</span> <oRad> <span style="color: #0000ff;">VAR</span> <span style="color: #000000;">&#93;</span> <nVar> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <prm: <span style="color: #0000ff;">PROMPT</span>, <span style="color: #0000ff;">PROMPTS</span>, CAPTION, ITEMS> <cItems,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <of: <span style="color: #0000ff;">OF</span>, <span style="color: #0000ff;">WINDOW</span>, DIALOG> <oWnd> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <help:<span style="color: #000000;">HELPID</span>, <span style="color: #0000ff;">HELP</span> ID> <nHelpId,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <change: <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">CLICK</span>, <span style="color: #0000ff;">ON</span> CHANGE> <uChange> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <color: <span style="color: #0000ff;">COLOR</span>, COLORS> <aColors,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">MESSAGE</span> <cMsg> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> TOOLTIP <cToolTip> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <update: <span style="color: #000000;">UPDATE</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">WHEN</span> <uWhen> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">SIZE</span> <nWidth>, <nHeight> <span style="color: #000000;">&#93;</span> ; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #B900B9;">// WBOX &nbsp;= white box</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">VALID</span> <uValid> <span style="color: #000000;">&#93;</span> ; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #B900B9;">// WRBOX = white rounded box</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lDesign: <span style="color: #000000;">DESIGN</span>> <span style="color: #000000;">&#93;</span> ; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #B900B9;">// GBOX &nbsp;= gray box</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <cLook3d: <span style="color: #000000;">RAISED</span>, BASS> <span style="color: #000000;">&#93;</span> ; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #B900B9;">// GRBOX = gray rounded box</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <lPixel: <span style="color: #0000ff;">PIXEL</span>, PIXELS> <span style="color: #000000;">&#93;</span> ; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #B900B9;">// BBOX &nbsp;= black box</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <Fuente: <span style="color: #0000ff;">FONT</span>, FONTS> <aFonts,...> <span style="color: #000000;">&#93;</span> ; <span style="color: #B900B9;">// BRBOX = black rounded box</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <cButton: <span style="color: #000000;">THIN</span>, GROSS, POINTER, CHECK, CIRCLE> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <cBox: <span style="color: #000000;">WBOX</span>, WRBOX, GBOX, GRBOX, BBOX, BRBOX> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> LABEL <cLabel> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> ALIGN <nAlign> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <bitm: <span style="color: #000000;">BITMAP</span>, BITMAPS> <aBitMaps,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp;=> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <oRad> := <span style="color: #000000;">&#93;</span> TSRadio<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span> <nRow>, <nCol>, <span style="color: #000000;">&#91;</span>\<span style="color: #000000;">&#123;</span><cItems>\<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;bSETGET<span style="color: #000000;">&#40;</span><nVar><span style="color: #000000;">&#41;</span>, <oWnd>, <span style="color: #000000;">&#123;</span><nHelpId><span style="color: #000000;">&#125;</span>, <<span style="color: #000000;">&#123;</span>uChange<span style="color: #000000;">&#125;</span>>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aColors>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span>, <cMsg>, <.<span style="color: #0000ff;">update</span>.>, <<span style="color: #000000;">&#123;</span>uWhen<span style="color: #000000;">&#125;</span>>, <nWidth>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<nHeight>, <<span style="color: #000000;">&#123;</span>uValid<span style="color: #000000;">&#125;</span>>, <.lDesign.>, <span style="color: #000000;">&#91;</span>Upper<span style="color: #000000;">&#40;</span> <<span style="color: #000000;">&#40;</span>cLook3d<span style="color: #000000;">&#41;</span>> <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<.lPixel.>, <span style="color: #000000;">&#91;</span>\<span style="color: #000000;">&#123;</span><aFonts>\<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <span style="color: #000000;">&#91;</span>Upper<span style="color: #000000;">&#40;</span> <<span style="color: #000000;">&#40;</span>cButton<span style="color: #000000;">&#41;</span>> <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span>Upper<span style="color: #000000;">&#40;</span> <<span style="color: #000000;">&#40;</span>cBox<span style="color: #000000;">&#41;</span>> <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>, <cLabel>, <nAlign>, <cToolTip>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aBitMaps>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br /><br />*=============================================================================<br />* TSButton.ch &nbsp;Version <span style="color: #000000;">4.0</span> <span style="color: #000000;">1</span>/Aug/<span style="color: #000000;">2002</span><br />* TSRadio <span style="color: #0000ff;">from</span> resources<br />*=============================================================================<br /><br />#xcommand <span style="color: #0000ff;">REDEFINE</span> SRADIO <span style="color: #000000;">&#91;</span> <oRad> <span style="color: #0000ff;">VAR</span> <span style="color: #000000;">&#93;</span> <nVar> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <prm: <span style="color: #0000ff;">PROMPT</span>, <span style="color: #0000ff;">PROMPTS</span>, CAPTION, ITEMS> <cItems,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">ID</span> <nId,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <of: <span style="color: #0000ff;">OF</span>, <span style="color: #0000ff;">WINDOW</span>, DIALOG> <oWnd> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <help:<span style="color: #000000;">HELPID</span>, <span style="color: #0000ff;">HELP</span> ID> <nHelpId,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <change: <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">CHANGE</span>, <span style="color: #0000ff;">ON</span> CLICK> <uChange> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <color: <span style="color: #0000ff;">COLOR</span>, COLORS> <aColors,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">MESSAGE</span> <cMsg> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> TOOLTIP <cToolTip> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <update: <span style="color: #000000;">UPDATE</span>> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">WHEN</span> <uWhen> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">VALID</span> <uValid> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <cLook3d: <span style="color: #000000;">RAISED</span>, BASS> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <Font: <span style="color: #0000ff;">FONT</span>, FONTS> <aFonts,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <cButton: <span style="color: #000000;">THIN</span>, GROSS, POINTER, CHECK, CIRCLE> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <cBox: <span style="color: #000000;">WBOX</span>, WRBOX, GBOX, GRBOX, BBOX, BRBOX> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <Label: <span style="color: #000000;">LABEL</span>, BOX LABEL> <cLabel> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> ALIGN <nAlign> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> <bitm: <span style="color: #000000;">BITMAP</span>, BITMAPS> <aBitMaps,...> <span style="color: #000000;">&#93;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp;=> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000;">&#91;</span> <oRad> := <span style="color: #000000;">&#93;</span> TSRadio<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #0000ff;">Redefine</span><span style="color: #000000;">&#40;</span> <nId>, bSETGET<span style="color: #000000;">&#40;</span><nVar><span style="color: #000000;">&#41;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span>\<span style="color: #000000;">&#123;</span><cItems>\<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <oWnd>, <span style="color: #000000;">&#91;</span><span style="color: #000000;">&#123;</span><nHelpId><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <<span style="color: #000000;">&#123;</span>uChange<span style="color: #000000;">&#125;</span>>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span>\<span style="color: #000000;">&#123;</span><aColors>\<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#93;</span>, <cMsg>, <.<span style="color: #0000ff;">update</span>.>, <<span style="color: #000000;">&#123;</span>uWhen<span style="color: #000000;">&#125;</span>>, <<span style="color: #000000;">&#123;</span>uValid<span style="color: #000000;">&#125;</span>>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span>Upper<span style="color: #000000;">&#40;</span> <<span style="color: #000000;">&#40;</span>cLook3d<span style="color: #000000;">&#41;</span>> <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>, \<span style="color: #000000;">&#123;</span><aFonts>\<span style="color: #000000;">&#125;</span>, <span style="color: #000000;">&#91;</span>Upper<span style="color: #000000;">&#40;</span> <<span style="color: #000000;">&#40;</span>cButton<span style="color: #000000;">&#41;</span>> <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span>Upper<span style="color: #000000;">&#40;</span> <<span style="color: #000000;">&#40;</span>cBox<span style="color: #000000;">&#41;</span>> <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span>, <cLabel>, <nAlign>, <cToolTip>, ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#91;</span> \<span style="color: #000000;">&#123;</span><aBitMaps>\<span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br /><br /><span style="color: #B900B9;">// alignment constants</span><br />#ifndef DT_LEFT<br />&nbsp; &nbsp;<span style="color: #00D7D7;">#define</span> DT_LEFT &nbsp; &nbsp;<span style="color: #000000;">0</span><br />&nbsp; &nbsp;<span style="color: #00D7D7;">#define</span> DT_CENTER &nbsp;<span style="color: #000000;">1</span><br />&nbsp; &nbsp;<span style="color: #00D7D7;">#define</span> DT_RIGHT &nbsp; <span style="color: #000000;">2</span><br />#endif<br /><br /><br /><br />&nbsp;</div>[/code:3rzyfumq]
sintaxis tsbutton
Armando muchas gracias. Pero ahora me sale este error <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> [code=fw:sud5vhlp]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Turbo Incremental Link <span style="color: #000000;">6.80</span> Copyright <span style="color: #000000;">&#40;</span>c<span style="color: #000000;">&#41;</span> <span style="color: #000000;">1997</span><span style="color: #000000;">-2017</span> Embarcadero Technologies, Inc.<br />Error: <span style="color: #000000;">Unresolved</span> external <span style="color: #ff0000;">'_HB_FUN_TSBUTTON'</span> referenced <span style="color: #0000ff;">from</span> C:\FIVEDIT\R32_CAJA.OBJ<br />Error: <span style="color: #000000;">Unable</span> <span style="color: #0000ff;">to</span> perform link<br />Link Error <br />&nbsp;</div>[/code:sud5vhlp] Obviamente es por que no tengo incluidos los prg de la clase tsbutton, pero si no estoy mal y me gustaria que me sacaran de la duda, ¿FW ya incluye TSBUTTON por defecto? Saludos
sintaxis tsbutton
[quote="leandro":8r2oqnvl]karinha, gracias. Sabes en donde la puedo descargar? Saludos[/quote:8r2oqnvl] Aqui. [url:8r2oqnvl]https&#58;//code&#46;google&#46;com/archive/p/fivewin-contributions/downloads?page=10[/url:8r2oqnvl] Saludos Jose
sistema de cobro con movil integrado en software fivewin
Necesito incorporar a una aplicación desrrollada con fivewin para tienda un sistema de cobro de forma que el cliente que acude a la tienda pueda pagar mediante el uso del móvil. Les agradecería su colaboración a fin de poderme documentar antes de empezar la programación. De antemano gracias.
site dbwide.com.ar
Qual o novo endereço do dbwide.com.ar ? Ari
site dbwide.com.ar
Acho que é <!-- m --><a class="postlink" href="http://www.vikthor.com.mx/fivewin/">http://www.vikthor.com.mx/fivewin/</a><!-- m --> ou <!-- m --><a class="postlink" href="http://www.vikthor.com.mx/">http://www.vikthor.com.mx/</a><!-- m -->
site dbwide.com.ar
[quote="Rochinha":2gv3c37p]Acho que é <!-- m --><a class="postlink" href="http://www.vikthor.com.mx/fivewin/">http://www.vikthor.com.mx/fivewin/</a><!-- m --> ou <!-- m --><a class="postlink" href="http://www.vikthor.com.mx/">http://www.vikthor.com.mx/</a><!-- m -->[/quote:2gv3c37p] Rochinha, El site de dbwide colgado en el server de vikthor está caido. Esperemos pronto lo habilite.
site dbwide.com.ar
Muchas de las utilidades que había en dbwide.com.ar están en la sección de utilidades de estos foros
site dbwide.com.ar
estou procurando uma classe antiga que gerava rtf, eu tinha ela aqui ..nao estou achando.. richtrtf alguma coisa assim tinha um exemplo que gerava a partir de arquivo TXT ou não.. Ari
site dbwide.com.ar
Hace algun tiempo Victor coloco en mi servidor muchas de las utilidades que ha colocado en su site. la url es <!-- m --><a class="postlink" href="http://fivewin.sytes.net/fivewin/">http://fivewin.sytes.net/fivewin/</a><!-- m --> Se que muchas de las cosas que estaban en dbwide estan alli. Si en algun momento la url no funciona, envienme un correo a gsabattino gmail.com para resolver en la brevedad posible. Saludos, Giancarlo J. Sabattino S. Valencia, Venezuela
site dbwide.com.ar
Obrigado, Encontrei o que procurava. Ari
situación EasyReport
Hola amigos, Espero que todos estén super bien. Hace meses Fivetech anunció que iban a retomar el desarrollo y mejora del Easyreport. ¿Cómo quedo el tema? Saludos
six3.lib
saludos a todos, tengo una aplicacion en 16bits que usa idx pero se me danio mi disco y perdi la lib six3 alguien la tendra que quiera compartirla?.. saludos y gracias arnulfo.
size font
what does mean SIZE 0, -18 inDEFINE FONT oFont NAME "Arial" SIZE 0, -18 BOLD ?best regardskajot
size font
It is a Windows API feature to get a font with the best ratio between width and height.EMG
size font
SIZE 0, -18 This means an 18 point font. Alternately, you can specify both height and width; both in positive numbers.James
size of a resource
How can I read the size and the font from an existing dialog-resource in a RES or DLL file?
size of a resource
Frank, Try this: DEFINE DIALOG oDlg RESOURCE ... ACTIVATE DIALOG oDlg ON INIT ( MsgInfo( oDlg:oFont:cFaceName, oDlg:oFont:nSize ), oDlg:End() )
size of a resource
Antonio, Its always good to think outside the box! I like it. James
skinbuttons and enter key
Antonio When activating skinbuttons , the enter key on dialogs does not fire the action at first try (default push button) we need to hit enter key twice, this does not occur when skin buttons are not active FWH 10.8 Richard
skinbuttons and enter key
Richard, Yes, bug confirmed. We are trying to find a fix for it, thanks for your feedback <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
skinbuttons and enter key
Antonio Any news concerning this problem ? Thank you for the help Richard
skinbuttons and enter key
Richard, It seems as it is already fixed <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> I send you an OBJ to test it, thanks
skinbuttons and enter key
Antonio getting error message Error: Unresolved external '_HB_FUN___CLSLOCKDEF' referenced from C:\CBATI32\OBJ\SKINS.OBJ Error: Unresolved external '_HB_FUN___CLSUNLOCKDEF' referenced from C:\CBATI32\OBJ\SKINS.OBJ Error: Unresolved external '_HB_FUN_FW_GT' referenced from C:\CBATI32\OBJ\SKINS.OBJ Richard
skinbuttons and enter key
Richard, Are you using xHarbour ? I sent you the OBJ for Harbour, sorry
skinbuttons and enter key
Antonio I am using xharbour
skinbuttons and enter key
Richard, Already sent to your email <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Thanks,
skinbuttons and enter key
Antonio linking the obj sent prevents the executable to load no error message , nothing just does not load using fwh 10.8 uestudio Richard
skinbuttons and enter key
Richard, I email you the complete library, thanks
skinbuttons and enter key
Antonio It is working ok now Thank you for your support Richard <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
skinbuttons and enter key
Antonio working further on it still problems The enter key is kept in memory , this happens the first time we use enter key (the action from button is executed another time) This does not happen without skinbuttons() HTH Richard
skinbuttons and enter key
Richard, I email you a revised version, thanks! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
skinbuttons and enter key
Antonio Got it but the problem is still there Richard
skinbuttons and enter key
Richard, I have just sent you a new version to test it, thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
skinbuttons and enter key
Antonio Still wrong <!-- s:cry: --><img src="{SMILIES_PATH}/icon_cry.gif" alt=":cry:" title="Crying or Very sad" /><!-- s:cry: --> Richard
skinbuttons and enter key
Antonio Any chance we can get this working ? Thanks for your help Richard
skinbuttons and enter key
Richard, Please test this example. It seems to work fine: [code=fw:2qgzina3]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #00C800;">local</span> oDlg, cText := <span style="color: #ff0000;">"Hello"</span><br /><br />   SkinButtons<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg<br /><br />   @ <span style="color: #000000;">1</span>, <span style="color: #000000;">2</span> <span style="color: #0000ff;">GET</span> cText <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">60</span>, <span style="color: #000000;">12</span><br />   <br />   @ <span style="color: #000000;">3</span>, <span style="color: #000000;">7</span> <span style="color: #0000ff;">BUTTON</span> <span style="color: #ff0000;">"OK"</span> <span style="color: #00C800;">DEFAULT</span> <span style="color: #0000ff;">ACTION</span> MsgBeep<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   @ <span style="color: #000000;">3</span>, <span style="color: #000000;">14</span> <span style="color: #0000ff;">BUTTON</span> <span style="color: #ff0000;">"Cancel"</span> <span style="color: #0000ff;">ACTION</span> oDlg:<span style="color: #000000;">End</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">CENTERED</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span> <br /> </div>[/code:2qgzina3]
skinbuttons and enter key
Antonio This test is ok, we are using one occurrence (get) with enter key When used from inside an app it is not working , it is firing the same action more than once when enter key is used As far as i am concerned, skinbuttons is not useable as it is now and the problem will rise again i am sure Unfortunately i will deactivate it from my application, i have an important release of my software this week. Regards <!-- s:? --><img src="{SMILIES_PATH}/icon_confused.gif" alt=":?" title="Confused" /><!-- s:? --> Richard
skinbuttons and enter key
Richard, If you could provide me an example to reproduce the error, it would help very much, thanks
skinbuttons problem
Antonio When activating skinbuttons() , the process keeps growing and growing and the memory blows after a while Removing skinbuttons() everything goes back to normal FWH 10.7 windows seven 64 bits (problem occuring on xp and vista also) Regards Richard
skinbuttons problem
Richard, We are testing this example on Windows 7 32 bits and it seems to work fine: [code=fw:1thxie96]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #00C800;">local</span> oDlg<br /><br />   SkinButtons<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg<br /><br />   @ <span style="color: #000000;">2</span>, <span style="color: #000000;">2</span> <span style="color: #0000ff;">BUTTON</span> <span style="color: #ff0000;">"OK"</span><br /><br />   <span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">CENTERED</span><br /><br />   CheckRes<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /> </div>[/code:1thxie96] The generated checkres.txt file is clean. Also, the task manager shows constant values: [img:1thxie96]http&#58;//img340&#46;imageshack&#46;us/img340/9071/captureheg&#46;jpg[/img:1thxie96] Please notice that "USER objects" and "GDI objects" for test.exe remain constant. Surely we need to find another example where we can isolate the GDI consume that you mention.
skinbuttons problem
Antonio Doing further research in my code also i found SETSKINS(.T.) I have commented this line and now it looks much better , maybe the cause of the problem ? anyway , removing skinbuttons() the application is much faster responding to all controls (dialogs...) Still searching Richard
skinbuttons problem
Richard, SetSkins() is implemented in source\classes\window.prg and actually it does almost nothing. It just changes the value of a static variable but it is not used from any other place. The speed difference that you notice is due to the fact that the FWH skins use PRG code and it is not as fast as the C (or assembler) code used by Windows.
skinbuttons problem
Antonio Can you please change your test to enter the dialog more than once and check the gdi objects, you will see them growing Just enter the dialog and exit more than once and check at exit time Richard
skinbuttons problem
Richard, I have tested it this way and it is working fine. How have you tested it ? [code=fw:7x8yz6td]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> n<br />&nbsp; &nbsp;<br />&nbsp; &nbsp;SkinButtons<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<br />&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;">10</span><br />&nbsp; &nbsp; &nbsp; Test<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">next</span><br />&nbsp; &nbsp;<br />&nbsp; &nbsp;CheckRes<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> &nbsp; &nbsp; &nbsp;<br /><br /><span style="color: #00C800;">function</span> Test<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oDlg<br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg<br /><br />&nbsp; &nbsp;@ <span style="color: #000000;">2</span>, <span style="color: #000000;">2</span> <span style="color: #0000ff;">BUTTON</span> <span style="color: #ff0000;">"OK"</span><br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">CENTERED</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br />&nbsp;</div>[/code:7x8yz6td]
skinbuttons problem
Antonio Your test is fine, i did the same Start the windows task manager and look at the gdi objects everytime you press on the ok button of the dialog They keep growing Richard
skinbuttons problem
Richard, Could you please test it using FWH 10.8 ? thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
skinbuttons problem
i don't have fwh 10.8 for the moment, I need to download it form my xp machine (fivetech's download does not work from w7 !) , i can only do this tomorrow and report back Richard
skinbuttons problem
Antonio from your sample test without changing anything, did you start the task manager and check the gdi objects when clicking on OK If gdi objects don't change (or a little) , then the problem is fixed in fwh 10.8 , in my case (10.7) the values get almost doubled .... I will check it tomorrow though, Richard
skinbuttons problem
Another problem is illustrated by the following sample: [code=fw:1aqlkzwf]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><br /><br /><span style="color: #00C800;">FUNCTION</span> MAIN<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp; <span style="color: #00C800;">LOCAL</span> oDlg, oBtn<br /><br />&nbsp; &nbsp; SKINBUTTONS<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp; <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg<br /><br />&nbsp; &nbsp; @ <span style="color: #000000;">2</span>, <span style="color: #000000;">2</span> <span style="color: #0000ff;">BUTTON</span> <span style="color: #ff0000;">"&Test"</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ACTION</span> <span style="color: #000000;">&#40;</span> oBtn:<span style="color: #000000;">Disable</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, TEST<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, oBtn:<span style="color: #000000;">Enable</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp; @ <span style="color: #000000;">3</span>, <span style="color: #000000;">2</span> <span style="color: #0000ff;">BUTTON</span> oBtn <span style="color: #0000ff;">PROMPT</span> <span style="color: #ff0000;">"&Close"</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ACTION</span> oDlg:<span style="color: #000000;">End</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp; <span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">CENTER</span><br /><br />&nbsp; &nbsp; <span style="color: #00C800;">RETURN</span> <span style="color: #00C800;">NIL</span><br /><br /><br /><span style="color: #00C800;">STATIC</span> <span style="color: #00C800;">FUNCTION</span> TEST<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp; <span style="color: #00C800;">LOCAL</span> oDlg<br /><br />&nbsp; &nbsp; <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg<br /><br />&nbsp; &nbsp; @ <span style="color: #000000;">1</span>, <span style="color: #000000;">2</span> <span style="color: #0000ff;">BUTTON</span> <span style="color: #ff0000;">"&Close"</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">ACTION</span> oDlg:<span style="color: #000000;">End</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp; <span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">CENTER</span><br /><br />&nbsp; &nbsp; <span style="color: #00C800;">RETURN</span> <span style="color: #00C800;">NIL</span></div>[/code:1aqlkzwf] Try to click on Test and then on Close: the button Close lost its skin. EMG
skinbuttons problem
Enrico, This is a different problem. Up to now we have not found a way to disable the skins and reenable them again
skinbuttons problem
Richard, [quote:pu6ntvz3]fivetech's download does not work from w7 ![/quote:pu6ntvz3] We have just tested the download from W7 32 Ultimate and works fine. Could some other users confirm if FWH download is working fine from W7 ? thanks! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
skinbuttons problem
Richard, We fixed a bug related to mouse capture in skins, thus the test should be done with FWH 10.8, thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
skinbuttons problem
Dear Mr. Antonio and Mr. Richard, Im using 10.6 and haven't encounter any problem with skinbutton().. im using it in xp/vista and win7. Regards, Frances
skinbuttons problem
[quote="Richard Chidiak":3oj2ke95]I need to download it form my xp machine (fivetech's download does not work from w7 !)Richard[/quote:3oj2ke95] [quote="Antonio Linares":3oj2ke95]We have just tested the download from W7 32 Ultimate and works fine. Could some other users confirm if FWH download is working fine from W7 ? thanks! [/quote:3oj2ke95] I have never experienced the above said problem till now. For me the download is working fine from my Windows 7 Professional (32 bit). Regards Anser
skinbuttons problem
Antonio FWH10.8 reacts normally to skinbuttons The gdi objects are very stable now the problem seems to be ok now, As per windows seven download, it looks like an Internet expolorer problem no way probably some security reason, i accessed the website with Google chrome without problems Thanks for the help, Richard <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
skinbuttons problem
Richard, glad to know its fine now, thanks for the feedback <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
skype and Fivewin
Hello, I have tried forum samples without success. Is it possible to call a contact via Skype?. Thanks.
skype and Fivewin
Hello , see <!-- m --><a class="postlink" href="http://www.fivewin.com.br/forum/topic.asp?TOPIC_ID=18018">http://www.fivewin.com.br/forum/topic.a ... C_ID=18018</a><!-- m --> William
skype and Fivewin
Thanks. It works.
skype and Fivewin
Hi, I've used Skype4Com (ActiveX) for a year and it works fine, with SMS option. I can send SMS via my program to customer mobile and show Skype Name at the mobile phone. I change my laptop and the Skype4Com has not worked as usual. In the past, I can send SMS and show Skype Name like "[b:2gdfj277]dutchez4[/b:2gdfj277]" but today it shows "[b:2gdfj277]+44 337-88392[/b:2gdfj277]" (something like that) instead of Skype Name. Have you got this problem? Regards, Dutch
skype and Fivewin
Hello Dutch, I don´t send SMS just call a person and it is working.
skype and Fivewin
Thanks, Dutch
sleep function
Hi all I wonder if the sleep function could block a program. I talk about a program that is active on a server without human's interactivity with an active Timer with a 60" polling. This polling launches a function (FUNCTION POLLING() that performs a lot of things and sometimes I introduce some waits using sleep function for one minutes. Does exist an alternative to sleep function? Is it possible to active a second timer? When the function polling is in execution I perform a oTimer:deactivate() obviously at the end before RETURN here is a oTimer:activate() Many thanks
sleep function
Dear Marco, Use SysRefresh() or SysWait( nValue )
sleep function
<!-- s8) --><img src="{SMILIES_PATH}/icon_cool.gif" alt="8)" title="Cool" /><!-- s8) -->
slight delay
on a xbrowse I have these columns (I'm creating a procedure to set permissions of users) [img:3dzeau55]https&#58;//i&#46;postimg&#46;cc/153gjN5D/user-key&#46;png[/img:3dzeau55] on xbrowse I have oGrid3:bKeyDown:={|nKey| IF(nKey=VK_RETURN,Asigna(oPermessi,oGrid3,oBtnCambia),IF(nKey=VK_F5,Cambia(oPermessi,oGrid3,oBtnCambia),))} oGrid3:bLDblClick:={|| Asigna(oPermessi,oGrid3,oBtnCambia)} we are operating on the second column of xbrowse (oGrid3), the user change the data on oPermessi:ABC from "A" to "R" and viceversa I'm using tdata(base) and oPermessi is a DBF with this structure [code=fw:3dzeau55]<div class="fw" id="{CB}" style="font-family: monospace;"><br />aFields := <span style="color: #000000;">&#123;</span> <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"USUARIO"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">8</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"MODULO"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">6</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"M"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"DESCRI"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">30</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"PERMISO"</span>, <span style="color: #ff0000;">"L"</span>, <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"ABC"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"TIPO"</span>, <span style="color: #ff0000;">"C"</span>, <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#125;</span></div>[/code:3dzeau55] [b:3dzeau55]cambia function [/b:3dzeau55] [code=fw:3dzeau55]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00C800;">Function</span> Cambia<span style="color: #000000;">&#40;</span>oPermessi,oGrid3,oBtnCambia<span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">IF</span> lABC<br />     <span style="color: #00C800;">IF</span> oPermessi:<span style="color: #000000;">Permiso</span><br />        <span style="color: #00C800;">IF</span> oPermessi:<span style="color: #000000;">ABC</span>=<span style="color: #ff0000;">"A"</span><br />           oPermessi:<span style="color: #000000;">ABC</span>:=<span style="color: #ff0000;">"R"</span><br />         <span style="color: #00C800;">ELSE</span><br />           oPermessi:<span style="color: #000000;">ABC</span>:=<span style="color: #ff0000;">"A"</span><br />         <span style="color: #00C800;">ENDIF</span><br />         oPermessi:<span style="color: #000000;">save</span><span style="color: #000000;">&#40;</span>.t.<span style="color: #000000;">&#41;</span><br />        Refr_Btn<span style="color: #000000;">&#40;</span>oBtnCambia,oPermessi<span style="color: #000000;">&#41;</span><br />      <span style="color: #00C800;">ENDIF</span><br />      Refr_Btn<span style="color: #000000;">&#40;</span>oBtnCambia,oPermessi<span style="color: #000000;">&#41;</span><br />      oGrid3:<span style="color: #0000ff;">refresh</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />   <span style="color: #00C800;">ENDIF</span><br />   oGrid3:<span style="color: #000000;">SetFocus</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">RETURN</span> <span style="color: #000000;">&#40;</span><span style="color: #00C800;">NIL</span><span style="color: #000000;">&#41;</span></div>[/code:3dzeau55] Refr_Btn(oBtnCambia,oPermessi) is a function where change the state of a button I think the function Cambia() not have errors but sometimes I saw a slight delay when the record is changed Sometimes I must press F5 more time to change the record the same happen when the use click double the function asigna() is the same of cambia() I saw a slight delay is I use (tdata)base instead of dbf exlusive why it happen ?
slight flicker with buttonbmp
if I change the image in a buttombmp I see a slight flicker when I step over it with the mouse could not fix this? [img:15vt0s9f]https&#58;//i&#46;postimg&#46;cc/SRzzCxCv/BU&#46;gif[/img:15vt0s9f] @ 520,780 BUTTONBMP oBtnGiorn; RESOURCE aImagesGiorno[ 1 ] ; PROMPT { || If( lGiorno, "giornaliero", "periodico" ) } ; SIZE 80,20 PIXEL OF oFolder:aDialogs[1]; TEXTRIGHT FONT oFontBold GDIPLUS; ACTION ( lGiorno := !lGiorno, ; oBtnGiorn:hBitmap:= If( lGiorno, aImagesGiorno[ 1 ], aImagesGiorno[ 2 ] ) ) I saw it make it on Folder because the same button on the dialog not have flicker
slippter ajuste controles
tengo un dialogo con 2 folder, dentro de cada folder tengo un browse y entre los 2 folder tengo un splitter horizontal, al mover el splitter los folder se mueven bien, pero los browse dentro de los folders no se ajustan al tamaño deja un espacio en blanco, como puedo ajustar esos browse dentro de los folder si se mueve el splitter? todo lo tengo definido desde recursos. gracias salu2 paco
slippter ajuste controles
Paco, Los browses estan en un diálogo cada uno, si ? Lo que tendrías que hacer es cambiar las dimensiones del browse cuando el folder se redimensione. Prueba a usar oFolder:bResized = { || oBrowse:nWidth := oFolder:nWidth, oBrowse:nHeight := oFolder:nHeight - oFolder:nFdHeight }
slippter ajuste controles
entendido, gracias paco
slow xBrowse and ADS/AIS via Internet
Hello, I am testing accesing DBF via Internet with ADS and AIS. It goes pretty well but xBrowses are slow. I searched into forums and there are some posts suggest to change AdsGetRecordCount(), AdsSetDeleted(.t.), etc... but I don´t understand them well as it´s my first time with ADS. But the replies to this post willl be very interesting for the community. This is my code: [code=fw:2bryc42n]<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 /><span style="color: #000000;">&#91;</span>...<span style="color: #000000;">&#93;</span><br /><br /><span style="color: #B900B9;">// Sets generales---------------------------------------------------------</span><br />   SetGetColorFocus<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>              <br />   SET EPOCH <span style="color: #0000ff;">TO</span> <span style="color: #000000;">1990</span>               <br />   SET CENTURY <span style="color: #0000ff;">ON</span>                  <br />   SET DATE ITALIAN                <br />   SET DELETED <span style="color: #0000ff;">ON</span>                  <br />   SetCancel<span style="color: #000000;">&#40;</span> .F. <span style="color: #000000;">&#41;</span>                <br />   SetDialogEsc<span style="color: #000000;">&#40;</span> .F. <span style="color: #000000;">&#41;</span>             <br />   SET<span style="color: #000000;">&#40;</span> _SET_INSERT, .T. <span style="color: #000000;">&#41;</span>         <br /><br /><br /><br /><br />    Request ADS,ADSKeyCount,ADSKeyNo,OrdKeyCount,OrdKeyNo, AdsGetRelKeyPos, AdsSetRelKeyPos<br /><br />     RddRegister<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"ADS"</span>, <span style="color: #000000;">1</span> <span style="color: #000000;">&#41;</span><br />     RddSetDefault<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"ADS"</span> <span style="color: #000000;">&#41;</span><br /><br />     <span style="color: #B900B9;">//setting up server type</span><br />     <span style="color: #B900B9;">// 1 = Local Server (no client / server)</span><br />     <span style="color: #B900B9;">// 2 = Remote Server</span><br />     <span style="color: #B900B9;">// 3 = Local + Remot</span><br />     <span style="color: #B900B9;">// 4 = Internet Server</span><br />     <span style="color: #B900B9;">// 5 = Local + Internet</span><br />     <span style="color: #B900B9;">// 6 = Remote+Internet</span><br />     <span style="color: #B900B9;">// 7 = Local + Remote + Internet , best choice</span><br />     adsSetServerType<span style="color: #000000;">&#40;</span> <span style="color: #000000;">4</span> <span style="color: #000000;">&#41;</span>  <span style="color: #B900B9;">// ó  adsSetServerType( ADS_REMOTE_SERVER )</span><br /><br />     <span style="color: #B900B9;">//setting up the file types</span><br />     <span style="color: #B900B9;">// 1 = DBFNTX</span><br />     <span style="color: #B900B9;">// 2 = DBFCDX</span><br />     <span style="color: #B900B9;">// 3 = ADSADI</span><br />     adsSetFileType<span style="color: #000000;">&#40;</span> ADS_CDX <span style="color: #000000;">&#41;</span>  <span style="color: #B900B9;">// o ADS_CDX</span><br />   <span style="color: #B900B9;">// -------------------------------------------------------------------------</span><br /><br /><br /><br /><br />   <span style="color: #B900B9;">// Opening DBF FILES</span><br />   <span style="color: #000000;">&#91;</span>...<span style="color: #000000;">&#93;</span><br />   <span style="color: #0000ff;">SELECT</span> <span style="color: #000000;">5</span><br />   USE <span style="color: #000000;">&#40;</span>cMyPath+<span style="color: #ff0000;">"FACTURAS"</span><span style="color: #000000;">&#41;</span> <span style="color: #0000ff;">INDEX</span> <span style="color: #000000;">&#40;</span>cMyPath+<span style="color: #ff0000;">"FACTURAS"</span><span style="color: #000000;">&#41;</span>  SHARED <span style="color: #00C800;">NEW</span>  <span style="color: #0000ff;">ALIAS</span> <span style="color: #ff0000;">"FACTURAS"</span><br /><br /><br /><br />  <span style="color: #B900B9;">// INDEXING</span><br />  <span style="color: #000000;">&#91;</span>...<span style="color: #000000;">&#93;</span><br />  <br />  USE <span style="color: #000000;">&#40;</span>cMyPath+<span style="color: #ff0000;">"FACTURAS"</span><span style="color: #000000;">&#41;</span>   EXCLUSIVE <span style="color: #00C800;">NEW</span><br />  DELETE ALL <span style="color: #00C800;">FOR</span> EMPTY<span style="color: #000000;">&#40;</span> FIELD->NUMERO <span style="color: #000000;">&#41;</span><br />  PACK<br /><br />  <span style="color: #0000ff;">INDEX</span> <span style="color: #0000ff;">ON</span> FIELD->NUMERO  <span style="color: #0000ff;">TO</span> <span style="color: #000000;">&#40;</span>cMyPath+<span style="color: #ff0000;">"FACTURAS"</span><span style="color: #000000;">&#41;</span><br />  DbCloseAll<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /> </div>[/code:2bryc42n] Please, what should apply to achieve best results?. Thank you very much. Best regards,
slow xBrowse and ADS/AIS via Internet
Hi Lucas, 1. Issue cAlias->( AdsCacheRecords( <nRecs> ) ) or TABLE->( AdsCacheRecords( 50 ) ).. in my case, it improves the speed. 2. on your ads.ini: [quote:1yowj4sk] [Settings] COMPRESSION = Always USE_TCP_IP = 1 PACKET_SIZE = 512 ;or 1024 [/quote:1yowj4sk] This also improves my speed. Kind regards,
slow xBrowse and ADS/AIS via Internet
Francis, Thanks for helping me. This ads.ini, where should be placed?. At server directory or application directory?. Also I read not to use SET DELETED ON. I set to OFF and I improve a little bit the speed. But do you create indexes as INDEX ON FIELD->NUMERO TO (cMyPath+"PEDIDOS2") FOR !Deleted() ?. Thank you very much.
slow xBrowse and ADS/AIS via Internet
Mr. Nages, Please, any advice?. Thank you very much.
slow xBrowse and ADS/AIS via Internet
Hello Lucas, do you browse the database or do you read the database into an array and browse the array. Best regards, Otto
slow xBrowse and ADS/AIS via Internet
[quote="lucasdebeltran":kgqq34hx]Francis, Thanks for helping me. This ads.ini, where should be placed?. At server directory or application directory?. Also I read not to use SET DELETED ON. I set to OFF and I improve a little bit the speed. But do you create indexes as INDEX ON FIELD->NUMERO TO (cMyPath+"PEDIDOS2") FOR !Deleted() ?. Thank you very much.[/quote:kgqq34hx] Put ads.ini with your .exe, in any case on your client pc. With ADS SQL I rarely use index.. but yes I do create but with SQL's INDEX command for better server-side process.. means better speed.
slow xBrowse and ADS/AIS via Internet
Frances, Thank you very much for helping me. When you create indexes, yo you add [b:17c2t4kv]!DELETED()[/b:17c2t4kv], kike INDEX ON FIELD->NUMERO TO (cMyPath+"PEDIDOS") FOR !Deleted() ? Best regards,
slow xBrowse and ADS/AIS via Internet
Hi Lucas, Yes I do before when I use to code ISAM style.
slow xBrowse and ADS/AIS via Internet
Thank you. Last question. When using ADS in local mode, indexes are .idx. But in Internet mode with AIS indexes are .cdx. The code is the same. Why this difference?. Thank you.
slow xBrowse and ADS/AIS via Internet
[quote="lucasdebeltran":2neeo125]Thank you. Last question. When using ADS in local mode, indexes are .idx. But in Internet mode with AIS indexes are .cdx. The code is the same. Why this difference?. Thank you.[/quote:2neeo125] Dear Lucas, You need to set AdsSetFileType( ADS_CDX ) if you want .cdx or an expression on your index indicating the orderbag.. these vars are to consider from ads.ch [quote:2neeo125] /* Supported file types */ #define ADS_NTX 1 #define ADS_CDX 2 #define ADS_ADT 3 #define ADS_VFP 4 [/quote:2neeo125]
slow xBrowse and ADS/AIS via Internet
Dear Frances, Thank you very much for helping me. I have set up adsSetFileType( ADS_CDX ) But if I use and open the file in local mode, index are .idx. In remote server with Data Dictionary via Internet, they are .cdx!!. It is strange. Do you experiment this behaviour?. Thanks again.
slow xBrowse and ADS/AIS via Internet
[quote="lucasdebeltran":3i905i7m]Dear Frances, Thank you very much for helping me. I have set up adsSetFileType( ADS_CDX ) But if I use and open the file in local mode, index are .idx. In remote server with Data Dictionary via Internet, they are .cdx!!. It is strange. Do you experiment this behaviour?. Thanks again.[/quote:3i905i7m] Dear Lucas, No I did not experienced that. When I switched to ADS.. I use the proprietary table format. I no longer use .DBF/.CDX.. I used .ADT/.ADI much efficient.
slow xBrowse and ADS/AIS via Internet
Dear Frances, Thank you very much for your attention. Best regards
small animation
How I can make a small animation When the user mouse over a button ( 16x16) the button become big(48x48) have an sample to test?
small animation
Silvio, Do you mean a button of Class TBtnBmp ?
small animation
do you know googleX ? go to my site <!-- w --><a class="postlink" href="http://www.bpascal.it">www.bpascal.it</a><!-- w --> i want try create it it is called bubble button