Search found 2203 matches: var

Return to advanced search

Checkbox with ltransparent error

... you ever had a checkbox and used the ""WindowsXP.Manifest" option? IF I made for a sample @ nRow,oBox[1]:nLeft+60 CHECKBOX aDat[ 5] VAR l05 Prompt axArray[ 5, 2 ] SIZE 350, 20 PIXEL OF oDlg aDat[ 5]:lTransparent:=.t. this gate covers the lower part of the dialog, hiding the other ...
by Silvio.Falconi
Fri Apr 19, 2024 10:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Checkbox with ltransparent error
Replies: 1
Views: 53

Re: Problem with valid email refresh btnbmp

change the line

@ 10, 420 GET aGet[11] VAR cCodEmail SIZE 180,nSizeHGet PIXEL OF oDlg;
ON CHANGE ( lPienoEmail:=validaEmail(aGet[11]:ctitle) , if( lPienoEmail , oBtnSel[4]:Enable() , oBtnSel[4]:Disable() ) )

if Valtype(aMatch)='A' //Empty( aMatch )
by Daniel Segura
Wed Apr 03, 2024 2:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2399

Re: Question about performance RowSet

... y ordenamiento de forma local (cliente), para no hacer lecturas al servidor constantemente, aunado a que es un objeto bastante complejo, data/var y métodos, que es en lo cual donde realmente toma su tiempo, no tanto en la recuperación del cursor de datos que para ambos métodos es igual. en ...
by Eroni
Fri Mar 15, 2024 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4023

Re: Question about performance RowSet

... y ordenamiento de forma local (cliente), para no hacer lecturas al servidor constantemente, aunado a que es un objeto bastante complejo, data/var y métodos, que es en lo cual donde realmente toma su tiempo, no tanto en la recuperación del cursor de datos que para ambos métodos es igual. en ...
by carlos vargas
Fri Mar 15, 2024 3:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4023

Re: Parpadeo de un SAY

... DIALOG oDlgMa RESOURCE "Material" DEFINE TIMER oTmr INTERVAL 50 ACTION (Fnct_Blinker(@oVeoRamo),oVeoRamo:Refresh()) REDEFINE GET oCodigo VAR nCodigo PICTURE "9999" ID Ma_Codigo OF oDlgMa when .f. //valid nCodigo > 0 .and. ValCodigo(nCodigo,agrega,'Código de Cliente ') REDEFINE ...
by José Camilo
Sat Mar 02, 2024 10:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Parpadeo de un SAY
Replies: 18
Views: 584

Re: Parpadeo de un SAY

... y José: Gracias por molestarse!!! Algo debo esta haciendo mal ( muy Mal ) No logro hacerlo funcionar. mi fuente es asi: ..... REDEFINE GET oRamo VAR nRamo PICTURE "99" ID Ma_Ramo OF oDlgMa valid veoramo(@nRamo,@cVeoRamo) .and. (oRamo:Refresh(),oVeoRamo:Refresh(),.t.) REDEFINE SAY oVeoRamo ...
by José Camilo
Sat Mar 02, 2024 6:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Parpadeo de un SAY
Replies: 18
Views: 584

Como ocultar una opcion de tres de un radiobutton

... en un dialogo creado por recurso defino un RadioButton con 3 opciones y lo redefino y funcionan bien las 3 opciones, ejemplo REDEFINE RADIO oRb1 VAR nRb1 ID 104,105,106 OF oDlg Pero necesito segun una condicion, que la 3ra opcion del radiobutton se desabilite o no aparezca, alguna idea ??, puse ...
by Enrrique Vertiz
Fri Mar 01, 2024 6:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como ocultar una opcion de tres de un radiobutton
Replies: 4
Views: 184

Re: Create a Panel width a text

... sample: oPaneltext cannot be the same name of a Panel I propose to usare oTExt MEMOTEXT := alltrim( cMsg ) @ oPanel2:nTitleHeight+5, 10 GET oText VAR MEMOTEXT SIZE oPaneltext:nWidth-2, oPaneltext:nHeight-40 PIXEL MEMO NO VSCROLL READONLY of oPaneltext then do you have try to click collapse button
by Silvio.Falconi
Mon Feb 26, 2024 8:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3185

Re: Fwh 23.10 TGet another problem (UNSOLVED)

Dear Antonio,
thank you. I thought similar to the RTF control (C:\FWH\source\classes\fget.prg).

@ 0,155 FORMAT GET oFGet1 VAR cTxt OF oWnd;
SIZE 360,40 PIXEL

Best regards,
Otto
by Otto
Tue Feb 20, 2024 9:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 54294

Salir de una validación

... pregunta es como puedo salir de ese GET validado sin entrar a la funcion que valida valga la redundancia. el GET esta asi: REDEFINE GET oGarante1 VAR ngarante1 PICTURE "9999" ID Con_Garante1 OF oDlgCF valid VeoGaran(@nGarante1,@cVeoGaran1,.t.) .and. (oGarante1:Refresh(),oVeoGaran1:Refresh(),.t.) ...
by José Camilo
Mon Feb 12, 2024 6:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Salir de una validación
Replies: 6
Views: 297

Transform doubt

Hi,

I have a numeric var with content 14,000 How can I transform this value into 14.000,000?
Thanks in advance.
by wartiaga
Sun Jan 28, 2024 4:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transform doubt
Replies: 2
Views: 346

I'm not asking for the moon... Resolved!!

... tried with "@Z 999.99" but it doesn't work, that is, at the beginning I see 0.00 in the get instead of just a zero. @ 60,20 GET aGet[2] VAR nVar SIZE 100,24 PIXEL PICTURE "@Z 999.99" OF oDlg RIGHT it run ok but I see 0.00 on the get but I wish see only a zero at right
by Silvio.Falconi
Wed Jan 17, 2024 5:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: I'm not asking for the moon... Resolved!!
Replies: 24
Views: 2146

Re: Problem with tget numeric

perhaps

@ 70, 20 GET aGet[1] VAR nTop OF oDlg SIZE 40, 14 PIXEL FONT oFont ;
PICTURE "@ ###,99" UPDATE RIGHT



Image
by Silvio.Falconi
Wed Jan 17, 2024 8:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tget numeric
Replies: 16
Views: 1429

Re: Problem with tget numeric

... the decimal point the procedure must put up to two numbers after the decimal point and then move on to the other get type @ 70, 20 GET aGet[1] VAR nTop OF oDlg SIZE 28, 12 PIXEL FONT oFont ; picture "@Z 99.99" UPDATE RIGHTTOLEFT If I press 1 , 2 3 I must have on get "1,23" ...
by Silvio.Falconi
Wed Jan 17, 2024 8:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tget numeric
Replies: 16
Views: 1429

Re: Problem with tget numeric

Chance to character: local cTop := " " @ 70, 20 GET aGet[1] VAR cTop OF oDlg SIZE 32, 12 PIXEL FONT oFont PICTURE "99.99" I need the tget controls to enter data quickly, in a bread wholesale application where the operator must enter orders ...
by Silvio.Falconi
Tue Jan 16, 2024 9:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tget numeric
Replies: 16
Views: 1429
Next

Return to advanced search