Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Search results for query: *

  1. furjaw

    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. furjaw

    Adding a column to an existing SQL database table

    OK, I deleted the Patient.mdf in Server Explorer. Then I opened a New Connection and browsed to the .mdf file under the output directory (\bin\debug). Now I can see the new column in Server Explorer. But, how do I get it to appear in Data Sources of Solution Explorer?
  3. furjaw

    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...
  4. furjaw

    Adding a column to an existing SQL database table

    Here is how MSDN tells you to do it (I just added these statements to my Form Load routine): Dim columns As DataColumnCollection = Me.PatientDataSet.Patient.Columns If columns.Contains("CaseNbr") Then MsgBox("'CaseNbr' column already exists" ) Else...
  5. furjaw

    Adding a column to an existing SQL database table

    I added the following statement to my program: Me.PatientDataSet.Patient.Columns.Add("CaseNbr", Type.GetType("System.String")) But it did not do anything. I added the statement as the first command in the Form Load routine: Public Class Patient Public Sub Patient_Load(ByVal sender As...
  6. furjaw

    Adding a column to an existing SQL database table

    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"...
  7. furjaw

    Drag and Drop Image

    jo0ls at xtremevbtalk.com wrote a program that does it all! 1) Transparent backround on dragged objects. 2) See object as it is being dragged. 3) Rotate object. 4) Nudge object. 5) Delete object. 6) Drag multiple objects. 7) Drag multiple copies of an object. 8) Redrag objects. 9) Drag objects...
  8. furjaw

    Drag and Drop Image

    What is Addflow?
  9. furjaw

    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