Posts by blue

    Re: Splash Screen Errors


    Thanks so much Roy. I have something else I have to attend to this morning but will get it incorportated back into my project later today (I hope). Thanks so very much for your help!

    Re: Splash Screen Errors


    I agree that there are probably more important things to tackle than a Splash Screen but I have designed and slaved over our company sales and engineering workbook for about 7 years. It does a superlative job and it has been a struggle since I am an Engineer, not a Programmer. That said, my boss wants it to have a very polished look, hence the time spent on the Splash Screen.


    I have attached the screen and code.


    Thank you for your help!

    Re: Device I/O Error


    Actually I had pulled a bas module into my spreadsheet when it wasn't required to produce the splash screen. Once I removed that module, the "Device I/O" error went away.


    Thanks...

    Re: Splash Screen Errors


    That is the code (your reference, Dave) I used to use and, although it worked, wasn't as professional looking as I would have liked. I found an example that has the splash screen fade in and out (per the above code). I just can't get it to remove itself no matter how many "Unload Me"'s I put in there.


    That's the help I was requesting.

    Well, here I am again. One problem resolved but others keep cropping up. I am trying to display a splash screen which fades in and then fades out and closes itself leaving the ap showing. I have utilized code that I found wih permission to use but I'm still doing something wrong.


    Could someone please give me a hand!


    Thanks much!

    I just recently cut and pasted the code found at http://www.xcelfiles.com/Tips01.html for presenting a splash screen. I don't think that there should have been any reason for the code to suddently create the I/O Error. The splash screen works well, then reproduces itself and if I click any sheet in my spreadsheet I get "Device I/O Error". I looked back at other reports of this error but they didn't seem to help. So perhaps someone else has had this problem. I appreciate any help I can get. If necessary, I will certainly post the code.


    I can't step through the code either - I just get the same error.


    Thanks so much in advance!

    Re: hiding the "X" or close button on user form


    Thanks so much for your response. Yes, I agree that the code needs to be modified so that there is no error with a normal close using the "X" however this is a huge workbook with a lot of code. I have no idea how to start looking for the problem. I know just enough to make me truly dangerous! LOL


    Thanks much!

    Re: hiding the "X" or close button on user form


    Hi all,


    I need to "grey" out the exit button on a workbook that is shared with others. Using the "X" button at the top right hand corner results in errors. Exiting via a command button that I have added to the toolbars lets the Excel environment be reinstated and exits this workbook gracefully.


    I have added the Sub Userform_QueryClose and it does not seem to be doing the job. In testing, I was still able to close the workbook via the "X" at the top. What might I be overlooking?


    Thanks much!

    Re: Intersect Method with Worksheet_Change


    Ok, all is working with the exception of range 6 which hangs up just before the paste special and I have checked it and checked it again and again and can't find anything different from the preceeding code. Here it is in it's new entirety thanks to you guys. Now just the final error and I will leave you all alone for a while with great appreciation!

    Re: Intersect Method with Worksheet_Change


    Ok, figured out one thing that was wrong. Somewhere along the line

    Code
    application.enableevents = true

    did not happen. When I manually added that, at least something happened. The row I wanted cleared was cleared but the subsequent rows did not move up one row so now I have the worksheet with a blank row in the middle of the range.

    Re: Intersect Method with Worksheet_Change


    I commented out all my code, cut and pasted yours in and nothing is happening. I don't get any errors but nothing happens on my worksheet either.


    Thanks so much for your help!

    Re: Intersect Method with Worksheet_Change


    Exactly! So I wonder what's up with that? Did you have the


    Code
    If Target.Count>1 Then Exit Sub

    included when you ran it? I guess that doesn't make any difference since I just commented that out and now it doesn't run at all.


    I just have no idea what is going on right now. I have the following:


    And nothing is happening. I cut and pasted your code and made no changes except for the typo. I'm confused (to say the least).


    Thanks,

    Re: Intersect Method with Worksheet_Change


    Gee, Norie, you think I could have spotted that for myself! Duh! Anyway, by adding the

    Code
    If Target.Count>1 Then Exit Sub


    the macro exits even though I am adding an "x" in only one of the intersect cells so it must be looping somewhere even with the

    Code
    Application.EnableEvents = False

    statement.


    Thanks so much for your help!