Recent content by Toeying

  1. T

    SEnding report to excel

    Hello, I think I am sorted for now. I used DoCmd.TransferSpreadsheet instead. I will look into using OUTPutTo some other time. Thanks a lot. TY
  2. T

    SEnding report to excel

    Hi Trevor, I have tried what you suggested but I just got an error message saying "Microsoft access can't find the field "|" referred to in your repression". Where do u think this is coming from? thanks. I've checked everywhere but cant figure it out. thanks
  3. T

    SEnding report to excel

    yes i have used the wizard. and what i want to do is to send the subreport to the worksheet. the main report just houses the sub report thanks
  4. T

    SEnding report to excel

    Hi Trevor, I am exporting just the main report name. am using a query to feed the report am not using a macro. the code is just behind a command button and my version is 2003 thanks
  5. T

    SEnding report to excel

    Hello all I have a report with a subreport which I want to export to excel. problrm is, it is exporting just one line of the data. When I preview the report, it contains all the information I need but in the excel sheet, it contains just the first line of the firstpage of the excel sheet. Is...
  6. T

    help with vba query

    Hi i have modified the code as follows and now works fine...cheers Dim strIn As String Dim rst As DAO.Recordset Dim strSQL As String Set rst = Me.RecordsetClone Do Until rst.EOF strIn = strIn & "'" & rst!ChildHSReferenceNumber & "'," rst.MoveNext Loop If Right(strIn, 1) = ","...
  7. T

    too few parameters error in vba

    Hello All, I am trying to run this code: Dim strIn As String Dim rst As DAO.Recordset Dim strSQL As String Set rst = Me.RecordsetClone Do Until rst.EOF strIn = strIn & rst!ChildHSReferenceNumber & "," rst.MoveNext Loop If Right(strIn, 1) = "," Then strIn = Left(strIn...
  8. T

    help with vba query

    Thanks BOBLarson. I have tried to use this code but i am getting an error message: "Too few parameters. Expected 14". my Query has pulled up 14 records so I guess that where it gets that number from. What should i do? Thanks
  9. T

    closing and sharing a database application

    Hi, messing with the system registry is quite scaring to me as I have not really worked with hardware for a while. I'll see what i can do anyway. I have read about setting the security level to low. whats your take on that?? I know it says not recommended unless you have virus scanning...etc...
  10. T

    closing and sharing a database application

    no each user doesnt have a copy of the front end. they are accessing it from the shared drive. Guess i should do that right? I'll get back to you
  11. T

    help with vba query

    any help on this pleeeeeeeeeaaaaaaaase??
  12. T

    closing and sharing a database application

    yes i have done that
  13. T

    closing and sharing a database application

    hello all, I am building an application that is supposed to run from a shared server. I am about to conclude the development but I am not sure how to release it for use. I have created the startup options and copied the application to the shared server but when the other users open the...
  14. T

    help with vba query

    yes. I have selected some records from by table to display on a form based on some criteria. then I want to check all the checkboxes for the records on the form. or if easier, update the particular field in the table to yes for all the records which have satisfied the criteria and showed up on...
  15. T

    help with vba query

    Ok I reran the query and it works a bit now. however, it will only check the box for the first record shown. how can i make it loop thru and check all the records selected by the query? thanks
Top Bottom