Results 1 to 3 of 3

Thread: PLEASE HELP! I REALLY NEED THIS!

  1. #1

    Thread Starter
    Addicted Member danielkw's Avatar
    Join Date
    Mar 2000
    Location
    Sweden
    Posts
    134

    Lightbulb

    Hello there proggers!

    I have two questions for you all!
    1. Is there anyone who knows how to implement some kind of DDE functions in my program. The purpose is that I want to create some plugins to my program and I need to determine when the mainprogram raises an event. Like cathing the windows messages...

    2. I want to add a menuitem to the menu that appears when you rightclick on a folder in Explorer. I know how to add a menuitem how to shell a prog when you click it. But I wonder if there is an ability to create sub menus to that menu like the ICQ menu (Send to user > All users online).

    Thanx!


  2. #2
    Guest
    this is for a picturebox

    Code:
    Private Sub Picture1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
    If Button = 2 Then
    Form1.PopupMenu mnuFile
    End If
    End Sub
    make a menu called mnuFile
    make everything visible but the main thing.(the thing that says file.)
    you cant see anything, until you right click on the picture box.

  3. #3
    Guest

    Oops!

    oops, I misunderstood your question... sorry...

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