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 SkipVought 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: dominicdunmow
  • Order by date
  1. dominicdunmow

    Dynamic Crosstab Report Problem - How to display all records

    Thanks for your response, I've done many a search for the anser to this and I notice your name appears nearly everytime. I've been to your website already but couldn't work out how the report worked. The code I used seemed simpler so I took the easy way out. I'll study your examples cloesely...
  2. dominicdunmow

    Dynamic Crosstab Report Problem - How to display all records

    Hi there, I've used the code below to assign control sources to the fields, I have similar code to assign labels, but when I run the report, only the first records appears, the source query has at least 10 records. Can anyone tell me what I'm doing incorrectly? Thanks Private Sub...
  3. dominicdunmow

    Print Recordset That's Filtered By Selection - SelectObject??

    Hi there, I have a print button on a form that I'd like to use to print out the linked subform after "filteredbyselection" has been used. I can print the whole form using:- DoCmd.SelectObject acForm, [frm], True I assume I have to make the filtered form the SelectObject, but cannot work out...
  4. dominicdunmow

    acCmdFilterBySelection With Main And Subforms

    Hi there, Thanks for you response, it's great and has me on my way works, but I have one further wish. The code works if FilterBySelection is used once...if I want to further filter the mainform using the FilterBySelection button a second time, the subform recordset resets, then filters by...
  5. dominicdunmow

    acCmdFilterBySelection With Main And Subforms

    Hi there, I have a main form linked to a subform by a Unique ID field. I have a command button on the main form that uses "acCmdFilterBySelection" to filter by the selected field. When this button is clicked I'd like the subform to be filtered by this same field. Does anyone know how I can...
  6. dominicdunmow

    Qry criteria - FilterBySelection? or Subform link by FilterBySelection

    If I add this line to the criteria of both the geography and Product Cat. fields in the query, the subform will always filter by both of fields wil it not? The problem there is that I won't get the full Product Cat. recordset for example, I'll get the Product Cat. set filtered by what ever the...
  7. dominicdunmow

    Qry criteria - FilterBySelection? or Subform link by FilterBySelection

    Thanks for coming back. I think I understand, but both the Geography and Product Cat. fields will always be populated so I don't think this would work. I guess what would be the perfect answer would be if I could add to the criteria line of the the query something along the lines of:-...
  8. dominicdunmow

    Qry criteria - FilterBySelection? or Subform link by FilterBySelection

    I have a form with fields named "Product Category" and "Geography" amongst others. There is a FiletrBySelection command button sot he form can filter by either of these 2 fields. I also have a subform which is linked parent/child by the "Geography" field - this essentially filters the subform...
  9. dominicdunmow

    Available Commands Within "DoCmd.DoMenuItem acFormBar, acRecordsmenu"

    Thanks, it would have been helpful if "Help" had mentioned it...perhaps it did and I missed it!
  10. dominicdunmow

    Available Commands Within "DoCmd.DoMenuItem acFormBar, acRecordsmenu"

    Hi there, I'm trying to find a list of the commands available under DoCmnd.Domenuitems. Help gives a few but not the full list. It says for the full list look at the command arguement list in previous versions of Access. I'm using Access 2002. Can anyone help? Thanks
  11. dominicdunmow

    Subform Refresh After "DoCmd.RunSQL "INSERT INTO

    Thanks for the response, I've managed to solve the problem using ... Forms![frminstallationoutlook]![sfrmPartnerCost].Requery Which is a little strange as I thought I'd tried this at least once already! (All's well that ends well)
  12. dominicdunmow

    Subform Refresh After "DoCmd.RunSQL "INSERT INTO

    Hi there, I'm pulling my hair out...I have a parent form with 2 child subforms (bound to different tables. I have a cmd button on the parent form that copies specific records from one subform to the other using a DoCmd.RunSQL "INSERT INTO line. this works well the values are inserted into the...
  13. dominicdunmow

    Rename Table - Append Month 2 months previous to title

    Thanks for your responses. The database is a temporary solution so in theory year doesn't matter but for best practice's sake I've included - thanks for the nudge. DoCmd.Rename "tblArchiveOSP_" & Format(DateAdd("m", -2, Date), "MMM") & Format(Date, " yyyy"), acTable, "tblOSPPrevious" Dominic
  14. dominicdunmow

    Rename Table - Append Month 2 months previous to title

    Hi there, I have a table that I'd like to archive, in order to do so I'm renaming it and adding appending the month in which it applies to. The code below adds the current month, but I'd like to add 2 months previous, e.g Format(Date, "MMM" - 2) but I can't work out the code. DoCmd.Rename...
  15. dominicdunmow

    Form Structure Advice/Sanity Check

    Hi there...this is a little longwinded but please bear with me. I have created a Revenue Forecasting database. Functionality should allow users to input new customer order details and secondly to be able to leaf through records to find particular orders. A main form contains generic customer...
  16. dominicdunmow

    Creating Dynamic Forms

    Thanks for the response. I tried this method to begin with, but couldn't find way of creating a form where each customer appeared with their respective time and financial data on consecutove records. further guidance would be appreciated. Thanks
  17. dominicdunmow

    Creating Dynamic Forms

    Hi there, I receive a monthly flat file xls - formatted as below:- Customer Time Value A Q42005 £1000 A Q22006 £2000 B Q12006 £500 B Q42006 £3000 I have a crosstab query which converts this into a spreadsheet format as below. Customer...
  18. dominicdunmow

    "Update Or CancelUpdate Without...." When Find Code Used

    When I open my database I can update the forms no problem. But when I open the database and search for a particular record using the code below:- Dim rs As Object Set rs = Me.Recordset.Clone rs.FindFirst "[ID] = " & Str(Nz(Me![Opp_ID_Search], 0)) If Not rs.EOF Then Me.Bookmark =...
  19. dominicdunmow

    Access has detected corruption in this file...

    I've tried this but it still doesn't work. The MDE file that I made do work. Is there anyway of creating an MDB from and MDE file?
  20. dominicdunmow

    Access has detected corruption in this file...

    I've gone into a database that I administer for the first time in a week or so, on opening I now get a message saying Access has detected a corruption in this file. I can get into the database but cannot run queries etc, when I click on anything I get the corrupt message. The all data is held...

Part and Inventory Search

Back
Top