I am currently generating a hyperlink to a file located at the
following directory G:\Call Center\APP\APP_ 2006\APP*001 based on a
numberical value that in entered in on a form.
The problem im encountering is that the network directory that im
generating the link from has several changing variables that need to be
taken into accoun
G:\Call Center\APP\APP_ 2006\APP*001 - the year 2006 changes every
year. So come the year 2007 the link needs to change to that.
In addition the APP*001 - The * (astrick) represents a numberical value
that changes 1 number every 999 records and then the file name entered
in on the original for will change back to 1 and start over. Currently
this is the code that I am using
Private Sub File_Scan_Name_ GotFocus()
Scanned_Contrac t.Text = "G:\Call Center\APP\APP_ 2006\APP" &
Left(File_Scan_ Name.Value, 1) & "001\APP" & Right("0000" &
File_Scan_Name. Value, 3) & ".tif"
End Sub
Can someone help me out with this there has got to be an easier way.
Thank you -
Turf
following directory G:\Call Center\APP\APP_ 2006\APP*001 based on a
numberical value that in entered in on a form.
The problem im encountering is that the network directory that im
generating the link from has several changing variables that need to be
taken into accoun
G:\Call Center\APP\APP_ 2006\APP*001 - the year 2006 changes every
year. So come the year 2007 the link needs to change to that.
In addition the APP*001 - The * (astrick) represents a numberical value
that changes 1 number every 999 records and then the file name entered
in on the original for will change back to 1 and start over. Currently
this is the code that I am using
Private Sub File_Scan_Name_ GotFocus()
Scanned_Contrac t.Text = "G:\Call Center\APP\APP_ 2006\APP" &
Left(File_Scan_ Name.Value, 1) & "001\APP" & Right("0000" &
File_Scan_Name. Value, 3) & ".tif"
End Sub
Can someone help me out with this there has got to be an easier way.
Thank you -
Turf
Comment