M
Matt
In a form I have used a button to create a folder in a particular location
on a server, naming the folder using two fields from each record as below
MyFolder = Me![txtRef] & "_" & Me[txtName]
MyPath = "\\Server\PPS\LossFiles"
MkDir MyPath & "\" & MyFolder
On the form after the folder as been created, I want to retain the location
of the folder so that I can access the folder from within the form. How can I
do this??
Thanks in advance
Matt
on a server, naming the folder using two fields from each record as below
MyFolder = Me![txtRef] & "_" & Me[txtName]
MyPath = "\\Server\PPS\LossFiles"
MkDir MyPath & "\" & MyFolder
On the form after the folder as been created, I want to retain the location
of the folder so that I can access the folder from within the form. How can I
do this??
Thanks in advance
Matt