+ Reply to Thread
Results 1 to 10 of 10

Error Messages

  1. #1
    Kathy
    Guest

    Error Messages

    Is there a way to "turn off" error messages from poping up?

    Thanks for any assistance you can give

    Kathy

  2. #2
    Bill Ridgeway
    Guest

    Re: Error Messages

    Two points.

    What error messages are you getting; and

    In many cases error messages are significant and, although ignoring them now
    may not seem to make any difference, it may do at some time.

    Regards.

    Bill Ridgeway
    Computer Solutions

    "Kathy" <Kathy@discussions.microsoft.com> wrote in message
    news:C6452F96-485B-411C-AA87-C6E920419C9A@microsoft.com...
    > Is there a way to "turn off" error messages from poping up?
    >
    > Thanks for any assistance you can give
    >
    > Kathy




  3. #3
    Don Guillett
    Guest

    Re: Error Messages

    what type of error messages?

    --
    Don Guillett
    SalesAid Software
    dguillett1@austin.rr.com
    "Kathy" <Kathy@discussions.microsoft.com> wrote in message
    news:C6452F96-485B-411C-AA87-C6E920419C9A@microsoft.com...
    > Is there a way to "turn off" error messages from poping up?
    >
    > Thanks for any assistance you can give
    >
    > Kathy




  4. #4
    Kathy
    Guest

    Re: Error Messages

    I created a worsheet with filters to be used by multiple users. I made a
    "reset button" which I attached a macro to that will reset the filter. So
    that my non experienced users could click on instead of having to know where
    to go to reset or add the show all button to their toolbar. When you click
    the "reset button" once it resets the filter - but if you happen to click it
    a second time - which I am sure some of my users will it creates a run time
    error 1004 - show all data method of worksheet class failed. How do I stop
    this error from happening because the choices are end - debug - or help,
    which I am sure is goign to confuse my users. Hope that explains it well
    enough. My other thought was is there a way to make my button "gray out"
    after resetting like the tool bar buttons do? Thanks for your help.

    "Don Guillett" wrote:

    > what type of error messages?
    >
    > --
    > Don Guillett
    > SalesAid Software
    > dguillett1@austin.rr.com
    > "Kathy" <Kathy@discussions.microsoft.com> wrote in message
    > news:C6452F96-485B-411C-AA87-C6E920419C9A@microsoft.com...
    > > Is there a way to "turn off" error messages from poping up?
    > >
    > > Thanks for any assistance you can give
    > >
    > > Kathy

    >
    >
    >


  5. #5
    Miguel Zapico
    Guest

    Re: Error Messages

    You can use "on error resume next" and the errors won't pop up. On the other
    hand, you may need to put in place some error control mechanism if you want
    to avoid the macro to produce strange results in case of error (this may not
    be applicable on your case)

    Hope this helps,
    Miguel.

    "Kathy" wrote:

    > I created a worsheet with filters to be used by multiple users. I made a
    > "reset button" which I attached a macro to that will reset the filter. So
    > that my non experienced users could click on instead of having to know where
    > to go to reset or add the show all button to their toolbar. When you click
    > the "reset button" once it resets the filter - but if you happen to click it
    > a second time - which I am sure some of my users will it creates a run time
    > error 1004 - show all data method of worksheet class failed. How do I stop
    > this error from happening because the choices are end - debug - or help,
    > which I am sure is goign to confuse my users. Hope that explains it well
    > enough. My other thought was is there a way to make my button "gray out"
    > after resetting like the tool bar buttons do? Thanks for your help.
    >
    > "Don Guillett" wrote:
    >
    > > what type of error messages?
    > >
    > > --
    > > Don Guillett
    > > SalesAid Software
    > > dguillett1@austin.rr.com
    > > "Kathy" <Kathy@discussions.microsoft.com> wrote in message
    > > news:C6452F96-485B-411C-AA87-C6E920419C9A@microsoft.com...
    > > > Is there a way to "turn off" error messages from poping up?
    > > >
    > > > Thanks for any assistance you can give
    > > >
    > > > Kathy

    > >
    > >
    > >


  6. #6
    Kathy
    Guest

    Re: Error Messages

    How do I use "on error resume next"?

    "Miguel Zapico" wrote:

    > You can use "on error resume next" and the errors won't pop up. On the other
    > hand, you may need to put in place some error control mechanism if you want
    > to avoid the macro to produce strange results in case of error (this may not
    > be applicable on your case)
    >
    > Hope this helps,
    > Miguel.
    >
    > "Kathy" wrote:
    >
    > > I created a worsheet with filters to be used by multiple users. I made a
    > > "reset button" which I attached a macro to that will reset the filter. So
    > > that my non experienced users could click on instead of having to know where
    > > to go to reset or add the show all button to their toolbar. When you click
    > > the "reset button" once it resets the filter - but if you happen to click it
    > > a second time - which I am sure some of my users will it creates a run time
    > > error 1004 - show all data method of worksheet class failed. How do I stop
    > > this error from happening because the choices are end - debug - or help,
    > > which I am sure is goign to confuse my users. Hope that explains it well
    > > enough. My other thought was is there a way to make my button "gray out"
    > > after resetting like the tool bar buttons do? Thanks for your help.
    > >
    > > "Don Guillett" wrote:
    > >
    > > > what type of error messages?
    > > >
    > > > --
    > > > Don Guillett
    > > > SalesAid Software
    > > > dguillett1@austin.rr.com
    > > > "Kathy" <Kathy@discussions.microsoft.com> wrote in message
    > > > news:C6452F96-485B-411C-AA87-C6E920419C9A@microsoft.com...
    > > > > Is there a way to "turn off" error messages from poping up?
    > > > >
    > > > > Thanks for any assistance you can give
    > > > >
    > > > > Kathy
    > > >
    > > >
    > > >


  7. #7
    Miguel Zapico
    Guest

    Re: Error Messages

    Just place that sentence at the beginning of your macro, after the sub line.
    For example:
    Sub Test()
    On Error Resume Next
    ...
    End Sub

    Miguel.

    "Kathy" wrote:

    > How do I use "on error resume next"?
    >
    > "Miguel Zapico" wrote:
    >
    > > You can use "on error resume next" and the errors won't pop up. On the other
    > > hand, you may need to put in place some error control mechanism if you want
    > > to avoid the macro to produce strange results in case of error (this may not
    > > be applicable on your case)
    > >
    > > Hope this helps,
    > > Miguel.
    > >
    > > "Kathy" wrote:
    > >
    > > > I created a worsheet with filters to be used by multiple users. I made a
    > > > "reset button" which I attached a macro to that will reset the filter. So
    > > > that my non experienced users could click on instead of having to know where
    > > > to go to reset or add the show all button to their toolbar. When you click
    > > > the "reset button" once it resets the filter - but if you happen to click it
    > > > a second time - which I am sure some of my users will it creates a run time
    > > > error 1004 - show all data method of worksheet class failed. How do I stop
    > > > this error from happening because the choices are end - debug - or help,
    > > > which I am sure is goign to confuse my users. Hope that explains it well
    > > > enough. My other thought was is there a way to make my button "gray out"
    > > > after resetting like the tool bar buttons do? Thanks for your help.
    > > >
    > > > "Don Guillett" wrote:
    > > >
    > > > > what type of error messages?
    > > > >
    > > > > --
    > > > > Don Guillett
    > > > > SalesAid Software
    > > > > dguillett1@austin.rr.com
    > > > > "Kathy" <Kathy@discussions.microsoft.com> wrote in message
    > > > > news:C6452F96-485B-411C-AA87-C6E920419C9A@microsoft.com...
    > > > > > Is there a way to "turn off" error messages from poping up?
    > > > > >
    > > > > > Thanks for any assistance you can give
    > > > > >
    > > > > > Kathy
    > > > >
    > > > >
    > > > >


  8. #8
    Kathy
    Guest

    Re: Error Messages

    This is what my macro says now - please help with changes needed

    Sub Reset_Filter()
    Reset_Filter Macro
    Macro recorded 5/16/2006 by markwitk



    ActiveSheet.ShowAllData
    End Sub


    "Miguel Zapico" wrote:

    > Just place that sentence at the beginning of your macro, after the sub line.
    > For example:
    > Sub Test()
    > On Error Resume Next
    > ...
    > End Sub
    >
    > Miguel.
    >
    > "Kathy" wrote:
    >
    > > How do I use "on error resume next"?
    > >
    > > "Miguel Zapico" wrote:
    > >
    > > > You can use "on error resume next" and the errors won't pop up. On the other
    > > > hand, you may need to put in place some error control mechanism if you want
    > > > to avoid the macro to produce strange results in case of error (this may not
    > > > be applicable on your case)
    > > >
    > > > Hope this helps,
    > > > Miguel.
    > > >
    > > > "Kathy" wrote:
    > > >
    > > > > I created a worsheet with filters to be used by multiple users. I made a
    > > > > "reset button" which I attached a macro to that will reset the filter. So
    > > > > that my non experienced users could click on instead of having to know where
    > > > > to go to reset or add the show all button to their toolbar. When you click
    > > > > the "reset button" once it resets the filter - but if you happen to click it
    > > > > a second time - which I am sure some of my users will it creates a run time
    > > > > error 1004 - show all data method of worksheet class failed. How do I stop
    > > > > this error from happening because the choices are end - debug - or help,
    > > > > which I am sure is goign to confuse my users. Hope that explains it well
    > > > > enough. My other thought was is there a way to make my button "gray out"
    > > > > after resetting like the tool bar buttons do? Thanks for your help.
    > > > >
    > > > > "Don Guillett" wrote:
    > > > >
    > > > > > what type of error messages?
    > > > > >
    > > > > > --
    > > > > > Don Guillett
    > > > > > SalesAid Software
    > > > > > dguillett1@austin.rr.com
    > > > > > "Kathy" <Kathy@discussions.microsoft.com> wrote in message
    > > > > > news:C6452F96-485B-411C-AA87-C6E920419C9A@microsoft.com...
    > > > > > > Is there a way to "turn off" error messages from poping up?
    > > > > > >
    > > > > > > Thanks for any assistance you can give
    > > > > > >
    > > > > > > Kathy
    > > > > >
    > > > > >
    > > > > >


  9. #9
    Miguel Zapico
    Guest

    Re: Error Messages

    You can make it this way:

    Sub Reset_Filter()
    On Error Resume Next
    ActiveSheet.ShowAllData
    End Sub

    Miguel.

    "Kathy" wrote:

    > This is what my macro says now - please help with changes needed
    >
    > Sub Reset_Filter()
    > Reset_Filter Macro
    > Macro recorded 5/16/2006 by markwitk
    >
    >
    >
    > ActiveSheet.ShowAllData
    > End Sub
    >
    >
    > "Miguel Zapico" wrote:
    >
    > > Just place that sentence at the beginning of your macro, after the sub line.
    > > For example:
    > > Sub Test()
    > > On Error Resume Next
    > > ...
    > > End Sub
    > >
    > > Miguel.
    > >
    > > "Kathy" wrote:
    > >
    > > > How do I use "on error resume next"?
    > > >
    > > > "Miguel Zapico" wrote:
    > > >
    > > > > You can use "on error resume next" and the errors won't pop up. On the other
    > > > > hand, you may need to put in place some error control mechanism if you want
    > > > > to avoid the macro to produce strange results in case of error (this may not
    > > > > be applicable on your case)
    > > > >
    > > > > Hope this helps,
    > > > > Miguel.
    > > > >
    > > > > "Kathy" wrote:
    > > > >
    > > > > > I created a worsheet with filters to be used by multiple users. I made a
    > > > > > "reset button" which I attached a macro to that will reset the filter. So
    > > > > > that my non experienced users could click on instead of having to know where
    > > > > > to go to reset or add the show all button to their toolbar. When you click
    > > > > > the "reset button" once it resets the filter - but if you happen to click it
    > > > > > a second time - which I am sure some of my users will it creates a run time
    > > > > > error 1004 - show all data method of worksheet class failed. How do I stop
    > > > > > this error from happening because the choices are end - debug - or help,
    > > > > > which I am sure is goign to confuse my users. Hope that explains it well
    > > > > > enough. My other thought was is there a way to make my button "gray out"
    > > > > > after resetting like the tool bar buttons do? Thanks for your help.
    > > > > >
    > > > > > "Don Guillett" wrote:
    > > > > >
    > > > > > > what type of error messages?
    > > > > > >
    > > > > > > --
    > > > > > > Don Guillett
    > > > > > > SalesAid Software
    > > > > > > dguillett1@austin.rr.com
    > > > > > > "Kathy" <Kathy@discussions.microsoft.com> wrote in message
    > > > > > > news:C6452F96-485B-411C-AA87-C6E920419C9A@microsoft.com...
    > > > > > > > Is there a way to "turn off" error messages from poping up?
    > > > > > > >
    > > > > > > > Thanks for any assistance you can give
    > > > > > > >
    > > > > > > > Kathy
    > > > > > >
    > > > > > >
    > > > > > >


  10. #10
    Kathy
    Guest

    Re: Error Messages

    You are AWESOME - this worked - Thank you so much!!!

    Kathy

    "Miguel Zapico" wrote:

    > You can make it this way:
    >
    > Sub Reset_Filter()
    > On Error Resume Next
    > ActiveSheet.ShowAllData
    > End Sub
    >
    > Miguel.
    >
    > "Kathy" wrote:
    >
    > > This is what my macro says now - please help with changes needed
    > >
    > > Sub Reset_Filter()
    > > Reset_Filter Macro
    > > Macro recorded 5/16/2006 by markwitk
    > >
    > >
    > >
    > > ActiveSheet.ShowAllData
    > > End Sub
    > >
    > >
    > > "Miguel Zapico" wrote:
    > >
    > > > Just place that sentence at the beginning of your macro, after the sub line.
    > > > For example:
    > > > Sub Test()
    > > > On Error Resume Next
    > > > ...
    > > > End Sub
    > > >
    > > > Miguel.
    > > >
    > > > "Kathy" wrote:
    > > >
    > > > > How do I use "on error resume next"?
    > > > >
    > > > > "Miguel Zapico" wrote:
    > > > >
    > > > > > You can use "on error resume next" and the errors won't pop up. On the other
    > > > > > hand, you may need to put in place some error control mechanism if you want
    > > > > > to avoid the macro to produce strange results in case of error (this may not
    > > > > > be applicable on your case)
    > > > > >
    > > > > > Hope this helps,
    > > > > > Miguel.
    > > > > >
    > > > > > "Kathy" wrote:
    > > > > >
    > > > > > > I created a worsheet with filters to be used by multiple users. I made a
    > > > > > > "reset button" which I attached a macro to that will reset the filter. So
    > > > > > > that my non experienced users could click on instead of having to know where
    > > > > > > to go to reset or add the show all button to their toolbar. When you click
    > > > > > > the "reset button" once it resets the filter - but if you happen to click it
    > > > > > > a second time - which I am sure some of my users will it creates a run time
    > > > > > > error 1004 - show all data method of worksheet class failed. How do I stop
    > > > > > > this error from happening because the choices are end - debug - or help,
    > > > > > > which I am sure is goign to confuse my users. Hope that explains it well
    > > > > > > enough. My other thought was is there a way to make my button "gray out"
    > > > > > > after resetting like the tool bar buttons do? Thanks for your help.
    > > > > > >
    > > > > > > "Don Guillett" wrote:
    > > > > > >
    > > > > > > > what type of error messages?
    > > > > > > >
    > > > > > > > --
    > > > > > > > Don Guillett
    > > > > > > > SalesAid Software
    > > > > > > > dguillett1@austin.rr.com
    > > > > > > > "Kathy" <Kathy@discussions.microsoft.com> wrote in message
    > > > > > > > news:C6452F96-485B-411C-AA87-C6E920419C9A@microsoft.com...
    > > > > > > > > Is there a way to "turn off" error messages from poping up?
    > > > > > > > >
    > > > > > > > > Thanks for any assistance you can give
    > > > > > > > >
    > > > > > > > > Kathy
    > > > > > > >
    > > > > > > >
    > > > > > > >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1