- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 2
6 Posted Topics
Re: hi try myAppointment.RTFBody instead of myAppointment.Body thanks | |
Re: 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 … | |
Re: you can use RemoveHandler statement for doing this check this code: [url]http://www.authorcode.com/add-and-remove-action-handler-dynamically/[/url] | |
Re: 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] | |
Re: 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] | |
Re: 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] |
The End.