I got MartinLiss' custom input box (found HERE) and I'm using it to return a string in a function.. The function I'm using is:

VB Code:
  1. Private Sub cmd_start_Click()
  2.   Dim lala
  3.   lala = InputBox2("test", "test2")
  4.   MsgBox lala
  5. End Sub
  6.  
  7. Private Function InputBox2(prm As String, ttl As String) As String
  8.   frmInputBox.title = prm
  9.   frmInputBox.prompt = ttl
  10.   frmInputBox.Display
  11. End Function

Maybe I'm not thinking right, but I can't find a way for the input box to return the value to "lala".. is there any way to do this? If you want to check out the input box script, just download it off of that link.