Search results

  1. I

    error 3251 After upgrade A97 to A03

    Its should work in first place!!!!!!! or try with DoCmd.Requery
  2. I

    join two reports

    you need to Create a Blank Report say "Report_0" Insert the SubReport "report_A" below it Insert another SubReport "report_B" and then call the query stDocName = "Report_0" DoCmd.OpenReport stDocName
  3. I

    Populate Data

    No I don't want to link the tables bcoz its has Credit Notes info about customers, the script which i have works well without password is as below: Private Sub AccessCreditNotes() Dim dbsBackEnd As Database Dim rst1 As Recordset Dim FileLocation As String FileLocation =...
  4. I

    Populate Data

    Dear Friends, Yaar! I have two .MDB files, both are password protected - is there anyway i can call the data from second .MDB file using recordsets. I know the password to both the files.
  5. I

    Matrix Operations with VBA?

    I Agree with you Pat But can he use the cross table query?
  6. I

    create a text box with vba

    looks like a on going subform as all of us think here you can create a two unbound text field in subform You can serialize the FieldOne while FieildTwo you can leave it open for the users input alternately what you can do here is a play hide/show gimmick based on the criteria here by...
  7. I

    Unable to access the table from backend password protected .mdb

    Can anyone help in here to access the backend password protected file from server Private Sub AccessCreditNotes() Dim dbsBackEnd As Database Dim rst1 As Recordset Dim FileLocation As String FileLocation = "\\Server\access\Credit Notes ver2000 - 003.mdb" Set dbsBackEnd =...
Back
Top Bottom