CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2007
    Posts
    1

    Question problem with splash screen

    hi,

    When i run my project there is a splash screen which comes and fades automatically. When i run it in my department it works fine. But when i try to run it on the other department there is the following error and i cant understand what needs to be done. my understanding is this is a macro and the error u can see in the attachement.
    Attached Images Attached Images

  2. #2
    Join Date
    Mar 2005
    Posts
    226

    Re: problem with splash screen

    Quote Originally Posted by sunilvedula
    hi,

    When i run my project there is a splash screen which comes and fades automatically. When i run it in my department it works fine. But when i try to run it on the other department there is the following error and i cant understand what needs to be done. my understanding is this is a macro and the error u can see in the attachement.
    You need to given more information. What application are you running? What is the actual startup code? What do you mean by "department"?

  3. #3
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: problem with splash screen

    I think AutoExec is Excel, so you probably are using different versions of Excel. That's why it works in one place, and not the other.

    Look up "Late-Binding", which allows your app to run as long as it finds ANY instance of a program, rather than a program version specific, which is required for "Early-Binding"

    Post the code you are using to call Excel.
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured