Search results

  1. V

    Unsolicited Access backup Files

    So ... it looks like there is no option in Access that can turn off these backups? And as to this thread -I first created this thread, noone responded, so I asked you to take a look on it. I thought that they are to different questions ... Thank you
  2. V

    What to do about "#deleted"?

    vbaInet, no good deed goes unpunished. May be you van help with another problemo - see thread Unsolicited Access backup Files ... Thanks
  3. V

    What to do about "#deleted"?

    vbaInet - so simple? I tested this approach and it works. I feel stupid not to figure it out myself. But ... that's the friends are for ... THANKS A LOT!
  4. V

    What to do about "#deleted"?

    ok. Let me try this Thanks
  5. V

    What to do about "#deleted"?

    Aha. Exactly. Local table is a record source for the continuous subform.
  6. V

    What to do about "#deleted"?

    My app includes 1) SS2K8 database on the back end 2) Access 2003 front end NOT LINKED, data flows through ADO and stored procedures on the back end. ================= Front End consists of forms/subforms and local tables "connected' to subforms. Data flows that way: Sql server table <===>...
  7. V

    Unsolicited Access backup Files

    My access application sometimes creates backup files, like Backup Of + original file name. It looks like it happens when some error occures. It is Access 2003 mdb file. It contains a lot of vba codes. All subs and funcyions have error handlers and Error Trapping is set to Break on unhandled...
  8. V

    ADO recordset does not open after executing stored procedure

    You can do it either way. I prefer adoCMD.Execute adoRs.Open adoCMD because it allows ANY type of recordset, while Set adoRS = ... forward only
  9. V

    ADO recordset does not open after executing stored procedure

    In my Access front end VBA code opens ADO recordset from stored procedure on remote SQL Server 2008. It worked OK for 2 years and SUDDENLY it stopped working. The code execution stops at line (see below) with popup: Run Time errror '3704' Operation is not allowed when the object is closed On...
  10. V

    Combo Box Not Clearing

    And that: Dim i As Integer For i = 0 To Me.ComboBox.ListCount - 1 If Me.ComboBox.Selected(i) Then Me.ComboBox.Selected(i) = False Next
  11. V

    Combo Box Not Clearing

    How about that: Me.ComboBox.RowSource =""
  12. V

    Reading Crystal Report data from Access 2003 vba

    Hi everybody! I need: 1) to send a parameter from Access into CR report 2) read the resulting field values in the report I have installed 1) MS Access 2003 2) Business Objects/Crystal Reports 11 ============== Questions: 1) which library should I reference in VBA? 2) which properties of the CR...
  13. V

    VBA code when a report is sent to printer

    Thank you vbaInet - Merrion's article looks promising. Will try it. And be back (on Monday). Happy Chinese New Year to everybody! Val
  14. V

    VBA code when a report is sent to printer

    Well D, I can create the custom printing routine. But the question remains: how can I get a feedback from printer? Thanks Val
  15. V

    VBA code when a report is sent to printer

    Thank you John. This is a nice aproach. But we do not know if the report was printed. Is there any way to get feedback from the printer (throgh windows api or else)?
  16. V

    VBA code when a report is sent to printer

    Hi there, This is the problem: My report is open in preview mode. When the user selects File ==> Print and then clicks OK in the dialog box I need to update field 'ReportPrinted' in the database table. I'm using Access 2003. Please help Thanks Val
  17. V

    Exporting Excel data: convert to text problem

    Your formula is certainly better, mine stutters at negative 'time' values like '-00:05:00'. For my specific purpose I would rather use 'notepad' approach and then use my utility to import data using two recordsets: rsAccess("FieldName")= rsExcel("FieldName") Thank you
  18. V

    Exporting Excel data: convert to text problem

    In this file 0:20:00 is not realy a time but an interval - 20 min (it is never more than 60 min). So I can change it as a number using formula (see columns I and J in the attached).
  19. V

    Exporting Excel data: convert to text problem

    It works your way (thru notepad). Thank you
  20. V

    Exporting Excel data: convert to text problem

    Re: Exporting Excel data: covert to text problem No it does not work.
Back
Top Bottom