Search found 360 matches: oapp

Return to advanced search

Xbrowse color group

I have the xbrowse with oApp():oGrid:bClrStd := { || { CLR_BLACK, If( oApp():oGrid:KeyNo % 2 == 0, RGB(160,225,255), CLR_WHITE ) } } this is the pijama effect I need to colorize all columns but in different groups I have these groups ...
by Silvio.Falconi
Sat Apr 02, 2022 8:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse color group
Replies: 2
Views: 246

Re: Como asignar una impresora

Perdón por no seguir el hilo en el otro mensaje, pensé en hacer otro    SetPrintDefault( AllTrim( oApp:impremito ) )   PRINT oPrn NAME "REMITO" ///PREVIEW   oPrn:SetPage(10)   oPrn:SetCopies(4)   PAGE   oPrn:Cmsay(   2.1, 13.4, ( ...
by surGom
Sat Apr 02, 2022 1:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como asignar una impresora
Replies: 4
Views: 477

load a image into xbrowse

cDirImages := "bitmaps\simboli" WITH OBJECT oApp:oGrid WITH OBJECT oApp():oGrid:aCols[6] :bStrImage := { || FIELD->E1 } :aImgRect := { nil, nil, -40, nil } END but FIELD->E1 is a number and I have n that folder images name as 1.png,2.png.... ...
by Silvio.Falconi
Thu Mar 10, 2022 12:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: load a image into xbrowse
Replies: 4
Views: 505

Re: Cambiar tipo de letra en aplicación

... recursos hago lo siguiente:   DEFINE DIALOG oDlg RESOURCE "USEDIT" OF oParent;      TITLE aTitle[ nMode ]   oDlg:SetFont( oApp():oFont ) ¿ Debería hacer un oDlg:oFont:End() antes de hacer el SetFont() ? Olvidé decir que en mis aplicaciones solo utilizo una fuente ...
by cnavarro
Tue Mar 08, 2022 9:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar tipo de letra en aplicación
Replies: 14
Views: 953

Re: Cambiar tipo de letra en aplicación

... recursos hago lo siguiente:   DEFINE DIALOG oDlg RESOURCE "USEDIT" OF oParent;      TITLE aTitle[ nMode ]   oDlg:SetFont( oApp():oFont ) ¿ Debería hacer un oDlg:oFont:End() antes de hacer el SetFont() ? Olvidé decir que en mis aplicaciones solo utilizo una fuente ...
by José Luis Sánchez
Tue Mar 08, 2022 7:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar tipo de letra en aplicación
Replies: 14
Views: 953

Re: tPrinter a PDF

... FILE ( RutaPdf() + "\Informe" + Alltrim(Str(NumNumero)) + ".PDF")oPrn:cModel := ALLTRIM(oApp:imp_predet)oPrn:SetPortrait()oPrn:SetPage(9).... El resto del codigo de impresión     Donde oApp:imp_predet es el ...
by cmsoft
Sat Feb 12, 2022 12:12 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: tPrinter a PDF
Replies: 6
Views: 498

Re: set key not run on win 10 ?

...  MsgInfo("Hello!" )}  )   define window oWnd   activate window oWndReturn nil Maybe you are doing your SET KEY before oApp is defined? The other issue might be function keys with dual options. On my laptop you have to press the [fn][F2] to get the assignment above because ...
by James Bott
Fri Jul 09, 2021 12:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: set key not run on win 10 ?
Replies: 1
Views: 294

set key not run on win 10 ?

I have
SetKey( VK_F8, {||oApp():HidePanelLeft(oApp():oSplit)} )

and not run on win 10 why ?
on w7 run ok

do you Know alternative ?
by Silvio.Falconi
Thu Jul 08, 2021 8:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: set key not run on win 10 ?
Replies: 1
Views: 294

to simplify the Tdatabase call

... sample CLASS TUtenti from TDataBase METHOD New() METHOD ToArray() ENDCLASS METHOD New( lShared ) CLASS TUtenti Default lShared := .t. ::super:New(,oApp():cExePath + "Utenti" ,, lShared) if ::use() ::setOrder(1) ::gotop() endif RETURN Self METHOD ToArray(aTmp) CLASS TUtenti if ::use() ...
by Silvio.Falconi
Mon May 17, 2021 8:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: to simplify the Tdatabase call
Replies: 3
Views: 548

Re: progress on msgitem

Dear Silvio,

Class TMsgItem does not inherit from Class TControl

You have to use ... OF oApp:oWndMain:oMsgBar

Maybe you could change the bitmap of the MsgItem with a timer, simulating a progress bar
by Antonio Linares
Fri Apr 30, 2021 12:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: progress on msgitem
Replies: 1
Views: 326

progress on msgitem

... PROMPT ""; SIZE 400; BITMAPS "MSG_EOEO", "MSG_EOEO"; TOOLTIP " " and I wish show a Meter @ 02, 11 PROGRESS oApp:oProgressDlg POSITION 1 of oApp:oMsgItem4; SIZE 200,18 pixel make error Error description: Error BASE/1004 Message not found: TMSGITEM:HWND Args: ...
by Silvio.Falconi
Fri Apr 30, 2021 10:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: progress on msgitem
Replies: 1
Views: 326

set a dialog on a position

I wish set a dialog at x,y but I not found the position of the msgitem og Msgbar oApp:oMsgItem1:bAction := { |oBtn| ::ConteggioTotali(oApp:oWndMain:oMsgBar) } Function ConteggioTotali(obtn) Local aPoint := AdjustWnd( oBtn, -27*2, 15*2 ) DEFINE DIALOG oDlgConteggio ...
by Silvio.Falconi
Tue Apr 27, 2021 11:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: set a dialog on a position
Replies: 3
Views: 518

Re: create a pdf

... )   PRINT oPrn PREVIEW FILE cPdf   PAGE   @ 1,1 PRINT TO oPrn IMAGE cJpg   ENDPAGE   ENDPRINTreturn nil  Nages, Now I made a test WndToPdf( oApp():oSpiaggia, "test.pdf" ) and I have a pdf with the image is blurred that is not clear https://i.postimg.cc/NMdTqQ1n/fffffffffffffffffffffffff.png ...
by Silvio.Falconi
Fri Apr 23, 2021 10:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: create a pdf
Replies: 10
Views: 1338

Re: Consulta sobre la función PopupBrowse

... Intente su código de esta forma al activar el dialogo que contiene un xBrowse: ACTIVATE DIALOG oDlgED CENTER RESIZE16 ON INIT ( oDlgED:SetIcon(oApp:cIcono), ; oBrw:aCols[25]:oBtnElip:cToolTip:="Alineación de ambos equipos", ; oBrw:aCols[26]:oBtnElip:cToolTip:="Datos sobre penales ...
by nanoespinoza
Mon Mar 08, 2021 7:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre la función PopupBrowse
Replies: 3
Views: 511

Re: galería de imágenes

Aida, eso son funciones mías que puedes quitar del código sin problemas. oApp() es una función que devuelve la clase de la aplicación, es una manera de tener una clase global. La otra función edita un registro de la tabla Li. Saludos, Sip gracias :D ya me di ...
by AIDA
Sun Feb 14, 2021 3:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: galería de imágenes
Replies: 52
Views: 17035
PreviousNext

Return to advanced search