Vb6 - System Alerting?

Discussion in 'Software' started by mastermosley, Jul 24, 2006.

  1. mastermosley

    mastermosley Sergeant

    I've been messing around in vb again and I was wondering if there a way to make the program to cause an alert or a pop-up when the program triggers it, for example when your Nortan Internet Expires it causes a pop-up telling you that it expired.
     
  2. foogoo

    foogoo Major "foogoo" Geek

    MsgBox

    Displays a message box

    Usage

    MsgBox prompt,buttons,title,helpfile,context

    where prompt = the text displayed on the message box buttons = combination of keywords to set out the layout of buttons and icons on the message box title = the title displayed in the message box titlebar

    Where the output from the message box is being assigned to a value (such as when there is a choice to be made, use parenthesis thus:

    string=MsgBox (prompt,buttons,title,helpfile,context)

    If no title is defined, the program name will be used instead. Button combination defaults to vbOKOnly if none is defined, and no icon will be displayed.

    Button Combinations

    vbOKOnly vbOKCancel vbAbortRetryIgnore vbYesNoCancel vbYesNo vbRetryCancel

    Icon Display

    vbCritical vbQuestion vbExclamation vbInformation

    Default Button

    vbDefaultButton1 vbDefaultButton2 vbDefaultButton3 vbDefaultButton4


    Examples

    MsgBox “An error has occurred!”,vbExclamation,”Error”

    Note that since the message is fixed, quotation marks have been used.

    Response=MsgBox(“Yes or no?”,vbYesNo + vbQuestion,”Choose one”)

    Note the parenthesis and how the vbYesNo and vbQuestion constants have been combined

    MsgBox "An error has occurred on line " & lineno, vbExclamation, "Error"
     
  3. mastermosley

    mastermosley Sergeant

    I am sorry to have made you write all that, it was after I realized what I wrote, yes I actually new all that. Well thanks for your help anyway.
     

MajorGeeks.Com Menu

Downloads All In One Tweaks \ Android \ Anti-Malware \ Anti-Virus \ Appearance \ Backup \ Browsers \ CD\DVD\Blu-Ray \ Covert Ops \ Drive Utilities \ Drivers \ Graphics \ Internet Tools \ Multimedia \ Networking \ Office Tools \ PC Games \ System Tools \ Mac/Apple/Ipad Downloads

Other News: Top Downloads \ News (Tech) \ Off Base (Other Websites News) \ Way Off Base (Offbeat Stories and Pics)

Social: Facebook \ YouTube \ Twitter \ Tumblr \ Pintrest \ RSS Feeds