hello, anyone can help me with vb project about dos -> vb?

VB Code:
  1. Private Sub cmdGO_Click()
  2. Text2.Text = "C:\pm.exe"
  3. loader
  4. End Sub
  5.  
  6. Private Sub loader()
  7.  Dim CommandWindowName As String
  8.    Dim SendToDos As String
  9.    Clipboard.Clear
  10.    
  11.    SendToDos = Text1.Text
  12.    
  13.    Clipboard.SetText SendToDos + Chr$(13)
  14.  
  15. Dim lFoundWindow As Long
  16. Dim manu As Long
  17. Dim lOK As Long
  18. Dim lOK1 As Long
  19. Dim X As Variant
  20. z = Text2.Text
  21.   Shell z, vbHide
  22.      
  23. lFoundWindow = FindWindow(vbNullString, z)
  24. manu = FindWindow(vbNullString, "Form1")
  25.      
  26.        
  27.        
  28.             lOK1 = ShowWindow(lFoundWindow, 9)
  29.             lOK1 = ShowWindow(lFoundWindow, 10)
  30.               SendKeys "% ee", 1
  31.               SendKeys "% ep", 1
  32.              
  33.       lOK = SetForegroundWindow(manu)
  34.        
  35.         lFoundWindow = 0
  36.         lOK = 0
  37.         lOK1 = 0
  38.  
  39. End Sub

This is the code.. when you enter in a textbox and the result will show in the dos prompt... i want this dos prompt not to be displayed anymore then i want the result to be displayed in listbox or textbox (multiline)

p.s for my english...


thanks..