Search found 88 matches: lonoff

Return to advanced search

Re: New FTDN February 2024 (FWH 24.02)

... desarrollo, pero puedes comenzar a usarla. Por favor, revisa el ejemplo: FWH\samples\webview..._2.prg examples. * Nuevo: Nuevo método LockUpdate( lOnOff ) en la clase TWindow. Echále un vistazo a https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-lockwindowupdate. * Nuevo: ...
by Antonio Linares
Sun Mar 03, 2024 7:25 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 185

New FTDN February 2024 (FWH 24.02)

... in development but you can already start using it. Please review FWH\samples\webview..._2.prg examples. * New: Class TWindow Method LockUpdate( lOnOff ): https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-lockwindowupdate * Class FWMariaConnection New Methods: ListCollations() ...
by Antonio Linares
Sat Mar 02, 2024 8:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 185

Re: Xbase++ :lockUpdate() -> Fivewin ?

Nuevo método en la Clase TWindow de FWH:

METHOD LockUpdate( lOnOff ) INLINE LockWindowUpdate( If( Empty( lOnOff ) .or. lOnOff, ::hWnd, 0 ) )

Code: Select all  Expand view
HB_FUNC( LOCKWINDOWUPDATE )
{
   hb_retl( LockWindowUpdate( ( HWND ) hb_parnll( 1 ) ) );
}
by Antonio Linares
Fri Nov 03, 2023 9:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbase++ :lockUpdate() -> Fivewin ?
Replies: 10
Views: 759

Re: New FTDN July/Julio (FWH 23.07)

... ayuda para una aplicación es una tarea tediosa, por lo que hemos implementado una forma realmente sencilla de hacerlo utilizando FWH: SetAutoHelp( lOnOff, lEditable ) // lEditable es .T. por defecto simplemente llama a esa función al principio de tu aplicación, y pulsa F1 en cualquier control de ...
by Antonio Linares
Sat Jul 29, 2023 9:16 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1060

New FTDN July/Julio (FWH 23.07)

... * New: We know that it is a tedious task to write help for an app, so we have implemented a real simple way to do it using FWH: SetAutoHelp( lOnOff, lEditable ) // lEditable is .T. by default just call that function at the beginning of your app, and press F1 on any control of your FWH app, ...
by Antonio Linares
Thu Jul 27, 2023 6:13 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1060

FWH new AutoHelp feature !!!

We know that it is a tedious task to write help for an app, so we have implemented a real simple way to do it using FWH: SetAutoHelp( lOnOff, lEditable ) // lEditable is .T. by default just call that function at the beginning of your app, and press F1 on any control of your FWH app, you will ...
by Antonio Linares
Wed Jul 12, 2023 7:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH new AutoHelp feature !!!
Replies: 14
Views: 773

Re: Fw maria-/mysql

... secuencial. Gracias JONSSSON RUSSI Nota: existe una documentación completa , diferente a esta que esta en el foro : MYSQL_TinyIntAsLogical( lOnOff ) --> lPrevSetting // Default False By default, BIT fields are used for Logical values. When set ON, TinyInt is used for Logical values instead. ...
by russimicro
Tue Jun 27, 2023 11:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Fw maria-/mysql
Replies: 4
Views: 316

Abm con TDataBase ( Resuelto )

... Guardar() Class AbmComercio//----------------------------------------------------------------------------//    Memvar o        If( ::lOnOff )        o : oComercio : Append()    End     o : oComercio : codigo     := ::cCodigo                 o : oComercio : compartido := ...
by horacio
Fri Oct 21, 2022 12:25 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Abm con TDataBase ( Resuelto )
Replies: 6
Views: 809

Re: bOr / nOr : how to "add" Constante under FiveWin

... nRemoveStyle )   SetWindowLong( hWnd, GWL_STYLE, nNewStyle )endif  Please see METHOD GetSetGWLStyle( lExtended, nStyle, lOnOff ) CLASS TWindow
by nageswaragunupudi
Tue Oct 18, 2022 8:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bOr / nOr : how to "add" Constante under FiveWin
Replies: 8
Views: 405

Re: End dialogue when lost focus

Thanks Natter and Cristobal.
I got the effect that I want by including oDlg:bNcActivate := {| lOnOff | iif (lOnOff ,, oDlg: End ())}

Once that's included I could remove the NOWAIT clause
by hua
Thu Dec 02, 2021 2:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: End dialogue when lost focus
Replies: 4
Views: 475

Re: End dialogue when lost focus

ACTIVATE DIALOG oDlg NOWAIT CENTERED ;
ON INIT oDlg:bNcActivate:={|lOnOff|iif(lOnOff,, oDlg:End())}
by Natter
Wed Dec 01, 2021 4:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: End dialogue when lost focus
Replies: 4
Views: 475

Re: Spell CHecker

Into new version 21.11
New methods class TRichEdit and TRichEdit5

METHOD SetLangOptions( lOnOff, nFlagSet )
METHOD GetLangOptions()

* default of nflagset in method
nOr( IMF_SPELLCHECKING, IMF_TKBPREDICTION, IMF_TKBAUTOCORRECTION )
by cnavarro
Wed Dec 01, 2021 12:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Spell CHecker
Replies: 15
Views: 1990

Re: New FTDN November/Noviembre (FWH 21.11)

... Muchas gracias a Hakan Onemli: http://fivetechsupport.com/forums/viewtopic.php?p=243513#p243513 * Nuevo: Nuevo método Bold( lOnOff ) en la clase TTVItem, para poner en negrita un item de un TTreeView. * Clase TArrayData (tarrdata.prg) - Puede asignar un valor a un campo en ...
by Antonio Linares
Tue Nov 30, 2021 10:38 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN November/Noviembre (FWH 21.11)
Replies: 2
Views: 996

New FTDN November/Noviembre (FWH 21.11)

... and Hakan Onemli: http://fivetechsupport.com/forums/viewtopic.php?p=243513#p243513 * New: Class TTVItem Method Bold( lOnOff ) to set bold an item of a TTreeView. * Class TArrayData (tarrdata.prg) - Can assign a value to a field in all rows by oData:cFieldNameS := <val> ...
by Antonio Linares
Tue Nov 30, 2021 7:19 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN November/Noviembre (FWH 21.11)
Replies: 2
Views: 996

Re: Negrita en in ITEM del tree?

Si En la Clase TTVItem tienes que añadir este nuevo método: METHOD Bold( lOnOff ) INLINE TVSetItemBold( ::oTree:hWnd, ::hItem, lOnOff ) y al final de tu PRG esribe: #pragma BEGINDUMP#define _WIN32_IE 0x0500#include <Windows.h>#include <CommCtrl.h>#include ...
by Antonio Linares
Wed Aug 25, 2021 3:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Negrita en in ITEM del tree?
Replies: 20
Views: 1599
Next

Return to advanced search