Page 3 of 3 FirstFirst 123
Results 31 to 32 of 32
  1. #31
    kwooten is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jun 2011
    Posts
    255
    psh.. your guess is as good as mine.. That is just how IT has it named..

    How do I get this cmdCreateCSV to run after the delete?

  2. #32
    ssanfu is offline Master of Nothing
    Windows 7 32bit Access 2010 32bit
    Join Date
    Sep 2010
    Location
    Anchorage, Alaska, USA
    Posts
    9,664
    Maybe try
    Code:
    Function Copy_Of_Delete_GroupUser()
    On Error GoTo Copy_Of_Delete_GroupUser_Err
    
    
        DoCmd.OpenQuery "Removal Query", acViewNormal, acEdit
        DoCmd.OpenQuery "Delete GroupUser", acViewNormal, acEdit
    
        DoEvents  '<<-- I add this to allow time for the queries to finish - probably not really needed...
        Call cmdCreateCSV_Click
    
    Copy_Of_Delete_GroupUser_Exit:
        Exit Function
    
    
    Copy_Of_Delete_GroupUser_Err:
        MsgBox Error$
        Resume Copy_Of_Delete_GroupUser_Exit
    
    
    End Function

Page 3 of 3 FirstFirst 123
Please reply to this thread with any new information or opinions.

Similar Threads

  1. Form to Create Multiple Records
    By panza1370 in forum Forms
    Replies: 1
    Last Post: 06-11-2012, 02:48 PM
  2. Replies: 4
    Last Post: 03-26-2012, 08:36 AM
  3. Create multiple records with 1 form?
    By bergjes in forum Forms
    Replies: 4
    Last Post: 04-14-2010, 06:16 AM
  4. Trying to create multiple records from a form
    By ed_hollywood in forum Forms
    Replies: 4
    Last Post: 04-02-2010, 10:57 PM
  5. Replies: 3
    Last Post: 06-01-2009, 01:41 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums