Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Matrix03

    Illegal Escape Character

    After I compile this, I get the error - C:\JavaPrograms\Face.java:8: illegal escape character System.out.println(" | \- |"); ^ public class Face { public static void main(String[] args) { System.out.println("//////")...
  2. Matrix03

    File upload in ASP

    I am trying to upload a file from excel into a SQL 2000 database. The users will save the form into .csv format then upload the file. What is the easiest way to go about doing this ? If possible I would like to avoid using third party upload utilities. I am looking to construct this myself...
  3. Matrix03

    Drop Down Combo Box Question

    I have the combo box populated with the last names of the customers in the database. How do I get the text boxes on the form to fill with the customer data from the database when the lastname in selected in the combobox.
  4. Matrix03

    How do you populate a combo box with a filed from a database

    Do I need to open a connection to the database before this can work? Can you really break this down for me?
  5. Matrix03

    How do you populate a combo box with a filed from a database

    I have a table called Customer, with an attribute called CustomerLastName. How do I populate the combo box with the last names from the database into the combo box.
  6. Matrix03

    Error Adding record to database

    Thanks all who contributed, this worked.
  7. Matrix03

    Error Adding record to database

    Here is the full code. Can you explain what needs to be fixed in real plain english. Thanks Very much!! I am sorry I am really a beginner and everything I have right now is becuase of books and really helpful people like you people on this board...
  8. Matrix03

    Error Adding record to database

    Dim adoRecordset As Recordset Private Sub cmdAdd_Click() On Error GoTo ErrLabel adoRecordset.Update txtCustomerLastName.Text = "" txtCustomerFirstName.Text = "" Exit Sub ErrLabel: MsgBox Err.Description, vbInformation End Sub Private...
  9. Matrix03

    Error when connecting to ADO database

    Thanks for all the help I have finally connected
  10. Matrix03

    Error Adding record to database

    I am trying to add this record to the database and get this error. Object Variable or With Block Variable not set. Private Sub cmdAdd_Click() On Error GoTo ErrLabel adoRecordset.AddNew txtCustomerLastName.Text = "" txtCustomerFirstName.Text = "&quot...
  11. Matrix03

    Error when connecting to ADO database

    Here is the new error. No value given for one or more parameters. vb highlights the entire line beginning with adoRecordset.open
  12. Matrix03

    Still getting Error with Ado Connection

    I am still getting one more error. At the (adoRecordset.OpenRecordset) vb is telling me that method or data member not found. How can I fix this. Private Sub Form_Load() Dim Treespraying As ADODB.Connection Dim adoRecordset As ADODB.Recordset Set Treespraying = New...
  13. Matrix03

    Error when connecting to ADO database

    I input the code that omega36 gave me but I am still getting one more error. At the adoRecordset.OpenRecordset vb is telling me that method or data member not found. How can I fix this.
  14. Matrix03

    Error when connecting to ADO database

    when I try and connect to this database I get the same error everytime. Invalid use of a New Key Word for the "New Connection" How can I correct this? Private Sub Form_Load() Dim Treespraying As Connection Set Treespraying = New Connection Treespraying.Open...

Part and Inventory Search

Back
Top