Forum: VB.NET Dec 28th, 2008 |
| Replies: 2 Views: 374 |
Forum: VB.NET Dec 28th, 2008 |
| Replies: 2 Views: 374 Step #1. Go to local job service.
Step #2 Apply for a non-programming job.
Step #3 Get non-programming jojb.
Problem solved. |
Forum: VB.NET Dec 27th, 2008 |
| Replies: 1 Views: 357 Do you still need help with this? |
Forum: VB.NET Dec 27th, 2008 |
| Replies: 1 Views: 652 Step #1. Go to local job service.
Step #2 Apply for any job that does not involve programming.
Problem solved. |
Forum: VB.NET Dec 27th, 2008 |
| Replies: 4 Views: 557 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... |
Forum: VB.NET Dec 27th, 2008 |
| Replies: 1 Views: 785 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... |
Forum: VB.NET Dec 27th, 2008 |
| Replies: 1 Views: 508 Have plane......will fly.... |
Forum: VB.NET Dec 27th, 2008 |
| Replies: 4 Views: 725 If so check this out....
http://www.daniweb.com/forums/thread33912.html |
Forum: VB.NET Dec 27th, 2008 |
| Replies: 4 Views: 725 Do you mean XP-Visual Styles? |
Forum: VB.NET May 4th, 2008 |
| Replies: 4 Views: 1,705 In the Select Case, change str1stCharacter to str1stCharacter.ToUpper.
Select Case str1stCharacter.ToUpper() |
Forum: VB.NET May 4th, 2008 |
| Replies: 4 Views: 1,705 Try this:
<code>
Dim strInput As String = ""
Dim str1stCharacter As String = ""
Dim strOutput As String = ""
Dim intStringLength As Integer = 0
strInput... |
Forum: VB.NET Feb 22nd, 2008 |
| Replies: 3 Views: 2,275 Sorry, my first one was incomplete.
Try using the RichTextBox_SelectionChanged Event.
Inside of the event handler test the SelectionLength property of the RichTextBox like this:
If... |
Forum: VB.NET Feb 22nd, 2008 |
| Replies: 3 Views: 2,275 Try using the RichTextBox_SelectionChanged Event.
Inside of the event handler test the SelectionLength property of the RichTextBox like this:
[code]
If RichTextBox.SelectionLength > 0 Then
... |
Forum: VB.NET Feb 9th, 2008 |
| Replies: 4 Views: 1,220 Try:
SELECT COUNT(*) FROM Producao WHERE ProdUserID=UtilizadorID.
This will give the number of rows that meet this criteria. |
Forum: VB.NET Feb 1st, 2008 |
| Replies: 4 Views: 5,756 Try these:
RichTextBox.SelectionFont = New Font("Tahoma", 12, FontStyle.Underline)
RichTextBox.SelectionFont = New Font("Tahoma", 12, FontStyle.Bold)
RichTextBox.SelectionFont = New... |
Forum: VB.NET Jan 28th, 2008 |
| Replies: 12 Views: 10,465 The Delegate Sub can be put anywhere within the Class declaration, but not within another Sub or Function.
The name of the EventHandler Function should replace ThisFunction. In other words,
the... |
Forum: VB.NET Jan 27th, 2008 |
| Replies: 12 Views: 10,465 Ok,
What you want to do is create a Delegate Sub like this:
Delegate Sub LengthyProcessCallback()
In the beginning of the code for the event handler function add this:
'Test to see if the... |
Forum: VB.NET Jan 27th, 2008 |
| Replies: 12 Views: 10,465 Apparently, I have given you bad advice. The solution I presented appears to no longer be supported. The following is a comprehensive view of updating a UI from another thread and also using the... |
Forum: VB.NET Jan 27th, 2008 |
| Replies: 12 Views: 10,465 That means that the thread that you started for the "lengthy process" is the thread that is trying to update the UI. Could you post the code from the button_click event? |
Forum: VB.NET Jan 24th, 2008 |
| Replies: 12 Views: 10,465 In the code of your UI try using
AddHandler objFileIOClass.Event, AddressOf UIClass.Function
where FileIOClass.Event is the Event Raised from the FileIOClass and UIClass.Function is the Address of... |
Forum: VB.NET Jan 24th, 2008 |
| Replies: 1 Views: 1,491 Try the SerialPort Class.
.NET 2.0, 3.0, 3.5
Namespace: System.IO.Ports
Assembly: System (in system.dll) |
Forum: VB.NET Jan 24th, 2008 |
| Replies: 12 Views: 10,465 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... |