Gets the help's context number for the syntax or execution error.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
SyntaxReadOnly Property HelpFile As String
Get
property String^ HelpFile {
String^ get ();
}
Property Value
String
Te help's context number for the syntax or execution error.
Remarks
This property works in conjunction with the other error properties to
allow your application access to the source
of a WinWrap Basic syntax or execution error.
Example
Display the error help context during the ErrorAlert event:
private void basicIdeCtl1_ErrorAlert(object sender, System.EventArgs e)
{
MessageBox.Show("Error.HelpContext = " + basicIdeCtl1.Error.HelpContext);
}
Private Sub BasicIdeCtl1_ErrorAlert ( ByVal sender As Object, ByVal e As System.EventArgs)
MessageBox.Show("Error.HelpContext = " & BasicIdeCtl1.Error.HelpContext)
End Sub
private: System::Void basicIdeCtl1_ErrorAlert(System::Object ^ sender, System::EventArgs ^ e)
{
MsgBox::Show(L"Error->HelpContext = " + basicIdeCtl1->Error->HelpContext.ToString());
}
See Also