Search found 103 matches: deactivate

Return to advanced search

Re: XBROWSE activate or deactivate AUTOSORT

To DeActivate Autosort:
Code: Select all  Expand view

aSaveSort := oBrw:cSortOrders  // aSaveSort is a static variable
oBrw:cSortOrders := nil
 

To Reactivate
Code: Select all  Expand view
oBrw:cSortOrders := aSaveSort
by nageswaragunupudi
Wed Feb 08, 2012 11:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE activate or deactivate AUTOSORT
Replies: 3
Views: 740

XBROWSE activate or deactivate AUTOSORT

Hi all,
I want to have unsorted XBROWSE in start and after that is it possible to activate or deactivate AUTOSORT

Something like:
oBrw:lAutoSort := .t. ; oBrw:Refresh()
or
oBrw:lAutoSort := .f. ; oBrw:Refresh()

Best Regards,
by avista
Wed Feb 08, 2012 10:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE activate or deactivate AUTOSORT
Replies: 3
Views: 740

XBROWSE brclicked

... := {|nRow, nCol| Pop_app( nRow, nCol, oBrw, oTimer ) } where pop_app is .... FUNCTION POP_APP( nRow, nCol, oBrw, oTimer ) LOCAL oMen oTimer:deactivate() MENU oMen POPUP 2007 MENUITEM "Inserimento" ACTION ins_app( oBrw ) WHEN .NOT. lMensile MENUITEM "Cancellazione" ACTION ...
by MarcoBoschi
Tue Dec 20, 2011 4:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE brclicked
Replies: 6
Views: 1270

Re: MsgYesNo() + Timer

... que acha a janela ---------// // nTempo++ IF nTempo == nSeconds // //-- Se estorou o tempo fecha a janela e destroi o timer --------// // oTmr:Deactivate() lRetorno:=SendMessage( nHandle, WM_CLOSE ) nHandle:=-1 nTempo:=0 oTmr:End() RELEASE oTmr ELSE // //-- Exibe a contagem do tempo ----------------------------------// ...
by Joao Cezar
Wed Oct 12, 2011 4:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MsgYesNo() + Timer
Replies: 2
Views: 812

Re: Dialogo NOMODAL

... define timer otimer interval nseg action actualizacion() activate timer otimer return nil function actulizacion(otimer) otimer:deactivate() bla bla bla bla otimer:activate() return nil y asi me falla revisare nuevamente.. gracias saludos paco
by Francisco Horta
Sat Jul 16, 2011 3:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dialogo NOMODAL
Replies: 5
Views: 1010

Re: setcolor on a get with a conditional checkbox

Daniel Garcia-Gil wrote:deactivate lDisColors and use nClrTextDis and nClrPaneDis


Of course. My fault.

EMG
by Enrico Maria Giordano
Mon May 23, 2011 1:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: setcolor on a get with a conditional checkbox
Replies: 5
Views: 925

Re: setcolor on a get with a conditional checkbox

Hello Rick deactivate lDisColors and use nClrTextDis and nClrPaneDis #include "fivewin.ch"function main()   local oWnd   local oMenu      menu oMenu      ...
by Daniel Garcia-Gil
Mon May 23, 2011 1:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: setcolor on a get with a conditional checkbox
Replies: 5
Views: 925

Re: Parar un programa en red.

... ) > 0 ::nTimeInpAntes := getInputState() ::cTimeAtu := time() endif if ( CONVTIME(time()) - CONVTIME(::cTimeAtu) ) > ::ntempo ::oTimerTime:DeActivate() aux:=::cfunc * aqui executa a funcao &aux if ::lContinuar ::oTimerTime:Activate() ::cTimeAtu := time() endif endif return NIL FUNCTION ...
by WilliamAdami
Sun May 22, 2011 2:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Parar un programa en red.
Replies: 5
Views: 2694

Re: Tsocket Bug

Hello

you can use a timer to call Connect() again if you got not a "ok", with max Retry options

1- initiate Retry variable
2- open timer
3- connect
4- if you get "ok" deactivate the timer, else try connect again until max retry is take (deactivate timer )

is only a idea
by Daniel Garcia-Gil
Tue May 10, 2011 12:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tsocket Bug
Replies: 21
Views: 5356

Re: ReadComm( )

... UDANE OTWARCIE" oWND:oMSGBAR:Refresh(.T.) EndIf Return xRESZTA Function RF_REC_READ() Local XXX,xBUFFER:=Replicate(Chr(255),1024) //xRTIMER:DeActivate() READCOMM(hCOMM,@xBUFFER) xBUFFER:=StrTran(xBUFFER,Chr(255),'') If Len(xBUFFER)>0 AADD(xTABREC,xBUFFER) // add to my table with received ...
by Robert Frank
Fri Oct 22, 2010 9:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ReadComm( )
Replies: 4
Views: 1900

Re: skinbuttons and enter key

... enter key is used As far as i am concerned, skinbuttons is not useable as it is now and the problem will rise again i am sure Unfortunately i will deactivate it from my application, i have an important release of my software this week. Regards :? Richard
by Richard Chidiak
Mon Sep 27, 2010 7:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: skinbuttons and enter key
Replies: 19
Views: 4034

WINDOWS 7 AERO

Does someone know if it is possible to deactivate AERO for a single exe?

How to detect if AERO is on?

Is it possible to get the index which WINDOWS calculates to give out a warning:
With 3.8 you should not use AERO or something similar.

Thanks in advance
Otto
by Otto
Tue Jun 01, 2010 7:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WINDOWS 7 AERO
Replies: 3
Views: 1085

Re: Border around GET

A complete Solution ( modified ) 3 Tests You can activate / deactivate All Types are supported : C, N, L, D 1. Show Box on Get-Focus 2. Show Box on empty Values on Init 3. Show Box with valid Values on Init http://www.service-fivewin.de/pictures/getbox4.jpg ...
by ukoenig
Thu May 20, 2010 9:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Border around GET
Replies: 46
Views: 13909

Re: show bitmap on window/dialog

... 3. You move as many Objects You like from the Archive to a defined Position 4. Activate / Deactivate with Right Mouseclick 5. Save the Positions to a DBF ( can be done on Button-Action ) 6. Reset restores Objects to the Archive on Basic-Positions. ...
by ukoenig
Wed May 05, 2010 9:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: show bitmap on window/dialog
Replies: 1
Views: 445

Re: Ribbonbar cursor keys

... Otto i did some changes in windows and tribbon class, is not ready yet but i want show the improvements with this features use ALT Key to activate/deactivate acc. http://www.sitasoft.com/fivewin/screen/ribacc1.png http://www.sitasoft.com/fivewin/screen/ribacc2.png ...
by Daniel Garcia-Gil
Sat Jan 30, 2010 3:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbonbar cursor keys
Replies: 24
Views: 3182
PreviousNext

Return to advanced search