Recent content by vbFace

  1. V

    Form Containers?

    Ack!!! That is what that darkened area meant. Thanks much!!!
  2. V

    Form Containers?

    But when I place controls on the Tab Control, they don't belong to it ... they are not contained by it. So if I clicked on a tab, the controls won't hide. I am not sure what you meant. I wouldn't want to hide the whole control anyway, I just want the appropriate controls for the clicked tab to show.
  3. V

    Form Containers?

    In VB6, you can put all of your controls in a container such as a picture box or Frame control. To hide all of the controls, just set the container to Frame1.Visible = False. I want to utilize the Tab strip in Access on a form. Instead of hiding each separate control, I would like to use a...
  4. V

    BeginTrans Rollback CommitTrans withing Access

    Well, I got help from another site: Private Function BackupData() As Boolean Dim X As Integer Dim SQL As String Dim ws As DAO.Workspace Dim db As DAO.Database Set ws = DBEngine.Workspaces(0) Set db = CurrentDb...
  5. V

    BeginTrans Rollback CommitTrans withing Access

    I am trying to set up a transaction within Access itself using VBA. So far I have tried the following: ' This line doesn't error, but will error on CurrentProject.Connection.Rollback / .CommitTrans ' saying no transaction is started CurrentProject.Connection.BeginTrans ' These lines do not...
Back
Top Bottom