Search found 510 matches: settext

Return to advanced search

Re: Hide a Checkbox from Resource.

... dStart to dEnd nEle++ nId++ lVar := FALSE oChk := nil If dDay >= dFrom .AND. dDay <= dTo Redefine CheckBox oChk Var lVar Id nId of oDlg oChk:SetText( PadL( Day(dDay),2,"0" ) ) oChk:cargo := dDay oChk:SetCheck( FALSE ) Else Redefine CheckBox oChk Var lVar Id nId of oDlg oChk:Hide() ...
by byron.hopp
Mon Jul 03, 2023 6:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide a Checkbox from Resource.
Replies: 7
Views: 377

Re: Problem with Choose font

... IIF(aFont[LF_WEIGHT]=700,.t.,.f.) ,; lItalic:= aFont[LF_ITALIC],; lUnderline:=aFont[LF_UNDERLINE],; lStrikeout:=aFont[ LF_STRIKEOUT ],; aGet[15]:settext(cFontName),; aGet[16]:settext(str(nFontSize)),; aGet[15]:refresh(),; aGet[16]:refresh()) First run ok then On modify the choosefont not take ...
by Silvio.Falconi
Fri Apr 21, 2023 9:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Choose font
Replies: 5
Views: 544

Re: Can I get object from handle?

... in the window method ::handleEvent() describing the processing of a unique event. For example: if valtype(nMsg)="C" oDlg:AControls[1]:SetText(msg) return endif ::Super... From the application with the button we find the handle of the window with TSAY hWn:=FindWindow() and send him ...
by Natter
Thu Apr 13, 2023 5:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can I get object from handle?
Replies: 15
Views: 1320

Re: how does Statusbar or SET MESSAGE work ?

hi,
Natter wrote:oMsgBar:SetText("mytext")
oMsgBar:Refresh()

ah, i need :Refresh() :idea:
thx for help
by Jimmy
Tue Feb 21, 2023 8:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how does Statusbar or SET MESSAGE work ?
Replies: 5
Views: 325

Re: how does Statusbar or SET MESSAGE work ?

oMsgBar:SetText("mytext")
oMsgBar:Refresh()
by Natter
Tue Feb 21, 2023 7:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how does Statusbar or SET MESSAGE work ?
Replies: 5
Views: 325

recuperar texto desde richedit

Hola, estoy pasanto una variable al richedit ACTIVATE WINDOW oWndR on init oRTF:SetText( crtf )
Funciona perfecto, una ves que termine de modificar el texto como hago para recuperarlo en la variable.

Saludos
Jorge
by jpcavagnaro
Sat Dec 31, 2022 11:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: recuperar texto desde richedit
Replies: 5
Views: 407

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

... clausula ON INIT del dialogo, ya lo hacía cuando usaba la clase RICHEDIT y funcionaba bien con todas estas condiciones: oRtf:LoadAsRTF(cRtf) oRtf:SetText(cRtf) oRtf:SetFontName("Ms Sans Serif") oRtf:SetFontSize(10) oRtf:bChange:={ || IF( oRtf:IsModify(), cRtf:=oRtf:SaveAsRTF(), ) } Eval( ...
by nanoespinoza
Tue Dec 27, 2022 5:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Que cambios de hacer para pasar de RichEdit a la RICHEDIT5
Replies: 25
Views: 1691

Problem with tmeter

... same meter (oProgress) for procedure 1 local nPos := 1 local bprogress := { || (oProgress:Set( npos++ ),; //oProgress:SetPos( npos++ ),; oSay[3]:SetText(ltrim(str(npos))),; oSay[3]:refresh(),; SysRefresh() ) } ... oProgress:ntotal:= len(aData) nMeter:=0 oProgress:set(nMeter) oStorico:FW_ArrayToDbf( ...
by Silvio.Falconi
Mon Nov 14, 2022 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tmeter
Replies: 3
Views: 298

Re: Ayuda con Folderex URGENTE

Asignale el nuevo valor con el métod SetText() *** FUNCTION PARA ASIGNAR DATOS A LAS VARIABLES                    Nom_Pacien4:=Trim(Nom_Pac)+Spac(3)+Trim(Ape_Pac)                                Rut_Pac4:=Rut_Pac      ...
by remtec
Wed Aug 31, 2022 8:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con Folderex URGENTE
Replies: 6
Views: 550

Re: Ayuda con Folderex URGENTE

Asignale el nuevo valor con el métod SetText() *** FUNCTION PARA ASIGNAR DATOS A LAS VARIABLES                    Nom_Pacien4:=Trim(Nom_Pac)+Spac(3)+Trim(Ape_Pac)  ...
by cmsoft
Wed Aug 31, 2022 7:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con Folderex URGENTE
Replies: 6
Views: 550

Re: change the caption of a button

Prueba esto:

oModi:setText( "Modificar" )

A mi en MDICHILD me funciona.
by FiveWiDi
Thu Jun 09, 2022 1:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: change the caption of a button
Replies: 1
Views: 228

Msgbar Error

... you'll see the progress at right the text on the msgitem Do While !::oDbf:Eof() .... ::oBarProgress:SetPos( ::oBarProgress:nPos + 1 ) ::oTabItem1:SetText( tran(::oBarProgress:nPos,'999999')+" di "+; tran(::oDbf:KeyCount(),'999999')) ::oWinTabellone:oMsgBar:Refresh() ::oDbf:Skip(-1) Enddo ...
by Silvio.Falconi
Fri May 27, 2022 9:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Msgbar Error
Replies: 2
Views: 263

Re: Actualización de Variable en Calculo

Antonio Linares wrote:Prueba con oTot:Assign( Tot ) en vez de oTot:SetText( Tot )


Maestro Antonio

Muy buen dia.

Muchas gracias por responder.

Aplique su sugerencia " Assign ", pero aplica, no genera ningun cambio.

Muchas gracias y muchos saludos.

Anotnio
by remtec
Thu May 26, 2022 1:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualización de Variable en Calculo "SOLUCIONADO"
Replies: 4
Views: 432

Re: Actualización de Variable en Calculo

Prueba con oTot:Assign( Tot ) en vez de oTot:SetText( Tot )
by Antonio Linares
Thu May 26, 2022 7:07 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualización de Variable en Calculo "SOLUCIONADO"
Replies: 4
Views: 432

Re: flash a small icon

Dear Silvio, Use a timer and change the icon I tried but I not Know How make it If lOld oMsgItem2:SetText("Archivio non aggiornato!" ) DEFINE TIMER oTimer OF oMsgItem2 ; INTERVAL 400 ; ACTION oMsgItem2:SetBitmap( MSG_ALERT, MSG_ALERT ) )) //??? ACTIVATE TIMER ...
by Silvio.Falconi
Fri May 06, 2022 9:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: flash a small icon
Replies: 2
Views: 366
Next

Return to advanced search