Forum: VB.NET Jan 6th, 2009 |
| Replies: 2 Views: 7,871 "WaitToComplete" did the trick!
Thanks! |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 6 Views: 8,266 Private Sub LastNameTextBox_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles LastNameTextBox.TextChanged |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 6 Views: 8,266 It works great!!!
Below is the code that I ended up with:
If LastNameTextBox.TextLength > 0 Then
PatientBindingSource.Filter = String.Format("LastName Like '" & LastNameTextBox.Text) & "*'"... |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 6 Views: 8,266 Visual Basic.Net:
I have a DataGridView in Last Name sequence.
Is it possible to when a user types the first letter of a last name
that it displays all rows with last names that start with that... |
Forum: VB.NET Oct 15th, 2007 |
| Replies: 3 Views: 8,300 No, so I decided to do it a different way. |
Forum: IT Professionals' Lounge Sep 22nd, 2007 |
| Replies: 2 Views: 7,419 This Visual Basic 2005 app is basically a wizard that starts out with a background image. Then the user selects a number of images to overlay it producing a final image that is saved for later... |
Forum: IT Professionals' Lounge Sep 22nd, 2007 |
| Replies: 2 Views: 7,419 I wrote a Windows Forms application in Visual Basic 2005.
What would be involved in converting it to run as an internet web application? |
Forum: VB.NET Apr 22nd, 2007 |
| Replies: 2 Views: 3,633 Visual Basic 2005
I used DataSet Designer to add a column called "Case#" to an existing SQL table.
The table is used by a DataGridView in a VB 2005 program.
I got it working on my development... |
Forum: VB.NET Apr 22nd, 2007 |
| Replies: 2 Views: 3,633 Visual Basic 2005
How do I go about adding a column to an SQL database.
Everytime I did it in the past it was a disaster and I literally had to start all over again from square one.
I would go... |
Forum: VB.NET Mar 15th, 2007 |
| Replies: 0 Views: 3,036 Visual Studio 2005 Profesional:
I am using Windows Installer to create a Setup.msi.
I want users to be able to download a 30 day free trial of my Windows app from my website.
The download worked... |
Forum: IT Professionals' Lounge Feb 12th, 2007 |
| Replies: 2 Views: 2,374 I had my download button linked to Setup.exe.
I changed it to link to Setup1.msi and I did get a progress bar.
Now, the question is, will it install the prerequisits! |
Forum: IT Professionals' Lounge Feb 6th, 2007 |
| Replies: 2 Views: 2,374 I developed a Windows application that I intend to market.
I created a web page with Expressions Web (replaced Front Page).
I have a button labeled "Download 30 Day Free Trial" which I linked to... |
Forum: VB.NET Sep 27th, 2006 |
| Replies: 3 Views: 2,734 I developed most of my app with Express. Then I installed the Professional 90 Free Trial. Then I went back to Express. Then I got annoyed with the limitations of the ClickOnce installer.
I... |
Forum: VB.NET Sep 27th, 2006 |
| Replies: 3 Views: 2,734 Use the Express edition until you come up with a good reason to upgrade.
The Windows Installer in Professional is the reason I upgraded.
The ClickOnce installer in Express kept giving... |
Forum: VB.NET Sep 23rd, 2006 |
| Replies: 3 Views: 2,734 I have been debugging my application for 6 months. Now, when I try to run it I am getting "under the default settings SQL Server does not allow remote connections." My computer is not on a network. ... |
Forum: VB.NET Jun 10th, 2006 |
| Replies: 3 Views: 8,300 Visual Basic 2005 Professional Edition:
I need to drag and drop an image from one PictureBox to another PictureBox where:
1) the image is visible while being dragged
2) the image can be... |
Forum: VB.NET May 30th, 2006 |
| Replies: 6 Views: 13,301 That frequently went PFFFFFFFT instead of CLICK.
But, this did the trick!
My.Computer.Audio.Play(My.Resources.PodVwBy, AudioPlayMode.WaitToComplete) |
Forum: VB.NET May 28th, 2006 |
| Replies: 2 Views: 7,871 Visual Basic 2005 Express Edition:
This works, but, I need to get the .wav file from Resources:
My.Computer.Audio.Play("C:\Documents and Settings\Owner\My Documents\Visual Studio... |
Forum: VB.NET May 27th, 2006 |
| Replies: 6 Views: 13,301 I suspect that this could be my problem:
My.Computer.Audio.Play("C:\Documents and Settings\Owner\My Documents\Visual Studio 2005\Projects\OrthoLabRx\OrthoLabRx\Resources\PodVwBy.wav")
I placed... |
Forum: VB.NET May 27th, 2006 |
| Replies: 6 Views: 13,301 Yes, it was downloaded and installed as a prerequisite. |
Forum: VB.NET May 27th, 2006 |
| Replies: 6 Views: 13,301 Visual Studio 2005 Professional Edition:
My app runs fine on my development computer, but, bombs out on the 3 other computers that I installed it on (all 3 were running Windows XP Pro). It installs... |
Forum: VB.NET May 5th, 2006 |
| Replies: 1 Views: 2,806 Visual basic 2005 Express Edition:
I have a PrintDocument:
Private WithEvents mDoc As New PrintDocument()
I would like to convert it to a Bitmap, so that I can write it out to disk as a... |
Forum: Visual Basic 4 / 5 / 6 Mar 27th, 2006 |
| Replies: 1 Views: 1,433 Here is an example of the type of thing that I need to do using Visual Basic Express:
Let's say that you are ordering a vehicle. First you pick the vehicle type:
Sedan
Sport Utility
Mini... |