SHARE
TWEET

Untitled




Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- Sub Makro1()
- MsgBox ("Mój komunikat")
- MsgBox (Date)
- a = "To jest tekst domyslny"
- MsgBox (a)
- MsgBox ("Komunikat: " + a)
- b = InputBox("Podaj tekst: ")
- MsgBox (a + " " + b)
- Dim c, d As Integer
- c = InputBox("Podaj pierwsza liczbę: ")
- d = InputBox("Podaj drugą liczbę: ")
- MsgBox (c + d)
- MsgBox (c - d)
- MsgBox (c * d)
- MsgBox (c / d)
- MsgBox (c + Str(d))
- End Sub
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.