I've got a Form Script that will require a pop-up windows w Y/N (or Y/N/C). In the IDE, I can see declarations for:
ShowMessage(string Prompt, wsMessageStyle Buttons) and ShowMessage (string Prompt, wsMessageStyle Buttons, wsMessageStyle Icon).
So if I use, say,: Application.ShowMessage("Do you agree?", wsMessageStyle.wsYesNo);
I get: error CS0012: The type 'Microsoft.VisualBasic.MsgBoxStyle' is defined in an assembly that is not referenced. You must add a reference to assembly 'Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.
How do I get the window to pop up how I want? Or do I have to create a separate Event that fires first to get the pop up with Ask().