Hello,

I have a text file called: list.txt
This is a list with all kind of lines like this:
Code:
14	II_ARM_S_CLO_CLO_CLOVER	IDS_PROPITEM_TXT_011946	1	1	IK1_ARMOR	IK2_CLOTH	IK3_CLOAK	=	TRUE	=	=	2000	50000	=	=	=	=	PARTS_CLOAK	=	1	=	=	1	1	=	1	=	=	=	1	1	_NONE
Ofcourse every line has different numbers and letters.

The complicated bit is this:

I want to let Button1 check whats in TextBox1.Text and search "list.txt" for it. When it has got a match (there is only ONE of these numbers in list.txt).
For example TextBox1.Text = "IDS_PROPITEM_TXT_011946". And I search for that so I find the line above. Now I want 3 other textboxes which show the 21st, 22nd, 23rd column/number after "IDS_PROPITEM_TXT_011946". And they should be editable by changing those 3 textboxes and clicking the apply button.
How can I best do this, and please give a little example.

~Thanks in Advance