Search found 175 matches: omsgbar

Return to advanced search

Re: how to ? TABS ON MDICHILD WINDOW. SOLVED

Dear Yunus, samples\mariainv.prg is using a message bar on MDICHILD windows, in example: DEFINE MSGBAR oMsgBar OF oWndItems 2007 In order to use TABS instead of MSGBAR, then you should replace the above line with: @ 20, 0 TABS oWndItems:oBottom PROMPTS "One", "Two", ...
by Antonio Linares
Mon Jul 29, 2024 7:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to ? TABS ON MDICHILD WINDOW. SOLVED
Replies: 5
Views: 489

Re: Need Help giide for my program

... of the `Deposits()` function to show the `INVNUM` field: ```xbase static function Deposits() local oBrw, oChild, cClrBack, cCol local oBar, oMsgBar, oMsgDeleted if oWndClients == nil Clients() endif if oWndItems == nil Items() endif if oWndDeposits == nil DEFINE WINDOW oWndDeposits MDICHILD ...
by Otto
Fri Jul 19, 2024 7:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need Help guide for my program.
Replies: 38
Views: 2346

Re: Need Help giide for my program

... Deposits function based on the Invoices function: xbase Code kopieren static function Deposits() local oBrw, oChild, cClrBack, cCol local oBar, oMsgBar, oMsgDeleted if oWndClients == nil Clients() endif if oWndItems == nil Items() endif if oWndDeposits == nil DEFINE WINDOW oWndDeposits MDICHILD ...
by Otto
Fri Jul 19, 2024 7:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need Help guide for my program.
Replies: 38
Views: 2346

Re: MENU MAS ATRACTIVO

Joäo, se puede agregar la calculadora a la barra de tareas? intento con: DEFINE MSGITEM oMsg OF oWnd:oMsgBar ; SIZE 24 ; BITMAPS "CALCULADORA" ; TOOLTIP "Calculadora de Windows" ACTION WinExec("CALC.EXE") y me da error.. lo mismo si le quiero ...
by TOTOVIOTTI
Tue Aug 15, 2023 2:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MENU MAS ATRACTIVO
Replies: 26
Views: 4366

Re: DIALOG es redimensionable si tiene una status bar

Estimado Carlos,

Haz esto despues de crear el MsgBar:

oMsgBar:lPaint3L = .F.
by Antonio Linares
Wed Jul 26, 2023 6:43 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: DIALOG es redimensionable si tiene una status bar
Replies: 2
Views: 310

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: 459

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: 459

Msgbar Error

... + 1 ) ::oTabItem1:SetText( tran(::oBarProgress:nPos,'999999')+" di "+; tran(::oDbf:KeyCount(),'999999')) ::oWinTabellone:oMsgBar:Refresh() ::oDbf:Skip(-1) Enddo It seem not refresh the text on msgitem How I can resolve ?
by Silvio.Falconi
Fri May 27, 2022 9:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Msgbar Error
Replies: 2
Views: 299

Re: Message Bar Changing Title Bar

Dear Robb,

Pleae try this:

oMsgBar:lInfoRes = .F.
oMsgBar:lCheckRes = .F.
by Antonio Linares
Sat May 14, 2022 5:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Message Bar Changing Title Bar
Replies: 2
Views: 295

Progress control on MsgItem

... on Msgbar and it run ok METHOD CreateProgress() CLASS TPrevisioni      @ 02, 11 PROGRESS oApp:oBarProgress POSITION 1 of oApp:oWinMain:oMsgBar;      SIZE 200,18 pixel      oApp:oBarProgress:SetRange( 0, 100 )   RETURN NIL  https://i.postimg.cc/gj6knHYd/f.png ...
by Silvio.Falconi
Sat May 07, 2022 9:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Progress control on MsgItem
Replies: 0
Views: 187

flash a small icon

SET MESSAGE OF ::oWinMain TO ::cMsgBar CENTER NOINSET DEFINE MSGITEM ::oMsgItem1; OF ::oWinMain:oMsgBar ; PROMPT "Archivio al 16 Maggio 2020" ; BITMAPS "MSG_ALERT", "MSG_ALERT"; SIZE 170 ; TOOLTIP " " + "Data" + " "; ...
by Silvio.Falconi
Thu May 05, 2022 11:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: flash a small icon
Replies: 2
Views: 425

Re: Perdida de recursos en Laout, Folderex (Resuelto)

Gracias por su ayuda, detectado y resuelto. El detalle esta en: BITMAPS 'AA_ICO' que defino en MSGITEM : DEFINE MSGITEM oMsgItem OF oWnd:oMsgBar PROMPT oVP:cUsuyPAC SIZE 5*len(oVP:cUsuyPAC) BITMAPS 'AA_ICO' Elimine BITMAPS de MSGITEM y lo cambie por: DEFINE ICON oIcon RESOURCE 'AA_ICO' oWnd:SetIcon(oIcon) ...
by Joel Andujo
Fri Jul 09, 2021 4:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Perdida de recursos en Laout, Folderex (Resuelto)
Replies: 9
Views: 1219

Re: Perdida de recursos en Laout, Folderex

Después de un buen rato he encontrado el error, lo provoca esta línea: DEFINE MSGITEM oMsgItem OF oWnd:oMsgBar PROMPT oVP:cUsuyPAC SIZE 5*len(oVP:cUsuyPAC) BITMAPS 'AA_ICO' // ESTA LINEA PROBOCA EL ERROR Esta en el fuente: TestError.prg, línea 145, si omito esta línea todo ...
by Joel Andujo
Fri Jul 09, 2021 1:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Perdida de recursos en Laout, Folderex (Resuelto)
Replies: 9
Views: 1219

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: 357

progress on msgitem

I have a msgitem DEFINE MSGITEM ::oMsgItem4; OF ::oWndMain:oMsgBar; 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; ...
by Silvio.Falconi
Fri Apr 30, 2021 10:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: progress on msgitem
Replies: 1
Views: 357
Next

Return to advanced search