Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Novell Netware Glitch

0 views
Skip to first unread message

Don Wellsand

unread,
Mar 15, 1999, 3:00:00 AM3/15/99
to
I not really sure if this is a deployment problem or a build problem. I run
a Novell Network 4.11. I created the executable which runs off Volume app.
After a user exits the executable, Novell's monitor (connection
information) still says the user is still running the program. I verified
this when I tried to create a new executable. Has anyone had this same
problem?

Gary White

unread,
Mar 16, 1999, 3:00:00 AM3/16/99
to

What version of VdB? If you hit Ctrl-Alt-Del, does VdB show up in the
task list?


Gary White

Some dBASE Stuff at
http://www.AppTools.com/dbase

Romain Strieff [TeamB]

unread,
Mar 16, 1999, 3:00:00 AM3/16/99
to
In article <01be6f2d$b1ffdee0$c23e96d0@GroundZero>, Don Wellsand politely
paraphrased ...

> I not really sure if this is a deployment problem or a build problem. I run
> a Novell Network 4.11. I created the executable which runs off Volume app.
> After a user exits the executable, Novell's monitor (connection
> information) still says the user is still running the program. I verified
> this when I tried to create a new executable. Has anyone had this same
> problem?
>
Did you use QUIT to close the program?
--
Romain Strieff [dBVIPS]

Don Wellsand

unread,
Mar 16, 1999, 3:00:00 AM3/16/99
to
I use vbd7.01. I use the following menu code to close the form. I did look
at
the cntrl-alt-del after it happened again, and windows said
vdb7run was still active.

parameter formObj
new ProjectMENU(formObj, "root")

class ProjectMENU(formObj, name) of MENUBAR(formObj, name)
with (this)
onInitMenu = class::Root_onInitMenu
endwith

this.MENUFILE = new MENU(this)
with (this.MENUFILE)
text = "File"
endwith

this.MENUFILE.MENUEDIT = new MENU(this.MENUFILE)
with (this.MENUFILE.MENUEDIT)
onClick = class::MENUEDIT_ONCLICK
text = "Edit"
endwith

this.MENUFILE.MENUSEP1 = new MENU(this.MENUFILE)
with (this.MENUFILE.MENUSEP1)
text = ""
separator = true
endwith

this.MENUFILE.MENUVIEW = new MENU(this.MENUFILE)
with (this.MENUFILE.MENUVIEW)
onClick = class::MENUVIEW_ONCLICK
text = "View"
endwith

this.MENUFILE.MENUSEP1 = new MENU(this.MENUFILE)
with (this.MENUFILE.MENUSEP1)
text = ""
separator = true
endwith

this.MENUFILE.MENUEXIT = new MENU(this.MENUFILE)
with (this.MENUFILE.MENUEXIT)
onClick = class::MENUEXIT_ONCLICK
text = "Exit"
endwith

// {Linked Method} form.root.menufile.menuexit.onClick
function MENUEXIT_onClick
return ( form.close() )

function ROOT_onInitMenu
local bApp
bApp = ( TYPE("this.parent.app") == "O" )
if ( not bApp )
this.menuFile.menuOpen.enabled := false
this.menuFile.menuWizard.enabled := false
this.menuFile.menuExit.onClick := ;
{ ; this.parent.parent.parent.close() }
this.menuHelp.menuAbout.enabled := false
endif
return (bApp)

endclass

Gary White

unread,
Mar 16, 1999, 3:00:00 AM3/16/99
to
On 16 Mar 1999 21:39:57 GMT, Don Wellsand wrote:

> // {Linked Method} form.root.menufile.menuexit.onClick
> function MENUEXIT_onClick
> return ( form.close() )
>

You need to add a QUIT to the above.

function MENUEXIT_onClick
form.close()
quit
return


Gary White

dBASE2000 News Groups at
news.dbase2000.com

0 new messages