Transparent commands during GetPoint?
Not applicable
09-25-2012
11:59 AM
I'm using Application.ShowModalDialog to display a modal form to the user launched from a button on a tab in a PaletteSet. The modal dialog lets the user click a button to select a point. Is there any way that I can let the user run transparent commands and still return to the modal dialog?
The ideal would be for the user to be able to zoom and pan transparently from the GetPoint prompt. I could also provide a button to allow the user to reposition the drawing.
Any ideas?
Thanks
Using edUsrInt As EditorUserInteraction = ed.StartUserInteraction(Me.Handle) ' Get the insertion point from the user Dim prPtOpts As New PromptPointOptions(vbLf & "Select center point: ") prPtRes = ed.GetPoint(prPtOpts) transientGraphic = DrawTransientGraphic(prPtRes.Value, BlockScale) edUsrInt.End() Me.Focus() End Using
Link copied