README.md

December 4, 2022 ยท View on GitHub

Simple Multi-Line MessageBox

Description

This code is my response to the codes using all the more difficult multiline messageboxes. I know it's nothing amazingly great, but it's rather simple and useful when needing a multiline messagebox. For more please visit www.theprynce.com.

More Info

Submitted On
ByThe Prynce
LevelBeginner
User Rating3.4 (17 globes from 5 users)
CompatibilityVB 6.0
CategoryVB function enhancement
WorldVisual Basic
Archive File

Source Code

Private sub command_click
moo = MsgBox("1) Go to www.theprynce.com" & vbCrLf & "2) Vote for it on all the listed TopSites." & vbCrLf & "3) Sit back, relax, and enjoy all the info provided.", vbInformation, "How We Do it!")
end sub