Results 1 to 6 of 6

Thread: How do I launch other VB apps from my existing VB app?

  1. #1
    DarthCooper
    Guest

    Question How do I launch other VB apps from my existing VB app?

    I hope its not too difficult. I bet it is

    LMK, thanks!
    Darth

  2. #2
    Registered User Nucleus's Avatar
    Join Date
    Apr 2001
    Location
    So that's what you are up to ;)
    Posts
    2,530
    No it is easy.

    Code:
    Shell apppath, vbNormalFocus

  3. #3
    DarthCooper
    Guest
    Whey!! Nice going Nucleus, it works a treat
    Itys good hear isn't it?

    Darth

  4. #4
    Registered User Nucleus's Avatar
    Join Date
    Apr 2001
    Location
    So that's what you are up to ;)
    Posts
    2,530
    It is a very cool forum that is for sure. I haven't heard of any other sites like it.

  5. #5
    DarthCooper
    Guest
    There probably aren't any as good as this
    Hey While I am here, you know about menus? Well, I want to user to be able to choose wheher they want the music playing or not. When they click the item in the menu it will show a tick next to it if its playing and no tick if its not. Well I got it to tick by putting

    Private Sub mnuMusic_Click()
    mnuMusic.Checked = True
    End Sub

    but when they click it again, of coure it doesn't uncheck it. Is there an easy way of doing this? Or is it a case of fumbling around to get it working? Ta!

    Darth

  6. #6
    DarthCooper
    Guest
    Oh, this sdeemed to have worked

    If mnuMusic.Checked = True Then
    mnuMusic.Checked = False
    MMControl1.Enabled = False
    Else
    mnuMusic.Checked = True
    MMControl1.Enabled = True
    End If

    Thanks, if there is an easier way then LMK :P

    Darth

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