- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 5
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
16 Posted Topics
Re: Try these: RichTextBox.SelectionFont = New Font("Tahoma", 12, FontStyle.Underline) RichTextBox.SelectionFont = New Font("Tahoma", 12, FontStyle.Bold) RichTextBox.SelectionFont = New Font("Tahoma", 12, FontStyle.Italic) Then add the text to the RichTextBox Control. | |
Re: I would like to know what your program is considering you have no idea what the .NET Framework is. | |
Re: Your posting couldn't be more vague. I am guessing that English is your second language. No problem, just ask someone who is fluent (In English) to write down your question for you and then post it here. | |
Re: Check this out. If it does not help, let the forum know. [url]http://msdn.microsoft.com/en-us/library/ms178139.aspx[/url] | |
Re: Do you mean XP-Visual Styles? | |
Re: Step #1. Go to local job service. Step #2 Apply for a non-programming job. Step #3 Get non-programming jojb. Problem solved. | |
Re: Do you still need help with this? | |
Re: Step #1. Go to local job service. Step #2 Apply for any job that does not involve programming. Problem solved. | |
Re: You could start off by using the System.IO namespace of the .NET Framework. What is the purpose of storing all that info in textbox? You could store some sort of a unique identifier as the value of the textbox and then when a user selects something from the textbox, showw … | |
Re: You cannot possibly learn all you need to know from some examples. Go to classes, or some other schooling. The fact that people don't take programming seriously is why we have so much bloat and crapware out there. Please, for the good of mankind, educate yourself with something other than … | |
Re: Try: SELECT COUNT(*) FROM Producao WHERE ProdUserID=UtilizadorID. This will give the number of rows that meet this criteria. | |
Re: Try this: <code> Dim strInput As String = "" Dim str1stCharacter As String = "" Dim strOutput As String = "" Dim intStringLength As Integer = 0 strInput = Me.xEnterText.Text str1stCharacter = Microsoft.VisualBasic.Left(strInput, 1) Select Case str1stCharacter Case "A", "E", "I", "O", "U", "Y", "0", "1", "2", "3", "4", "5", … | |
Re: Try using the RichTextBox_SelectionChanged Event. Inside of the event handler test the SelectionLength property of the RichTextBox like this: If RichTextBox.SelectionLength > 0 Then MenuStripItems.Visible else End If | |
Re: You could start the file IO in a separate class from the UI and use Thread.Start(). In your file IO class, you can raise an event after each operation (or whatever interval you choose) and have it call back to the UI to perform updates. | |
Re: Try the SerialPort Class. .NET 2.0, 3.0, 3.5 Namespace: System.IO.Ports Assembly: System (in system.dll) |
The End.