Search found 342 matches

Re: Drawing 3D solid shapes with IntelliCAD VBA from inside Excel- draws text,lines,circles but no 3D solids like boxes

Hi, First, we're talking about the IntelliCAD, not AutoCAD. And the script command requests a file with the extension scr, (not .txt as you wrote). Here is the code to call the command in VBA for excel: Public Sub SendCommandEx(iCadApp As Object) '(command "_.script" "C:\\IntelliCAD\\...

Re: Drawing 3D solid shapes with IntelliCAD VBA from inside Excel- draws text,lines,circles but no 3D solids like boxes

Hi, For the VBA in Excel, please use this sub Public Sub startIcad() Dim cadObj As Object Dim AcAppClID As String AcAppClID = "ICAD.Application" On Error Resume Next 'try if IntelliCAD already is started Set cadObj = GetObject(, AcAppClID) If cadObj Is Nothing Then 'IntelliCAD is not runni...

Re: AcquirePoint

Hi, Try to replace the Jig with this one: Public Function Jig() As Boolean Try Dim pr As PromptResult Do pr = AcEditor.Drag(Me) ' Keyword handling code If pr.Status = PromptStatus.Keyword Then Else Me.mCurJigFactorIndex += 1 End If Loop While (pr.Status <> PromptStatus.Cancel AndAlso pr.Status <> Pr...

Go to advanced search