Search results

  1. I

    How to Close Propertysheet window at startup

    Set the Allow Design Changes property of the form to Design View Only should take care of it, I think. In addition, I am in the habit of always closing the property sheet when I am finished with it. If you close it, it stays closed until you open it again, and vice versa. This command...
  2. I

    Populate textbox with a field from another combo box's row/source table

    You could also hide the login form as opposed to closing it. Its controls and their values are then available to you in other forms without the form being visible.
  3. I

    Populating a Subform item to another subform item.

    I'd use a slighltly different and simpler approach by changing the RowSource of project Number dropdown box to include the ProjectName field - "SELECT ProjectList.ProjectNumber, ProjectList.ProjectName FROM ProjectList;" You can then reference the second column in the after update sub as...
  4. I

    Making a button to import .csv files

    Try calling the "DoCmd.TransferText" command from the on click event of a button. Access help gives you info on what variables you need for this command. You could get the user to these variables in the form and reference the form from the command.
Back
Top Bottom