Well, if your records are pretty much the same as you
have described, then all you have to do is run a sed
script to convert these into a tab-delimited record,
which the following script does.
To run this script, from the command line (DOS prompt) type
sed -f sedscript 'name_of_CV_file' > 'tab_delimited_file'
(assuming you call the following sed script 'sedscript.')
If you don't have sed installed on your machine you can
get it at
http://gnuwin32.sourceforge.net/packages/sed.htm
This version of sed requires libintl-2.dll and libiconv-2.dll
that is also provided on the same HTML page.
After you create a tab-delimited text file, you suck it into
Access pretty much as I already described above.
In the following sed script the lines that start with '#'
are comments (which may remain in the script).
The following sed script should go into a text file and named
something like 'sedscript':
### Delete all the ----------- lines
s/----*$//
/Name: / {
### Read next 6 lines in as a block
N
N
N
N
N
N
### Delete 'Name:'
s/Name: *//
### Delete 'Sex:'
s/Sex: *//
### Delete 'DOB:'
s/DOB: *//
### Delete 'Tel:'
s/Tel: *//
### Delete 'Email:'
s/Email: *//
### Delete 'JobTitle:'
s/JobTitle: *//
### Delete 'Experience:'
s/Experience: *//
### Change newline to tab character
s/\n/\t/g
}
### Delete empty lines
/^$/d