|
-
May 17th, 2000, 03:57 AM
#1
Thread Starter
Addicted Member
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!
-
May 17th, 2000, 04:13 AM
#2
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.
-
May 17th, 2000, 04:14 AM
#3
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|