A
Al Grant
Hi folks,
Sorta a followon from my "on focus clipboard" message.
I want to parse the data on the clipboard into textbox of a userform.
The data looks like:
Pers ID: 20456035839 Master RNS: 5476121
(Real) SMITH, MICHAEL JOHN
(Contact Address) 8 FORD ROAD, WHITTAMS, AUCKLAND CITY 1750
I had a go myself and ended up hardcoding everyting - it was pretty ugly.
lines like
RNS = Mid(clipbd_string, InStr(clipbd_string, "Master RNS: ") + Len("Master
RNS: "), 8) 'RNS max length is 8
Surname_name = Mid(clipbd_string, 52, (InStr(clipbd_string, ",") - 52))
Anyone have any better ideas?
-Al
Sorta a followon from my "on focus clipboard" message.
I want to parse the data on the clipboard into textbox of a userform.
The data looks like:
Pers ID: 20456035839 Master RNS: 5476121
(Real) SMITH, MICHAEL JOHN
(Contact Address) 8 FORD ROAD, WHITTAMS, AUCKLAND CITY 1750
I had a go myself and ended up hardcoding everyting - it was pretty ugly.
lines like
RNS = Mid(clipbd_string, InStr(clipbd_string, "Master RNS: ") + Len("Master
RNS: "), 8) 'RNS max length is 8
Surname_name = Mid(clipbd_string, 52, (InStr(clipbd_string, ",") - 52))
Anyone have any better ideas?
-Al