Search Results

Showing results 1 to 22 of 22
Search took 0.01 seconds.
Search: Posts Made By: poguemahone ; Forum: VB.NET and child forums
Forum: VB.NET Dec 28th, 2008
Replies: 2
Views: 374
Posted By poguemahone
Forum: VB.NET Dec 28th, 2008
Replies: 2
Views: 374
Posted By poguemahone
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
Posted By poguemahone
Do you still need help with this?
Forum: VB.NET Dec 27th, 2008
Replies: 1
Views: 652
Posted By poguemahone
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
Posted By poguemahone
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
Posted By poguemahone
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
Posted By poguemahone
Have plane......will fly....
Forum: VB.NET Dec 27th, 2008
Replies: 4
Views: 725
Posted By poguemahone
If so check this out....

http://www.daniweb.com/forums/thread33912.html
Forum: VB.NET Dec 27th, 2008
Replies: 4
Views: 725
Posted By poguemahone
Do you mean XP-Visual Styles?
Forum: VB.NET May 4th, 2008
Replies: 4
Views: 1,705
Posted By poguemahone
In the Select Case, change str1stCharacter to str1stCharacter.ToUpper.

Select Case str1stCharacter.ToUpper()
Forum: VB.NET May 4th, 2008
Replies: 4
Views: 1,705
Posted By poguemahone
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
Posted By poguemahone
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
Posted By poguemahone
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
Posted By poguemahone
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
Posted By poguemahone
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
Posted By poguemahone
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
Posted By poguemahone
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
Posted By poguemahone
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
Posted By poguemahone
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
Posted By poguemahone
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
Posted By poguemahone
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
Posted By poguemahone
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...
Showing results 1 to 22 of 22

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC