chris-uk-lad
11-04-2008, 01:15 AM
Hi all,
Tried finding a solution in this site but couldnt find one for searching a string for a specified character (if you see one, link me :x)
Im searching through a column to create folders based on a field value. At a point i come across a field value that contains a date, so i wish to find the values that contain a date, and when found, replace the / with ~ to allow me to create.
e.g
James 01/01/01
James 01~01~01
Atm im using the code
Do Until Name.EOF
count = 1
MkDir strTempFilePath & "\" & Name![aName]
jumpin1:
Name.MoveNext
Loop
Tried finding a solution in this site but couldnt find one for searching a string for a specified character (if you see one, link me :x)
Im searching through a column to create folders based on a field value. At a point i come across a field value that contains a date, so i wish to find the values that contain a date, and when found, replace the / with ~ to allow me to create.
e.g
James 01/01/01
James 01~01~01
Atm im using the code
Do Until Name.EOF
count = 1
MkDir strTempFilePath & "\" & Name![aName]
jumpin1:
Name.MoveNext
Loop