Message 1 of 19
Transparent commands don't work with editorinput.getxxxx acad2015
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have my application that work correctly with acad2014 and now I have installed Acad2015 and I have see that now the transparent command don't work with all editorinput.getxxxx function.
I have already try to recompile with the new managed library 2015 but it's the same problem.
Someone have already solved?
Thanks.
Dim ReqPnt As AcEd.PromptPointOptions
ReqPnt = New AcEd.PromptPointOptions(ControlChars.Lf & "Select point : ") ********* HERE I GIVE 'OSMODE 512
ReqPnt.AllowArbitraryInput = True
ReqPnt.AllowNone = False
Dim ValPnt As AcEd.PromptPointResult
ValPnt = Ed.GetPoint(ReqPnt)
If ValPnt.Status <> AcEd.PromptStatus.OK Then
Return
End If