Click here to Skip to main content
15,908,674 members
Home / Discussions / C#
   

C#

 
AnswerRe: System call in .NET Pin
Wizard_0131-Jan-07 6:10
Wizard_0131-Jan-07 6:10 
GeneralRe: System call in .NET Pin
BehemotCat31-Jan-07 7:36
BehemotCat31-Jan-07 7:36 
GeneralRe: System call in .NET Pin
Dan Neely31-Jan-07 8:23
Dan Neely31-Jan-07 8:23 
GeneralRe: System call in .NET Pin
Luc Pattyn31-Jan-07 8:23
sitebuilderLuc Pattyn31-Jan-07 8:23 
GeneralRe: System call in .NET Pin
BehemotCat31-Jan-07 9:30
BehemotCat31-Jan-07 9:30 
QuestionUser Control and Window form Pin
biswabhusan31-Jan-07 4:33
biswabhusan31-Jan-07 4:33 
AnswerRe: User Control and Window form Pin
V.31-Jan-07 4:44
professionalV.31-Jan-07 4:44 
AnswerRe: User Control and Window form Pin
xstoneheartx31-Jan-07 5:45
xstoneheartx31-Jan-07 5:45 
I think the simplest way is:
1- add a usercontrol to your project
2- add a button, named in Button1 to your usercontrol, set Button1 "Modifiers" property to Public.
3- build your project.
4- after adding your user control, named in UserControl1 to your form, add this lines of code:
-------------------
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
AddHandler UserControl1.Button1.Click, AddressOf Button_Click
End Sub
Private Sub Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
'do your task here
End Sub
-------------------
5- what you wanted is done
JokeRe: User Control and Window form Pin
Luc Pattyn31-Jan-07 8:25
sitebuilderLuc Pattyn31-Jan-07 8:25 
GeneralRe: User Control and Window form Pin
xstoneheartx31-Jan-07 23:36
xstoneheartx31-Jan-07 23:36 
GeneralRe: User Control and Window form Pin
Luc Pattyn1-Feb-07 1:15
sitebuilderLuc Pattyn1-Feb-07 1:15 
AnswerRe: User Control and Window form Pin
Martin#31-Jan-07 11:25
Martin#31-Jan-07 11:25 
QuestionJavaDoc / doxygen equivalent Pin
Russell Jones31-Jan-07 3:35
Russell Jones31-Jan-07 3:35 
AnswerRe: JavaDoc / doxygen equivalent Pin
Kevin McFarlane31-Jan-07 3:43
Kevin McFarlane31-Jan-07 3:43 
GeneralRe: JavaDoc / doxygen equivalent Pin
Russell Jones31-Jan-07 4:02
Russell Jones31-Jan-07 4:02 
AnswerRe: JavaDoc / doxygen equivalent Pin
Stefan Troschuetz31-Jan-07 3:44
Stefan Troschuetz31-Jan-07 3:44 
GeneralRe: JavaDoc / doxygen equivalent Pin
Russell Jones31-Jan-07 4:04
Russell Jones31-Jan-07 4:04 
QuestionUsing a C#/.NET-Application over network [SOLVED] Pin
w0schd31-Jan-07 3:08
w0schd31-Jan-07 3:08 
AnswerRe: Using a C#/.NET-Application over network Pin
led mike31-Jan-07 5:59
led mike31-Jan-07 5:59 
GeneralRe: Using a C#/.NET-Application over network Pin
w0schd1-Feb-07 5:01
w0schd1-Feb-07 5:01 
GeneralRe: Using a C#/.NET-Application over network Pin
led mike1-Feb-07 7:59
led mike1-Feb-07 7:59 
GeneralRe: Using a C#/.NET-Application over network Pin
w0schd1-Feb-07 21:26
w0schd1-Feb-07 21:26 
GeneralRe: Using a C#/.NET-Application over network Pin
led mike2-Feb-07 4:46
led mike2-Feb-07 4:46 
GeneralRe: Using a C#/.NET-Application over network Pin
w0schd6-Feb-07 0:36
w0schd6-Feb-07 0:36 
GeneralRe: Using a C#/.NET-Application over network [SOLVED] Pin
w0schd6-Feb-07 6:15
w0schd6-Feb-07 6:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.