Changing Directory Name

C

ckrogers

Hi! Novice VBA Programmer here.... I've got a directory set up for
attachments to a "Request for Quote" (RFQ). Once the RFQ gets assigned to a
quote, I want to change the directory name from the RFQ No. to the Quote No.
Here's the code I'm using ... but nothing's happening! Any suggestions?

Dim oldName As String
Dim newName As String

newName = "\\prpsrv1\users\Estimating Dept\Estimating DB\" &
Me.PRP_Quote_No
oldName = "\\prpsrv1\users\Estimating Dept\Estimating DB\RFQ_" & Me.RFQ_ID

If Me.PRP_Quote_No <> " " Then
If Dir(oldName, vbDirectory) <> "" Then
Name oldName As newName
End If
End If

Thanks!

Cindy
 
Top