Hi All, new member here..

Basically, I have .txt file with data as below:

moref:800
name:nox-A
uuid:564d3ae6-5c80-79bb-daee-60b0215df8ee
ipaddr:192.168.1.12
moref:810
name:nox-B
uuid:564d29e7-d264-b779-870c-f402936b41dc
ipaddr:192.168.1.14
moref:832
name:nox-C
uuid:564d943d-0801-7f3d-0297-f428999e3619
ipaddr:192.168.1.16

I want to open this .txt in RichTextBox with some filtering via combobox. Let say, If I choose "name" from combobox, richtextbox only display :
nox-A
nox-B
nox-C

If ipaddr via combobox :
192.168.1.12
192.168.1.14
192.168.1.16

I know how to open via richtextbox but donno how to filter it. Hope someone can guide me on how to achieve this.

Thanks