Search found 25 matches: mainmenu

Return to advanced search

Re: To Maurizio, to Dutch

Image
by Otto
Tue Jan 11, 2022 3:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Maurizio, to Dutch
Replies: 29
Views: 2197

Re: XBROWSE : LEN(::aDisplay)==0 AGAIN !

... 4-the time he had succes) in a network from 5 computers. On the active alias i can see which table he tryed to open , it is only possible from the mainmenu. In the errorlist i can not see that. The second and third try let see that the error occurs after +/- 1 min. This is only possible when he ...
by Franklin Demont
Thu Feb 21, 2013 7:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : LEN(::aDisplay)==0 AGAIN !
Replies: 3
Views: 968

How to force locale to Serbian Latin

... accented chars (like šđčžć) on user computer regardles of what he have in "Code Page for Non-Unicode programs". This includes text in MainMenu, labels, fields, grids. Is there a way to use unicode in fwh app? Our dbf data is in cp852. Thank you.
by dmajkic
Mon Aug 27, 2012 4:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to force locale to Serbian Latin
Replies: 7
Views: 1601

Re: XBROWSE oBrw:ToExcel() ERROR

... .\source\classes\DIALOG.PRG => TDIALOG:ACTIVATE(273) Called from: testxbr3.prg => RDDBRWALLCOLSDLG(644) Called from: testxbr3.prg => (b)MAINMENU(114) Called from: .\source\classes\MENU.PRG => TMENU:COMMAND(441) Called from: .\source\classes\WINDOW.PRG => TWINDOW:COMMAND(1043) Called ...
by avista
Fri Apr 20, 2012 7:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE oBrw:ToExcel() ERROR
Replies: 6
Views: 2047

Error after report.

... Called from: .\source\classes\PRINTER.PRG => PRINTEND(985) Called from: LSTCOOPP.PRG => REPPATS(228) Called from: LSTCOOPP.PRG => (b)MAINMENU(268) Called from: .\source\classes\MENU.PRG => TMENU:COMMAND(437) Called from: .\source\classes\WINDOW.PRG => TWINDOW:COMMAND(1027) Called ...
by HunterEC
Fri Jul 01, 2011 12:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error after report.
Replies: 2
Views: 435

Re: Program crashing

You better implement Alt-X behavior through ACCELERATOR clause of menu item, than by set key. MainMenu() should be a function returning Menu Object. This is a simplified code implementing what you wanted. You can later add language specific code and code for logos and ...
by nageswaragunupudi
Thu Jun 30, 2011 6:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program crashing
Replies: 8
Views: 1590

Re: Program crashing

The function MainMenu executes prior to creation of the main window. Therefore the parameter oWindow received by MainMenu() function is NIL and you are calling oWindow:End() results in calling NIL:End().

Instead of using oWindow:End(), use WndMain():End()
by nageswaragunupudi
Wed Jun 29, 2011 1:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program crashing
Replies: 8
Views: 1590

Re: Program crashing

Hunter, Try that: ... MainMenu (@oWindow, @oMenu, @nChoice, {|| oWindow } ) ... STATIC PROCEDURE MainMenu (oWindow, oMenu, nChoice, bWindow ) SETKEY(ASC("X"), {|| IIF( GetKeyState( ACC_ALT ), EVAL({|| IIF(ALERT( ; "¿ Terminar ...
by hmpaquito
Wed Jun 29, 2011 11:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program crashing
Replies: 8
Views: 1590

Re: Pritpal, HBIDE developer, assists us to use it with FWH

... + Implemented: Harbour level codepage protocol. Please make experiments. WARNING: you may need to re-select appropriate codepage from <MainMenu><Setup><Codepages> menu option before saving any source. Better would be - select codepage as above and exit hbIDE, reenter. ...
by Pritpal Bedi
Mon Sep 20, 2010 2:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pritpal, HBIDE developer, assists us to use it with FWH
Replies: 293
Views: 99069

Re: desde archivo de recursos

... mostrarlo me parece que por donde he ido no es el camino .... Seguiré con ello . La manera de hacerlo es crear un nib con una ventana yllamarla MainMenu .Colocarlo dentro de Contens-> resources->English.lproj. Para llamarlo con esta simple funcion vale : HB_FUNC( WINDOWCONTROLCREATE ) ...
by mastintin
Sat Jul 17, 2010 7:02 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: desde archivo de recursos
Replies: 33
Views: 6781

Re: Menu 2007

Estimados compañeros:

Yo lo tengo asi y me funciona..

STATIC FUNCTION MainMenu()
LOCAL oMenu
MENU oMenu 2007

Saludos Ruben Fernandez
by Ruben Fernandez
Thu Apr 08, 2010 4:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Menu 2007
Replies: 15
Views: 2976

Re: Cursor de mouse en ToolBar

... Llamado desde: LEN(0) Llamado desde: Ap_brow1.prg BARRABOT(360) Llamado desde: Ap_brow1.prg AP_BROWSE1(218) Llamado desde: Ap_main.prg (b)MAINMENU(73) Llamado desde: MENU.prg TMENU:COMMAND(407) Llamado desde: WINDOW.prg TWINDOW:COMMAND(932) Llamado desde: MDIFRAME.prg TMDIFRAME:COMMAND(229) ...
by MarioG
Thu Nov 19, 2009 12:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cursor de mouse en ToolBar
Replies: 4
Views: 665

Re: Porque no funciona: WINDOW...MENU MainMenu()

Ahhhh!!, ya entendí, es cierto, no le ví de esa forma.
Gracias Antonio, por despejar esta duda.

Saludos cordiales.

Carlos.
by csincuir
Sat Jul 18, 2009 10:12 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Porque no funciona: WINDOW...MENU MainMenu()
Replies: 2
Views: 452

Re: Porque no funciona: WINDOW...MENU MainMenu()

Carlos,

Cuando se llama a MenuSistema( oWnd ) para construir el menu, oWnd es nil pues la ventana no se ha creado aún :-)
Code: Select all  Expand view

    DEFINE WINDOW oWnd TITLE "Sistema..." ;
        MENU MenuSistema( oWnd )
 
by Antonio Linares
Sat Jul 18, 2009 7:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Porque no funciona: WINDOW...MENU MainMenu()
Replies: 2
Views: 452

Porque no funciona: WINDOW...MENU MainMenu()

Hola a todos. Esta es una simpre curiosidad: Tengo dos programas: MainSis.prg #include "Fivewin.ch"Static oWndFunction Main()    DEFINE WINDOW oWnd TITLE "Sistema..." ;        MENU MenuSistema( oWnd )        ACTIVATE WINDOW oWnd MAXIMIZED ;        VALID MsgNoYes&#...
by csincuir
Sat Jul 18, 2009 2:45 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Porque no funciona: WINDOW...MENU MainMenu()
Replies: 2
Views: 452
Next

Return to advanced search