Search results

  1. ppoindexter

    memo data wont pass to report

    i have a text box "textMemo" (data type = memo) on a form that is populated by "textMemo1" (data type = memo) =Forms!frmMenuReports!subfrmReportMemo!textMemo1 textMemo populates a text box (Tmemo) on a report =Forms!frmMenuReports!textMemo.column(2) when i open the report i get #Name in...
  2. ppoindexter

    Export Qry to excel - data mismatch error

    i get the same error i assume its a userlevel security issue i will just have em export the data using file - export thanks for trying merry christmas
  3. ppoindexter

    Export Qry to excel - data mismatch error

    thanks for you replies thanks to both of you for replying dont mean to be ignoring your replies i am in the middle of a war over here in iraq and we had a bad day yesterday i tried the code you provided but now i get Run-time error ‘3051’ It is already opened exclusively by another user, or...
  4. ppoindexter

    Export Qry to excel - data mismatch error

    the following code DoCmd.TransferSpreadsheet acExport, "qryMonthlyStatusReport_Active", "C:\AccessExport.Active.xls" produces the error Runtime error 13 Type Mismatch i am 2003 versions of access and excel please help thanks
  5. ppoindexter

    Have controls null when form opens

    no, the text box is enabled and not locked
  6. ppoindexter

    Have controls null when form opens

    i had tried that already as well same error thanks for the reply
  7. ppoindexter

    Have controls null when form opens

    What is the best way to have all controls in a subform empty when form opens? The form and subform are bound. The following: Private Sub Form_Open(Cancel As Integer) Me.textDate = Null End Sub Produced error - "cant assign a value to object" thanks in advance
  8. ppoindexter

    cbo rowsource help needed

    Now i have another issue when tblReport!fldReportTypeID is null i get no records...i dont know what is causing fldReportTypeID to have null values is there a way to prevent that from happening? or code i can add so that all records are visible if tblReport!fldReportTypeID is null? thanks in advance
  9. ppoindexter

    cbo rowsource help needed

    I got it! Solution below - Me.cboReportType.RowSource = "select fldReportTypeID, fldReportType from tblReportType where fldReportTypeID Not in (select fldReportTypeID from tblReport Where fldProjectID=" & Me.cboProject & ")"
  10. ppoindexter

    cbo rowsource help needed

    I have the following code in the second combo box on a form Me.cboReportType.RowSource = "select fldReportTypeID,fldReportType, fldFrom, fldTo, fldDue from tblReportType Where fldReportTypeID Not in (select fldReportTypeID from tblReport) order by fldReportType" right now this code is...
  11. ppoindexter

    Report_Subtracting Date fields using ()Now

    many thanks to oldaf294 and RV and happy thanksgiving!
  12. ppoindexter

    Report_Subtracting Date fields using ()Now

    Hello all I need to get the difference between 2 date fields on a report All records have a startdate but not all have an end date, I need to place a IIF then (i think) in the control source of the text box on the report so that the difference in the two dates will be either: 1) between...
  13. ppoindexter

    Need Code to change data in a populated table

    good eveinng everyone need some help updating a populated table tblOne fldA, fldB, fldC frmBlue record source tblOne (all fields) i need to open the form and search for a record in tblOne and change the data in say fldB from apples to oranges (tblFruit is a listing of all choices for fldB) i...
  14. ppoindexter

    Error 2105 when db split

    i have a db that works fine on computer it was created on all computers have office xp/windows xp 1. split db using the database utility - database splitter to create a front/back end 2. copied the front end to user computers and linked tables (back end is on db admin computer - not a...
  15. ppoindexter

    access looking for network printer on ..acPreview

    i have a db that i took from work and brought home to work on when i try to preview a report i get a window saying that the network printer isnt available... the code on the command button to open and PREVEIW the report is below DoCmd.OpenReport stDocName, acPreview, , strWhere why is access...
  16. ppoindexter

    Pass para to query from form

    the error went away but...now the value isnt being passed to the query
  17. ppoindexter

    Pass para to query from form

    i get an error wrong number of arguments...
  18. ppoindexter

    Pass para to query from form

    what do i add this statement so if a selection isnt made from a particular combo, the comob is ignored and the query uses only the values selected [forms]![frmOne]![cmbOne] something like this [forms]![frmOne]![cmbOne] or is null ? thanks
  19. ppoindexter

    Error 3201- BOF, EOF

    thanks roy i will try your suggestion
  20. ppoindexter

    Error 3201- BOF, EOF

    I get this error when i try to select a record from a combo box....error 3021 - Either BOF or EOF or record has been deleted.... Can anyone tell me what BOF and/or EOF is? i know the record has not been deleted. thanks pat
Back
Top Bottom