List more drawings in File menu?

List more drawings in File menu?

Anonymous
Not applicable
261 Views
15 Replies
Message 1 of 16

List more drawings in File menu?

Anonymous
Not applicable
Hi,

Can anyone tell me how to increase the number of drawings available in the
drawing history shown at the bottom of the File menu? I'm using r14, win95.
Thanks.

Randy Walton
0 Likes
262 Views
15 Replies
Replies (15)
Message 2 of 16

Anonymous
Not applicable
Nope. It's a hard-coded limit.
__
RWalton wrote in message
news:801kja$k5r8@adesknews2.autodesk.com...
> Hi,
>
> Can anyone tell me how to increase the number of drawings available in
the
> drawing history shown at the bottom of the File menu? I'm using r14,
win95.
0 Likes
Message 3 of 16

Anonymous
Not applicable
I've seen several such utilities mentioned from time to tim in this
newsgroup. I'm sure you can find something over at www.dotsoft.com or
www.manusoft.com. However I'm currently developing an MRU utility for
AutoCAD 2000. It allows unlimited entries and even lets you remove entries.
Rather than being located under the file mnu, it sits in a dockable window.
If you would be interested in helping me debug, I can mail a copy to you.
BTW, that invitation goes out to everyone in this newsgroup. If you want
more details, email me at foquendo@hotmail.com

RWalton wrote in message
news:801kja$k5r8@adesknews2.autodesk.com...
> Hi,
>
> Can anyone tell me how to increase the number of drawings available in the
> drawing history shown at the bottom of the File menu? I'm using r14,
win95.
> Thanks.
>
> Randy Walton
>
>
0 Likes
Message 4 of 16

Anonymous
Not applicable
Frank,


In R14 you could also use DOSLIB's registry set and get functions to
write out the current drawing name (from a function in acad.lsp) to
one of a set of registry keys, then read them back and plop the list
into a simple DCL dialog. hmmm....

details to follow....

Matt
stachoni@bellatlantic.net

On Sat, 6 Nov 1999 12:19:04 -0600, "Frank Oquendo"
wrote:

>I've seen several such utilities mentioned from time to tim in this
>newsgroup. I'm sure you can find something over at www.dotsoft.com or
>www.manusoft.com. However I'm currently developing an MRU utility for
>AutoCAD 2000. It allows unlimited entries and even lets you remove entries.
>Rather than being located under the file mnu, it sits in a dockable window.
>If you would be interested in helping me debug, I can mail a copy to you.
>BTW, that invitation goes out to everyone in this newsgroup. If you want
>more details, email me at foquendo@hotmail.com
>
>RWalton wrote in message
>news:801kja$k5r8@adesknews2.autodesk.com...
>> Hi,
>>
>> Can anyone tell me how to increase the number of drawings available in the
>> drawing history shown at the bottom of the File menu? I'm using r14,
>win95.
>> Thanks.
>>
>> Randy Walton
>>
>>
>
0 Likes
Message 5 of 16

Anonymous
Not applicable
True but I prefer the new modeless dialogs A2K offers.
0 Likes
Message 6 of 16

Anonymous
Not applicable
Well, yeah, obviously, but I was suggesting this for those people
still on R14 (of which there are many).

Matt
stachoni@bellatlantic.net
On Mon, 8 Nov 1999 08:47:30 -0600, "Frank Oquendo"
wrote:

>True but I prefer the new modeless dialogs A2K offers.
>
0 Likes
Message 7 of 16

Anonymous
Not applicable
Terry Dotson already has an extended MRU in DCL. You can check it out at his
web site: http://www.dotsoft.com

Matt Stachoni wrote in message
news:Cv8mOMuUs47hLkmw5KnXyRfKL2lF@4ax.com...
> Well, yeah, obviously, but I was suggesting this for those people
> still on R14 (of which there are many).
>
> Matt
> stachoni@bellatlantic.net
> On Mon, 8 Nov 1999 08:47:30 -0600, "Frank Oquendo"
> wrote:
>
> >True but I prefer the new modeless dialogs A2K offers.
> >
>
0 Likes
Message 8 of 16

Anonymous
Not applicable
Matt,

> use DOSLIB's registry set
>

I have an idea that if you could manage to stuff the values into the
correct registry section (hive?), Acad might(?) just pick them up and
display them, available for picking (?). Unfortunately, this doesn't
seem possible with either dos_regset or the (undocumented but still
available, in R14) native Acad setenv, as they are only able to write
to their own (hard-coded) hives.

Fire up regedit & have a look around...

Oh, Owen?

hm
0 Likes
Message 9 of 16

Anonymous
Not applicable
Herman:

>Oh, Owen?

You called?

>I have an idea that if you could manage to stuff the values into the
>correct registry section (hive?), Acad might(?) just pick them up and
>display them, available for picking (?).

I've already investigated that angle. Unfortunately, AutoCAD has a fixed
internal limit (it contains four static buffers for storing the MRU files)
so no amount of registry tweaking will change anything. It would only take
10 to 15 minutes for an Autodesk programmer to increase the limit, so that
is really where our efforts should be directed. 🙂
--
Owen Wengerd
President, ManuSoft ==> http://www.manusoft.com
VP Americas, CADLock, Inc. ==> http://www.cadlock.com
0 Likes
Message 10 of 16

Anonymous
Not applicable
Herman,

You can get around Autodesk's built-in limitations by using DOSLib's
(dos_regset) and (dos_regget) functions - they write keys\values to
the HKey_Current_User\Software\Doslib section (by default), which has
the double effect of (a) allowing you as many dwg's to register as you
wish and (b) having the list be "owned" by the user's profile. It's
great if you are also incorporating roaming profiles from an NT
Server, because whenever the person logs on to any machine the correct
dwg. history pops up.

And you need to be careful about using (getenv) and (setenv) to read
registry values, as I think they are cached and flushed at drawing
exit. In R14 anyway, it can cause problems with numerous sessions
open.

Matt
stachoni@bellatlantic.net

On Mon, 08 Nov 1999 19:23:23 PST, Herman Mayfarth
wrote:

>Matt,
>
>> use DOSLIB's registry set
>>
>
>I have an idea that if you could manage to stuff the values into the
>correct registry section (hive?), Acad might(?) just pick them up and
>display them, available for picking (?). Unfortunately, this doesn't
>seem possible with either dos_regset or the (undocumented but still
>available, in R14) native Acad setenv, as they are only able to write
>to their own (hard-coded) hives.
>
>Fire up regedit & have a look around...
>
>Oh, Owen?
>
> hm
>
0 Likes
Message 11 of 16

Anonymous
Not applicable
OK. At least we know...:)
hm
0 Likes
Message 12 of 16

Anonymous
Not applicable
Matt,

> In R14 anyway, it can cause problems with
numerous sessions
> open.
>

Thanks for the heads up. I haven't really used
(setenv), yet, only verified that it does write
to the registry, & found its hive. I'll keep an
eye out for screwy behavior.

hm
0 Likes
Message 13 of 16

Anonymous
Not applicable
What modeless dialogs A2K offers? 🙂

On Mon, 8 Nov 1999 08:47:30 -0600, "Frank Oquendo"
wrote:

>True but I prefer the new modeless dialogs A2K offers.
>
0 Likes
Message 14 of 16

Anonymous
Not applicable
The Properties window and the Design Center are examples of modeless windows

Vladimir Nesterovsky wrote in message
news:382d4a1d.3101671@adesknews.autodesk.com...
> What modeless dialogs A2K offers? 🙂
>
> On Mon, 8 Nov 1999 08:47:30 -0600, "Frank Oquendo"
> wrote:
>
> >True but I prefer the new modeless dialogs A2K offers.
> >
>
0 Likes
Message 15 of 16

Anonymous
Not applicable
Yes, but how the programmer can use them?

If you're talking MFC, I think it was
possible in r14 also.

On Tue, 9 Nov 1999 11:48:11 -0600, "Frank Oquendo"
wrote:

>The Properties window and the Design Center are examples of modeless windows
>
>Vladimir Nesterovsky wrote in message
>news:382d4a1d.3101671@adesknews.autodesk.com...
>> What modeless dialogs A2K offers? 🙂
>>
>> On Mon, 8 Nov 1999 08:47:30 -0600, "Frank Oquendo"
>> wrote:
>>
>> >True but I prefer the new modeless dialogs A2K offers.
>> >
>>
>
0 Likes
Message 16 of 16

Anonymous
Not applicable
I use Jorge Lopez's Dockable Container control (A2K only). If you want to
check it out, look for ACCONT v1.1 in the Customer Files NG.

Vladimir Nesterovsky wrote in message
news:382aad2d.28465215@adesknews.autodesk.com...
> Yes, but how the programmer can use them?
>
> If you're talking MFC, I think it was
> possible in r14 also.
0 Likes