Search found 86 matches: selectall

Return to advanced search

Re: I'm not asking for the moon...

Otto wrote:Yes, see this line.

oGet[1]:bGotFocus := {|| (oGet[1]:cText := STR(VAL(oGet[1]:cText) *100,6), oGet[1]:Refresh(),oGet[1]:SelectAll()) }
Cesar, changed the GETs to character that you get the inputstyle you wanted.

Yes but nvar Is text array but i have numbers no texts
by Silvio.Falconi
Thu Jan 18, 2024 9:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: I'm not asking for the moon... Resolved!!
Replies: 24
Views: 2113

Re: I'm not asking for the moon...

Yes, see this line.

oGet[1]:bGotFocus := {|| (oGet[1]:cText := STR(VAL(oGet[1]:cText) *100,6), oGet[1]:Refresh(),oGet[1]:SelectAll()) }
Cesar, changed the GETs to character that you get the inputstyle you wanted.
by Otto
Thu Jan 18, 2024 9:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: I'm not asking for the moon... Resolved!!
Replies: 24
Views: 2113

Re: Que cambios de hacer para pasar de RichEdit a la RICHEDIT5

Antonio Linares wrote:Fernando,

Antes de hacer esas tres llamadas haz lo siguiente:

oRtf:SelectAll()


Estimado Antonio:

Probé su sugerencia y por ahí algunas más, buscando los métodos que tiene la clase, pero al momento no hay solución.

Saludos

Fernando Espinoza A.
by nanoespinoza
Sun Jan 01, 2023 9:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Que cambios de hacer para pasar de RichEdit a la RICHEDIT5
Replies: 25
Views: 1691

Re: Que cambios de hacer para pasar de RichEdit a la RICHEDIT5

Fernando,

Antes de hacer esas tres llamadas haz lo siguiente:

oRtf:SelectAll()
by Antonio Linares
Sun Jan 01, 2023 7:59 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Que cambios de hacer para pasar de RichEdit a la RICHEDIT5
Replies: 25
Views: 1691

Richedit5 SendMsg

... no funciona. Resumiendo, ¿hay alguna forma de seleccionar parte del texto de un RichEdit mediante programación?, no me sirven los métodos SelectAll() ni SelectLine(). O alguna forma de cambiar la manera de seleccionar el texto a como se hace en el movil, porque es verdad que aunque se ...
by Sebastián Almirón
Wed Aug 11, 2021 5:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Richedit5 SendMsg
Replies: 5
Views: 759

Re: RTF to HTPM for email

You have METHOD SaveAsHtml
Then, save file with format Html.
Open the file you created, and read the contents of the file ( METHOD cText() ), or select all text ( SelectAll METHOD )
I have never done it but I think it should work
by cnavarro
Sat Jul 27, 2019 12:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RTF to HTML for email
Replies: 1
Views: 413

Re: XBROWSE CheckBOX SelectALL

Dear Sir ,

Many thanks for this example and providing tips on the conditional sum.

Thanks
Shridhar
by shri_fwh
Sun Apr 07, 2019 6:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE CheckBOX SelectALL
Replies: 2
Views: 741

Re: XBROWSE CheckBOX SelectALL

We recommend this approach for users with recent versions of FWH #include "fivewin.ch"function Main()   local oCn, oRs   local oDlg, oBrw, oFont   oCn   := FW_DemoDB()   oRs   := oCn:Customer   DEFINE FONT oFont NA...
by nageswaragunupudi
Wed Apr 03, 2019 12:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE CheckBOX SelectALL
Replies: 2
Views: 741

XBROWSE CheckBOX SelectALL

Dear Rao Sir , I have tried to use CheckBox in XBROWSE and its working checks and un-checks BUT it is NOT working for SelectAll method. The Code is given below. Could you please guide me #include "fivewin.ch"function Main   local oDlg, oBrw, aData   local ...
by shri_fwh
Sat Mar 30, 2019 5:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE CheckBOX SelectALL
Replies: 2
Views: 741

Re: SelectAll en xBrowse

Perfecto.

Muchas Gracias Cesar
by acuellar
Sat Feb 23, 2019 3:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SelectAll en xBrowse
Replies: 2
Views: 427

Re: SelectAll en xBrowse

oCol:bOnPreEdit := {|| oCol:oEditGet:SelectAll()}
by cmsoft
Sat Feb 23, 2019 1:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SelectAll en xBrowse
Replies: 2
Views: 427

SelectAll en xBrowse

Estimados Como se hace para cuando se edita una celda del xBrowse seleccione todo su contenido    oCol:=oBrw:AddCol()   oCol:bStrData  := { || cAlias->NOMBRE }   oCol:cHeader:= "NOMBRE"   oCol:nWidth:=250   oCol:nE...
by acuellar
Fri Feb 22, 2019 8:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SelectAll en xBrowse
Replies: 2
Views: 427

Re: GET sin longitud con espacios blancos

He mirado el prg edit.prg de la clase TEdit()...
SetLimitText(n) para limitar la longitud.

@ 300,40 EDIT oEdit VAR cVar SIZE 280,22 PIXEL OF oWnd
oEdit:SetLimitText(30)

Metodos SelectAll()
y otros como SetSel() que deben heredar de TControl.

Iré investigando!!!


Un Saludo,
Xevi.
by Xevi
Mon Dec 18, 2017 10:57 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: GET sin longitud con espacios blancos
Replies: 16
Views: 2674

How do I read from Clipboard?

... all, I need to copy to clipboard and use button to read from clipboard without pressing on keyboard. I can use as below to copy to clipboard. oGet:SelectAll() oGet:Copy() But I need to paste in another program (FWH) and I need to use button for paste from clipboard. Thank you in advance for any ...
by dutch
Tue Oct 31, 2017 8:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do I read from Clipboard?
Replies: 3
Views: 610

Re: xBrowse Cell Edit

You need to modify xbrowse.prg. In the METHOD Edit() CLASS TXBrwColumn, search for "::oEditGet:SelectAll()" and comment out that line. I wonder what many programmers would prefer. The present default behavior of xbrowse or the new behavior preferred by you? Dear ...
by nageswaragunupudi
Tue Sep 05, 2017 2:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Cell Edit
Replies: 8
Views: 1689
Next

Return to advanced search

cron