Announcement

Collapse
No announcement yet.

TextBox

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    TextBox

    Script newbie question...

    What is the correct syntax for TextBox in a VB script (not .net)? I simply want the user to enter a text string. Everything I find is for .net.

    Thanks.

    #2
    Is it the Inputbox you're looking for (or did I get the question wrong)?

    This should work in regular VB and .NET:
    Dim inp As String
    inp = InputBox("This is the question", "This is the title")
    MsgBox (inp)
    HSPro 3.0.0.458, Z-NET with Z-wave plugin 3.0.1.190, RFXCOM + 2x RFXtrx433E, HSTouch, Squeezebox plugin, iTach IP/WF2IR & GC-100-6 with UltraGCIR, BLDenon, NetcamStudio, Jon00s Webpage builder, Harmony Hub plugin, SCSIP (with FreePBX), Arduino plugin, IFTTT, Pushalot plugin, Device History plugin.
    Running on Windows 10 (64) virtualized
    on ESXi (Fujitsu Primergy TX150 S8).
    WinSeer (for Win10) - TextSeer - FitbitSeer - HSPI_MoskusSample

    Are you Norwegian (or Scandinavian) and getting started with HomeSeer? Read the "HomeSeer School"!

    Comment


      #3
      Thank you.

      Comment

      Working...
      X