Search found 61 matches: abtn

Return to advanced search

Re: Abrir navegador dentro de un dialogo

TENGO ESO APLICADO ASI #include 'fivewin.ch' Function MainGoogle(oWnd) local oDlg, aGet[4], aBtn[2], oActiveX local cCity := space(100) local cCountry := "CL" local cStreet := space(100) local nNum := 0 If !IsInternet() MsgInfo("Ud. no posee Conección Activa ...
by Claudio Leiva
Mon Mar 27, 2017 8:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Abrir navegador dentro de un dialogo
Replies: 9
Views: 2350

Re: Forma correcta de configurar clase TSBUTTON...alguna ayuda?

... MouseMove( nRow, nCol, nKeyFlags )' .\prg\TSBUTTON.PRG(1971) Error E0019 #error: 'Class "TSButton" not declared for method: NewGroup( aBtn, nTop, nLeft, aPrompt, oWnd, aResource, aFile, aSize, lP ixel, aAction, bWhen, bValid, nSpace, oFont, cMsg, cToolTip, nHelpId, cBorder, lCancel, ...
by Compuin
Mon May 02, 2016 2:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Forma correcta de configurar clase TSBUTTON...alguna ayuda?
Replies: 14
Views: 4008

Re: Mi primer programa Fivetouch para crear usuarios

... <uVar1> ) ;; [ <uVarN> := If( <uVarN> == nil, <uValN>, <uVarN> ); ] function Main() LOCAL oBtnCancelJ LOCAL aBtnText:={"Incluir","Consultar","Modificar","Eliminar","Salir"} LOCAL aBtn :=ARRAY(LEN(aBtnText)) ...
by xfood
Mon Oct 12, 2015 3:52 pm
 
Forum: FiveTouch
Topic: Mi primer programa Fivetouch para crear usuarios
Replies: 4
Views: 2364

Re: Avances con FiveTouch

... <uVar1> ) ;; [ <uVarN> := If( <uVarN> == nil, <uValN>, <uVarN> ); ] function Main() LOCAL oBtnCancelJ LOCAL aBtnText:={"Incluir","Inspec Métodos","Modificar","Insp. Data","Salir"} LOCAL aBtn :=ARRAY(LEN(aBtnText)) ...
by jnavas
Sat Apr 04, 2015 11:48 am
 
Forum: FiveTouch
Topic: Avances con FiveTouch
Replies: 16
Views: 7267

Re: Inspector de Objetos

... <uVar1> ) ;; [ <uVarN> := If( <uVarN> == nil, <uValN>, <uVarN> ); ] function Main() LOCAL oBtnCancelJ LOCAL aBtnText:={"Incluir","Inspector","Modificar","Eliminar","Salir"} LOCAL aBtn :=ARRAY(LEN(aBtnText)) ...
by jnavas
Sat Apr 04, 2015 5:15 am
 
Forum: FiveTouch
Topic: Inspector de Objetos
Replies: 1
Views: 813

Mi primer programa Fivetouch para crear usuarios

... <uVar1> ) ;; [ <uVarN> := If( <uVarN> == nil, <uValN>, <uVarN> ); ] function Main() LOCAL oBtnCancelJ LOCAL aBtnText:={"Incluir","Consultar","Modificar","Eliminar","Salir"} LOCAL aBtn :=ARRAY(LEN(aBtnText)) ...
by jnavas
Fri Apr 03, 2015 4:47 am
 
Forum: FiveTouch
Topic: Mi primer programa Fivetouch para crear usuarios
Replies: 4
Views: 2364

Re: Botones con bitmaps en los diálogos

... REDEFINE BTNBMP oBtn ID nID OF oDlg NOBORDER ; C:\Git\easyreport_n1\source\erfile.prg(556): REDEFINE BTNBMP aBtn[1] ID 151 OF oFld:aDialogs[i] RESOURCE "B_OPEN" UPDATE ; C:\Git\easyreport_n1\source\erfile.prg(564): REDEFINE BTNBMP aBtn[2] ID 152 ...
by cnavarro
Fri Aug 15, 2014 12:04 pm
 
Forum: EasyReport, EasyDialog y EasyPreview
Topic: Botones con bitmaps en los diálogos (solucionado)
Replies: 12
Views: 2186

Re: Array de Botones. Acción en función de botón pulsado

Creo que si usas una Var public que al hacer click en el boton tome el valor de la posicion del boton en el array, podrias saber que boton se presiono, algo como nBoton = aBtn[n] al momento de hacer click antes de ejecutar la accion, es una idea a vuelo de pajaro terrestre, saludos... :shock:
by joseluisysturiz
Sat Mar 29, 2014 1:16 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Array de Botones. Acción en función de botón pulsado
Replies: 5
Views: 713

Re: No es una aplicacion Win32 valida

... fijense, si tengo esto me compila, crea el .EXE pero no corre y cuando lo ejecuto manual me dice que no es una aplicacion 32 REDEFINE BUTTONBMP aBtn[1] ID 201 OF oDlg ; // GUARDAR ACTION ( graba_certi( .t., aVar ), oDlg:End() ) ; BITMAP "SALVAR32" PROMPT "Guardar" REDEFINE ...
by joseluisysturiz
Wed Dec 11, 2013 3:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: No es una aplicacion Win32 valida
Replies: 3
Views: 648

Re: DATE RANGE

... GROUP oGroup[3] ; ROUND SIZE 85,48 ACTION (dStart:=date(),; dEnd:=date(),; oDateIn:refresh(),; oDateFin:refresh(),; Change_Rooms(oPanel,aBtn,nTotale_Rooms,dStart,dEnd,lNumbers)) oDateFin:bChange := {|| Change_Rooms(oPanel,aBtn,nTotale_Rooms,dStart,dEnd,lNumbers),SysRefresh() } oDateIn:bChange ...
by Silvio.Falconi
Fri Mar 15, 2013 10:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DATE RANGE
Replies: 56
Views: 15094

Re: Como crear botones invisibles?

Yo lo hago asi, saludos... :shock:

REDEFINE BTNBMP aBtn[1] ID 200 OF oDlg ;
action accion()
aBtn[1]:lBorder := .f.
aBtn[1]:lTransparent := .t.
by joseluisysturiz
Wed Feb 27, 2013 3:16 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como crear botones invisibles?
Replies: 2
Views: 362

Re: DRAW A TEXT ON A BITMAP

Silvio,

You have to use that code from aBtn[ n ]:bPainted := { || ... }
by Antonio Linares
Tue Jul 17, 2012 8:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DRAW A TEXT ON A BITMAP
Replies: 35
Views: 9011

Re: DRAW A TEXT ON A BITMAP

Silvio,

I don't sure, but you can probe using this

aBtn[nBotone]:hBitmap1:hDC or

hDC := getDC( aBtn[nBotone]:hBitmap1 )

regards

Marcelo
by Marcelo Via Giglio
Tue Jul 17, 2012 12:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DRAW A TEXT ON A BITMAP
Replies: 35
Views: 9011

Re: DRAW A TEXT ON A BITMAP

WHEN i MAKE @ nY*numero, nx*numero IMAGE aBtn[nBotone] SIZE BMP_H,BMP_V OF oPanel FILENAME NIL PIXEL NOBORDER aBtn[nBotone]:LoadImage( , UMBRELLA_FREE ) aBtn[nBotone]:lTransparent := .T. IT IS OK WHEN i ADD THESE LINE IT CRASH AND NOT FOUND nBotone ...
by Eoeo
Mon Jul 16, 2012 8:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DRAW A TEXT ON A BITMAP
Replies: 35
Views: 9011

DRAW A TEXT ON A BITMAP

i MADE : n:=123 hDC := aBtn[nBotone]:GETDC() SetTextColor( hDC,CLR_YELLOW) SetBkMode( hDC, 0 ) TextOut( hDC, 2, 4,str(n) ) aBtn[nBotone]:ReleaseDC() but I see for a second the number n with yellow color and then it hide...why ?
by Eoeo
Mon Jul 16, 2012 6:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DRAW A TEXT ON A BITMAP
Replies: 35
Views: 9011
PreviousNext

Return to advanced search