G
Guest
Code below:
// initalize function
not = new OpenNETCF.WindowsCE.Forms.Notification();
not.BalloonChanged +=new BalloonChangedEventHandler(not_BalloonChanged);
not.ResponseSubmitted +=new
ResponseSubmittedEventHandler(not_ResponseSubmitted);
// some other function
not.Caption = "Sync";
not.InitialDuration = 10;
not.Text = "<form method=\"GET\" action=notify><input type=button
name=OKbutton value=OK></form>";
not.Visible = true;
private void not_ResponseSubmitted(object sender, ResponseSubmittedEventArgs
respevent)
{
MessageBox.Show("raised");
}
No messagebox is raised when i click the OK button, where am i going wrong?
Thanks
// initalize function
not = new OpenNETCF.WindowsCE.Forms.Notification();
not.BalloonChanged +=new BalloonChangedEventHandler(not_BalloonChanged);
not.ResponseSubmitted +=new
ResponseSubmittedEventHandler(not_ResponseSubmitted);
// some other function
not.Caption = "Sync";
not.InitialDuration = 10;
not.Text = "<form method=\"GET\" action=notify><input type=button
name=OKbutton value=OK></form>";
not.Visible = true;
private void not_ResponseSubmitted(object sender, ResponseSubmittedEventArgs
respevent)
{
MessageBox.Show("raised");
}
No messagebox is raised when i click the OK button, where am i going wrong?
Thanks