matt_1ca Level: Scholar
 Registered: 27-03-2005 Posts: 42
|
Re: Showing VB Form Normal Size
Thanks, I was able to figure out the solution to the problem about 10 minutes ago:
I realize now that I needed the vbNormalFocus as the second argument to the Shell function.
My previous code left that second argument blank which caused my program to be minimized.
Said code called from VBA of AutoCAD is shown below:
Sub traversing()
Dim dblS As Double, q As String
q = Chr(34)
dblS = Shell("C:\AUTOCAD-SETUP\Lisp_2000\traverse.exe", vbNormalFocus)
End Sub
Matt
quote: humberto wrote:
can you explain my more aboutquote: I have created this VB executable which is triggered from a shell command from AutoCAD's built in VBA.
i think i can help you
[Edited by humberto on 29-03-2005 at 08:41 AM GMT]
|