(adsbygoogle = window.adsbygoogle || []).push({});
If anyone can do this for me it will be helpful.
Create pop-up boxes that actually DO something
Must have 2 alert boxes with “fun” alerts
Must have 2 confirm boxes that do something – i.e. continue on to the page it interrupted, download a file, play a song ect.
Must have 2 prompt boxes to collect information form the user, then use that information to “return” a response to the user
Bonus- Make the button to get the popup boxes be an image instead of a button
Yeah, This seems like its very basic so I recommend looking for these on google as you'll find more answers then here at NGU. This section is pretty dead.
Must have 2 alert boxes with “fun” alerts
Must have 2 confirm boxes that do something – i.e. continue on to the page it interrupted, download a file, play a song ect.
Must have 2 prompt boxes to collect information form the user, then use that information to “return” a response to the user
Bonus- Make the button to get the popup boxes be an image instead of a button
And Thanks for any of the help.
wow, thats random.. just thought about looking for some basic java and BOOM ill do it!
If MessageBox.Show("Would you like to send a key request", "Key request", MessageBoxButtons.YesNo,
MessageBoxIcon.Question) = Windows.Forms.DialogResult.Yes Then
'Perform action of clicking yes
Else
'Perform action of clicking no
End If
C#
DialogResult dialogResult = MessageBox.Show("TEXT", "Some Title", MessageBoxButtons.YesNo);
if (dialogResult == DialogResult.Yes)
{
//Perform action of clicking yes
}
else if (dialogResult == DialogResult.No)
{
//Perform action of clicking NO
}