Search results

  1. S

    MkDir

    Tried that and got the same error message.
  2. S

    MkDir

    I am trying to use the MkDir function to make a new subfolder of an existing folder path: Public Sub Create_Folder(Job_Name As String) Dim Folder_Path as String Folder_Path = "C:\Dean\Documents\Work\" & Job_Name MkDir (Folder_Path) end Sub where...
  3. S

    MS Access TabCtrl

    My situation with the TabCtrl is now a little more complex: I have 1 subform on each of 3 pages in the TabCtrl: How do I access a textbox value on 1 of the subforms on 1 of the pages of the TabCtrl. I have tried variations of: textbox.value = Forms![Form1]![SubForm1].txtTextBox.Value...
  4. S

    MS Access TabCtrl

    How do you gain access to the value of a text box on a page of a TabCtrl. I have tried variations of something like this and can't get it to work: text box: txtTextBox TabCtrl: TabCtl1 text box is on Page 0. Form: Form1 TextBoxValue = Forms![Form1].TabCtl1.Page(0).txtTextBox
Back
Top Bottom