Results 1 to 2 of 2

Thread: Select multiple objects

  1. #1
    Leonard Johnson Guest

    Select multiple objects

    I've been working with this example of selecting objects. I can't seem to figure out how to select multiple or more than one object. Can anyone point me in the right direction?

    Public Sub ScaleObject()Dim objDrawingObject As AcadEntityDim varEntityPickedPoint As VariantDim varBasePoint As VariantDim dblScaleFactor As DoubleOn Error Resume Next ThisDrawing.Utility.GetEntity objDrawingObject, varEntityPickedPoint, _ "Please pick an entity to scale: "If objDrawingObject Is Nothing Then MsgBox "You did not choose an object" Exit SubEnd IfvarBasePoint = ThisDrawing.Utility.GetPoint(, _ "Pick a base point for the scale:")dblScaleFactor = ThisDrawing.Utility.GetReal("Enter the scale factor: ")'Scale the objectobjDrawingObject.ScaleEntity varBasePoint, dblScaleFactorobjDrawingObject.UpdateEnd Sub

  2. #2
    Jeff Mishler Guest
    Use a selection set.....

    --
    Jeff
    check out www.cadvault.com
    "Leonard Johnson" <leonard@phalighting.com> wrote in message
    news:41b5f6e9_3@newsprd01...
    I've been working with this example of selecting objects. I can't seem to
    figure out how to select multiple or more than one object. Can anyone point
    me in the right direction?

Similar Threads

  1. select objects
    By in forum Cadence
    Replies: 2
    Last Post: 12-08-2005, 01:10 AM
  2. Replies: 6
    Last Post: 03-24-2005, 07:26 PM
  3. Replies: 2
    Last Post: 01-20-2005, 07:43 PM
  4. Too many Select Objects and get Object id
    By Clarence in forum Customization
    Replies: 19
    Last Post: 01-12-2005, 07:33 PM
  5. Too Many "select objects"
    By Clarence in forum Customization
    Replies: 8
    Last Post: 01-07-2005, 01:25 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other forums: Access Forum - Microsoft Office Forum - Exchange Server Forum