Visual LISP, AutoLISP and General Customization
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Dialogue Box Margins

12 REPLIES 12
Reply
Message 1 of 13
Anonymous
575 Views, 12 Replies

Dialogue Box Margins

Anonymous
Not applicable
Is there a way to decrease the margin width inside a dialogue box? By default, there's a rather thick margin when producing dialogue boxes with DCL, but I noticed some the acad "help file" dialogue boxes are very thin. Is it possible to manipulate the margin settings inside dialogue boxes with DCL?

Thanks in advance!!

Frank
0 Likes

Dialogue Box Margins

Is there a way to decrease the margin width inside a dialogue box? By default, there's a rather thick margin when producing dialogue boxes with DCL, but I noticed some the acad "help file" dialogue boxes are very thin. Is it possible to manipulate the margin settings inside dialogue boxes with DCL?

Thanks in advance!!

Frank
12 REPLIES 12
Message 2 of 13
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
Use the fixed_width = true; attribute on your tiles to decrease the size of you dialogs.


HTH


Bill
0 Likes

Use the fixed_width = true; attribute on your tiles to decrease the size of you dialogs.


HTH


Bill
Message 3 of 13
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
Thanks, Bill!
I already have that attribute in place. What I'm trying to do is increase the amount of useable space within a given dialogue box by decreasing the margins. Any suggestions on how this can be done?

Thanks again!!

Frank
0 Likes

Thanks, Bill!
I already have that attribute in place. What I'm trying to do is increase the amount of useable space within a given dialogue box by decreasing the margins. Any suggestions on how this can be done?

Thanks again!!

Frank
Message 4 of 13
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
Can you post an image?

What do you mean "usable space"

Bill
0 Likes

Can you post an image?

What do you mean "usable space"

Bill
Message 5 of 13
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
Try this and see if it helps:

children_fixed_width=true; children_fixed_height=true;

--

Gary D. Fowler - Architect
Architettura, Inc.
609 W. 15th St. Suite 140
Plano, Tx. 75075
phone 972.509.0088
fowler@architettura-inc.com



wrote in message news:4966765@discussion.autodesk.com...
Thanks, Bill!
I already have that attribute in place. What I'm trying to do is increase
the amount of useable space within a given dialogue box by decreasing the
margins. Any suggestions on how this can be done?

Thanks again!!

Frank
0 Likes

Try this and see if it helps:

children_fixed_width=true; children_fixed_height=true;

--

Gary D. Fowler - Architect
Architettura, Inc.
609 W. 15th St. Suite 140
Plano, Tx. 75075
phone 972.509.0088
fowler@architettura-inc.com



wrote in message news:4966765@discussion.autodesk.com...
Thanks, Bill!
I already have that attribute in place. What I'm trying to do is increase
the amount of useable space within a given dialogue box by decreasing the
margins. Any suggestions on how this can be done?

Thanks again!!

Frank
Message 6 of 13
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
vertical_margin = none;
horizontal_margin = none;

wrote in message news:4966704@discussion.autodesk.com...
Is there a way to decrease the margin width inside a dialogue box? By
default, there's a rather thick margin when producing dialogue boxes with
DCL, but I noticed some the acad "help file" dialogue boxes are very thin.
Is it possible to manipulate the margin settings inside dialogue boxes with
DCL?

Thanks in advance!!

Frank
0 Likes

vertical_margin = none;
horizontal_margin = none;

wrote in message news:4966704@discussion.autodesk.com...
Is there a way to decrease the margin width inside a dialogue box? By
default, there's a rather thick margin when producing dialogue boxes with
DCL, but I noticed some the acad "help file" dialogue boxes are very thin.
Is it possible to manipulate the margin settings inside dialogue boxes with
DCL?

Thanks in advance!!

Frank
Message 7 of 13
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
Thanks for all the help!! I really appreciate everyone's time and energy!! Mataeux's vertical_margin = none; and the horizontal_margin = none; did the trick!!

Best regards,
Frank
0 Likes

Thanks for all the help!! I really appreciate everyone's time and energy!! Mataeux's vertical_margin = none; and the horizontal_margin = none; did the trick!!

Best regards,
Frank
Message 8 of 13
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
Careful! From Developer help:

The following tile attributes are restricted. Do not use them in your DCL
files:
- horizontal_margin
- vertical_margin
- type

See attached image.
--
Daniel J. Altamura, R.A.
Altamura Architectural Consulting
and SoftWorx, Autodesk Authorized Developer
http://partnerproducts.autodesk.com/popups/company.asp?rdid=2139
-----------------------------------------------------------------------


wrote in message news:4967264@discussion.autodesk.com...
Thanks for all the help!! I really appreciate everyone's time and
energy!! Mataeux's vertical_margin = none; and the horizontal_margin =
none; did the trick!!

Best regards,
Frank
0 Likes

Careful! From Developer help:

The following tile attributes are restricted. Do not use them in your DCL
files:
- horizontal_margin
- vertical_margin
- type

See attached image.
--
Daniel J. Altamura, R.A.
Altamura Architectural Consulting
and SoftWorx, Autodesk Authorized Developer
http://partnerproducts.autodesk.com/popups/company.asp?rdid=2139
-----------------------------------------------------------------------


wrote in message news:4967264@discussion.autodesk.com...
Thanks for all the help!! I really appreciate everyone's time and
energy!! Mataeux's vertical_margin = none; and the horizontal_margin =
none; did the trick!!

Best regards,
Frank
Message 9 of 13
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
that just means that those names cannot be used for user-defined attributes
because they are used in the base dcl. yesno? if not, i invite autodesk to
sue me!


; "R.A." wrote in message
news:4967498@discussion.autodesk.com...
Careful! From Developer help:

The following tile attributes are restricted. Do not use them in your DCL
files:
- horizontal_margin
- vertical_margin
- type

See attached image.
--
Daniel J. Altamura, R.A.
Altamura Architectural Consulting
and SoftWorx, Autodesk Authorized Developer
http://partnerproducts.autodesk.com/popups/company.asp?rdid=2139
-----------------------------------------------------------------------


wrote in message news:4967264@discussion.aut
odesk.com...
Thanks for all the help!! I really appreciate everyone's time and
energy!! Mataeux's vertical_margin = none; and the horizontal_margin =
none; did the trick!!

Best regards,
Frank
0 Likes

that just means that those names cannot be used for user-defined attributes
because they are used in the base dcl. yesno? if not, i invite autodesk to
sue me!


; "R.A." wrote in message
news:4967498@discussion.autodesk.com...
Careful! From Developer help:

The following tile attributes are restricted. Do not use them in your DCL
files:
- horizontal_margin
- vertical_margin
- type

See attached image.
--
Daniel J. Altamura, R.A.
Altamura Architectural Consulting
and SoftWorx, Autodesk Authorized Developer
http://partnerproducts.autodesk.com/popups/company.asp?rdid=2139
-----------------------------------------------------------------------


wrote in message news:4967264@discussion.aut
odesk.com...
Thanks for all the help!! I really appreciate everyone's time and
energy!! Mataeux's vertical_margin = none; and the horizontal_margin =
none; did the trick!!

Best regards,
Frank
Message 10 of 13
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
Perhaps you are right. I don't know. This was just something that I
noticed and wanted to pass on for consideration.

Dan
--
Daniel J. Altamura, R.A.
Altamura Architectural Consulting
and SoftWorx, Autodesk Authorized Developer
http://partnerproducts.autodesk.com/popups/company.asp?rdid=2139
-----------------------------------------------------------------------


"mataeux" wrote in message
news:4967542@discussion.autodesk.com...
that just means that those names cannot be used for user-defined attributes
because they are used in the base dcl. yesno? if not, i invite autodesk to
sue me!
0 Likes

Perhaps you are right. I don't know. This was just something that I
noticed and wanted to pass on for consideration.

Dan
--
Daniel J. Altamura, R.A.
Altamura Architectural Consulting
and SoftWorx, Autodesk Authorized Developer
http://partnerproducts.autodesk.com/popups/company.asp?rdid=2139
-----------------------------------------------------------------------


"mataeux" wrote in message
news:4967542@discussion.autodesk.com...
that just means that those names cannot be used for user-defined attributes
because they are used in the base dcl. yesno? if not, i invite autodesk to
sue me!
Message 11 of 13
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
IMO: Those attributes are not needed.

I have yet to construct a dialog box that has the problem that you describe.

Here's an example of what most of mine look like:
0 Likes

IMO: Those attributes are not needed.

I have yet to construct a dialog box that has the problem that you describe.

Here's an example of what most of mine look like:
Message 12 of 13
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
here are two examples of linked lists where it useful to push the list boxes
together with no margins.

wrote in message news:4967758@discussion.autodesk.com...
IMO: Those attributes are not needed.

I have yet to construct a dialog box that has the problem that you describ
0 Likes

here are two examples of linked lists where it useful to push the list boxes
together with no margins.

wrote in message news:4967758@discussion.autodesk.com...
IMO: Those attributes are not needed.

I have yet to construct a dialog box that has the problem that you describ
Message 13 of 13
Anonymous
in reply to: Anonymous

Anonymous
Not applicable
Looks like you're on XP.

That could be the difference.


Bill
0 Likes

Looks like you're on XP.

That could be the difference.


Bill

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

AutoCAD Inside the Factory


Autodesk Design & Make Report