Forum: VB.NET Dec 28th, 2008 |
| Replies: 2 Views: 367 |
Forum: VB.NET Dec 28th, 2008 |
| Replies: 2 Views: 367 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: 350 Do you still need help with this? |
Forum: VB.NET Dec 27th, 2008 |
| Replies: 1 Views: 613 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: 546 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: 764 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: 478 Have plane......will fly.... |
Forum: VB.NET Dec 27th, 2008 |
| Replies: 4 Views: 703 If so check this out....
http://www.daniweb.com/forums/thread33912.html |
Forum: VB.NET Dec 27th, 2008 |
| Replies: 4 Views: 703 Do you mean XP-Visual Styles? |
Forum: ASP.NET Dec 27th, 2008 |
| Replies: 2 Views: 456 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... |
Forum: ASP.NET Dec 27th, 2008 |
| Replies: 3 Views: 506 Check this out. If it does not help, let the forum know.
http://msdn.microsoft.com/en-us/library/ms178139.aspx |
Forum: ASP.NET Dec 27th, 2008 |
| Replies: 3 Views: 4,237 I would like to know what your program is considering you have no idea what the .NET Framework is. |
Forum: VB.NET May 4th, 2008 |
| Replies: 4 Views: 1,528 In the Select Case, change str1stCharacter to str1stCharacter.ToUpper.
Select Case str1stCharacter.ToUpper() |
Forum: VB.NET May 4th, 2008 |
| Replies: 4 Views: 1,528 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,200 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,200 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,190 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,523 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,150 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,150 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,150 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,150 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,150 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,444 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,150 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... |