Search results for query: *

  1. HalErp

    Problem seleting a row in a listview

    Probelem solved Well I do not quite understand this but it solved the problem I added an OK button to my form so my code looks like this: Private Sub ListViewPositions_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ListViewPositions.SelectedIndexChanged...
  2. HalErp

    Problem seleting a row in a listview

    John That kind of worked Here is the code that I am using: Private Sub ListViewPositions_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ListViewPositions.SelectedIndexChanged Dim ItemDesc As String...
  3. HalErp

    Problem seleting a row in a listview

    Still having a problem I have three columns in my ListView box when I open the form noting is selected on the ListView. If I click on one of the rows the first time the proper value is displayed by the MessageBox. And the time that I clicked on is highlighted so far so good. If I made a...
  4. HalErp

    Problem seleting a row in a listview

    I am using a listview control I manage to populated the subitems with data from a data table. It all looks good. The problem is that when I try to select a row from the list it does not work all that well. If I click on the first column item it is highlighted but none of the others items in...
  5. HalErp

    Need book on using VS2005 IDE

    JohnH that looks good. I will read it tonight but it mostly covers enhancements from 2003. Maybe I need to start with 2003 and work up there seems to be lots on 2003. But I do not see much coming out until Aug of this year on 2005. Hal:-)
  6. HalErp

    Need book on using VS2005 IDE

    I am new to the Visula Stuido IDE and would like a good reference book on how to use it. I have Visula Studio.net "Tips and Tricks" which was worth the 15 bucks I paid for it but was not really what I needed. So, my question is does anyone have a suggestion for a beginning to Intermediate...
  7. HalErp

    String was not recognized as a valid DateTime

    Hi All, I was doing some testing and needed to change a string to a date Below is how I did it. I am sure it will work with time as well. Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click ' Create a new DateTimePicker Dim...
  8. HalErp

    Does a record exist in a table

    Thank you all for you good ideas. I just bumped into another way to check for the existence of a record if you are using ADO you can cmdString = "SELECT SchedulePlans.* " + _ "FROM SchedulePlans " + _ "WHERE SchedulePlans.ScheduleID = " + strScheduleID odbCommandSPlan.Connection =...
  9. HalErp

    Does a record exist in a table

    I am using MySQL with VB.net 2005 I have spent 1 hr trying to figure this problem with out success it is time to ask for help! The problem is: If the record exist I will need to use Update. If the record does not exist I will of course add it. My problem is how do I tell if the record...
Back
Top