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 strongm 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: *

  • Users: sudakov
  • Content: Threads
  • Order by date
  1. sudakov

    How to set Trusted Location via VBA?

    Hello. Does anybody know how to set Trusted Location in Trust Center via VBA? Thank you. sudakov.
  2. sudakov

    How to run a parameterized action (append) query with MEMO parameter via VBA?

    Hello, I have a table with a MEMO field. I want to add records into the table by executing a parameterized action (append) query via VBA. Does anybody know how to run a parameterized action (append) query with MEMO parameter via VBA? Thank you. sudakov.
  3. sudakov

    How to run a parameterized action query with MEMO parameter via VBA?

    Hello, I have a table with a MEMO field. I want to add records into the table by executing a parameterized action (append) query via VBA. Does anybody know how to run a parameterized action (append) query with MEMO parameter via VBA? Thank you. sudakov.
  4. sudakov

    How to create a drill-down report in MS Access 2010?

    Hello, Does anybody know how to create a drill-down report in MS Access 2010? Thank you. Sudakov.
  5. sudakov

    How to display some controls on Front page and hide them on others?

    Hello everyone, I have a report with approximatelly 100 records in Detail section (4 pages). The requirement is to display 15 bottom controls on the Front page and hide 10 of them on the other pages showing only 5 bottom controls. As my aprroach, I put all 15 controls on the Page Footer...
  6. sudakov

    How to convert MS Word files into PDF via VBA?

    Hello, I have multiple (hundreds) MS Word files in a folder. I would like to write VBA code to convert them into respective PDF files. Does anybody know if this is possible? Has anyone done it before? Thanks. Sudakov.
  7. sudakov

    How to convert MS Word files into PDF via VBA?

    Hello, I have multiple (hundreds) MS Word files in a folder. I would like to write VBA code to convert them into respective PDF files. Does anybody know if this is possible? Has anyone done it before? Thanks. Sudakov.
  8. sudakov

    Calculated field (SUM) in a sub-form gives #ERROR occasionally

    Hello everyone, I have a continuous sub-form within a form. Both forms are bound. The sub-form has a text-box control "TXB_AGGREGATE" that calculates Totals of the sub-form (=SUM([FIELD1]*[FIELD2]) in its Footer section. The Main- and Sub-form are related using LINK MASTER/CHILD FIELDS...
  9. sudakov

    How to force to update a control in a sub-form?

    Hello everyone, I have a continuous sub-form within a form. The sub-form has a text-box control "TXB_AGGREGATE" that aggregates values (=SUM([FIELD1]) of a field in the sub-form. If a user has not finished entering a new record in the sub-form (user does not move to a next record) the text-box...
  10. sudakov

    How to trace macros?

    Hello, I have inherited a DB where most of programming is done using MACROS, not code. I receive an error during execution. Does anyone know how to trace macros? Thanks. sudakov
  11. sudakov

    How to loop through all queries to print SQL-text of each?

    Hello everyone, Does anyone know how to loop through all queries to print SQL-text of each? My task is to find name of queries that use function ROUND. I created the following code: Public Function varSearchStringInQueries() Dim db As Database Dim qdf As QueryDef Dim strSQL As String Dim...
  12. sudakov

    How to keep format D/M/YYYY in a date-type table field?

    Hello, I have a date-type field in one of my tables. After I ran (and compacted) my database on another machine the date-type field format is changed from "D/M/YYYY" to "M/D/YYYY". Does anyone know how can I restore the format "D/M/YYYY"? It is important to keep this format since values of the...
  13. sudakov

    How to link to MS SQL Server’s table in Access programmatically?

    Does anybody know how to create a link to MS SQL Server’s table in MS Access database programmatically? sudakov
  14. sudakov

    How to set startup option "Allow Default Shortcut Menus" via VBA?

    Hi everybody, does anybody know how to set startup option "Allow Default Shortcut Menus" via VBA? I tried the following: Application.SetOption "AllowDefaultShortcutMenus"), False and CurrentDb.Properties("AllowDefaultShortcutMenus") = False No success for now. Does anybody can help...
  15. sudakov

    Which Recordset Type is the best for an unbound application?

    I am developing a MS ACCESS application for a client that has non-stable network. The application is split into front-end (on Client PC) and back-end (on LAN). I use mostly unbound forms to minimize connection time to the back-end database (MS ACCESS as well). My goal is to decrease chances of...
  16. sudakov

    A trigger stops working after converting Access2000-frontend to 2003.

    Hi everyone, I have a MS Access 2003 application as front end with SQL Server 2005 as backend. Previously it was Access 2000 front end and SQL Server 2000 Back end. Now it has been converted to Access 2003 front end and SQL Server 2005 backend. The tables in Access are linked to the tables in...
  17. sudakov

    What is DBQ File?

    Hi everyone, Does anybody know what type of file with DBQ extension is? Thanks, sudakov
  18. sudakov

    Any downsides to protect code with password in VBA?

    Hello, I would like to protect my code by setting password to view the code. I heard that some parts of code will not work after password-protecting the code. Did anyone experience problems to run code after protecting it with password? Your help is appreciated. sudakov
  19. sudakov

    How to use SourceSafe within MS Access to control versions of code?

    Hi everyone, Does anybody know whether it is possible to protect code and to control code version of MS Access 2003 application using Visual SourceSafe? This means it will not allow some users to modify code, on the other hand, it should allow some users (developers) to modify the code with...
  20. sudakov

    Clicking on a pop-up form freezes an application, why?

    Hi everyone, I have a pop-up form (POP UP property set to YES) that displays a WAIT message, while my code performs activity that takes some time (compacting, copying files etc). At the end of the code I close this pop-up form programmatically. Everything works fine until a user decides to...

Part and Inventory Search

Back
Top