Search found 622 matches: bchange

Return to advanced search

RIBBONBAR cachar el nombre del ACTION ejecutado

... foro, una pregunta: Hay manera de tomar el nombre del ACTION que se ejecuta cuando damos click en la opción del menú ? Existe algún método, algún bchange donde se pueda tomar la opción antes de ejecutarse ? Ejemplo: menu oMnuDBIO Popup 2007 menuitem '&Países' action CATPai() message 'Países' ...
by Joel Andujo
Tue Jan 23, 2024 4:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RIBBONBAR cachar el nombre del ACTION ejecutado
Replies: 3
Views: 193

Re: Inserting a string with CRLF into a single-line TGet.

... function work when entering data from the clipboard via the context menu ? For this, we need to modify/override the method HandleEvent. Can use :bChange and check which way to make these changes ? No use at all. By this time, Windows OS has already read the Clipboard contents and completed the ...
by nageswaragunupudi
Tue Dec 12, 2023 10:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting a string with CRLF into a single-line TGet.
Replies: 10
Views: 893

Re: Inserting a string with CRLF into a single-line TGet.

... method can be modified :KeyDown via Override ? 2. Will this function work when entering data from the clipboard via the context menu ? Can use :bChange and check which way to make these changes ?
by Natter
Tue Dec 12, 2023 7:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting a string with CRLF into a single-line TGet.
Replies: 10
Views: 893

check on get

... || lSave:= IIF(Msgyesno("I must save ?"),.t.,.f.), oDLG:AEvalWhen(), .t. }AEval( aGet, { |o| o:bChange :=  bCheck } )ACTIVATE DIALOG oDLG CENTER ON INIT EVAL(bCheck)IF lSave//---- saveEndifreturn nil   I made also AEval(aGet,{|oGet| ...
by Silvio.Falconi
Fri Nov 24, 2023 2:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: check on get
Replies: 27
Views: 3932

pedido de MEJORAS para proximas versiones.

... (aunque el usuario borro el dato y volvio a escribir "hola") ese GETS en lModify sea .f. hoy por hoy lo que hago es poner en oGets:bChange:= ::lModify:= .t. PERO no contempla lo de arriba. gracias.
by goosfancito
Fri Aug 11, 2023 7:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: pedido de MEJORAS para proximas versiones.
Replies: 5
Views: 257

Re: radio y bChange

gracias!
funciono
by goosfancito
Sat Aug 05, 2023 9:20 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: radio y bChange
Replies: 2
Views: 197

Re: radio y bChange

Try this:

Code: Select all  Expand view
redefine radio oRAdio var nVar ...


If you omit the VAR clause, oRadio is the radio variable and not the radio object.
by Enrico Maria Giordano
Sat Aug 05, 2023 8:01 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: radio y bChange
Replies: 2
Views: 197

radio y bChange

Hola.
Que estoy haciendo mal en este codigo que el bChange cuando compilo me dice que no existe.

Code: Select all  Expand view
redefine radio oRAdio id 100 of odlg
...
oRadio:bChange:= { || msginfo("a")})
 


Gracias.
by goosfancito
Sat Aug 05, 2023 7:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: radio y bChange
Replies: 2
Views: 197

Re: New FTDN July/Julio (FWH 23.07)

... - Si el conjunto de registros está cerrado al configurarlo, xbrowse lo abrirá para la búsqueda. - Nuevo DATA bmPrevious (marcador anterior) bChange ahora puede acceder al marcador anterior con oBrw:bmPrevious - Correcciones en SetRDD() en caso de usos muy raros. - Corrección: SetTree(). ...
by Antonio Linares
Sat Jul 29, 2023 9:16 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1062

New FTDN July/Julio (FWH 23.07)

... fixed. - If recordset is closed when setting up is setup, it is opened by xbrowse for browing. - New DATA bmPrevious (previous bookmark) bChange can now access the previous Bookmark with oBrw:bmPrevious - Fixes in SetRDD() in case of very rare usages. - Fix:SetTree(). Auto-generation ...
by Antonio Linares
Thu Jul 27, 2023 6:13 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1062

Re: Text paste event

With edit control, try pasting by pressing Ctrl-V. In my test here, bChange is executed, immediately after pressing the key and before actually pasting. Note: In case of EDIT control, bChange is executed when the user presses any key Eval( ::bChange, nKey, ...
by nageswaragunupudi
Tue May 30, 2023 2:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Text paste event
Replies: 7
Views: 299

Re: Text paste event

For me oGet:bChange is working in TGet class when any text is pasted into the Get.
(But for me the problem is bChange is evaluated twice in case of Get)

Can you please check again?
by nageswaragunupudi
Tue May 30, 2023 1:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Text paste event
Replies: 7
Views: 299

Combobox no actualiza

... := 30                :nHeadStrAligns:= AL_CENTER                :bChange := {||cVar:=ponmatricula(aAlias,oBrw1:aCols[4]:value),oCombo:Refresh(),xnuconduc:=oBrw1:aCols[4]:value,aData2:=creaelarray2(xnuconduc),aData3:=creaelarray3(xnuconduc),;  ...
by JoseLuis
Thu May 25, 2023 8:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Combobox no actualiza
Replies: 2
Views: 169

Re: Actuliza Pantalla de XBrowse

Antonio, no sé con qué condición tienes hecho el tema del refresh del browse ( definiendo el bChange, etc. ) Si es asi, recuerda que la clase tiene una DATA lColChangeNotify ( por defecto en .F. ), que llama al bChange definido ( que habitualmente solo es ejecutado cuando ...
by remtec
Mon May 15, 2023 2:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actuliza Pantalla de XBrowse
Replies: 6
Views: 628

Re: Actuliza Pantalla de XBrowse

Antonio, no sé con qué condición tienes hecho el tema del refresh del browse ( definiendo el bChange, etc. ) Si es asi, recuerda que la clase tiene una DATA lColChangeNotify ( por defecto en .F. ), que llama al bChange definido ( que habitualmente solo es ejecutado cuando ...
by cnavarro
Fri May 12, 2023 2:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actuliza Pantalla de XBrowse
Replies: 6
Views: 628
Next

Return to advanced search