topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
BTNBMP from resource missing command COLOR ? | Mr. Rao,
Your sample works fine.
To change the textcolor as well I did the following changes
with a included Setcolor() :
[color=#0000FF:g3wsaczt]GRADIENT { |lMouseOver| If( lMouseOver, ( oBtn:SetColor( 16777215, ), 255 ), ;[/color:g3wsaczt] // red with white text
[color=#0000FF:g3wsaczt]{ { 1, (oBtn:SetColor( 0, ), ... |
BTNBMP from resource missing command COLOR ? | :nClrText := { |lMouseOver, oBtn| <color>( lMouseOver, oBtn ) } |
BTNBMP from resource missing command COLOR ? | Thank You very much.
much better and shorter now :
[code=fw:3e8ssbpv]<div class="fw" id="{CB}" style="font-family: monospace;"><br />GRADIENT <span style="color: #000000;">{</span> |lMouseOver, oBtn| <span style="color: #00C800;">If</span><span style="color: #000000;">(</span> lMouseOver, <span style="color: ... |
BTNBMP from resource missing command COLOR ? | Instead of:
[code=fw:1c90boe0]<div class="fw" id="{CB}" style="font-family: monospace;"><br />GRADIENT <span style="color: #000000;">{</span> |lMouseOver, oBtn| <span style="color: #00C800;">If</span><span style="color: #000000;">(</span> lMouseOver, <span style="color: #000000;">(</span> oBtn:<span style=... |
BTNBMP lButtonDown | Hi to all!
I need to trigger an action with the mouse left Button down (and not at the release) in a BTNBMP. Any help would be appreciated.
TIA
Euclides |
BTNBMP lButtonDown | Euclides
Try...
oBtn:bLClicked = {|| MyAction() }
and not define "ACTION" in button |
BTNBMP lButtonDown | Danie, thanks for the answer, but...
...
REDEFINE BTNBMP oBtn RESOURCE "RESOURCE" ID 100 OF oDlg
oBtn:bLClicked = {|| MsgInfo(oBtn:lPressed) }
...
does not execute (maybe is trapped somewhere before)
Regards
Euclides |
BTNBMP lButtonDown | Euclides...
i checked the class... and this behavior isn't supported
sorry...
you can try modify the class
METHOD LButtonDown( nRow, nCol )
change to this line
[code=fw:cecimkqr]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">if</span> ::<span style="color: #000000;">lDrag</... |
BTNBMP lButtonDown | OK, working as expected.
Thanks Daniel!
Regards
Euclides |
BTNBMP on Gradient in Resources the right way ? | Hello,
After many tests, I could solve the problem, painting BTNBMP's inside Resources with all combinations.
I'm not really shure, if there is maybe still another solution for it.
I had to use two functions :
1. The normal Gradient-Painting on Dialogs
2. I used Antonio's Function, for the Gradient-painting on transpa... |
BTNBMP problem | The following example is [b:387qfnrg]btntrans.prg[/b:387qfnrg] except that i reset the border with [b:387qfnrg]ResetBorder[/b:387qfnrg] .You will see it is not working. Can someone tells me why?
Thanks
A.S.K
[code:387qfnrg]
// Testing a transparent TBtnBmp on a transparent DialogBox
#include "FiveWin.ch"
//---... |
BTNBMP problem | [quote="ask":m5zfrf0w] @ 70, 80 BTNBMP oBtn FILENAME "../bitmaps/yes.bmp" ;
SIZE 50, 30 OF oDlg ACTION MsgInfo( "click" )[/quote:m5zfrf0w]
Try this:[code:m5zfrf0w] @ 70, 80 BTNBMP oBtn FILENAME "../bitmaps/yes.bmp" ;
SIZE 50, 30 OF oDlg ACTION MsgInfo( "click" ) NOBORDER
oBtn:... |
BTNBMP problem | [quote="mmercado":10iy98l3][quote="ask":10iy98l3] @ 70, 80 BTNBMP oBtn FILENAME "../bitmaps/yes.bmp" ;
SIZE 50, 30 OF oDlg ACTION MsgInfo( "click" )[/quote:10iy98l3]
Try this:[code:10iy98l3] @ 70, 80 BTNBMP oBtn FILENAME "../bitmaps/yes.bmp" ;
SIZE 50, 30 OF oDlg ACTION MsgInfo( "click" ... |
BTNBMP slow performance | Hello Antonio or Rao ,
I have a reastaurant programm with touch interface.
I use BTNBMP to drow the buttons.
If the user wishes to charge , for example two coffe , the user presses the same butoon twice.
If the user presses the same button to quickly , the programm will charge only one coffee.
There is a waiting ... |
BTNBMP slow performance | +1
Yes. I also have the same problem, for a long time. |
BTNBMP slow performance | Please, try with this
In your sample
[code=fw:7xslooo4]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /> <span style="color: #00C800;">local</span> oBtn2<br /><br /> .../...<br /><br /> @ <span style="color: #000000;">100</span>, <span style="color: #000000;">2</span> <span st... |
BTNBMP slow performance | Thanks Navarro
this works
[code=fw:t9w4j10k]<div class="fw" id="{CB}" style="font-family: monospace;"> @ <span style="color: #000000;">100</span>, <span style="color: #000000;">2</span> <span style="color: #0000ff;">BTNBMP</span> oBtn2 <span style="color: #0000ff;">OF</span> oDlg <span style="color: #0000ff;">SIZE</... |
BTNBMP slow performance | [quote="Maurizio":fpzpa37l]Thanks Navarro
this works
[code=fw:fpzpa37l]<div class="fw" id="{CB}" style="font-family: monospace;"> @ <span style="color: #000000;">100</span>, <span style="color: #000000;">2</span> <span style="color: #0000ff;">BTNBMP</span> oBtn2 <span style="color: #0000ff;">OF</span> oDlg <span sty... |
BTNBMP slow performance | Out of interest...
I have a touchscreen laying arround....
In order to try this kind of functions on a touchscreen, do I need to install extra FW software or simply install the screen ?
The touch driver can be found on the internet and need to be installed. |
BTNBMP slow performance | [quote="Marc Venken":3ija80sb]Out of interest...
I have a touchscreen laying arround....
In order to try this kind of functions on a touchscreen, do I need to install extra FW software or simply install the screen ?
The touch driver can be found on the internet and need to be installed.[/quote:3ija80sb]
Do not need... |
BTNBMP slow performance | Hi Cristóbal... sorry for jumping in...
[code=fw:ygsixsnz]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">local</span> o<br /> ...<br /> <span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="colo... |
BTNBMP slow performance | Navarro
same problem , with array of BTNBMP dosn't works
Maurizio |
BTNBMP slow performance | Maurizio, this work ok for me
[code=fw:z377inek]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">(</span><s... |
BTNBMP slow performance | With solution of Euclides
[code=fw:2tgq9qtb]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br /><br /><span style="color: #00C800;">Function</span> MyClick<span style="color: #00... |
BTNBMP slow performance | Thanks Navarro ,
I have to look why in your example it goes.
Maurizio |
BTNBMP tampoco me funciona | Buenas tardes,
Sigo con problemas inexplicables en esta versión de FWPPC. Creo que mis librerías están incompletas o llenas de bugs.
Algo tan simple como:
@ 200, 5 BTNBMP oBtnSalir PROMPT "Salir" RESOURCE "PDAVOLVER" SIZE 230, 45 OF oWnd ACTION oWnd:end()
No carga el bitmap, he seguido la traza y es que no carga el... |
BTNBMP tampoco me funciona | Joaquín,
Acabo de enviarle un email a Toni Sales para que me envíe las librerías que ellos estan usando,
para enviártelas. |
BTNBMP text on 2 lines | Hi,
Is there a possiblity to set the text of a BTNBMP on 2 lines?
I already tested 'LINE1'+CRLF+'LINE2', but it doesn't work <!-- s:cry: --><img src="{SMILIES_PATH}/icon_cry.gif" alt=":cry:" title="Crying or Very sad" /><!-- s:cry: --> .
Thanks,
Marc |
BTNBMP text on 2 lines | Marc,
You have to modify the Class TBtnBmp to paint more than one line.
Is it placed on a buttonbar 2007 style ? |
BTNBMP text on 2 lines | Antonio,
It's not placed on a buttonbar 2007 style.
The text should change depending of data from a database. Sometimes the text is longer then the width of th button. I can't enlarge the size of the button because there is no room anymore. The height of the button is large enough to have two lines.
Regards,
Marc |
BTNBMP text on 2 lines | Marc,
We email you a modified LIB.
Please test it using CRLF in the text, thanks |
BTNBMP text on 2 lines | Thanks Antonio,
It's working very nice!!!
Best regards,
Marc |
BTNBMP text on 2 lines | Hello Antonio
Is this modify present in the new FW ?
Regards MAurizio |
BTNBMP text on 2 lines | Maurizio,
It will be included in FWH 7.11.
Anyhow, if you need it now, please email me and we will provide you the modified OBJs |
BTNBMP text on 2 lines | Antonio
Will you provide the same change for buttonbmp ?
Richard |
BTNBMP text on 2 lines | Richard,
Its not that simple as we are calling the standard Windows Button paint procedure and if we override it, then we will not get the standard button painting <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->
CallWindowProc( ::nOldProc, ::hWnd, WM_PAINT, ::hDC, 0 )
May... |
BTNBMP transparent | Hi,
i have some btnbmp on folder with xp style.
Have anyone a solution to get Btnbmp transparent.
i use FWH 7.01 and Harbour alpha build 1.0
Thanks in advance.
Uwe |
BTNBMP transparent | <!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=6632">http://fivetechsoft.com/forums/viewtopic.php?t=6632</a><!-- m --> |
BTNBMP transparent | Antonio,
your sample do not work.
for example my sourcecode:
The oBtn is not transparent now.
DEFINE DIALOG oAuf:oDlgAuf RESOURCE "Aufmsk0" ICON oIauf
REDEFINE FOLDER oAuf:oFauf ID 100 OF oAuf:oDlgauf ;
ITEMS " Auftrags&kopf ", " Auftrags&positionen " ;
DIALOGS "Aufmsk1", "Aufmsk2";
REDEFINE BTNBMP oB... |
BTNBMP transparent | Read again the code that Antonio refered you, detailed. Your code does not reflects the Antonio advice. Pay attention and read it again, I´m sure the answer is there.
Regards,
Carlos |
BTNBMP transparent | You are missing this:
DEFINE DIALOG oDlg ... [color=red:1w4zc8zx]TRANSPARENT [/color:1w4zc8zx]
...
[color=red:1w4zc8zx]oBtn:lTransparent = .T. [/color:1w4zc8zx] |
BTNBMP transparent | Hi,
I have changed my code to the following, but it takes no effect. The BTNBMP are not transparent. Is the problem maybe in the resourceeditor,i use Visual c++ 6.0 or must i have a specially backround color for the bitmap that is in the resourceeditor?
DEFINE DIALOG oDlgAuf RESOURCE "Aufmsk0" ICON oIauf TRANSPARENT
... |
BTNBMP transparent | Please test this sample:
[code:30cgmqvg]
#include "FiveWin.ch"
function Main()
local oDlg, oBtn
DEFINE DIALOG oDlg TRANSPARENT
@ 10, 10 BTNBMP oBtn FILENAME "About.bmp" NOBORDER
oBtn:lTransparent = .T.
ACTIVATE DIALOG oDlg
return nil
[/code:30cgmqvg] |
BTNBMP transparent | Antonio,
your sample works fine,but my BTNBMP is not not on a dialog but also on a Folder.
regards
Uwe |
BTNBMP transparent | Then try this:
oFolder:aDialogs[ n ]:lTransparent = .T. |
BTNBMP transparent | Antonio,
sorry, but no effect.
The Folder is in the Resourceeditor declared as SysTabControl32.
The BTNBMP on the Dialog are OK.
Do you have an other idea.
regards,
Uwe |
BTNBMP transparent | Uwe,
You may use a Class TButtonBmp object instead of a TBtnBmp one, as TButtonBmp uses the XP themes and will look better
Please review samples\TestBuBm.prg |
BTNBMP with windows style | Hello,
looking around the fivewin code I found the wrapper for use of theme data of windows, I used it some time ago for a my project in C++.
So I think it would be great if the btnbmp uses this procedures (and DrawFrameControl) to paint itself.
Here an example of result:
[img:1oae50nt]http://i.imgur.com/p... |
BTNBMP with windows style | Antonino,
They look very nice, congratulations! a great work
Do you think that you could include your code in Class TBtnBmp ? I appreciate if you review it yourself.
If you don't have the most recent btnbmp.prg I will send it to you, many thanks! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title=... |
BTNBMP with windows style | I think it can be use d also to create CHECKBOX on xbrowse ( no use bitmaps instead)
with the paramter [b:x9kthrcr]BP_CHECKBOX[/b:x9kthrcr]
#define CBS_CHECKEDDISABLED 8
#define CBS_CHECKEDHOT 6
#define CBS_CHECKEDNORMAL 5
#define CBS_CHECKEDPRESSED 7
#define CBS_MIXEDDISABLED 12
#defin... |
BTNBMP with windows style | Antonino's enhancements have been included in FWH 15.05 <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
* Enhancement TBTNBMP. Now btnbmp also can use the selected Desktop theme.
Themes are applied only to btnbmps not defined with 2007 or 2010 or FlatStyles.
Changing d... |
BTNBMP with windows style | [quote="Silvio.Falconi":266wcmng]I think it can be use d also to create CHECKBOX on xbrowse ( no use bitmaps instead)
with the paramter [b:266wcmng]BP_CHECKBOX[/b:266wcmng]
[/quote:266wcmng]
Hi,
for xBrowse the modification is very complex.
Here a work-around:
[code=fw:266wcmng]<div class="fw" id="{CB}" style="font... |
BTNBMP with windows style | yes
I thinked it could be made....
you're a big |
BTNBMP with windows style | Antonino,
to move an item -> change the position Up and Down
[code=fw:2lzn3f02]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> SwapUpArray<span style="color: #000000;">(</span> aArray, nPos <span style="color: #000000;">)</span><br /><br /> <s... |
BTNBMP é possível ajustar uma imagem dentro do botão? | Antonio é possível ajustar uma imagem dentro do botão (BTNBMP)?
Grato
Aoki |
BTNBMP é possível ajustar uma imagem dentro do botão? | TENTE COM O COMANDO:
ADJUST. |
BTNBMP é possível ajustar uma imagem dentro do botão? | Não funciona! |
BTNBMP é possível ajustar uma imagem dentro do botão? | Aoki,
Modifica el código fuente de la clase TBtnBmp método Paint |
BTNBMP é possível ajustar uma imagem dentro do botão? | Desulpe-me Antonio, mais não tenho experiência para fazer tal alteração, usted poderia indicar a alteração necessaria?
Grato
Aoki |
BTNBMP é possível ajustar uma imagem dentro do botão? | Antonio como modificar o metodo paint?
Grato
Aoki |
BTNBMP image moved up | Dear friends,
as subject on Vista & XP with FWH 8.11.
Is possible to solve? |
BTNBMP image moved up | to more explain:
[img:2pr6my93]http://www.garombo.eu/public/support/image/image1.jpg[/img:2pr6my93]
[img:2pr6my93]http://www.garombo.eu/public/support/image/image2.jpg[/img:2pr6my93] |
BTNBMP image moved up | For the solution add [b:sahj4w6l]CENTER[/b:sahj4w6l]
please see:
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=14119&p=72747&hilit=oleuninitialize#p72698">viewtopic.php?f=6&t=14119&p=72747&hilit=oleuninitialize#p72698</a><!-- l -->
[code=fw:sahj4w6l]<div class="fw" ... |
BTNBMP image moved up | Ugo,
That bug was solved in 9.01 and it was discussed in these forums. |
BTNBMP image moved up | [quote="Antonio Linares":1pwl76ur]That bug was solved in 9.01 and it was discussed in these forums.[/quote:1pwl76ur]
Dear Antonio,
i don't found when i searched it! <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->
I have got another bug with tbtnget and the right image:
[img:1pw... |
BTNBMP image moved up | Ugo,
FWH supports this syntax now:
@ ..., .. GET ... ACTION ... BITMAP ...
There is no need to keep using TBtnGet. |
BTNBMP image moved up | Ugo,
Please build FWH\samples\Test4.prg.
Here it looks fine (using 9.02):
[img:3gs5n9fj]http://img23.imageshack.us/img23/2835/capturer.png[/img:3gs5n9fj] |
BTNBMP image moved up | Antonio,
very beautifull! |
BTNBMP image moved up | [quote="Antonio Linares":11p1e7mg]FWH supports this syntax now:
@ ..., .. GET ... ACTION ... BITMAP ...
There is no need to keep using TBtnGet.[/quote:11p1e7mg]
Antonio,
Is supported on FWH 8.11?
or in 8.11 there is a workaround? |
BTNBMP image moved up | Ugo,
Yes, it is available in 8.11 <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Please review FWH\samples\GetBtn.prg |
BTNBMP image moved up | Wow,
thank you. |
BTNGET Y FWH 6.12 | Nunca faltan sufrimientos a la hora de actualizar FWH cuando se usan clases externas al mismo (no digo que sea culpa de FWH).
Tal vez alguien me pueda ayudar en este problema con la Clase BtnGet.
Esta clase me ha funcionado perfecto con FWH Marzo 2006 (2.7), al actualizarme a la version 6.12, la funcion FWCalendar (q... |
BTNGET Y FWH 6.12 | José,
Hay que hacer una pequeña modificación en la clase TSay, en concreto hay que quitar la línea 265 (::VarPut(...)). Con ese cambio debería funcionarte correctamente. |
BTNGET Y FWH 6.12 | Ó PUEDES USAR ESTE CALENDÁRIO:
<!-- m --><a class="postlink" href="http://www.fivewin.com.br/exibedicas.asp?id=594">http://www.fivewin.com.br/exibedicas.asp?id=594</a><!-- m --> |
BTNGET Y FWH 6.12 | Gracias a ambos por responderme tan pronto!!!!!!!!
Antonio,
efectivamente era ese el problema, ahora me funciona perfecto <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Karinha,
Si bien no puedo usar tu calendario para esta clase porque es demasiado
grande, seguram... |
BTNGET as COMBO | I am trying to insert a button in a get that looks like the combobox button
so that it is homogeneous graphically but big problems,
so far I have reached this result, is it possible in your opinion to do better?
I can't use two comboboxes I have to use two tget controls with a button to call a function that shows a ... |
BTNGET vs GET..ACTION..BITMAP | Dear Ugo,
I think Antonio will include RESIZE16 clause fixed for GET..ACTION. If not now you can fix as following. I've changed all BTNGET to original GET..ACTION and working without problem
[code=fw:rc5h0vyn]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">METHOD</span>... |
BTNGET vs GET..ACTION..BITMAP | [quote="Antonio Linares":2kcf2xg7]FWH supports this syntax now:
@ ..., .. GET ... ACTION ... BITMAP ...
There is no need to keep using TBtnGet.[/quote:2kcf2xg7]
Dear Antonio,
I use the redefine, work, but not well, the button position is not on the right!
[img:2kcf2xg7]http://www.garombo.eu/public/suppo... |
BTNGET vs GET..ACTION..BITMAP | [quote="Enrico Maria Giordano":26ap9kv5][quote="Ugo":26ap9kv5]There is also the RESOURCE
How to use the resource instead bitmap image?[/quote:26ap9kv5]
It is not supported yet. You have to modify CreateButton() method for this. Antonio?[/quote:26ap9kv5]
Antonio,
can you help me? |
BTNGET vs GET..ACTION..BITMAP | [quote="Ugo":3swywan1]Dear Enrico,
Test it:[/quote:3swywan1]
Interesting... It seems I was wrong. If I change the last line of @ row, col GET ... ACTION command in fivewin.ch:
[code=fw:3swywan1]<div class="fw" id="{CB}" style="font-family: monospace;"><.pass.>, <span style="color: #000000;">[</span><.lNoBorder.><... |
BTNGET vs GET..ACTION..BITMAP | Dear Dutch,
the position work well,
thank you.
> I've changed all BTNGET to original GET..ACTION and working without problem
I have a problem, test this (with BTNGET work well):
[code=fw:j2zpjvan]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNCTION</span> Main<span style="... |
BTNGET vs GET..ACTION..BITMAP | [code=fw:21u672m4]<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;">(</span><span style="color: #000000;">)</sp... |
BTNGET vs GET..ACTION..BITMAP | Dear Enrico,
work well, of course! <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: -->
thank you.
This is a bug?
The other clauses (valid,spinner,when etc.) work well using directly the class variable.
There is also the RESOURCE
How to use the resource instead bitm... |
BTNGET vs GET..ACTION..BITMAP | [quote="Ugo":2thygy85]This is a bug?[/quote:2thygy85]
It seems not. Look inside tget.prg, method CreateButton() and you will see that the same technique is used there. I tried it under Harbour with the same result (the local variable is still required).
[quote="Ugo":2thygy85]There is also the RESOURCE
How to use the ... |
BTNGET vs GET..ACTION..BITMAP | [quote="Enrico Maria Giordano":119ups2s][quote="Ugo":119ups2s]This is a bug?[/quote:119ups2s]
It seems not. Look inside tget.prg, method CreateButton() and you will see that the same technique is used there. I tried it under Harbour with the same result (the local variable is still required).
[quote="Ugo":119ups2s]Th... |
BTNGET y la enie mayúscula | Estimados,
Miren este código:
[code:3lx9kfot]REDEFINE BTNGET oDatos[ 01 ] VAR vDatos[ 01 ];
PICTURE "@!";
ID 118 OF oDlg[/code:3lx9kfot]
Ovbiedo ( yo ) dice que cuando corre su app, y quiere escribir la Ñ aparece ñ, y eso que esta todo en mayúsculas.
Porque ocurre esto? |
BTNTRNS can use with WINDOW? | Dear All,
I try BTNTRNS, it works fine for DIALOG but it doesn't "Translucent background" on WINDOW.
Can it use with WINDOW?
Thanks in advance,
Dutch |
BTNTRNS can use with WINDOW? | Dear Dutch,
Please post a small PRG to test, thanks |
BTNTRNS can use with WINDOW? | Dear Antonio,
I got the problem now. The TRANSLUCENT BUTTONS will work with background image from BRUSH. But it doesn't work with background image from FW_Drawimage().
[quote="Antonio Linares":3t44hvy8]Dear Dutch,
Please post a small PRG to test, thanks[/quote:3t44hvy8] |
BTNTRNS can use with WINDOW? | Please post a small PRG to test <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
BTNTRNS can use with WINDOW? | Dear Antonio,
This is sample my code. ".\TESTSBTN.JPG' just jpg file for background.
[code=fw:3iks5lzd]<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</span> <span styl... |
BTNTRNS can use with WINDOW? | Dutch, see if I understand what you want to do.
Dutch, a ver si entiendo lo que quieres hacer.
[url:1071fyod]https://imgur.com/sNg5eE7[/url:1071fyod]
[img:1071fyod]https://i.imgur.com/sNg5eE7.png[/img:1071fyod]
Regards, saludos. |
BTNTRNS can use with WINDOW? | Dear Karinha,
Yes, thank you. I got it by using SBUTTON with Alpha Channel image.
[quote="karinha":2j7oqoyl]Dutch, see if I understand what you want to do.
Dutch, a ver si entiendo lo que quieres hacer.
[url:2j7oqoyl]https://imgur.com/sNg5eE7[/url:2j7oqoyl]
[img:2j7oqoyl]https://i.imgur.com/sN... |
BTNTRNS can use with WINDOW? | You can use BTNBMP as transparent buttons too. |
BTNTRNS can use with WINDOW? | Very Good Dutch, example using BTNBMP.
[code=fw:z0ae132y]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// C:\DUTCH\TESTSBTN.PRG-Modified by: <!-- e --><a href="mailto:kapiabafwh@gmail.com">kapiabafwh@gmail.com</a><!-- e --> - 05/05/2023 Ver: 3</span><br /><br /><span sty... |
BTNTRNS can use with WINDOW? | Very good! Another model in case anyone needs it.
¡Muy bien! Otro modelo por si alguien lo necesita.
Download Complete:
[url:29toruau]https://mega.nz/file/EUcDSaiC#1aDPNv2z6_yD5wfbjme0fRLbhtqo5_0fIjZi-lZ5-do[/url:29toruau]
Regards, saludos. |
BTNTRNS can use with WINDOW? | Thanks All,
I got an idea now. |
BUENAS TARDES ANTONIO LINARES | [color=darkblue:24xub4dk][b:24xub4dk]LE REITERO MI SALUDO Y EL MOTIVO DE ESTE MENSAJE ES PARA SOLICITAR ASESORAMIENTO.
EL DETALLE ESTA ASI, TENGO UN DBF QUE DESDE MI PRG POR MEDIO DE UN LISTBOX SAQUE 3 CAMPOS, ESA TABLA CONTIENE LOS DATOS DE LOS CLIENTES PERO CON EL LISTBOX SOLO SAQUE 3.
MI CLIENTE ME PIDE QUE AL MOM... |
BUENAS TARDES ANTONIO LINARES | Ruben :
Mandame por correo algun num. telefonico fijo o marcame al 01 800 701 7119.
Con gusto te puedo echar una mano con esto.
Saludos
Raymundo Islas |
BUENAS TARDES ANTONIO LINARES | [size=150:3qgpsbmi][color=darkblue:3qgpsbmi][quote:3qgpsbmi][b:3qgpsbmi]TE AGREGUE A MI LISTA DEL MSN
ESPERO VERTE AHI, PARA ASI NO QUITARTE MUCHO TIEMPO POR TELEFONO
SALUDOS DESDE TAMPICO, TAMPS.[/b:3qgpsbmi][/quote:3qgpsbmi][/color:3qgpsbmi][/size:3qgpsbmi] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.