Discussion:
minimenu.mnu from dUFLP_V
(too old to reply)
Ivan Benttini
2008-09-18 00:53:09 UTC
Permalink
Dear People,
Can anyone help me to find [ minimenu.mnu ], look inside
of Ken's helpful dUFLP-V but could not find it.
Please help...
Ivan Benttini
Mervyn Bick
2008-09-18 04:30:02 UTC
Permalink
Post by Ivan Benttini
Dear People,
Can anyone help me to find [ minimenu.mnu ], look inside
of Ken's helpful dUFLP-V but could not find it.
Please help...
Ivan Benttini
I found the code below in my dUFLP directory. It is not in the latest
dUFLP zip file so it must have been "left over" from a previous issue.

Mervyn.


***** Start of minimenu.mnu ********
** END HEADER -- do not remove this line
//
// Generated on 2008/08/17
//
parameter formObj
new minimenuMENU(formObj, "root")

class minimenuMENU(formObj, name) of MENUBAR(formObj, name)
this.FILE = new MENU(this)
with (this.FILE)
text = "&File"
endwith

this.FILE.EXIT = new MENU(this.FILE)
with (this.FILE.EXIT)
onClick = class::EXIT_ONCLICK
text = "&Exit"
endwith

this.HELP = new MENU(this)
with (this.HELP)
text = "&Help"
endwith

this.HELP.CONTENTS = new MENU(this.HELP)
with (this.HELP.CONTENTS)
onClick = class::CONTENTS_ONCLICK
text = "&Contents"
endwith


function CONTENTS_onClick
do _pdfreader.wfm
return

function EXIT_onClick
this.parent.parent.parent.close()
return

endclass
******* End of minimenu.mnu ******
Glenn Johansen
2008-09-18 10:54:11 UTC
Permalink
What does this go with ?

-g
Post by Mervyn Bick
Post by Ivan Benttini
Dear People,
Can anyone help me to find [ minimenu.mnu ], look inside
of Ken's helpful dUFLP-V but could not find it.
Please help...
Ivan Benttini
I found the code below in my dUFLP directory. It is not in the latest
dUFLP zip file so it must have been "left over" from a previous issue.
Mervyn.
***** Start of minimenu.mnu ********
** END HEADER -- do not remove this line
//
// Generated on 2008/08/17
//
parameter formObj
new minimenuMENU(formObj, "root")
class minimenuMENU(formObj, name) of MENUBAR(formObj, name)
this.FILE = new MENU(this)
with (this.FILE)
text = "&File"
endwith
this.FILE.EXIT = new MENU(this.FILE)
with (this.FILE.EXIT)
onClick = class::EXIT_ONCLICK
text = "&Exit"
endwith
this.HELP = new MENU(this)
with (this.HELP)
text = "&Help"
endwith
this.HELP.CONTENTS = new MENU(this.HELP)
with (this.HELP.CONTENTS)
onClick = class::CONTENTS_ONCLICK
text = "&Contents"
endwith
function CONTENTS_onClick
do _pdfreader.wfm
return
function EXIT_onClick
this.parent.parent.parent.close()
return
endclass
******* End of minimenu.mnu ******
Ivan Benttini
2008-09-18 20:18:46 UTC
Permalink
Thanks so much Glenn.
IBenttini
Post by Glenn Johansen
What does this go with ?
-g
On Thu, 18 Sep 2008 02:53:09 +0200, Ivan Benttini
Post by Ivan Benttini
Dear People,
Can anyone help me to find [ minimenu.mnu ], look inside
of Ken's helpful dUFLP-V but could not find it.
Please help...
Ivan Benttini
I found the code below in my dUFLP directory. It is not in the latest
dUFLP zip file so it must have been "left over" from a previous issue.
Mervyn.
***** Start of minimenu.mnu ********
** END HEADER -- do not remove this line
//
// Generated on 2008/08/17
//
parameter formObj
new minimenuMENU(formObj, "root")
class minimenuMENU(formObj, name) of MENUBAR(formObj, name)
this.FILE = new MENU(this)
with (this.FILE)
text = "&File"
endwith
this.FILE.EXIT = new MENU(this.FILE)
with (this.FILE.EXIT)
onClick = class::EXIT_ONCLICK
text = "&Exit"
endwith
this.HELP = new MENU(this)
with (this.HELP)
text = "&Help"
endwith
this.HELP.CONTENTS = new MENU(this.HELP)
with (this.HELP.CONTENTS)
onClick = class::CONTENTS_ONCLICK
text = "&Contents"
endwith
function CONTENTS_onClick
do _pdfreader.wfm
return
function EXIT_onClick
this.parent.parent.parent.close()
return
endclass
******* End of minimenu.mnu ******
Ken Mayer [dBVIPS]
2008-09-18 12:37:47 UTC
Permalink
On Thu, 18 Sep 2008 02:53:09 +0200, Ivan Benttini
Post by Ivan Benttini
Dear People,
Can anyone help me to find [ minimenu.mnu ], look inside
of Ken's helpful dUFLP-V but could not find it.
Please help...
Ivan Benttini
I found the code below in my dUFLP directory. It is not in the latest
dUFLP zip file so it must have been "left over" from a previous issue.
To the best of my knowledge, there's never been a .MNU file in the
dUFLP, unless it is in one of the .zip files.

I would seriously recommend that if you have other code that you want to
use, you put it in a different folder than the dUFLP folder. That way,
when updates to the dUFLP are available, you can erase the contents of
the folder, and put the new dUFLP in there without damaging your other
code. dBASE doesn't care how many source code aliases are set up and in
use, after all ...

Ken
--
/(Opinions expressed are purely my own, not those of dataBased
Intelligence, Inc.)/

*Ken Mayer* [dBVIPS]
/Golden Stag Productions/
dBASE at goldenstag dot net
http://www.goldenstag.net/GSP
http://www.goldenstag.net/dbase/dBASEBooks.htm
http://www.goldenstag.net/dbase
Loading...