Visual Basic 2008 Messagebox generator, this is a simple tutorial on how to make a msgbox generator in vb08. You can make more advanced ones but this is a simple one Codes: If RadioButton1.Checked = True Then MsgBox(""&TextBox2.Text, MsgBoxStyle.Critical, ""&TextBox1.Text) ElseIf RadioButton2.Checked = True Then MsgBox(""&TextBox2.Text, MsgBoxStyle.Information, ""&TextBox1.Text) ElseIf RadioButton3.Checked = True Then MsgBox(""&TextBox2.Text, MsgBoxStyle.Exclamation, ""&TextBox1 ...