You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simply calls MessageBox on Windows and returns the result.
2
+
Simply calls MessageBox using the Windows API and returns the result.
3
+
4
+
This is very useful if you want to set reminders through Task Scheduler, so much so that I don't understand why this isn't a standard app.
5
+
6
+
## Example usage
7
+
The syntax is "messagebox *content**title**type*" where `type` is an integer representing various properties of the message box. The full list of message box types and return codes are available in the Microsoft documentation for MessageBox [here](https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-messagebox).
8
+
9
+
```
10
+
messagebox "This is the content of the message" "Title" 0
11
+
```
12
+
13
+
Since the result of the messagebox is returned, its value is stored in the `errorlevel` variable.
0 commit comments