... RESOURCE "background"
DEFINE WINDOW oWnd MENU BuildMenu() TITLE "My app"
BuildBar( oWnd )
DEFINE MSGBAR oMsgBar OF oWnd PROMPT "My app" NOINSET
ACTIVATE WINDOW oWnd MAXIMIZED ;
ON PAINT DrawTiled( hDC, oWnd, oBmpTiled )
oBmpTiled:End()
return nil
function BuildMenu()
local oMenu ...
Search found 61 matches: noinset
Searched query: noinset
- Sat Jan 18, 2025 1:17 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Build your FWH app using hbmk2.exe and MSVC 32&64
- Replies: 33
- Views: 34410
- Thu Jan 16, 2025 4:38 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: HBMK2 - Barra de estado y barra principal mas pequenas
- Replies: 13
- Views: 12829
Re: HBMK2 - Barra de estado y barra principal mas pequenas
... bmp" FLAT ;
ACTION( oWnd:End(), LIBERA_TUDO() ) TOOLTIP "Exit this app" GROUP
DEFINE MESSAGE OF oWnd ;
PROMPT FWVERSION + " " + FWCOPYRIGHT ;
NOINSET CENTERED KEYBOARD DATE CLOCK 2007
DEFINE BITMAP oBmp FILENAME "..\bitmaps\visual.bmp"
oWnd:bPainted = {| hDC | BmpTiled( hDC, oWnd, oBmp ...
ACTION( oWnd:End(), LIBERA_TUDO() ) TOOLTIP "Exit this app" GROUP
DEFINE MESSAGE OF oWnd ;
PROMPT FWVERSION + " " + FWCOPYRIGHT ;
NOINSET CENTERED KEYBOARD DATE CLOCK 2007
DEFINE BITMAP oBmp FILENAME "..\bitmaps\visual.bmp"
oWnd:bPainted = {| hDC | BmpTiled( hDC, oWnd, oBmp ...
- Thu Jan 16, 2025 12:22 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: HBMK2 - Barra de estado y barra principal mas pequenas
- Replies: 13
- Views: 12829
HBMK2 - Barra de estado y barra principal mas pequenas
... 16x16\Exit.bmp" FLAT ;
ACTION oWnd:End() TOOLTIP "Exit this app" GROUP
DEFINE MESSAGE OF oWnd ;
PROMPT FWVERSION + " " + FWCOPYRIGHT ;
NOINSET CENTERED KEYBOARD DATE CLOCK
DEFINE BITMAP oBmp FILENAME "..\bitmaps\fiveback.bmp"
oWnd:bPainted = { | hDC | BmpTiled( hDC, oWnd, oBmp ...
ACTION oWnd:End() TOOLTIP "Exit this app" GROUP
DEFINE MESSAGE OF oWnd ;
PROMPT FWVERSION + " " + FWCOPYRIGHT ;
NOINSET CENTERED KEYBOARD DATE CLOCK
DEFINE BITMAP oBmp FILENAME "..\bitmaps\fiveback.bmp"
oWnd:bPainted = { | hDC | BmpTiled( hDC, oWnd, oBmp ...
- Thu Oct 10, 2024 9:51 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Cambiar Prompt de Mensage
- Replies: 11
- Views: 1553
Re: Cambiar Prompt de Mensage
... DEFINE WINDOW oWnd MDI ;
TITLE "Control de Mantenimientos";
MENU BuildMenu(oWnd) MDI ;
ICON oIco
DEFINE MESSAGE OF oWnd PROMPT cUsuario ;
NOINSET CENTERED KEYBOARD DATE CLOCK
ACTIVATE WINDOW oWnd MAXIMIZED ;
VALID MsgYesNo( HB_OemtoAnsi("¨ Salir del Programa ?") ,HB_OemtoAnsi("Seleccione ...
TITLE "Control de Mantenimientos";
MENU BuildMenu(oWnd) MDI ;
ICON oIco
DEFINE MESSAGE OF oWnd PROMPT cUsuario ;
NOINSET CENTERED KEYBOARD DATE CLOCK
ACTIVATE WINDOW oWnd MAXIMIZED ;
VALID MsgYesNo( HB_OemtoAnsi("¨ Salir del Programa ?") ,HB_OemtoAnsi("Seleccione ...
- Thu Oct 10, 2024 8:31 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Cambiar Prompt de Mensage
- Replies: 11
- Views: 1553
Cambiar Prompt de Mensage
... DEFINE WINDOW oWnd MDI ;
TITLE "Control de Mantenimientos";
MENU BuildMenu(oWnd) MDI ;
ICON oIco
DEFINE MESSAGE OF oWnd PROMPT cUsuario ;
NOINSET CENTERED KEYBOARD DATE CLOCK
ACTIVATE WINDOW oWnd MAXIMIZED ;
VALID MsgYesNo( HB_OemtoAnsi("¨ Salir del Programa ?") ,HB_OemtoAnsi("Seleccione ...
TITLE "Control de Mantenimientos";
MENU BuildMenu(oWnd) MDI ;
ICON oIco
DEFINE MESSAGE OF oWnd PROMPT cUsuario ;
NOINSET CENTERED KEYBOARD DATE CLOCK
ACTIVATE WINDOW oWnd MAXIMIZED ;
VALID MsgYesNo( HB_OemtoAnsi("¨ Salir del Programa ?") ,HB_OemtoAnsi("Seleccione ...
- Sat Jun 01, 2024 1:09 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: RESUELTO - Ver PDF
- Replies: 9
- Views: 1405
Re: Ver PDF
... ACTION( oWnd:End() ) TOOLTIP "Exit this app" GROUP
DEFINE MESSAGE OF oWnd PROMPT FWVERSION + " <-kapiabafwh@gmail.com-> " + ;
FWCOPYRIGHT NOINSET CENTERED KEYBOARD DATE CLOCK 2007
ACTIVATE WINDOW oWnd MAXIMIZED
RETURN NIL
/* O:
ShellExecute( ,"open", cFicheroPdf,,,1 )
*/
// FIN / END ...
DEFINE MESSAGE OF oWnd PROMPT FWVERSION + " <-kapiabafwh@gmail.com-> " + ;
FWCOPYRIGHT NOINSET CENTERED KEYBOARD DATE CLOCK 2007
ACTIVATE WINDOW oWnd MAXIMIZED
RETURN NIL
/* O:
ShellExecute( ,"open", cFicheroPdf,,,1 )
*/
// FIN / END ...
- Thu May 05, 2022 11:04 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: flash a small icon
- Replies: 2
- Views: 436
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" + " ";
ACTION NIL
Can I flash a small icon on a msgitem of bar
DEFINE MSGITEM ::oMsgItem1;
OF ::oWinMain:oMsgBar ;
PROMPT "Archivio al 16 Maggio 2020" ;
BITMAPS "MSG_ALERT", "MSG_ALERT";
SIZE 170 ;
TOOLTIP " " + "Data" + " ";
ACTION NIL
Can I flash a small icon on a msgitem of bar
- Sat Feb 22, 2020 12:14 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Write to Left on Msgbar insert a button
- Replies: 0
- Views: 379
Write to Left on Msgbar insert a button
... 46;postimg.cc/pTRnyY8L/jj.png
but on Main this have another message (cmsgBar) with not buttons
SET MESSAGE OF ::oWndMain TO ::cMsgBar NOINSET
https://i.postimg.cc/bJ4rkxSn/jk.png
then I have another msgitems as you can see on picture but I wish use the first al left ...
but on Main this have another message (cmsgBar) with not buttons
SET MESSAGE OF ::oWndMain TO ::cMsgBar NOINSET
https://i.postimg.cc/bJ4rkxSn/jk.png
then I have another msgitems as you can see on picture but I wish use the first al left ...
- Mon Jul 29, 2019 2:57 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Programa Oculto
- Replies: 4
- Views: 1143
Re: Programa Oculto
... ICON oIco NOMAXIMIZE
DEFINE TIMER oTmr INTERVAL 2000 ACTION CheckSls(oLbx,oPrn) OF oWnd
ACTIVATE TIMER oTmr
DEFINE MESSAGE OF oWnd PROMPT "" NOINSET CENTERED KEYBOARD DATE CLOCK
ACTIVATE WINDOW oWnd VALID MsgYesNo( HB_OemtoAnsi("¨ Salir del Programa ?") ,HB_OemtoAnsi("Seleccione opci¢n ...
DEFINE TIMER oTmr INTERVAL 2000 ACTION CheckSls(oLbx,oPrn) OF oWnd
ACTIVATE TIMER oTmr
DEFINE MESSAGE OF oWnd PROMPT "" NOINSET CENTERED KEYBOARD DATE CLOCK
ACTIVATE WINDOW oWnd VALID MsgYesNo( HB_OemtoAnsi("¨ Salir del Programa ?") ,HB_OemtoAnsi("Seleccione opci¢n ...
- Fri May 31, 2019 12:07 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Ribbon Theme
- Replies: 3
- Views: 38615
Re: Ribbon Theme
... the code I used to create the FW message bar:
SET MESSAGE TO " Page 1 of 1 0 words English (United Kingdom)" OF oWnd color _nClrTxt, _nClrMsgBar noinset noborder
Note that even though it is using the NOBORDER clause there is a white line between the client area of the window and the messagebar. It ...
SET MESSAGE TO " Page 1 of 1 0 words English (United Kingdom)" OF oWnd color _nClrTxt, _nClrMsgBar noinset noborder
Note that even though it is using the NOBORDER clause there is a white line between the client area of the window and the messagebar. It ...
- Mon Oct 02, 2017 8:37 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: cambiar mansaje en barra??
- Replies: 4
- Views: 1018
Re: cambiar mansaje en barra??
Saludos ;
DEFINE MESSAGE OF oWnd ;
PROMPT "BARRA DE MENSAJE" NOINSET CENTERED KEYBOARD DATE CLOCK
Al colocar DATE y Clock el actualiza automaticamente ... lo puedes probar con la hora .
y lo que puedes hacer es al momento de incluir tu registro verificas igualmente date()
Espero me entiendas y te ...
DEFINE MESSAGE OF oWnd ;
PROMPT "BARRA DE MENSAJE" NOINSET CENTERED KEYBOARD DATE CLOCK
Al colocar DATE y Clock el actualiza automaticamente ... lo puedes probar con la hora .
y lo que puedes hacer es al momento de incluir tu registro verificas igualmente date()
Espero me entiendas y te ...
- Thu Jul 14, 2016 8:56 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: refresh MESSAGE
- Replies: 2
- Views: 517
refresh MESSAGE
... WINDOW oApp TITLE "Apps" ;
MENUINFO 3 ;
MENU BuildMenu() ;
MDI //STYLE 2007
xMESSAGE:='v.2016.06b | Okres '+str(msc_m,2)+'/'+str(rok_m,4)
SET MESSAGE OF oApp TO xMESSAGE CLOCK DATE KEYBOARD NOINSET 2010
ACTIVATE WINDOW oApp MAXIMIZED on CLICK (oApp:refresh(), oApp:setfocus() )
RETURN NIL
MENUINFO 3 ;
MENU BuildMenu() ;
MDI //STYLE 2007
xMESSAGE:='v.2016.06b | Okres '+str(msc_m,2)+'/'+str(rok_m,4)
SET MESSAGE OF oApp TO xMESSAGE CLOCK DATE KEYBOARD NOINSET 2010
ACTIVATE WINDOW oApp MAXIMIZED on CLICK (oApp:refresh(), oApp:setfocus() )
RETURN NIL
- Fri Jan 23, 2015 11:32 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: problem with report
- Replies: 5
- Views: 1102
Re: problem with report
... DEFINE CURSOR oCursorHand HAND
AEval( oBar:aControls, { | o | o:oCursor := oCursorHand } )
DEFINE MESSAGE BAR OF oWnd TITLE FWCOPYRIGHT ;
NOINSET DATE CLOCK KEYBOARD
ACTIVATE WINDOW oWnd ;
VALID ! lPreview .and. MsgYesNo( "Want to exit ?" )
return nil
function BuildMenu()
local oMenu ...
AEval( oBar:aControls, { | o | o:oCursor := oCursorHand } )
DEFINE MESSAGE BAR OF oWnd TITLE FWCOPYRIGHT ;
NOINSET DATE CLOCK KEYBOARD
ACTIVATE WINDOW oWnd ;
VALID ! lPreview .and. MsgYesNo( "Want to exit ?" )
return nil
function BuildMenu()
local oMenu ...
- Sat Sep 06, 2014 6:52 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Problema MESSAGE BAR
- Replies: 0
- Views: 341
Problema MESSAGE BAR
... substr(aValor[5],1,1)=="D","*","")+" "+aValor[4]+" ["+M->oPublic:cTemp+terminal+"]";
TIME DATE KEYBOARD;
COLOR CLR_BLUE;
FONT px:oDomiFontMsg;
NOINSET
oMsgprin:lInfoRes:=.f.
DEFINE MSGITEM oMsgTTS OF oMsgprin PROMPT "TTS" ;
SIZE 40;
COLOR If(ltts,CLR_WHITE,CLR_GRAY),If(ltts,CLR_GREEN,CLR ...
TIME DATE KEYBOARD;
COLOR CLR_BLUE;
FONT px:oDomiFontMsg;
NOINSET
oMsgprin:lInfoRes:=.f.
DEFINE MSGITEM oMsgTTS OF oMsgprin PROMPT "TTS" ;
SIZE 40;
COLOR If(ltts,CLR_WHITE,CLR_GRAY),If(ltts,CLR_GREEN,CLR ...
- Wed Oct 09, 2013 9:07 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: To Antonio: fwstring
- Replies: 11
- Views: 4347
Re: To Antonio: fwstring
No Prefernces() is on strings.prg and I modify also
New Method I insert then this line SET MESSAGE OF ::oWndMain TO ::cMsgBar CENTER NOINSET
::oWndMain:bInit := { || LoadPreferences() }
then I modify this function at strimgs.prg because give me error
SavePreferences()
LoadPreferences ...
New Method I insert then this line SET MESSAGE OF ::oWndMain TO ::cMsgBar CENTER NOINSET
::oWndMain:bInit := { || LoadPreferences() }
then I modify this function at strimgs.prg because give me error
SavePreferences()
LoadPreferences ...