msgbox DLookup("[Movie Covers]" , "options_menu_folders_directories")
didn't work at first but then I noticed that it's name is options_menu_folder_directories. pop up window worked showing the path in that is in the table/in the text box of the options menu form.
just to test it further I went into the options menu and changed the file path as a user would, and close the form. I then clicked the newly created button and the message box displayed the new path. so all is good there. So I guess the next step would be to add it to my movie covers VBA code?
'Movie Covers
box.Picture = "J:\Media\Database\Movie Database\Movie Covers\default.jpg" 'default value
If Me.Use_Alt_Name = True Then
box.Picture = "J:\Media\Database\Movie Database\Movie Covers\" & (Me.Alt_Name) & ".jpg"
End If
If Me.Use_Alt_Name = False Then
box.Picture = "J:\Media\Database\Movie Database\Movie Covers\" & (Me.film_name_box) & ".jpg"
End If
replace the red with the dlookup somehow?