LibreOffice 24.8 Help
αααα αΆαβαααα’ααβαααα αΌαβαααα»αβαααα’ααβαα½α αααβα’αααβααααΎβα’αΆα βαααα αΌαβα’αααααΒ α ααααααΆαβαααα αΌαβααααΌαβααΆαβαααααβαα βα’αααβαα½αΒ α
InputBox statement ααΊβααΆβαα·ααΈααΆαααααβααβααΆαβαααα½αβαααα»αβααΆαβαααα αΌαβα’αααααβααΆαβαααβαααα’ααβαα½αΒ α α’αα’αΆαβααααααΆαβαααα αΌαβαααβα α»α β ααααααα α¬ββα α»α αααα‘ααΒ α ααααααΆαβαααα αΌαβααααΌαβααΆαβαααα‘ααβααΆβαααααβαααα‘ααβα’αα»ααααΒ α ααααα·αβααΎβα’αααβαα·αβαααα’ααβααΆαα½αβ ααααααβ InputBox αααα‘ααβααααβα’ααααβααααααβααΌααα ("")Β α
InputBox (Prompt As String[, Title As String[, Default As String[, xpostwips As Integer, ypostwips As Integer]]]) As String
prompt: String expression displayed as the message in the dialog box.
title: String expression displayed in the title bar of the dialog box.
default: String expression displayed in the text box as default if no other input is given.
xpostwips: Integer expression that specifies the horizontal position of the dialog. The position is an absolute coordinate and does not refer to the window of LibreOffice.
ypostwips: Integer expression that specifies the vertical position of the dialog. The position is an absolute coordinate and does not refer to the window of LibreOffice.
If xpostwips and ypostwips are omitted, the dialog is centered on the screen. The position is specified in twips.
ααααβα’αααα
Sub ExampleInputBox
Dim sText As String
sText = InputBox ("Please enter a phrase:","Dear User")
MsgBox ( sText , 64, "Confirmation of phrase")
End Sub