Jun 30, 2003 #1 DerickD IS-IT--Management Sep 19, 2002 93 LU Hi Ya'll, Thanks for taking the time..... Very simple: I would like to know how to create a folder by just pressing a button from within a form.... Thanks alot, DerickD
Hi Ya'll, Thanks for taking the time..... Very simple: I would like to know how to create a folder by just pressing a button from within a form.... Thanks alot, DerickD
Jun 30, 2003 1 #2 CajunCenturion Programmer Mar 4, 2002 11,381 US Have you tried using the MkDir function in the click event of the button? Good Luck -------------- As a circle of light increases so does the circumference of darkness around it. - Albert Einstein Upvote 0 Downvote
Have you tried using the MkDir function in the click event of the button? Good Luck -------------- As a circle of light increases so does the circumference of darkness around it. - Albert Einstein
Jun 30, 2003 Thread starter #3 DerickD IS-IT--Management Sep 19, 2002 93 LU Amazzzing.... I posted this, browsed through some other questions.....came back a couple of minuets later....and have got the perfect answer !! Thanks alot CajunCenturion Private Sub MakeFolder_Click() Dim myNewFolder myNewFolder = Me![Text_makeDir] MkDir myNewFolder End Sub Upvote 0 Downvote
Amazzzing.... I posted this, browsed through some other questions.....came back a couple of minuets later....and have got the perfect answer !! Thanks alot CajunCenturion Private Sub MakeFolder_Click() Dim myNewFolder myNewFolder = Me![Text_makeDir] MkDir myNewFolder End Sub
Jun 30, 2003 #4 CajunCenturion Programmer Mar 4, 2002 11,381 US Timing is everything - Glad it worked out. Good Luck -------------- As a circle of light increases so does the circumference of darkness around it. - Albert Einstein Upvote 0 Downvote
Timing is everything - Glad it worked out. Good Luck -------------- As a circle of light increases so does the circumference of darkness around it. - Albert Einstein