chris-uk-lad
Registered User.
- Local time
- Today, 09:37
- Joined
- Jul 8, 2008
- Messages
- 271
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
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
Code:
Do Until Name.EOF
count = 1
MkDir strTempFilePath & "\" & Name![aName]
jumpin1:
Name.MoveNext
Loop