Click here to Skip to main content
15,892,161 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
The below code seems to provide the answer I need to another problem, but I keep getting the error listed. What am I missing?

public delegate void AddEventHandlerToSPDialogEvent(object sender, PDialogEventHandler e);
public class SPDialogEventHandler : EventArgs
{
  public int dialogResult { get; set; } // 0 or 1
  public string ReturnValues { get; set; } 
  public SPDialogEventHandler(int result, string list)
  {
    ReturnValues = list;
    dialogResult = result;
  }
}
Posted
Comments
[no name] 1-Apr-13 21:53pm    
The error means exactly what it says. You are missing a reference to whatever assembly PDialogEventHandler is declared in or you are missing a using statement.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900