Forum: VB.NET Aug 1st, 2008 |
| Replies: 10 Views: 2,309 Hi,
Just use it
System.Diagonistics.Process.Start("c:\first.html?var1=value&var2=value")
Hope it helps. |
Forum: VB.NET Jul 25th, 2008 |
| Replies: 6 Views: 1,419 Hi,
Take a look on this library DotNetZip (http://www.codeplex.com/DotNetZip).
Hope it helps. |
Forum: VB.NET Jul 24th, 2008 |
| Replies: 10 Views: 2,309 Hi,
Is your problem solved? |
Forum: VB.NET Jul 24th, 2008 |
| Replies: 7 Views: 626 Hi,
Then, mark this thread solved. |
Forum: VB.NET Jul 24th, 2008 |
| Replies: 6 Views: 4,723 Hi,
Is your problem solved? |
Forum: VB.NET Jul 24th, 2008 |
| Replies: 7 Views: 567 Hi,
Is your problem solved? |
Forum: VB.NET Jul 24th, 2008 |
| Replies: 7 Views: 626 Hi,
Is your problem solved? |
Forum: VB.NET Jul 22nd, 2008 |
| Replies: 3 Views: 701 Hi,
Then, please, mark this post as solved. |
Forum: VB.NET Jul 22nd, 2008 |
| Replies: 3 Views: 1,942 Hi,
Try this
Dim folderInfo As New IO.DirectoryInfo("c:\windows")
Dim arrFilesInFolder() As IO.FileInfo
Dim fileInFolder As IO.FileInfo
arrFilesInFolder =... |
Forum: VB.NET Jul 22nd, 2008 |
| Replies: 7 Views: 626 Well...
That is what I've answered...
Your code have *at least* one nested "If". Actually, yours has four "If" statements.
If you need the pseudo-code, you can write:
X = 0
WHILE X <= 45
... |
Forum: VB.NET Jul 22nd, 2008 |
| Replies: 7 Views: 626 Hi,
Your code is doing well.
Just in case, I have added the while loop in yours:
Dim x As Integer
Do While x <= 45
If x >= 20 Then
If x <= 25 Then... |
Forum: VB.NET Jul 21st, 2008 |
| Replies: 12 Views: 1,298 Sandeep,
Let me ask you a question:
For what, we as programmers, write code?
For the computer to process it?
To minimize the clock cycles of the processor?
To make the users of our... |
Forum: VB.NET Jul 21st, 2008 |
| Replies: 7 Views: 567 Well, I see syntax errors in your code.
When you compare the text in the ComboBox you must put "Trinidad and Tobago" enclosed with "
MessageBox.Show ("Please ensure that countries are... |
Forum: VB.NET Jul 21st, 2008 |
| Replies: 12 Views: 1,298 Thanks Bill,
Good luck. It won`t be easy. ;)
Maybe this helps you http://www.coryborrow.com/2008/07/05/notificationbar-free-net-control/ |
Forum: VB.NET Jul 21st, 2008 |
| Replies: 12 Views: 1,298 One more thing about modal message box.
Joel Spolsky in the chapter 1 of his book "User Interface Design for Programmers (http://www.joelonsoftware.com/uibook/chapters/fog0000000057.html)" says:
... |
Forum: VB.NET Jul 21st, 2008 |
| Replies: 7 Views: 567 Hi,
Can you show us the code? |
Forum: VB.NET Jul 21st, 2008 |
| Replies: 12 Views: 1,298 A modal message box is one that need to be closed before continue working in the application. That means that you can`t access any menus, button, or any other control in the application until you... |
Forum: VB.NET Jul 21st, 2008 |
| Replies: 6 Views: 4,723 Hi,
I see you have the contents of the text file in the array arrlines.
Then, guess that you have the value you want to delete in the valueToDel variable:
...
Dim c As... |
Forum: VB.NET Jul 20th, 2008 |
| Replies: 8 Views: 1,635 |
Forum: VB.NET Jul 20th, 2008 |
| Replies: 10 Views: 2,309 Hi,
I will show you how to do this using PHP. I dont know if it works using HTML files (maybe using JavaScript to catch the values?)
Dim sUrl As String = ""
sUrl =... |
Forum: VB.NET Jul 20th, 2008 |
| Replies: 12 Views: 1,298 I am with you Wayne. In addition, the messagebox interrupts the user, and also, it is modal. |
Forum: VB.NET Jul 20th, 2008 |
| Replies: 0 Views: 645 Hi friends,
I'm coding an application using VB.Net 2008 Express which work with images. It can save the results of this work in a file using an own format (not a regular image file) for future... |