Search found 33 matches: osay3

Return to advanced search

Re: Como Calcular Ancho en Pixeles de una Variable

... pasado por alto. A mi me funciona bien (FWH1709) Esta function ha sido cambiada a: NextData(aoSay, alBorder) llamandola asi: NextData({oSay1,oSay2,oSay3},{.T.,.f.,.f.}) // Array con tantos elementos como oSays requeridos. La .t.indica que se usa BORDER, la .f. indica sin borde. Se agregó la function ...
by FranciscoA
Sat Jun 13, 2020 10:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como Calcular Ancho en Pixeles de una Variable "FrancicoA"
Replies: 21
Views: 3879

Re: Ayuda Cambiar el Color de un SAY "URGENTE"

Hola Antonio, intenta asi: local oSay1,oSay2,oSay3     @ 053,160 SAY oSay1 Profe->Cod_Pro      SIZE 60,22  PIXEL OF oDlg2    COLOR RGB(0,0,128), CLR_YELLOW   FONT oFont6   BORDER  CENTER  ...
by FranciscoA
Thu Jun 11, 2020 6:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda Cambiar el Color de un SAY "SOLUCIONADO"
Replies: 12
Views: 1656

Re: How to keep a appl. on top of the dialog on resize ?

... + ALLTRIM(STR(nRed)) + ", " + ; ALLTRIM(STR(nGreen)) + ", " + ; ALLTRIM(STR(nBlue)) + " )", ; oSay2:Refresh(), oSay3:Refresh() ) oTimer:Activate() oWnd:bKeyDown := {|nKey| IF(nKey = nWKey, SAVE_COLOR(), ) } ACTIVATE WINDOW oWnd CENTER oTimer:DeActivate() RETURN ...
by ukoenig
Sat Aug 01, 2015 7:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to keep a appl. on top of the dlg on resize ? (solved)
Replies: 5
Views: 2436

Re: say sin transparencia en folder...

Intenta asi:
local oSay1,oSay2,oSay3,oSay4
REDEFINE FOLDER oFld1 ID 210 OF oDlg ;
PROMPT "Empresa"

REDEFINE SAY oSay1 ID 500 OF oFld1
REDEFINE SAY oSay2 ID 501 OF oFld1
REDEFINE SAY oSay3 ID 502 OF oFld1
REDEFINE SAY oSay4 ID 503 OF oFld1
by FranciscoA
Tue Feb 25, 2014 2:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: say sin transparencia en folder...
Replies: 7
Views: 869

After object MOVE wrong position-return-values ?

... := {|| ( nTxtTop1 := oSay1:nTop, nTxtLeft1 := oSay1:nLeft ) } oSay2:bMoved := {|| ( nTxtTop2 := oSay2:nTop, nTxtLeft2 := oSay1:nLef2 ) } oSay3:bMoved := {|| ( nTxtTop3 := oSay3:nTop, nTxtLeft3 := oSay1:nLef3 ) } http://www.pflegeplus.com/pictures/OMove1.jpg I only moved ...
by ukoenig
Mon Apr 29, 2013 7:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: After object MOVE wrong position-return-values ?
Replies: 1
Views: 567

Missing < transparent > using PalBmpDraw ???

... FILENAME cImage1 ; ID 110 PIXEL ADJUST BORDER oIMG1:cTooltip := "Original" oIMG1:bPainted := { |hDC| ( DRAW_IMG(oIMG1, hDC, cImage1 ), oSay3:Refresh() ) } // Needed to calculate Image-size, if original size or adjusted to Resource !!! FUNCTION DRAW_IMG( oImage, hDC, cImage ) LOCAL oImg, ...
by ukoenig
Sun Jun 03, 2012 10:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Missing < transparent > using PalBmpDraw ???
Replies: 0
Views: 330

Re: FWH 1201 Upgrade Transparent text

... it is the same. The Text inside the Resource needs a ID and could be defined like : Uses the Text defined inside the Resource : REDEFINE SAY oSay3 ID 271 OF oDlg1 oSay3:SetColor( 128, ) oSay3:SetFont( oFootFont ) Overwrites the Text, defined inside the Resource : REDEFINE SAY oSay3 PROMPT ...
by ukoenig
Thu Feb 09, 2012 9:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 1201 Upgrade Transparent text
Replies: 11
Views: 2562

Re: Bug in TFolderEx

... := .T. oFld:nFolderHeight := nTabH oFld:nSeparator := nTabS oFld:bClrText := {| o, n | nTColor3 } oFld:oFont := oTextFont REDEFINE SAY oSay3 ID 110 PROMPT cTEXTFONT1 OF oFld:aDialogs[1] FONT oTextFont PIXEL oSay3:SetColor( nTColor2, ) oSay3:lTransparent := .T. REDEFINE RADIO oRadio3 ...
by ukoenig
Mon Feb 14, 2011 2:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in TFolderEx
Replies: 12
Views: 2898

Re: ERROR ON CHECKBOX

... SAY oSay1 VAR cSay1 ID 210 OF oDlg1 FONT oFont1 COLOR 128 // Red REDEFINE SAY oSay2 VAR cSay2 ID 220 OF oDlg1 FONT oFont2 // Black REDEFINE SAY oSay3 VAR cSay3 ID 230 OF oDlg1 FONT oFont2 // Black From code it is not possible. 1. a checkbox without prompt shows allways the Text < Checkbox ...
by ukoenig
Thu Dec 02, 2010 9:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ERROR ON CHECKBOX
Replies: 6
Views: 1089

Re: FTP Bajar y Subir archivos

... return nil function FTPSendFiles( cFTPSite, aSource, aTarget ) local oDlg, oSay1, oSay2, oSay3, oBtnCancel local oMeter1, oMeter2 local nAmount1, nAmount2 local lEnd := .f. local nBufSize := 4096 //2000 local oInternet, oFTP MsgRun( "Connecting ...
by Dioni
Sun May 24, 2009 1:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FTP Bajar y Subir archivos
Replies: 2
Views: 1403

Re: Amigos del Foro

... el que estaba dando problemas. (siempre utilizo Dtos(), como puedes observar). Al quitarle el Dtos() al codigo IntegIndex( oSay2,oMeter1,oMeter2,oSay3,@nTotReg,; "dtos(WMDATA->fechemis)","WMDFECHA", aAlias [n] ) , el programa me funciona como antes. Lo raro es que mi sistema ...
by FranciscoA
Sat May 23, 2009 10:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Amigos del Foro
Replies: 3
Views: 911

Amigos del Foro

... Function Indexar(aAlias) IF UPPER( aAlias[n] )="WMDATA" IntegIndex( oSay2,oMeter1,oMeter2,oSay3,@nTotReg,; "WMDATA->numdoc","WMDATDCT", aAlias [n] ) IntegIndex( oSay2,oMeter1,oMeter2,oSay3,@nTotReg,; "WMDATA->cta+WMDATA->scta+WMDATA->sscta+WMDATA->ssscta+WMDATA->sssscta+dtos(WMDATA->fechemis)","WMDATCTA", ...
by FranciscoA
Sat May 23, 2009 6:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Amigos del Foro
Replies: 3
Views: 911

Re: Dialogo que muestre como avanza un proceso

... function CopyFiles( aSource, aTarget, nBufSize ) local oDlg, oSay1, oSay2, oSay3, oBtnCancel local oMeter1, oMeter2 local nAmount1, nAmount2 local lEnd := .f. DEFAULT nBufSize := 4000 DEFINE DIALOG oDlg RESOURCE "CopyFiles" ...
by FranciscoA
Wed May 20, 2009 10:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dialogo que muestre como avanza un proceso
Replies: 6
Views: 1706

A Preview and Question for the new ButtonTools

... = .t. oBtn1:cTooltip := "Button1" Not Transparent on Images. Colors, Gradient, Styles and Image-Brush is OK. REDEFINE SAY oSay3 PROMPT "Alpha-Blended BMP" ID 230 OF oDlg3 FONT oFont2 oSay3:lTransparent = .t. ----------------------------------------------------------- ...
by ukoenig
Thu May 07, 2009 8:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A Preview and Question for the new ButtonTools
Replies: 0
Views: 387

Re: CopyFileEx

... function CopyFiles( aSource, aTarget, nBufSize ) local oDlg, oSay1, oSay2, oSay3, oBtnCancel local oMeter1, oMeter2 local nAmount1, nAmount2 local lEnd := .f. DEFAULT nBufSize := 4000 DEFINE DIALOG oDlg RESOURCE "CopyFiles" ...
by FranciscoA
Mon Feb 02, 2009 2:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CopyFileEx
Replies: 5
Views: 1853
Next

Return to advanced search