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 Wanet Telecoms Ltd 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: *

  1. johns88

    Large Access DB corruption

    I have a large MSAccess 2000 database (1.5 GB) that I developed over time to provide quick access to transaction details and summaries for my company. (Yes, I know I should move this to SQL server but our SQL gurus are tied up on other projects) I update this database every month and create...
  2. johns88

    Error message: Unable to create an MDE file

    The database compiles fine. It still won't create an MDE file. Any other ideas?
  3. johns88

    Error message: Unable to create an MDE file

    When I try to create an mde file from a 1.2 Gb access DB, I get the error message "Microsoft access is unable to create an MDE database". The database has been compressed and repaired. I'm running access 2000. Any suggestions to fix this will be greatly appreciated. thanks. John
  4. johns88

    Pre-set Footers (or Headers) in Excel

    When I print Excel worksheets, I like to print in the footer the date & time, the page number of number of pages, and the file name & worksheet name. Currently, I have to manually set this in every worksheet I create or open. Any ideas how I could programmically set these for all worksheets in...
  5. johns88

    Problems changing a report's RecordSource externally using VBA

    Thanks. Using the form is fine except I need to pass two fields to the report and the combobox only allows me to pass one field. I need to pass the queryname and the title of the report. I created a table with the report title and the queryname. How do I pass both of these to VBA from a...
  6. johns88

    MS Access Year over Year Comparisons

    Another option could be a crosstab query with the years as the colume headers. John
  7. johns88

    Query between dates

    I would write a query and base the report on the query. In the query prompt for the input data from the form by using criteria such as [Forms]![frmFormName]![cboCountry] for the country and Between [Forms]![frmFormName]![txtStartDate] And [Forms]![frmFormName]![txtEndDate] for the date...
  8. johns88

    Problems changing a report's RecordSource externally using VBA

    I have created a report that reports the data from crosstab queries into unbound fields on the report. If I explicitly define the query name in both the report properties and the report VBA everything works fine. Since I have about a dozen queries to run I am trying to create a single report...
  9. johns88

    Assigning Sequential Number

    Here is some code I use to add a sequence number to a field in a table. This may work for you. Sub Sequence(TableQuery As String, RankField As String) Dim rstRank As Recordset Dim db As Database Dim Statement As String Set db = CurrentDb() Set rstRank =...
  10. johns88

    Changing a report's RecordSource externally using VBA

    Unfortunately that doesn't work for this aplication. The form is a simple switchboard form with buttons and no text boxes. The queryname(s) are hardcode in the OnClick event of the button so there are no opportunities to use Forms!MyFormName!MyTextBoxName. I need a method to pass the...
  11. johns88

    Changing a report's RecordSource externally using VBA

    I have developed a generic report that I wish to run using different queries as the RecordSource. I need to be able to pass parameters from an OnClick event from a form to a report to print or generate a preview based on the parameters passed. I plan to hard code the query name in the form...
  12. johns88

    Find out if a field exists in a query.

    I have a report which runs against a crosstab query which generates a monthly summary of sales by agent. Every month a new month is added to the data. The query automatically includes the data but the report must be modified monthly to include the new month's data. I'd like to generate a...

Part and Inventory Search

Back
Top