473,387 Members | 1,520 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

netware popup causing access to crash?

Hello,
I have an Access 2000 file working on XP machines and a NT network.
The files are split and 95% of the time all is well and stable. The
main issue arises when the app prints,a novell netware pop up shows
and declares which printer the file is going to and when printing
completes, Access crashes. This is really starting to tick off the
client users.
I see that there may be two possible solutions - first, I have some
way of shielding the access file from the action or secondly get the
IT staff to switch off the popup.
Anyone had a similar problem and perhaps even suggest another possible
cause or a possible fix.
Many thanks
John
Nov 13 '05 #1
7 1655
The popup itself is really not the problem - the problem is you have an
unhandled error that is causing Access to crash. More than likely some sort
of printer error is being generated. Do you have an error handler around
the print routine? What happens when you do print preview, then print -
does it generate the same error, and at what point?

Darryl Kerkeslager

"Jamma" <fl****@hotmail.com> wrote:
Hello,
I have an Access 2000 file working on XP machines and a NT network.
The files are split and 95% of the time all is well and stable. The
main issue arises when the app prints,a novell netware pop up shows
and declares which printer the file is going to and when printing
completes, Access crashes. This is really starting to tick off the
client users.
I see that there may be two possible solutions - first, I have some
way of shielding the access file from the action or secondly get the
IT staff to switch off the popup.
Anyone had a similar problem and perhaps even suggest another possible
cause or a possible fix.
Many thanks
John

Nov 13 '05 #2

Hi Darryl,
Thanks for the response.
There is error trapping on the reports and the client has stated that
they have the same problem with msWord occasionally. The error occurs
after all selected reports are printed, the access window passing the
reports to the printer has closed, the popup appears then the "Access
has develpoped a serious error and must be closed" warning appears.

I have used this app at another client and on two different test
machines without the error - it seemed logical that this was the only
immediate difference that I could see.
I haven't noticed that it happens after previewing first - what might
that indicate.

John

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 13 '05 #3
> I haven't noticed that it happens after previewing first - what might
that indicate.
Based on what you've said, probably nothing, but soetimes it can point out
if the error is in the report formatting code or in the printing.
There is error trapping on the reports
I was more interested in whether the actual DoCmd.OpenReport was trapped.
I have used this app at another client and on two different test
machines without the error - it seemed logical that this was the only
immediate difference that I could see.
Are the Windows and Access versions the same? Could low memory be an issue?
Based on what you've said, probably not. There was a change in the
OpenReport between 97 and 2000 that caused some run-time errors in a certain
case (I can't remember the details).

Have you tried printing from the same exact machine on different printers?

Have you tried peppering your code with MsgBox statements to pinpoint
exactly the line of code where the error occurs? If the error was in fact
caused by the Netware popup, which would not presumably happen at the exact
same time every time, then the error could/should happen in different places
in your code, depending on execution speeds.

Darryl Kerkeslager


"John McCusker" <fl****@hotmail.com> wrote:
Hi Darryl,
Thanks for the response.
There is error trapping on the reports and the client has stated that
they have the same problem with msWord occasionally. The error occurs
after all selected reports are printed, the access window passing the
reports to the printer has closed, the popup appears then the "Access
has develpoped a serious error and must be closed" warning appears.

I have used this app at another client and on two different test
machines without the error - it seemed logical that this was the only
immediate difference that I could see.

John

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 13 '05 #4
Jamma wrote:
Hello,
I have an Access 2000 file working on XP machines and a NT network.
The files are split and 95% of the time all is well and stable. The
main issue arises when the app prints,a novell netware pop up shows
and declares which printer the file is going to and when printing
completes, Access crashes. This is really starting to tick off the
client users.
I see that there may be two possible solutions - first, I have some
way of shielding the access file from the action or secondly get the
IT staff to switch off the popup.
Anyone had a similar problem and perhaps even suggest another possible
cause or a possible fix.
Many thanks
John


Novell still around? <g>

AFAIK Netware uses the Windows Messenger service so try opening a
command prompt (Start->Run->cmd.exe) and type:

net send %COMPUTERNAME% test message

See if Access crashes then.

Try setting up a local printer and printing to that, does it crash then?

Also, be a bit more clear about the word "crash", does it just exit?
Does it give a message then exit? Does it just give messages? Does it
say it has caused a problem and needs to close and offers a "send report
to MS" option?
--
Pretentious? Moi?
Nov 13 '05 #5

The crash does say that there has been an error and needs to send a
report to MS - it then tries to create a backup copy.
The dept that has the application has been trying for a local printer,
but at this point rely on network devices.
I'll have to try the docmd error reporting as suggested by Darryl next.
Many thanks for the responses.
John

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 13 '05 #6

Sounds like the Novell "Notify" message box is popping up, which is
irritating to no end anyway.

Try this:

Right click on the big red 'N' in the system tray and go to client
properties.
Take a look at the default capture tab. There should be a box lablelled
"Notify". If this is checked, turn it off and see if that corrects the
problem. At the very least it should stop the annoying pop-up everytime you
launch a print job. Of course, maybe your clients want to see that.

BTW, we use Novell 6 in our office, and the client installed on all of our
PCs is version 4.90. I mention this because HOPEFULLY your Client
properties has more or less the same tabs. If you have an older version,
you probably need to talk to your sys admin to find out how to get notify
turned off.

Just an aside to Trevor's comment about "Novell still around?<g>" -- Yep, it
is. And going strong. I've worked with some NT boxes, and as far as
downtime or problems, Novell beats the socks off NT. We've been running our
Novell box for 3 years without downtime with one exception -- when we moved
our office from one location to another across town. The Novell box was
installed on the weekend of the move, we came in Monday morning, logged in
and have been happily running ever since with no problems. Can't beat that
with a stick. <G>

Anyway John, Hope This Helps.

Ruben
"Jamma" <no**********@hotmail.com> wrote in message
news:41**********************@news.newsgroups.ws.. .

The crash does say that there has been an error and needs to send a
report to MS - it then tries to create a backup copy.
The dept that has the application has been trying for a local printer,
but at this point rely on network devices.
I'll have to try the docmd error reporting as suggested by Darryl next.
Many thanks for the responses.
John

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 13 '05 #7
Many thanks to all for the excellent suggestions & responses - I'm off
to the clients tomorrow in an effort to try these suggestions. One
way or another the crashes have to stop.
Regards
John


"R Baumann" <ry**@9yahoo.com> wrote in message news:<m6********************@megapath.net>...
Sounds like the Novell "Notify" message box is popping up, which is
irritating to no end anyway.

Try this:

Right click on the big red 'N' in the system tray and go to client
properties.
Take a look at the default capture tab. There should be a box lablelled
"Notify". If this is checked, turn it off and see if that corrects the
problem. At the very least it should stop the annoying pop-up everytime you
launch a print job. Of course, maybe your clients want to see that.

BTW, we use Novell 6 in our office, and the client installed on all of our
PCs is version 4.90. I mention this because HOPEFULLY your Client
properties has more or less the same tabs. If you have an older version,
you probably need to talk to your sys admin to find out how to get notify
turned off.

Just an aside to Trevor's comment about "Novell still around?<g>" -- Yep, it
is. And going strong. I've worked with some NT boxes, and as far as
downtime or problems, Novell beats the socks off NT. We've been running our
Novell box for 3 years without downtime with one exception -- when we moved
our office from one location to another across town. The Novell box was
installed on the weekend of the move, we came in Monday morning, logged in
and have been happily running ever since with no problems. Can't beat that
with a stick. <G>

Anyway John, Hope This Helps.

Ruben
"Jamma" <no**********@hotmail.com> wrote in message
news:41**********************@news.newsgroups.ws.. .

The crash does say that there has been an error and needs to send a
report to MS - it then tries to create a backup copy.
The dept that has the application has been trying for a local printer,
but at this point rely on network devices.
I'll have to try the docmd error reporting as suggested by Darryl next.
Many thanks for the responses.
John

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 13 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Raj Batra | last post by:
Hi, I've created a dll that you can import into python. The function calls an ostringstream class. Calling this function repeatedly in python will cause a Microsoft Visual C++ Debug Library...
2
by: Mark Loveless | last post by:
Back in my mainframe days a crash dump could be parsed by hand to reveal the application program running at crash time as well as the offset into said program, which combined with a extended...
4
by: hinrich | last post by:
Hello, I have a completely new system (windows xp prof.), office xp 2002 with sp 3. When I create a new and empty Accesss database, create an empty table and then create a new form using a...
2
by: Lenin Torres | last post by:
Hi everybody I have an Union Query that works fine. I used this query as the RecordSource for a Form. That Form is used as a subform in another form. Everything works fine, except for the "Filter...
7
by: ukrbend | last post by:
I use an iframe on my home page and everything works perfectly. But now I decided to add a popups to my page. The popups come not from within the iframe but from the parent frame. Again, everything...
6
by: Vear | last post by:
Hi, I have a web page that is in a master page. The user fills in the page and at the bottom I have a link for terms which when they click is causing post back. Here is the code. Is there a way...
2
by: =?Utf-8?B?TWFuYXNoIFNhaG9v?= | last post by:
Anyone experience this? I am doing a "__doPostBack('','');" in javascript. The postback does occur on the server side as I have verified this in debug mode. However, when the response is sent...
11
by: Harel | last post by:
I have a report SQL which have been working for a few weeks. Its large and the target database is large. It has 59 join, and I dont think there is anything I can do about this, since the DB I use...
4
by: Bikram Soni | last post by:
My application is multi threaded and it gets about 60 reuquests per minute. The code Below seems to be causing a memory leak.. not sure whats causing it Kindly Help long size =...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.