Search results for query: *

  • Users: furjaw
  • Content: Threads
  • Order by date
  1. F

    Filtering a DataGridView

    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 letter. When he types the second letter, it displays all records whose last name starts with those 2...
  2. F

    Convert a VB.Net app to a web app?

    I wrote a Windows Forms application in Visual Basic 2005. What would be involved in converting it to run as an internet web application?
  3. F

    How can I have my program link to MyApp.msi on my website?

    Visual Basic 2005 Express: My app checks the website to see if a new version is available. How can I have it link to MyApp.msi on the website to download and install it if a new version is available?
  4. F

    I added a column to a table, but, I can't see it.

    I ran the code below that adds a column to an SQL table. I refreshed Data Sources, but, the new column does not appear. I refreshed Server Explorer and the new column does not appear. I tried running the code again and I got: "Column names in each table must be unique. Column name 'CaseNbr' in...
  5. F

    How to add a column to an SQL database

    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 computer in debug mode. Then, when I installed it, I got an exception "Case# is an invalid column"...
  6. F

    Using PrintDialog(), can I specify "Preview"?

    This will give me a print preview: Dim dlg As New PrintPreviewDialog() dlg.Document = PrintDocument1 dlg.ShowDialog() This will let me select a printer: Dim dlg As New PrintDialog() dlg.Document = PrintDocument1 If dlg.ShowDialog = DialogResult.OK Then PrintDocument1.Print() End If...
  7. F

    SQL Server not running.

    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. I recently went from Visual Studio 2005 Express Edition to the Professional edition. I was still...
  8. F

    Drag and Drop image

    Visual Basic 2005 Express 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 dropped at any location within the target PictureBox 3) the image can be rotated within the target PictureBox
Back
Top