Hey last day i tried to make a program that can view document files...You only need to put the files in a special folder then the programs start it will view all the documents in a listbox(lstDocument).

Pic main:

and the problem i have is that then i have add the read the files in the folder and then it add each document to the lstbox it only shows random chars fgt29
like this:


adn now for my code is:
Code:
 Private Sub Main_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        For Each item In My.Resources._Imports
            lstDocument.Items.Add(item)
        Next
    End Sub
So whats the problem?

Shouldi use a special folder like C:/docs/
or in my resource...im using my resource now.