topic
stringlengths
1
63
text
stringlengths
1
577k
BUTTON question
Mr.Jeff Here is the solution. @ 1,1 BUTTON oBtnLap PROMPT "LAP + ("+alltrim(str(nLapCounter))+")" SIZE 50,25 of oDlg1 FONT oFontSmall UPDATE Action (nLapCounter++, TONE(440,1),oBtnLap:SetText("LAP ("+alltrim(str(nCounter))+")")oBtnLap:Refresh()) Regards, - Ramesh Babu P
BUTTON question
Thanks Ramesh Works perfectly <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> Jeff
BUTTON question
Hi Everybody, Is there any way to have more than one line of text on a button? Thanks, Jeff
BUTTON question
This is a working sample: [code:as5o0wi0]#include "Fivewin&#46;ch" #define CR CHR&#40; 13 &#41; #define BS_MULTILINE 8192 FUNCTION MAIN&#40;&#41; LOCAL oDlg, oBtn DEFINE DIALOG oDlg @ 1, 1 BUTTON oBtn PROMPT "&Close" + CHR&#40; 13 &#41; + "the dialog"; SIZE 50, 30; ACTION oDlg...
BUTTON question?
Dear Antonio, 1. BUTTON class does still support CRLF for seperate line? 2. BUTTON Caption can define left alignment? Best regards, Dutch
BUTTON question?
Dutch, > 1. BUTTON class does still support CRLF for seperate line? Only if you use it from resource and you use this style: #define BS_MULTILINE 1024 > 2. BUTTON Caption can define left alignment? Same as above but using BS_LEFTTEXT
BUTTON question?
Even from code: [code:1lg0xhic]#include "Fivewin&#46;ch" #define CR CHR&#40; 13 &#41; #define BS_MULTILINE 8192 FUNCTION MAIN&#40;&#41; LOCAL oDlg, oBtn DEFINE DIALOG oDlg @ 1, 1 BUTTON oBtn PROMPT "&Close" + CHR&#40; 13 &#41; + "the dialog"; SIZE 50, 30; ACTION oDlg&#58;End&#...
BUTTON question?
Ops, sorry, I wasn't aware that this is the FWPCC forum. But maybe it could still work. EMG
BUTTON question?
It works with DIALOGs but not with WINDOWs and I don't know why: [code:3s666716]#include "Fwce&#46;ch" #define BS_MULTILINE 8192 FUNCTION MAIN&#40;&#41; LOCAL oDlg, oBtn DEFINE DIALOG oDlg @ 1, 1 BUTTON oBtn PROMPT "&Close" + CHR&#40; 13 &#41; + "the dialog"; SIZE 50, 30; ACTIO...
BUTTON question?
Dear Antonio&Enrico, It works perfect now. #define BS_MULTILINE 8192 and CR CHR(13) Best regards, Dutch
BUTTON question?
Enrico, > It works with DIALOGs but not with WINDOWs and I don't know why: Because in dialogs, the control style is used when building the dialog. In a window, the window already exists and the control is created later on.
BUTTON question?
I already tried with WINDOW and ON INIT clause to no avail. EMG
BUTTON question?
Enrico, In a window it may work using SetWindowLong( oButton:hWnd, GWL_STYLE, nOr( GetWindowLong( oButton:hWnd, GWL_STYLE ), BS_... ) )
BUTTON question?
Confirmed! [code:6rzn7df0]#include "Fwce&#46;ch" #define GWL_STYLE -16 #define BS_MULTILINE 8192 FUNCTION MAIN&#40;&#41; LOCAL oWnd, oBtn DEFINE WINDOW oWnd @ 1, 1 BUTTON oBtn PROMPT "&Close" + CHR&#40; 13 &#41; + "the window"; SIZE 60, 50; ACTION oWnd&#58;End&#40;&#41; AC...
BUTTON question?
Dear Antonio&Enrico, This code does not work. oBtn:nStyle := NOR( oBtn:nStyle, BS_LEFTTEXT ) Best regards, Dutch
BUTTON question?
Dutch, Please try it as Enrico's sample code.
BUTTON question?
Dear Antonio, Can I change oBtn:cCaption that create from source code in FWPPC. In FW/Clipper I do it from Resource and change :cCaption and :Refresh(). It works ok but I try with FWPPC. It doesn't change. oBtn:cCaption := 'Next Caption" oBtn:Show() oBtn:Refresh() Example ====== [code:23a0391u] DEFINE DIALOG oDlg...
BUTTON question?
Dutch, Try this: oBtn:SetText( "Next Caption" )
BUTTON question?
Dear Antonio, It works perfect now. Thanks&Regards, Dutch
BUTTON vs BTNBMP
Ciao Enrico e a tutti e ben tornati.... ho un problemino, per te piccolo: ho sostituito in un programma le BUTTON con le BTNBMP poiche' potevo colorarle ed erano piu' carine. Ho notato pero' che il relativo btnbmp non funziona in uscita da una dialog se la get ove e' posizionato il focus non viene completata. ti al...
BUTTON vs BTNBMP
Compilando il tuo esempio ottengo: [code=fw:2uozaz2s]<div class="fw" id="{CB}" style="font-family: monospace;">test.prg<span style="color: #000000;">&#40;</span><span style="color: #000000;">19</span><span style="color: #000000;">&#41;</span> Warning W0001 &nbsp;Ambiguous reference: <span style="color: #ff0000;">'PIXE...
BUTTON vs BTNBMP
Quindi non e' possibile uscire da una dialog con un bottone BTNBMP ? GRAZIE
BUTTON vs BTNBMP
Certo che è possibile: basta mettere [code=fw:1h53v7ha]<div class="fw" id="{CB}" style="font-family: monospace;"><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></div>[/code:1h53v7ha] nella def...
BUTTON vs BTNBMP
A RIECCOTI L'ESEMPIO MODIFICATO E NON MI FUNZIONA, cioe' non riesco ad uscire con il campo vuoto, clikkando sul bottone: Ti ho anche mandato il file EXE (zippato) in mail. *************** * #include "FiveWin.ch" * function Main() local oDlg,obut local pippo:= space(40) DEFINE DIALOG oDlg TITLE "Prova" from ...
BUTTON vs BTNBMP
Sì, ora ho capito cosa intendevi. No, che io sappia non esiste la clausola CANCEL per i BTNBMP e quindi non puoi uscire da una dialog se c'è un campo obbligatiorio non riempito. EMG
BUTTON vs BTNBMP
Sigh !! Tks
BUTTON vs BTNBMP
Magari c'è qualche escamotage che a me non viene in mente. Prova a chiedere nel forum in inglese. EMG
BUTTON vs BTNBMP
ok
BUTTON vs BTNBMP
Prova ad aggiungere questa riga dopo il controllo BTNBMP [code=fw:2m4ig0qf]<div class="fw" id="{CB}" style="font-family: monospace;">        @<span style="color: #000000;">90</span>,<span style="color: #000000;">10</span> <span style="color: #0000ff;">BTNBMP</span> obtn <span style="color: #0000ff;">prompt</span> <sp...
BUTTON como cambio el color de fondo y de texto
@ nRow, nCol BUTTON "mi Boton" quiero que salga "mi Boton" en negro con fondo Rojo. Como hago ? o que comando utilzo ?
BUTTON como cambio el color de fondo y de texto
Tienes que usar BTNBMP en vez de BUTTON: @ nRow, nCol BTNBMP oBtn PROMPT "mi Boton" ... oBtn:SetColor( ..., ... )
BUTTON... TOOLTIP SIN BTNBMP [SOLUCIONADO]
Hola a todos Estoy tratando de poner un tooltip en un button sin bmp/png, pero no lo consigo. He probado así: @190,102 BUTTON "Ver petición" OF oDlg SIZE 43,10 PIXEL ACTION VERPETICION(CRUTA,CCODIGO,CAPUNTE); TOOLTIP "Ver petición de reserva de denominación" y con variable : @190,102 BUTTON oBtn "Ver petición"...
BUTTON... TOOLTIP SIN BTNBMP [SOLUCIONADO]
Ramón, El wiki lo hemos migrado a: [url:1cgs7voy]https&#58;//github&#46;com/FiveTechSoft/FiveTech_wiki[/url:1cgs7voy]
BUTTON... TOOLTIP SIN BTNBMP [SOLUCIONADO]
Gracias, Antonio Un saludo
BUTTON... TOOLTIP SIN BTNBMP [SOLUCIONADO]
[code=fw:3dxxu111]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;@<span style="color: #000000;">190</span>,<span style="color: #000000;">102</span> <span style="color: #0000ff;">BUTTON</span> oBtn <span style="color: #ff0000;">"Ver petición"</span> <span style="color: #0000ff;">OF</span> o...
BUTTON... TOOLTIP SIN BTNBMP [SOLUCIONADO]
Gracias, João, pero así tampoco funcionaba. Lo he solucionado poniendo PROMPT. Así ya funciona. Mira: [code=fw:31wjvydr]<div class="fw" id="{CB}" style="font-family: monospace;">?<span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'fivewin.ch'</span><br /><span style="color: #00D7D7;">#include...
BUTTONBAR
Hi, How do I do to change the image of the button? [img:1cmm1sr5]http&#58;//www&#46;mpc&#46;com&#46;br/sysfar/teste/obar&#46;jpg[/img:1cmm1sr5] Clemerson
BUTTONBAR
Clemerson, oButtonBar:aControls[ 3 ]:FreeBitmaps() oButtonBar:aControls[ 3 ]:LoadBitmaps( <cResName>,, [<cBmpFile>] ) oButtonBar:aControls[ 3 ]:Refresh()
BUTTONBAR
[quote="Antonio Linares":3evh9zyx]Clemerson, oButtonBar:aControls[ 3 ]:FreeBitmaps() oButtonBar:aControls[ 3 ]:LoadBitmaps( <cResName>,, [<cBmpFile>] ) oButtonBar:aControls[ 3 ]:Refresh()[/quote:3evh9zyx] Antonio/Clemerson A similar working approach is in Function Zoom() of RPREVIEW.PRG Kind regards Evans
BUTTONBAR
Clemerson, It looks like you have a button you want in an up or down state. I believe you can define two bitmaps when you define the button, then use the oBtn:toogle() to change the state of the button, and the bitmap will change automatically. I haven't tried this (or at least I don't remember if I have) <!-- s;-) --...
BUTTONBAR
thank you ... Clemerson
BUTTONBAR BORDER
It possibile have the border only on bottom and not on top ?
BUTTONBAR BORDER
Hello Silvio, [quote:29mb7w70]It possibile have the border only on bottom and not on top ?[/quote:29mb7w70] Maybe the solution You are looking for ? You can use any colour, pensize or transparent level. [img:29mb7w70]http&#58;//www&#46;service-fivewin&#46;de/images/Btnbar5&#46;png[/img:29mb7w70] [code=fw:29mb7w70]<...
BUTTONBAR Estatico
Hola amigos Como se hace para que la barra del BUTTONBAR no se pueda mover pulsando boton derecho. Gracias por la ayuda Saludos, Adhemar
BUTTONBAR Estatico
oToolBar:bRClicked := {|| TRUE } oToolBar:bLClicked := {|| TRUE } [code=fw:mwbzgs5p]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />   <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">BUTTONBAR</span> oToolBar <span style="color: #0000ff;">OF</span> oDlg <span style="c...
BUTTONBAR Estatico
Gracias Carlos. Funcionó perfecto. Saludos, Adhemar
BUTTONBAR Estatico
Tambien puedes usar oBAR:bRClicked := {|| NIL } saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
BUTTONBAR Estatico
Gracias. Jose luis Saludos, Adhemar
BUTTONBAR RIGHT
Office 2007 style If there is a menu attached on a botton the open files tor the popup menu is too small. Regards, Otto
BUTTONBAR RIGHT
Will there be a solution? Regards, Otto
BUTTONBAR en posicion fija acepta parametro 2007 ?
Es decir : @ 00, 11 BUTTONBAR oBar1 [b:u47i623a][color=#FF0000:u47i623a]2007[/color:u47i623a][/b:u47i623a]
BUTTONBAR en posicion fija acepta parametro 2007 ?
Yo tengo FW907, revisando el fivewin.ch tengo esta sintaxis para buttonbar [code=fw:1keji9fn]<div class="fw" id="{CB}" style="font-family: monospace;">!short: <span style="color: #0000ff;">ButtonBar</span> Commands */<br /><br />#xcommand <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">BUTTON...
BUTTONBAR en posicion fija acepta parametro 2007 ?
Thanks G. N. Rao, worked perfectly <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
BUTTONBAR en posicion fija acepta parametro 2007 ?
After defining the bar, oBar:l2007 := .t. works
BUTTONBAR no sale CON VK_ESCAPE (RESUELTO)
Buenas Noches. Necesito salir con la tecla VK_ESCAPE en un BUTTONBAR pero no lo hace. Aqui el codigo que uso. [code=fw:2jjkpdfc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">static</span> <span style="color: #00C800;">Function</span> DialogMain<span style="color: #0000...
BUTTONBAR no sale CON VK_ESCAPE (RESUELTO)
Saludos, solo por casualidad...no hagas comparacion si no asignacion...prueba con oBtn:lCancel := .t., no se, es solo costumbre de hacerlo asi y funciona al pelo sin hacer mas nada, gracias... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
BUTTONBAR no sale CON VK_ESCAPE (RESUELTO)
Jose luis, un saludo hermano. La instruccion [color=#008000:fvbybt2q] oBtn[4]:lCancel = TRUE[/color:fvbybt2q] no es para comparacion lo que hace es asignar el valor TRUE, igual probe como tu dices [color=#008000:fvbybt2q]oBtn[4]:lCancel := TRUE[/color:fvbybt2q] y tampoco funciona
BUTTONBAR no sale CON VK_ESCAPE (RESUELTO)
STATIC lExitDlg := .F. en el boton de salida, lExitDlg := .T.
BUTTONBAR no sale CON VK_ESCAPE (RESUELTO)
Karihna, [quote:2nd4ipvd] STATIC lExitDlg := .F. en el boton de salida, lExitDlg := .T. [quote:2nd4ipvd][/quote:2nd4ipvd][/quote:2nd4ipvd] Tampoco funciona
BUTTONBAR no sale CON VK_ESCAPE (RESUELTO)
Me respondo yo mismo. [code=fw:lqxk5s2o]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oDlg:<span style="color: #000000;">bValid</span> = <||<br />                                <span style="color: #00C800;">if</span> GetKeyState<span style="color: #000000;">&#40;</span> VK_ESCAPE <span style="color:...
BUTTONBAR no sale CON VK_ESCAPE (RESUELTO)
La tecla ESC por defecto cierra el dialogo, excepto que tenga una clausula Valid, pero es cierto que no la entrega como una nKey. En tu ejemplo hubiese bastado: [code=fw:2ow4lhwg]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG<...
BUTTONBAR no sale CON VK_ESCAPE (RESUELTO)
cmsoft, [quote:2a5gkddz] La tecla ESC por defecto cierra el dialogo, excepto que tenga una clausula Valid, pero es cierto que no la entrega como una nKey. [/quote:2a5gkddz] ESO LO SE, pero no me gusta porque no anticipa el cierre del dialogo al usuario, por eso necesitaba el control del cierre. Usando el codigo que ...
BUTTONBAR separators
I have a dialog with a button bar built in. ( using tBar control in the resource file ). I DEFINE BUTTONBAR ...no problem I DEFINE BUTTON ... no problem Add in GROUP LABEL "xyz" to some buttons ... works fine. My last two buttons are a help button and an exit button. BTNRIGHT and they go to where they are placed....
BUTTONBAR separators
Hello Tim do you know if you can draw the TABs instead of diagonally also vertically. Thank you in advance Otto
BUTTONBAR separators
Hello Tim, I am working on the same problem right now. Best regards Otto [img:2kl95312]https&#58;//www&#46;mybergland&#46;com/FWForum/ribbon&#46;jpg[/img:2kl95312]
BUTTONBAR separators
[quote="Otto":2zawoqjw]Hello Tim do you know if you can draw the TABs instead of diagonally also vertically. Thank you in advance Otto[/quote:2zawoqjw] Please try setting oTabs:nOrientation to 1,2,3,4 for top, bottom, left, right. Text will be automatically rotated based on orientation.
BUTTONBAR separators
Mr. Tim and Mr. Otto This is the present behavior. [url=https&#58;//imageshack&#46;com/i/pmoDQKnKp:11crcg5w][img:11crcg5w]https&#58;//imagizer&#46;imageshack&#46;com/v2/xq90/922/oDQKnK&#46;png[/img:11crcg5w][/url:11crcg5w] If I understood you correctly, you would like to have a separator after button "five" of group "...
BUTTONBAR separators
Exactly, and thank you.
BUTTONBAR separators
Dear Mr Rao, thank you. What I mean with vertical is this: [img:17ba56wq]https&#58;//www&#46;mybergland&#46;com/FWForum/ribbon2&#46;jpg[/img:17ba56wq] Best regards, Otto
BUTTONBAR separators
Mr. Otto Sorry, that is not possible.
BUTTONBAR separators
Dear Mr Rao What is the advantage of TAB Class over a line with added buttons. Do you think I can get problems doing this. Thank you in advance Otto [img:3xdo0drg]https&#58;//www&#46;mybergland&#46;com/FWForum/buttons&#46;jpg[/img:3xdo0drg]
BUTTONBAR separators
Otto, do you need this ? [img:234uqk1z]https&#58;//i&#46;postimg&#46;cc/1tsvnZMk/Immagine&#46;jpg[/img:234uqk1z]
BUTTONBAR separators
Hello Silvio, yes this is what I would like to have. But maybe I can use buttons to achieve the goal. Thank you and best regards Otto
BUTTONBAR separators
[quote="TimStone":1zcivlwt]Exactly, and thank you.[/quote:1zcivlwt] Implemented in FWH1808 [code=fw:1zcivlwt]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">BUTTONBAR</span> oBar <span style="color: #0000ff;">OF</span> oWnd <sp...
BUTTONBAR separators
[quote="nageswaragunupudi":1m8eypbc][quote="TimStone":1m8eypbc]Exactly, and thank you.[/quote:1m8eypbc] Implemented in FWH1808 [code=fw:1m8eypbc]<div class="fw" id="{CB}" style="font-family: monospace;">   <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">BUTTONBAR</span> oBar <span style="colo...
BUTTONBAR y el Right Click
Hola Amigos Hay ciertos detalles que los heredas, y al no haber mucha documentacion no se sabe que hace. Defino una BUTTONBAR, de la siguiente forma: [code=fw:8qqos1ny]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">LOCAL</span> oBar<br /><br /><span style="color: #0000ff;...
BUTTONBAR y el Right Click
Hola intenta con oBar:bRClicked := { || .T. }
BUTTONBAR y el Right Click
Cristobal Funciono!!, Gracias Para ocultarlo lo hice con: [code=fw:2w5ovmkp]<div class="fw" id="{CB}" style="font-family: monospace;">oBar:<span style="color: #000000;">bRClicked</span> := <span style="color: #000000;">&#123;</span> || .F. <span style="color: #000000;">&#125;</span><br />&nbsp;</div>[/code:2w5ovmkp] ...
BUTTONBMP
REDEFINE BUTTONBMP oBtnFont ID 4003 OF oDlg ACTION msginfo("test") Sometimes I use BUTTONBMP without defining a bitmap. Every time I enter the dialog with the BUTTONBMP inside a new line BMP, 0, PLANSETUP, 2331 is added. The GDI tool reports following: PAL, 1124602283, TBTNBMP:NEWBAR, 344...
BUTTONBMP
Hello Otto, I use [color=#FF0000:1j2o1na6]GDIVIEW[/color:1j2o1na6], to test Resources. There is only one Line for each Application. A very good Tool. and Freeware. Maybe You will find still some more useful Utilities on the Homepage of Nirsoft ( Big Bundle of Tools ). Main-Page : <!-- m --><a class="postlink" href="h...
BUTTONBMP
Dibuja el boton perfectamente, pero el texto sobre él no se mueve junto con el boton al ser presionado. Tampoco permite cambiarle el color al texto, lo cual seria muy util, ya que el boton no puede cambiarsele el color...
BUTTONBMP
Bayron, La Clase TButtonBmp está basada en los botones estandard de Windows. En realidad lo unico que hacemos es interceptar el pintado para dibujar el bitmap, pero todo el proceso de pintado lo hace Windows. Para tener un control total sobre el proceso de pintado es preferible que uses la Clase TBtnBmp de FWH.
BUTTONBMP !
Amigos, estou usando o BUTTONBMP com @, ex: @ LIN,COL BUTTONBMP MoBtn[contamesas] PROMPT "AAAAAA"+CRLF+"BBBBBB" BITMAP qualmod1 PIXEL TEXTTOP 1)Acontece que CRLF não funciona e não consigo colocar duas linhas de texto. 2) como alinhar o texto para que fique em cima da BITMAP? Gracias Aoki
BUTTONBMP !
<!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=2963&highlight=buttonbmp">http://fivetechsoft.com/forums/viewtopi ... =buttonbmp</a><!-- m -->
BUTTONBMP - Executar enquanto estiver pressionado!
Antonio e amigos, é possível enquanto manter pressionado um BUTTONBMP, ele ficar executando constantemente a ação desejada? Grato
BUTTONBMP - Executar enquanto estiver pressionado!
[quote="FWHISHOW":1tpb6epo]Antonio e amigos, é possível enquanto manter pressionado um BUTTONBMP, ele ficar executando constantemente a ação desejada?[/quote:1tpb6epo] Creo que con BtnBmp no es posible, pero prueba este ejemplo con TSButton: [code:1tpb6epo]#include "FiveWin&#46;ch" #include "TSButton&#46;ch" static oWn...
BUTTONBMP - Executar enquanto estiver pressionado!
Grato Manuel, parabéns pelo excelente trabalho.
BUTTONBMP Error in the size of bitmpas 16.04
Good afternoon. I changed my version of Fivewin to 16:04 and buttonbmp is changed, leaving bitmaps with very small size when using textbotton, see pictures and the code below. Example: image in version 08.10 [img:180662p1]https&#58;//lh3&#46;googleusercontent&#46;com/5IbMKYrlc3Ul0ce8YQPGHjPEem2XYuy1VRKULysAamsv5IJ6AQ...
BUTTONBMP Error in the size of bitmpas 16.04
Augusto, Puedes poner una imagen de como se ve con FWH 16.04 ? gracias
BUTTONBMP Error in the size of bitmpas 16.04
Sorry typed wrong, the first is previous version the second image is fw 16.04. Bitmaps were small at 16.04 [img:3d9ulx5z]https&#58;//lh3&#46;googleusercontent&#46;com/1zmkYzFfG5Ql3VuouhVLFfAxS1J__NXGnSVLztQGwCDhOi6ekZUB7g5dP8tV1uibXAfVhFSjAEI9akV94GxBDh196GYoI1ZBJc3_zmnut6b-KO7dptCMGwsx568x0SZR2O_293oCZgU1UJRb0-2BwG8...
BUTTONBMP Error in the size of bitmpas 16.04
Augusto, Are you using FWH 16.04 build 3 ?
BUTTONBMP Error in the size of bitmpas 16.04
No, it's build 2. Não, é o build 2.
BUTTONBMP Error in the size of bitmpas 16.04
Can not see the second image. But that is not really important. Can you post the extract from rc file?
BUTTONBMP Error in the size of bitmpas 16.04
RC [code=fw:319n6uhf]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// RESOURCE SCRIPT generated by "Pelles C for Windows, version 8.00".</span><br /><br /><span style="color: #00D7D7;">#include</span> <windows.h><br /><span style="color: #00D7D7;">#include</span> <commctrl.h><...
BUTTONBMP Error in the size of bitmpas 16.04
Augusto, Already fixed. I am emailing you the new FWH libs
BUTTONBMP Error in the size of bitmpas 16.04
Obrigado Tudo certo agora! Augusto
BUTTONBMP Porque ya no aparecen los BITMAP
Antes del cambio a la nueva versión de FWH si me estaba apareciendo las BITMAP ahora yo no aparecen no sabes a que ser deba este problema. REDEFINE BUTTONBMP oBtn1 ID 20 OF oDlg TEXTRIGHT ; BITMAP ".\BMPS\ACEPTAR16.BMP" ; ACTION oDlg:End() Saludos, <!-- s:shock: --><img src="{SMILIES_...
BUTTONBMP Porque ya no aparecen los BITMAP
Mario, Acabamos de probar samples\TestBuBm.prg y funciona bien. Puedes por favor probarlo ahí y confirmarnos si te funciona ? Gracias.
BUTTONBMP Porque ya no aparecen los BITMAP
Antonio si esta funcionando bien era un problema con la dirección de las imágenes. Solo falta que los acomode a la izquierda. Muchas Gracias.
BUTTONBMP Porque ya no aparecen los BITMAP
Esa cláusula TEXTRIGHT no está soportada for la clase original... asi que supongo has implementado los cambios hechos por Rosine. Yo he visto esos cambios y tambien hay una TEXTLEFT para poner el bmp a la izquierda del PROMPT (Texto ).