vbscripting/inputbox_testing.vbs

18 lines
523 B
Text
Raw Normal View History

2022-10-11 10:29:27 +03:00
Rem �������� ������ ��� �������� ������������ �������� InputBox
Option Explicit
Dim result
result = InputBox("����� ���-������ �/��� ����� �����-������ ��������", "InputTest()")
MsgBox result
'���������:
'� ������, � ������ ������ - �������������� ���������.
'� result, � ����� �� ���� �������, ����������� �������.
'VBS, ��������, �� ����� ������� NULLable.
'������� ������ �������� ����� ����������� ��� ������ ������.
'� � ���������� ������� (������ ����� � ������ OK)
'� result ����������� �����.