Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
2
0 Endorsements
Ranked #31.8K
~7K People Reached
Favorite Forums
Favorite Tags

6 Posted Topics

Member Avatar for VasquezPL
Member Avatar for pantoeflou

try this code like this for creating a control with event handlers in vb.net: [CODE]Dim btn As New Button Private Sub btnCreate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCreate.Click btn.Size = New Size(150, 50) btn.Location = New Point(119, 30) GroupBox1.Controls.Add(btn) btn.Text = "Click me" AddHandler btn.Click, AddressOf ShowWelcomeMessage …

Member Avatar for hscoder
0
1K
Member Avatar for sonia sardana

you can use RemoveHandler statement for doing this check this code: [url]http://www.authorcode.com/add-and-remove-action-handler-dynamically/[/url]

Member Avatar for hscoder
0
219
Member Avatar for ddanbe

For this problem you can disable visual styles for your application through properties of your application. read this article about how to change appearance of month calendar and how to disable Visual style of application: [URL="http://www.authorcode.com/how-to-change-the-appearance-of-monthcalendar-control/"]How to disable Visual Style of application [/URL]

Member Avatar for hscoder
0
516
Member Avatar for priyad2

Down load full source code for making EMI calculator in c# [URL="http://www.authorcode.com/how-to-make-emi-calculator-using-c/"]http://www.authorcode.com/how-to-make-emi-calculator-using-c/[/URL]

Member Avatar for Zvjezdan23
3
4K
Member Avatar for complete

following example show how to pass array as arguement...seee this [code] private void ShowMessagebox(string[] arr) { string messageStr = ""; for (int i = 0; i < arr.Length; i++) { messageStr += arr[i] + " "; } MessageBox.Show(messageStr); } [/code] for more information visit AuthorCode: [URL="http://www.authorcode.com/how-to-pass-arrays-as-arguments-in-c/"]http://www.authorcode.com/how-to-pass-arrays-as-arguments-in-c/[/URL]

Member Avatar for hscoder
0
175

The End.