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 SkipVought 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. mansukh20

    Using Data Environment and Data Report

    Im sorry to be a pain but have you got an example of a coding. As i usually understand beta by looking at a given code and adapt it to my example. Manny
  2. mansukh20

    Generate autonumber

    Forri So sorry to go out of subject but would you be able to look at another query for me. its under "Using Data Environment and Data Report" Im stuck on this Manny
  3. mansukh20

    Generate autonumber

    It seems clear enough. Thanks for that. I will look into it. Manny
  4. mansukh20

    Using Data Environment and Data Report

    Hi Guys, I am trying to print the customer records on for one of my tables. Rather than printing all the records, how can i implemented a set of codes to print the selected records identified by a primary key. The selection is done using a DataCombo control. Manny
  5. mansukh20

    Generate autonumber

    Forri, What is your solution so as i can have a look at it and possibly implement it as a precaution. Manny
  6. mansukh20

    Generate autonumber

    ArtieChoke, I have found a solution to my problem. Thanks alot for your help Manny
  7. mansukh20

    Generate autonumber

    I took your advice and implemented the following code: Dim strSQL As String strSQL = "select max(customerid) from customer2" adoCustomer.RecordSource = strSQL adoCustomer.Refresh incCustomerID = adoCustomer.Recordset.Fields("CUSTOMERID")...
  8. mansukh20

    Generate autonumber

    I have a table with customerID which starts from 100000, each number is unique since it identifies a customer. All i want is when i click on the add button i want the system to give me the next number in the series and by displaying it in the text box. But if i can then then i want the system...
  9. mansukh20

    Need help with getting an autonumber to work

    Hi maryrp2 Sorry for being a pain but how exactly did u get the autonumber working??? Im finding it difficult. I am using oracle for backend. Would be a great help Thank you in advance
  10. mansukh20

    Generate autonumber

    Hi guys, I have developed a system using oracle 9i and visual basic 6. Im not quite sure how to generate an autonumber for the next row. All i need is when i click on add button on my form, i want the next number in the series to be generated and displayed on the assigned text box. It would be...
  11. mansukh20

    Update sql statement

    Hi guys, I am trying to update my database using the code below unfortunately it seems to be doing nothing at all. Any suggestions? Dim strSQL4 As String strSQL4 = "UPDATE VEHICLE SET VEHICLESTATUS = 'Booked' WHERE VEHICLEID = '" & dbcVehicleID.Text & "'" adoVehicleUpdate.RecordSource =...
  12. mansukh20

    Using ADODC control instead of Connection string

    Hi Guys, Im finding difficulty implementing this code using ADODC control component. Any suggestions Private Sub dbcClassType_Change() Dim sql As String sql = "SELECT * FROM RATE WHERE CLASSTYPE = '" & dbcClassType.Text & "'" Set RS = New ADODB.Recordset RS.Open sql, CON...
  13. mansukh20

    Using two datacombo

    I cannot use the data component instead im using adodc component. I tried adapting the code above but doesnt seem to do the magic?
  14. mansukh20

    Using two datacombo

    Hi guys i have this code: Private Sub DataCombo2_Change() Dim sql As String sql = "select * from creditcard where CUSTOMERID = '" & DataCombo2.Text & "'" Set RS = New ADODB.Recordset RS.Open sql, CON DataCombo3.ListField = RS2!creditcardnum When the customerID is...

Part and Inventory Search

Back
Top