• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    Autodesk Alias

    Reply
    New Member
    Posts: 1
    Registered: ‎05-31-2012

    Application Losing Control on SelectOnScreen

    56 Views, 0 Replies
    05-31-2012 03:46 AM

    Hello all,

    i have this vb.net code, when the code is executed, after calling SelectOnScreen function, it does not throw any exception, but control path is lost and next lines in this code are not executed.

     

     

     

    On Error GoTo ErrorHandler


    Dim selSet As AcadSelectionSet

     

    If doc Is Nothing Then Exit Sub    'doc is AcadDocument
    selSet = doc.SelectionSets.Add("DocType")    


    selSet.SelectOnScreen()    'Control is lost here

     

    'Some line of code that never executes

     

    selSet.Delete()
    Exit Sub


    ErrorHandler:
    MessageBox.Show("Error")

    End Sub

    Please use plain text.