Si lo que quieres es obtener el título, sólo tienes que hacer así:
Código vb.net:
Ver originalIf isRuning("notepad") Then
Dim notepad As ArrayList = New ArrayList(Process.GetProcessesByName("notepad"))
For Each i As Process In notepad
RichTextBox1.Text = i.MainWindowTitle
Next
End If