Recent content by Ecron

  1. E

    Date Repeating Function

    Hey All, I am in need of a Date Repeater in which the user can select a Start Date and an End Date as well as any of the weekdays (denoted by checkboxes). These dates will then be used to insert entries within one of the tables via SQL. Does anyone have any examples of such a function or...
  2. E

    Require Filter on a Form

    Mmm. Good idea! I'll give it a shot, Thanks
  3. E

    Require Filter on a Form

    Hello, First, I'm using Access 07. I am opening up a form with a filter. I also have Navigation Buttons enabled on this form so the user has the ability to go through each of those records that are filtered out of the set. The problem is that with the Navigation Buttons toolbar comes the...
  4. E

    INSERT INTO with multiple rows

    Yah. When I checked out the msdn article I came to that conclusion. I will just have to break them into individual INSERT statements. Thank you!
  5. E

    INSERT INTO with multiple rows

    http://msdn.microsoft.com/en-us/library/bb208861.aspx I found that article. I'm hoping it will help me! :p
  6. E

    INSERT INTO with multiple rows

    I am trying to insert into a table using the SQL INSERT INTO statement. The table I am trying to insert into is called t_comments. That table has 8 columns. This code works for 1 record: INSERT INTO t_comments VALUES (1,2,3,4,5,6,7,8); But, if I attempt to enter into multiple records: INSERT...
  7. E

    Many-to-Many Subform?

    Thanks guys! I was having a similar problem and this helped me with it! :)
  8. E

    bookmarking problem with recordsetclone

    Hello. Firstly, I would like to thank you very much for your aide and advice. I notice now that there are two recordsetclones and was completely unaware of that. After editing the code to match your first example, the problem still arose and instead of highlighting the entire line it just...
  9. E

    bookmarking problem with recordsetclone

    I have been trouble with a function that i coded to requery a subform and keeping the same record position. My function is as follows: Public Function Search_AND_Requery(search As String, frm As subform, nPK As Integer) frm.Requery With frm.Form.RecordsetClone .FindFirst...
  10. E

    Obtaining the Name of the Active Control

    That's awesome! I was just searching for the answer to this... Thanks!
  11. E

    Form, Subform, Totals

    As idiotic as this sounds, if you right-click the form and choose FormFooter, and under Format please be sure that Visible is set to Yes.
  12. E

    Form, Subform, Totals

    I do not have the Northwind 2007 database, but from looking at it, it appears they are using a continuous subform with a header and footer. You could create a footer and then create a textbox in that footer with the recordsource: =Sum([Qty]), that would give you the sum of the quantity for the...
  13. E

    Form, Subform, Totals

    You could potentially build a query that has totalling enabled. If you did that, you could do a Group By selection on the primary key (the unique id of your table) and select Sum for each of the fields that you want totalled. This would give you the totalled amount for specific fields that are...
  14. E

    selecting a continuous subform's record?

    Moniker, Firstly, thanks for the reply. And here are the answers to your questions: I have tried using the DoCmd.FindRecord. It does not work because my PK is not selectable within the subform, which is the way I would prefer it. I am unaware of the Find Method, but after searching it within...
  15. E

    selecting a continuous subform's record?

    How can I select the record of a subform, using its PK, if that subform is continuous? I've searched the forums for quite awhile and seen the usage of bookmarks, and also read that bookmarks become invalid when records start getting deleted and that would propose a problem. Any aide would be...
Back
Top Bottom