Last fall I was developing a proof of concept even though I'm not really a
programmer. It worked so well that now they want to make it a production
program. I put very little error logic in it and it runs fine on my PC, but
errors out on the server where I installed it. Obviously I need to bulk up my
error logic so I can find out what is wrong. I used to use an "on error goto"
at the top of the old VB 6 programs but, when reading about error logic for
VB2005, it stated more than once that this shouldn't be used. The program
accesses a database and a spreadsheet literally 100's of times. Do I really
need to add a TRY for every one of those? Are there any alternatives? Does
VB2005 have some kind of overall/default error processing that applies to
everything anymore?
--
Bettie
|
|
0
|
|
|
|
Reply
|
Utf
|
1/6/2010 5:23:01 PM |
|
For example see :
http://msmvps.com/blogs/deborahk/archive/2009/09/02/global-exception-handler-winforms.aspx
You can start by creating a global exception handler that will be your
"safety net".
Then you can use a local using statement
(http://msdn.microsoft.com/en-us/library/htd05whh(VS.80).aspx) to allow
releasing ressources in case of an error (but still have error reporting
processed by your global handler).
And finally, you can also use a local try/catch if you want to process a
particular error from which you expect to be able to recover...
--
Patrice
"BGCSOCAL" <BGCSOCAL@discussions.microsoft.com> a écrit dans le message de
news:6B00A7D4-35AA-4250-8396-FB3D02D0F42A@microsoft.com...
> Last fall I was developing a proof of concept even though I'm not really a
> programmer. It worked so well that now they want to make it a production
> program. I put very little error logic in it and it runs fine on my PC,
> but
> errors out on the server where I installed it. Obviously I need to bulk up
> my
> error logic so I can find out what is wrong. I used to use an "on error
> goto"
> at the top of the old VB 6 programs but, when reading about error logic
> for
> VB2005, it stated more than once that this shouldn't be used. The program
> accesses a database and a spreadsheet literally 100's of times. Do I
> really
> need to add a TRY for every one of those? Are there any alternatives? Does
> VB2005 have some kind of overall/default error processing that applies to
> everything anymore?
> --
> Bettie
|
|
0
|
|
|
|
Reply
|
Patrice
|
1/6/2010 5:40:45 PM
|
|
BGCSOCAL schrieb:
> Last fall I was developing a proof of concept even though I'm not really a
> programmer. It worked so well that now they want to make it a production
> program. I put very little error logic in it and it runs fine on my PC, but
> errors out on the server where I installed it. Obviously I need to bulk up my
> error logic so I can find out what is wrong. I used to use an "on error goto"
> at the top of the old VB 6 programs but, when reading about error logic for
> VB2005, it stated more than once that this shouldn't be used. The program
> accesses a database and a spreadsheet literally 100's of times. Do I really
> need to add a TRY for every one of those? Are there any alternatives? Does
> VB2005 have some kind of overall/default error processing that applies to
> everything anymore?
In addition to individual error handling where required - where, how and
what is handled is, well, individual - I have a Try-Catch around the code
in every thread's main procdedure handling the "unexpected" errors.
Does this answer your question?
--
Armin
|
|
0
|
|
|
|
Reply
|
Armin
|
1/6/2010 6:10:56 PM
|
|
Hello, Bettie,
I believe that "On Error..." is still available in VB2005, and there may be
some cases where it provides advantages over structured exception handling.
(Personally, I haven't found any occasion to use "On Error..." since leaving
VB6.)
It is definitely preferable to consider and include exception handling when
you design your code, but you should be able to retrofit some useful
exception handling after the fact. Exceptions will "bubble up" the call
stack until an active exception handler is located, so a few high level
exception handlers may be all that you need.
To locate and diagnose errors easily, you may find it helpful to include the
exception's StackTrace property in an error report. Recording the error
report in a file that the user can send to you will help with clear
communication of the details.
By the way, and just as general comment, it has been my experience that
there is no gain to be had by taking shortcuts when creating
"proof-of-concept" or "one-time-use" programs. If the code is useful, it
will inevitably be used over and over, expanded and developed. Poor
structure and techniques associated with the shortcuts taken in the
"prototype" tend to live forever, and forever cause the maintenance
programmer headaches and the owner additional expense. So, in making this a
production program, you may want to consider a complete re-write.
Cheers,
Randy
|
|
0
|
|
|
|
Reply
|
Utf
|
1/6/2010 6:49:01 PM
|
|
A kind of bad habit in VB6 was to put every where ON Error etc.
You should only use error catching if there can be an error.
For instance if a field can be nothing, then test it first if it is not
nothing, you are able to do that in Net, so use it.
jmho
Cor
"BGCSOCAL" <BGCSOCAL@discussions.microsoft.com> wrote in message
news:6B00A7D4-35AA-4250-8396-FB3D02D0F42A@microsoft.com...
> Last fall I was developing a proof of concept even though I'm not really a
> programmer. It worked so well that now they want to make it a production
> program. I put very little error logic in it and it runs fine on my PC,
> but
> errors out on the server where I installed it. Obviously I need to bulk up
> my
> error logic so I can find out what is wrong. I used to use an "on error
> goto"
> at the top of the old VB 6 programs but, when reading about error logic
> for
> VB2005, it stated more than once that this shouldn't be used. The program
> accesses a database and a spreadsheet literally 100's of times. Do I
> really
> need to add a TRY for every one of those? Are there any alternatives? Does
> VB2005 have some kind of overall/default error processing that applies to
> everything anymore?
> --
> Bettie
|
|
0
|
|
|
|
Reply
|
Cor
|
1/7/2010 6:21:36 AM
|
|
=?Utf-8?B?QkdDU09DQUw=?= <BGCSOCAL@discussions.microsoft.com> wrote in
news:6B00A7D4-35AA-4250-8396-FB3D02D0F42A@microsoft.com:
> Last fall I was developing a proof of concept even though I'm not
> really a programmer. It worked so well that now they want to make it a
> production program. I put very little error logic in it and it runs
> fine on my PC, but errors out on the server where I installed it.
Is this a windows app or a web app? If it is a windows app, what do you
mean "installed on server"? Is it run on the server? Or is it
downloadble from a server?
> Obviously I need to bulk up my error logic so I can find out what is
> wrong. I used to use an "on error goto" at the top of the old VB 6
> programs but, when reading about error logic for VB2005, it stated
> more than once that this shouldn't be used.
In general, the "on error go to hell everywhere" approach was frowned on
in VB, as well, although it was widely adopted, as it was easy. The
preferred method was to write individual handlers for routines. The
overarching was often left to catch bad programming constructs.
> The program
> accesses a database and a spreadsheet literally 100's of times. Do I
> really need to add a TRY for every one of those?
you need to separate out the data access logic and place the try ...
catch there. You then call the data access layer from your thousands of
places.
> Are there any
> alternatives? Does VB2005 have some kind of overall/default error
> processing that applies to everything anymore?
You can still do this, but it becomes a last ditch effort just like the
"on error go to hell everywhere" handler in classic VB.
To debug what is going on here, assuming a windows app for example, you
can place a try ... catch around the startup mechanism and find the
error.
Tracing is also useful, as you can find problems by tracing the right
elements. It is often more useful in production systems than the generic
catch all error handler.
Peace and Grace,
--
Gregory A. Beamer (MVP)
Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com
*******************************************
| Think outside the box! |
*******************************************
|
|
0
|
|
|
|
Reply
|
Gregory
|
1/7/2010 4:21:45 PM
|
|
Thank you for the input. they just asked me to develop another proof of
concept program. I suggested a professional developer, but every just
laughed. I was serious. Still, I think you are right on. this time I will
develop it like it is going to work forever; i.e., from the very start.
--
Bettie
"OmegaSquared" wrote:
> Hello, Bettie,
>
> I believe that "On Error..." is still available in VB2005, and there may be
> some cases where it provides advantages over structured exception handling.
> (Personally, I haven't found any occasion to use "On Error..." since leaving
> VB6.)
>
> It is definitely preferable to consider and include exception handling when
> you design your code, but you should be able to retrofit some useful
> exception handling after the fact. Exceptions will "bubble up" the call
> stack until an active exception handler is located, so a few high level
> exception handlers may be all that you need.
>
> To locate and diagnose errors easily, you may find it helpful to include the
> exception's StackTrace property in an error report. Recording the error
> report in a file that the user can send to you will help with clear
> communication of the details.
>
> By the way, and just as general comment, it has been my experience that
> there is no gain to be had by taking shortcuts when creating
> "proof-of-concept" or "one-time-use" programs. If the code is useful, it
> will inevitably be used over and over, expanded and developed. Poor
> structure and techniques associated with the shortcuts taken in the
> "prototype" tend to live forever, and forever cause the maintenance
> programmer headaches and the owner additional expense. So, in making this a
> production program, you may want to consider a complete re-write.
>
> Cheers,
> Randy
>
|
|
0
|
|
|
|
Reply
|
Utf
|
1/8/2010 9:55:01 PM
|
|
I'm not sure. So you put a try/catch at the beginning of a procesdure (or
whatever) to catch what you didn't code for. Can you nest try/catch groups?
--
Bettie
"Armin Zingler" wrote:
> BGCSOCAL schrieb:
> > Last fall I was developing a proof of concept even though I'm not really a
> > programmer. It worked so well that now they want to make it a production
> > program. I put very little error logic in it and it runs fine on my PC, but
> > errors out on the server where I installed it. Obviously I need to bulk up my
> > error logic so I can find out what is wrong. I used to use an "on error goto"
> > at the top of the old VB 6 programs but, when reading about error logic for
> > VB2005, it stated more than once that this shouldn't be used. The program
> > accesses a database and a spreadsheet literally 100's of times. Do I really
> > need to add a TRY for every one of those? Are there any alternatives? Does
> > VB2005 have some kind of overall/default error processing that applies to
> > everything anymore?
>
> In addition to individual error handling where required - where, how and
> what is handled is, well, individual - I have a Try-Catch around the code
> in every thread's main procdedure handling the "unexpected" errors.
> Does this answer your question?
>
> --
> Armin
>
>
>
> .
>
|
|
0
|
|
|
|
Reply
|
Utf
|
1/8/2010 9:56:01 PM
|
|
thank you for the input. I will read thea rticles that you suggested.
--
Bettie
"Patrice" wrote:
> For example see :
> http://msmvps.com/blogs/deborahk/archive/2009/09/02/global-exception-handler-winforms.aspx
>
> You can start by creating a global exception handler that will be your
> "safety net".
>
> Then you can use a local using statement
> (http://msdn.microsoft.com/en-us/library/htd05whh(VS.80).aspx) to allow
> releasing ressources in case of an error (but still have error reporting
> processed by your global handler).
>
> And finally, you can also use a local try/catch if you want to process a
> particular error from which you expect to be able to recover...
>
> --
> Patrice
>
> "BGCSOCAL" <BGCSOCAL@discussions.microsoft.com> a écrit dans le message de
> news:6B00A7D4-35AA-4250-8396-FB3D02D0F42A@microsoft.com...
> > Last fall I was developing a proof of concept even though I'm not really a
> > programmer. It worked so well that now they want to make it a production
> > program. I put very little error logic in it and it runs fine on my PC,
> > but
> > errors out on the server where I installed it. Obviously I need to bulk up
> > my
> > error logic so I can find out what is wrong. I used to use an "on error
> > goto"
> > at the top of the old VB 6 programs but, when reading about error logic
> > for
> > VB2005, it stated more than once that this shouldn't be used. The program
> > accesses a database and a spreadsheet literally 100's of times. Do I
> > really
> > need to add a TRY for every one of those? Are there any alternatives? Does
> > VB2005 have some kind of overall/default error processing that applies to
> > everything anymore?
> > --
> > Bettie
>
> .
>
|
|
0
|
|
|
|
Reply
|
Utf
|
1/8/2010 9:57:02 PM
|
|
Thank you for your reply. I see your point. Check that data from spreadsheeet
/database is actually there if it is required. that makes sense. It will take
longer to implement but I see why it is better.
--
Bettie
"Cor Ligthert[MVP]" wrote:
> A kind of bad habit in VB6 was to put every where ON Error etc.
>
> You should only use error catching if there can be an error.
>
> For instance if a field can be nothing, then test it first if it is not
> nothing, you are able to do that in Net, so use it.
>
> jmho
>
> Cor
>
> "BGCSOCAL" <BGCSOCAL@discussions.microsoft.com> wrote in message
> news:6B00A7D4-35AA-4250-8396-FB3D02D0F42A@microsoft.com...
> > Last fall I was developing a proof of concept even though I'm not really a
> > programmer. It worked so well that now they want to make it a production
> > program. I put very little error logic in it and it runs fine on my PC,
> > but
> > errors out on the server where I installed it. Obviously I need to bulk up
> > my
> > error logic so I can find out what is wrong. I used to use an "on error
> > goto"
> > at the top of the old VB 6 programs but, when reading about error logic
> > for
> > VB2005, it stated more than once that this shouldn't be used. The program
> > accesses a database and a spreadsheet literally 100's of times. Do I
> > really
> > need to add a TRY for every one of those? Are there any alternatives? Does
> > VB2005 have some kind of overall/default error processing that applies to
> > everything anymore?
> > --
> > Bettie
>
> .
>
|
|
0
|
|
|
|
Reply
|
Utf
|
1/8/2010 9:59:02 PM
|
|
Thank you for replying. So you are saying use data and try/catches where
there is more likelihood of failure. If something else occurs, the use the
trace to track the error down. That's makes good sense.
--
Bettie
"Gregory A. Beamer" wrote:
> =?Utf-8?B?QkdDU09DQUw=?= <BGCSOCAL@discussions.microsoft.com> wrote in
> news:6B00A7D4-35AA-4250-8396-FB3D02D0F42A@microsoft.com:
>
> > Last fall I was developing a proof of concept even though I'm not
> > really a programmer. It worked so well that now they want to make it a
> > production program. I put very little error logic in it and it runs
> > fine on my PC, but errors out on the server where I installed it.
>
> Is this a windows app or a web app? If it is a windows app, what do you
> mean "installed on server"? Is it run on the server? Or is it
> downloadble from a server?
>
> > Obviously I need to bulk up my error logic so I can find out what is
> > wrong. I used to use an "on error goto" at the top of the old VB 6
> > programs but, when reading about error logic for VB2005, it stated
> > more than once that this shouldn't be used.
>
> In general, the "on error go to hell everywhere" approach was frowned on
> in VB, as well, although it was widely adopted, as it was easy. The
> preferred method was to write individual handlers for routines. The
> overarching was often left to catch bad programming constructs.
>
> > The program
> > accesses a database and a spreadsheet literally 100's of times. Do I
> > really need to add a TRY for every one of those?
>
> you need to separate out the data access logic and place the try ...
> catch there. You then call the data access layer from your thousands of
> places.
>
> > Are there any
> > alternatives? Does VB2005 have some kind of overall/default error
> > processing that applies to everything anymore?
>
> You can still do this, but it becomes a last ditch effort just like the
> "on error go to hell everywhere" handler in classic VB.
>
> To debug what is going on here, assuming a windows app for example, you
> can place a try ... catch around the startup mechanism and find the
> error.
>
> Tracing is also useful, as you can find problems by tracing the right
> elements. It is often more useful in production systems than the generic
> catch all error handler.
>
> Peace and Grace,
>
> --
> Gregory A. Beamer (MVP)
>
> Twitter: @gbworld
> Blog: http://gregorybeamer.spaces.live.com
>
> *******************************************
> | Think outside the box! |
> *******************************************
> .
>
|
|
0
|
|
|
|
Reply
|
Utf
|
1/8/2010 10:02:01 PM
|
|
BGCSOCAL schrieb:
> I'm not sure. So you put a try/catch at the beginning of a procesdure (or
> whatever) to catch what you didn't code for.
I'm afraid, I don't know what "catch what you didn't code for" means in
this context.
I use SEH (structured exception handling) where I think it makes sense.
However, this is never for catching programming faults. The only
safety net for them is the Try-Catch in each thread's main procedure
just to use my own standardized error handling (includes writing
to a log file etc).
Some exceptions can be handled by throwing another exception giving
more information about the location or task where the error occured
and carrying the original exception as it's InnerException.
For example, in a multi-step operation, you can individually handle
each step by providing different error descriptions.
And, user input must never lead to exceptions. However, for example,
before there were the TryParse methods, calling the Parse method
surrounded by a Try-Catch was the only to validate user input
(the only one if you wanted to use the Parse method).
> Can you nest try/catch groups?
yes
Maybe of interest: (Only found but didn't read it and consequently
can't say if I agree)
http://msdn.microsoft.com/en-us/library/seyhszts.aspx
--
Armin
|
|
0
|
|
|
|
Reply
|
Armin
|
1/10/2010 10:57:38 AM
|
|
I've been looking up the try/catch mechanism as you all suggested. From some
of the reponses I got the idea that an error bubbles up to the highest level.
So, If I put a Try/catch around the works of the main logic (the part that
calls the subroutines) would it pick up the errors from the lower levels? Or
is it best to go down to the next level and put a try/catch in every
subroutine? Or is it best to put it in every subroutine in the program.
--
Bettie
"BGCSOCAL" wrote:
> Last fall I was developing a proof of concept even though I'm not really a
> programmer. It worked so well that now they want to make it a production
> program. I put very little error logic in it and it runs fine on my PC, but
> errors out on the server where I installed it. Obviously I need to bulk up my
> error logic so I can find out what is wrong. I used to use an "on error goto"
> at the top of the old VB 6 programs but, when reading about error logic for
> VB2005, it stated more than once that this shouldn't be used. The program
> accesses a database and a spreadsheet literally 100's of times. Do I really
> need to add a TRY for every one of those? Are there any alternatives? Does
> VB2005 have some kind of overall/default error processing that applies to
> everything anymore?
> --
> Bettie
|
|
0
|
|
|
|
Reply
|
Utf
|
1/11/2010 6:34:01 PM
|
|
BGCSOCAL schrieb:
> I've been looking up the try/catch mechanism as you all suggested. From some
> of the reponses I got the idea that an error bubbles up to the highest level.
Right.
> So, If I put a Try/catch around the works of the main logic (the part that
> calls the subroutines) would it pick up the errors from the lower levels?
Yes.
> Or
> is it best to go down to the next level and put a try/catch in every
> subroutine?
What would you do with the exception in every function?
> Or is it best to put it in every subroutine in the program.
No. (IMO)
--
Armin
|
|
0
|
|
|
|
Reply
|
Armin
|
1/11/2010 7:03:50 PM
|
|
I've done research on the try/catch logic you all suggested and read a bunch
more articles. Apparently, errors from one subroutine bubble up to the
calling routine and can be handled there. So, is the best way to put a
try/catch around the main routine to catch errors from all of the subroutines
that it calls, or is it better to put one try cactch in each subroutine?
It seems like if you use the Message and the StackTrace properties that it
will pinpoint what the error is and where it occurred. Good idea or bad?
--
Bettie
"BGCSOCAL" wrote:
> Last fall I was developing a proof of concept even though I'm not really a
> programmer. It worked so well that now they want to make it a production
> program. I put very little error logic in it and it runs fine on my PC, but
> errors out on the server where I installed it. Obviously I need to bulk up my
> error logic so I can find out what is wrong. I used to use an "on error goto"
> at the top of the old VB 6 programs but, when reading about error logic for
> VB2005, it stated more than once that this shouldn't be used. The program
> accesses a database and a spreadsheet literally 100's of times. Do I really
> need to add a TRY for every one of those? Are there any alternatives? Does
> VB2005 have some kind of overall/default error processing that applies to
> everything anymore?
> --
> Bettie
|
|
0
|
|
|
|
Reply
|
Utf
|
1/11/2010 7:17:01 PM
|
|
BGCSOCAL wrote:
> I've been looking up the try/catch mechanism as you all suggested. From some
> of the reponses I got the idea that an error bubbles up to the highest level.
> So, If I put a Try/catch around the works of the main logic (the part that
> calls the subroutines) would it pick up the errors from the lower levels? Or
> is it best to go down to the next level and put a try/catch in every
> subroutine? Or is it best to put it in every subroutine in the program.
General Rule: Put Catches where you can do something "useful".
If you /only/ have the top-level catch, then pretty much all you can do
is log the error (to a file [for later] /and/ to the screen) and kill
the program.
If you dig down deeper into the logic, you can /recover/ from errors or
clean the "mess", before continuing, for example
Try
Dim sr as new StreamReader( "file", ... )
Dim sData as String = sr.ReadToEnd()
. . .
sr.Close()
Return sData
Catch ex as IO.FileNotFoundException
LogToFile( ex )
MsgBox( "That file doesn't exist ", ... )
Return Nothing
End Try
HTH,
Phill W.
|
|
0
|
|
|
|
Reply
|
Phill
|
1/12/2010 12:36:00 PM
|
|
Thanks!
--
Bettie
"Armin Zingler" wrote:
> BGCSOCAL schrieb:
> > I've been looking up the try/catch mechanism as you all suggested. From some
> > of the reponses I got the idea that an error bubbles up to the highest level.
>
> Right.
>
> > So, If I put a Try/catch around the works of the main logic (the part that
> > calls the subroutines) would it pick up the errors from the lower levels?
>
> Yes.
>
> > Or
> > is it best to go down to the next level and put a try/catch in every
> > subroutine?
>
> What would you do with the exception in every function?
>
> > Or is it best to put it in every subroutine in the program.
>
> No. (IMO)
>
> --
> Armin
>
> .
>
|
|
0
|
|
|
|
Reply
|
Utf
|
1/12/2010 5:08:01 PM
|
|
|
16 Replies
213 Views
(page loaded in 1.219 seconds)
Similiar Articles: Stack Trace in VBA? - microsoft.public.access.modulesdaovba ...Error Logic Suggestions Needed - microsoft.public.dotnet.languages ... Error Logic Suggestions Needed - microsoft.public.dotnet.languages ... Exceptions will "bubble ... How to handle all unhandled exceptions when using Task Parallel ...Error Logic Suggestions Needed - microsoft.public.dotnet.languages ..... located, so a few high level > exception handlers may be all ... How to get crash dump when a ... An Unexpected Error has occurred - microsoft.public.vb.general ...Of course, a custom change they needed is on one of ... I can understand the logic behind that, and I may have ... stuck with me, to at least try it, was the suggestion ... Installing MDAC 5 for sp5 - microsoft.public.vb.general.discussion ...... ie, you'll get whatever 'upgrade' you needed with SP5 ... > > thanks i will try. any ideas as to the deployment wizard ... Installer Cleanup Utility installs with errors ... Problem with Vista: "Run-Time error '75': Path/File ...>> What's wrong with just calling it by ordinal, with error ... to figure out that something is missing in that logic. ... The slides really don't demonstrate any new ideas at all. Help with TCP Server. - microsoft.public.dotnet.framework ...... that the inheriter must provide the business logic ... No; reset the buffer to contain only the bytes needed ... > Do you have a suggestion for a better design? I'm trying ... Parsing CSV files - microsoft.public.vc.mfc... how you are reading into memory storage, if needed or ... It covers ideas that will be common ideas in a ... It might require specific addition logic to handle ... How to get crash dump when a unhandled CException is thrown by a ...... names, line numbers, function names, nature of error, etc. ... different exception type (but if that's seen as needed ... but rather with class invariants (program logic) 3 ... Need help with VBA - complicated copy and paste - microsoft.public ...... mean you don't know how to write programming logic ... Your suggestions helped so much and Joel, the code worked ... rows ... is actually what I need. I would have needed a ... Running out of disk space on C: - microsoft.public.windows.server ...Hi Leythos thanks for the suggestions, but I did both on ... in case you need it back (I would apply this logic ... ERRORLOG.n" totalling 600MB - probably not needed then. Choose ActiveDocument - microsoft.public.word.vba.general ...... document ' copy text from DocA to DocB as needed ... Selection.Delete > End If > > > My logic says ... > > Any ideas? > > Cheers > > Richard ... Read the next line in a text file - microsoft.public.excel ...You can fill this in as needed. End If ... this simple exercise will help you see how your logic ... If so, then ' you'll have to adjust the suggestion for ... Logic - Wikipedia, the free encyclopediaMany popular arguments are filled with errors because so many people are untrained in logic and unaware of ... In The Dictionary of the History of Ideas. Online Tools A web ... Re: [sqlite] "SQL logic error or missing database" with ...... Ken for your guidelines. > > Following your suggestions I ... That way you can > > acquire a lock when needed. ... errors in > different > >> runs): > >> 1, SQL logic error ... Fallacy - Wikipedia, the free encyclopediaIn informal logic and rhetoric, a fallacy is usually an error in reasoning often due to a misconception or a presumption. Some so-called fallacies are not ... Feedback and Suggestions - All About Circuits ForumForum for providing feedback and suggestions about All About Circuits, including ... book Correction Gathering place for threads pointing out errors in AAC book Visual Logic Project - 1 - Upload & Share PowerPoint presentations ...If needed, use the feedback form to let us know more details. ... mistake is often called a bug, although the term error is probably more appropriate. Visual Logic provides ... ASHP Guidelines on Preventing Medication Errors in Hospitalsof the ideas and principles may be applicable. Medication errors ... ment programs for monitoring medication errors are needed. The difficulty in detecting errors has long ... Error, Accuracy, and Precision - University of Colorado BoulderIf you have comments or suggestions, please ... and highly precision information is needed ... Errors in Topological Analysis. Logic errors may cause incorrect ... Programmable Logic Controller or PLCIt's not hard to imagine an engineer who makes a few small errors ... If changes were needed in system logic or in order of operations, program in a ... Jason Todd Davis Professional History BarclaycardUS Wilmington, DE ...Providing suggestions for the client’s internal conversion ... ensuring system and operational functions are error ... Developed datamap logic to ensure client data was not ... FallaciesThis differs from a factual error, which is simply being wrong about the facts. ... argument" in which the premises given for the conclusion do not provide the needed ... 7/28/2012 10:20:16 PM
|