Search found 16 matches: lwantclick

Return to advanced search

Re: bDragBegin and bDropOver problem

... of COLUMNS. It works fine, when I change from FIELDS to COLUMNS. Thanks once again both of you, Say control does not accept drop unless oSay:lWantClick is set to .T. The behavior is consistent in all versions of FWH and in particular this is the same behavior both in 1901 and 2304. Here is ...
by dutch
Wed Sep 20, 2023 5:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bDragBegin and bDropOver problem *Unresolve*
Replies: 27
Views: 4060

Re: bDragBegin and bDropOver problem

Say control does not accept drop unless oSay:lWantClick is set to .T. The behavior is consistent in all versions of FWH and in particular this is the same behavior both in 1901 and 2304. Here is a small test: #include "fivewin.ch"function ...
by nageswaragunupudi
Wed Sep 20, 2023 12:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bDragBegin and bDropOver problem *Unresolve*
Replies: 27
Views: 4060

signatur.prg How can I know if the user has signed or not?

... ACTION oSig:refresh(.t.) OF oDlg @ 01, 60 BUTTON "Save" SIZE 25, 10 PIXEL OF odlg ; ACTION ( oSig:SaveToBmp( cFile ), oDlg:End() ) oSig:lWantClick := .T. oSig:bLButtonUp := { | x, y, z | DoDraw( hDC, y+1, x+1, lPaint := .F. ) } oSig:bMMoved := { | x, y, z | DoDraw( hDC, y, x , lPaint ...
by MGA
Fri Nov 11, 2022 3:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: signatur.prg How can I know if the user has signed or not?
Replies: 5
Views: 395

Re: Easy Dialogs

Eduardo, Con los SAYs basicamente tienes que hacer dos cosas: oSay:lWantClick = .T. // para que procesen los clicks del ratón oSay:lDrag = .T. El resto es como hacemos en design.prg: oSay:bRClicked = { | nRow, nCol | EditControl( nRow, nCol, oSay ) } y desde ...
by Antonio Linares
Mon Nov 04, 2013 10:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Easy Dialogs
Replies: 9
Views: 1535

Re: FWPPV to FW

Hello Carles,
do you know if lWantClick also works with resource files?

Thanks in advance
Otto

I had somewhere else an error.
Yes it is working.
by Otto
Mon Jul 25, 2011 1:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWPPV to FW
Replies: 4
Views: 594

Re: Clase TGSay

Con ::lWantClick = .T. cualquier SAY funciona como un botón
by antolin
Mon May 17, 2010 4:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase TGSay
Replies: 8
Views: 1280

Re: Change color of say when mouse is over it

Hello Dietmar,
you could try with lWantClick.
Best regards,
Otto


Code: Select all  Expand view

   oSay:lWantClick := .t.
   oSay:bMMoved   = {||oSay:SetColor(  0, RGB(128,128,255) ),   oSay:refresh() }
 
by Otto
Sat May 16, 2009 7:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change color of say when mouse is over it
Replies: 6
Views: 850

Re: Ayuda en trsay

Talvez esta lineas puedan ayudarte. Utilizo Say sensitivo, modificado, de Ramón Avandaño.

REDEFINE TSAYT oPla1 PROMPT "Hola " ID 203 OF oDlg COLOR nClrTxt
oPla1:lWantClick = .t.
oPla1:bLClicked = { || cPlani:="PLA1",oPlani:Refresh(),oDlg:End() }
by FranciscoA
Mon May 04, 2009 9:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda en trsay
Replies: 1
Views: 331

Re: quien me da una idea de como hacer esto?

Hola amigo... Prueba lo siguiente: @ nRow,nCol SAY oSay // Donde oSay es el objeto asociado.  Espero te sirva. Hola podrias usar los Say con lWantClick DEFINE CURSOR oCursor HANDREDEFINE SAY oSay[1] ID 201 OF oDlg PROMPT "1" COLOR CLR_BLUEREDEFINE SAY oSay[2] ID 202 ...
by jefe
Mon Apr 20, 2009 6:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: quien me da una idea de como hacer esto?
Replies: 9
Views: 1101

Re: quien me da una idea de como hacer esto?

Hola podrias usar los Say con lWantClick DEFINE CURSOR oCursor HANDREDEFINE SAY oSay[1] ID 201 OF oDlg PROMPT "1" COLOR CLR_BLUEREDEFINE SAY oSay[2] ID 202 OF oDlg PROMPT "2" COLOR CLR_BLUEaEval( oSay, ...
by Patricio Avalos Aguirre
Mon Apr 20, 2009 4:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: quien me da una idea de como hacer esto?
Replies: 9
Views: 1101

Cambiar color a Say transparente al hacer click

... está mi código: redefine say aoSays[1] prompt cNum id 101 of oDlg font oFont TRANSPARENT color CLR_WHITE aoSays[1]:lTransparent:=.t. aoSays[1]:lWantClick = .t. aoSays[1]:bLClicked = { || aoSays[1]:setColor(CLR_BLACK,GetSysColor(0)),aoSays[1]:lTransparent:=.t.,bCode:=.f.,aoSays[1]:setfocus(),aoSays[1]:refresh()} ...
by softruz
Thu Dec 18, 2008 11:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar color a Say transparente al hacer click
Replies: 2
Views: 528

TSay: lDrag and lWantClick

Can these two properties be set to TRUE (.t.) together?
by toyet
Fri Nov 21, 2008 2:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TSay: lDrag and lWantClick
Replies: 1
Views: 440

... Mr.Reinaldo, I dont have the coredll.dll , so I can´t make a 100 % test... (I rem the call of the function MoveToEx) I add this on your code: oSig:lWantClick = .T. before the activate the dialog, and the program draws a line, when I move the mouse, but not in the center of dialog (maybe because ...
by yury
Thu Oct 09, 2008 9:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using Say to draw
Replies: 4
Views: 1350

Problema con ADJUST en los controles en un diálogo

... 2 PIXEL ; COLOR "N/N" ; CURSOR oSizeNWSE por @0,0 say oDot1 prompt "" of oWndParent size 3, 3 pixel COLOR "N/N" oDot1:oCursor := oSizeNWSE oDot1:lWantClick := .t. pero aunque ya no aparece el error aparece un punto en la esquina superior izquierda del diálogo y funciona como si fuera la esquina ...
by quique
Mon Jun 16, 2008 7:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con ADJUST en los controles en un diálogo
Replies: 0
Views: 442

Sensative Say ( ssay class )

... by antonio .. but no transparency @ 150,2 SAY oSay PROMPT "Revision Date "+dtoc( dEXE )+; " "+FWVERSION+" "+VERSION() PIXEL of oDLG oSay:lWantClick = .T. oSay:bLClicked = { || MsgInfo( "click" ) } */ @ 150,2 SENSITIVE SAY "Revision Date "+dtoc( dEXE )+; " "+FWVERSION+" "+VERSION() PIXEL ...
by Rick Lipkin
Tue May 27, 2008 1:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sensative Say ( ssay class )
Replies: 2
Views: 801
Next

Return to advanced search