Splash Pic and Simple Dialog Box?

Discussion in 'AutoCAD' started by jade, Jan 12, 2004.

  1. jade

    jade Guest

    Gulp....I am new to this customizing stuff....I hope this isn't a too much
    of a dumb question, here goes?

    What I would like to do when I open up a drawing is; it will display a
    Splash Picture of our company logo then proceed with a dialog box that has a
    custom message on the form.

    Any helpful suggestions?

    Thanks

    J
     
    jade, Jan 12, 2004
    #1
  2. jade

    HJohn Guest

    Yes, you can do that by simply creating a form (Splash) with the logo picture you want and then using the event "Private Sub AcadDocument_BeginCommand(ByVal CommandName As String)"
    if commandName="OPEN" or commandName="NEW" then
    Splash.Show
    You could add a call to the Sleep (Windows API) function to close the form after a few milliseconds
    end if
    end sub

    Hope it helps!
     
    HJohn, Jan 13, 2004
    #2
  3. jade

    jade Guest

    Thanks for the reply....that worked....

    j


    picture you want and then using the event "Private Sub
    AcadDocument_BeginCommand(ByVal CommandName As String)"
     
    jade, Jan 13, 2004
    #3
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.