AutoCad :: Insert Drawing Via Pulldown Menu From Created CUI
Mar 1, 2012
Any way I can insert a drawing, via pulldown menu from a created cui, and not have to hit enter 3x in a row. I would like to see if there is a way to bypass having to enter an x and y scale factor and rotation.
View 5 Replies
ADVERTISEMENT
Feb 13, 2013
code:
Dim Menu As AcadPopupMenuSet Menu = ThisDrawing.Application.MenuGroups.Item(0).Menus.Add("No.")Menu.AddMenuItem Menu.Count + 1, "1", "^C^C_open"Menu.AddMenuItem Menu.Count + 1, "2", "^C^C_open"Menu.AddMenuItem Menu.Count + 1, "3", "^C^C_open"Menu.AddMenuItem Menu.Count + 1, "4", "^C^C_open"
i created a menu called "NO." with 4 items under it "1","2","3","4"
my question is :How can i insert icon for items under this menu?
View 2 Replies
View Related
Apr 29, 2013
The 'Edit' pulldown menu is missing from my version AutoCAD 2013. Additionally, the commands found in that pulldown are disabled, so 'undo' 'copy' 'paste' and etc are all non functional. The 'View' 'Format' 'Insert' 'Tools' pulldowns are also missing. Everything in the ribbon, also gone.
The problem occurred when CAD froze and I had to restart the computer. CAD was really laggy beforehand. Besides that everything was normal.
I tried repairing and reinstalling with the original disk with the same issues. Do I need to do an uninstall/reinstall? It's not the MENUBAR command, and the CUI command comes up with an error saying it cannot be located.
View 3 Replies
View Related
Jan 25, 2012
The pulldown menus listed in the CUI are File, Edit, View, Insert, Format, Window, and Help. The menu bar has one pulldown menu: Express. How do I make the pulldown menus listed in the CUI appear on the menu bar? Sure wish it was as easy and obvious as "drag them there".
View 5 Replies
View Related
Sep 3, 2012
I am exporting thousands of shots for my website and I am making a customized watermark/copyright title for each collection. It is working fine except now I have quite a few customized watermarks which I probably will never use again. How do I remove these from the pull down menu?
View 8 Replies
View Related
Aug 2, 2013
I am trying to insert OS Tiles into a drawing using the insert x-ref command. I have managed to insert 192 tiles but still need to add 29 more tiles to complete. When I try to insert another x reference AutoCAD just goes into a continual loop. Have to force AutoCAD to crash after ten minutes.
I am using AutoCAD 2014 MAP and have just had a new system built (i5 processor, 8GB RAM).
View 9 Replies
View Related
Sep 14, 2012
I created a new pull down menu in AutoCAD 2011 and everytime I close out of AutoCAD or switch workspaces it disappears from the Menu bar. So I type in CUI at the command line and checked the customization window and it shows the menu as being active. I had no problems in previous versions of AutoCAD.
View 4 Replies
View Related
Mar 7, 2013
I want to insert another drawing layout tabs contents in current drawing.
It's easy for MODEL tab, but for LAYOUT tabs, I dont know how!?
I prepared a code for INSERTING MODEL tab in current drawing:
(defun INS_DWG (TAB path dwg P / blk)(setq blk (strcat ""*" path dwg """));(setq N (vla-get-count (vla-get-layouts)));;Number of LAYOUT TABS in dwg(if (or(= TAB 0) (= TAB nil))(command "INSERT" blk P 1 0)); TAB=0 or omitted ==>Insert MODEL;(if (= TAB 1));==>Insert the 1st LAYOUT in dwg file;(if (= TAB 2));==>Insert the 2nd LAYOUT in dwg file;and so on....);;;usage:;;(INS_DWG 0 "c:\test\" "test.dwg" '(0 0))
View 8 Replies
View Related
Jun 27, 2012
I'm having an issue with block selection menu not coming up- specifically when inserting a new block. When I click the icon, the menu flickers but then disappers. If I click anywhere on my screen, I get a error noise as if the menu is open and I have to press esc to be able to function CAD again. The same error happens when I want to print when I click "edit page setup" nothing shows up, yet I get the error noise as if it is up but nothing is there. All of this worked at one time, but when I was trying to create a new block, somehow I must have turned something off.
View 4 Replies
View Related
Jun 14, 2013
To open .cal drawings, I've alway hit the "insert" tab and selected insert raster image from the dropdown menu.
Today, the "insert" tab doesn't create a dropdown menu. It opens a whole "insert" toolbar without any reference to raster images.
How do I open my .cal files and why did autoCAD change itself?
View 4 Replies
View Related
Jun 27, 2011
I have just installed C3D 2012 and when I show the menu bar, the only choice is Express which used to be the last tool in previous versions. What happened to File - Edit - View - Insert - Format, etc in the menu bar? I need to access them.
View 4 Replies
View Related
May 27, 2012
I am trying to create an action to create a new layer by copying the bg layer, add a layer mask to the new layer and then start the Tilt Shift filter. All works until I go Insert Menu Item and choose Blur>Tilt Shift. It just doesn't get added to the action. Other menu items do work. I'm assuming this is an oversight in the implementation of CS6?Can't see that that can be the case.
View 1 Replies
View Related
Jul 16, 2013
Three years ago I created a drawing in which I inserted Hyperlinks into the drawing. When I made a PDF from the drawing the Hyperlinks were still there and worked correctly from the PDF. Not sure which version of AutoCAD this was created from. I am now using 2012 and have tried to repeat the process but when I create the PDF the Hyperlinks are not there.
View 4 Replies
View Related
Mar 16, 2012
I have created a viewport on a drawing within a layout tab. When I go into paper space the available scale options are in metric units e.g. 1:500. When selecting the scale that I require that should allow the drawing detail to fit within the viewport it is too large even when the smallest scale available (1:5000) should easily be adequate for the detail to fit within the viewport. The detail within model space has been drawn in millimetres.
I guess that some defaults, scaling options are conflicting with each other.
View 3 Replies
View Related
May 15, 2013
I have created a new drawing template using an iLogic Form and Prompted Entry. What I would like is a Rule that is generated when a user opens a new drawing template. The rule that is created would open up the new iLogic Form I created where various Title Block information is entered (Client Name, Client Address, Date, Drawn By, etc... I know you can manually open the iLogic Form that I created via the iLogic tab, but I would prefer the form open upon opening the new drawing. Once comlpeted, the user than imputs the Prompted Entry values (Drawing Name, Drawing Number, etc...).
View 4 Replies
View Related
Mar 2, 2012
I created a DWF drawing from a PDF file. It was created but not to scale...the dimensions on the drawing says 6' but when i measure it its3'7"1/16.... My question is how do i scale it.. i tried using the scalecommand and referenced the entire drawing to a line a drew that was 6' long....but still it was incorrect?
View 5 Replies
View Related
Jul 27, 2011
Is it possible to insert a pdf file into a cad drawing?
View 5 Replies
View Related
Mar 12, 2013
I did that some time ago but can't remind now and searching wasn't success.
View 1 Replies
View Related
Jun 6, 2013
I am while i am tryng to insert right to left text (hebrew) in to a tag lable.
while I type I use the context manue to change reading order but when i finish typing it changes back.
I tried to manualy insert a unicode RTL control character from the context manu, but it doesent have any effect.
I hope I am missing somthing and its not a bug( entering long text (in hebrew) is criticle for notes and scheduals)
RAC 2014
win 7 64bit
View 1 Replies
View Related
Jan 14, 2013
This has been an issue since at least CS4. If you add a script to your actions via "Insert Menu Iitem" (not sure if it's for all items or just scripts) and close Illustrator, those actions disappear. Apparently, in CS6, Adobe has completely ignored improving including scripts to Actions, which really makes automation powerful. As awesome as CS6 is, that part is pretty lame.
View 1 Replies
View Related
Feb 7, 2013
how can i open and edit the drawing created by autocad 2011 into autocad 2007???
View 7 Replies
View Related
Oct 14, 2013
I recently upgraded from map 2008 to civil 3d 2010. Whenever I open a drawing that was last saved/used in my map 2008 program, it freezes upon opening and tells me there are errors. If I ignore the problem, I can continue to open and work on drawing, but every time I open it up, I get the errors and the freeze. Is there something I can do in civil 3d 2010 that will bypass whatever is freezing it up? I have included a drawing that is freezing up in civil 3d 2009 and/or 2010 that was created with map 08
View 4 Replies
View Related
Nov 29, 2012
I've created a set of templates, A3, A2, A1 A0 etc.
When I open the .dwt at A0 it is fine, the correct dimensions for A0, everything is how it should be.
Now, when I'm in a drawing and go on the tabs, right click, "From Template", select the A0 template and it opens a new tab as normal.
However, the paper size is correct, A0. But the actual frame with the attributes is very small in the cornet, about 25 times smaller, so I'm thinking units, mm to inches, but all the INSUNITS are set to 6.
View 3 Replies
View Related
Jul 31, 2012
I'm having real difficulties getting my drawing borders to work between Inventor and AutoCAD. I am using Product Design Suite 2012.
I have created a drawing border using Inventor, which is the template for any drawings I produce. I often export the Inventor drawings into AutoCAD 2007 dwg's to send to customers. However, it seems all the text goes up the creek after the export...
When I open the exported AutoCAD drawing, first I explode the drawing border. Then, if I scale the border from within AutoCAD, none of the text wants to scale up. - I've attached the border. I've tried several different ways to fix it using text styles, heights (setting to 0) etc and still no luck!
How to fix the text scaling?!
View 1 Replies
View Related
Jun 21, 2012
I am having trouble opening a drawing created by other software, I am using the following
(defun c:water ()
(setq acApp (vlax-get-acad-object))
(setq acDocs (vla-get-documents acApp))
(vla-open acDocs "L:/GIS_CAD/CAD NZMG/Water/Water Nov08.dwg")
)
If I try the routine I get ; error: Automation Error. Error Decrypting Data.
If I open the drawing normally (that works) and save as a dxf, then open the dxf and save it again as a dwg the routine works. I use the routine for 5 seperate drawings that get updated every month and would rather have a routine that opens the drawings without the fiddle.
View 7 Replies
View Related
Apr 11, 2012
we have on company drawing title block the date created field. . . . but when the file is being transfered and "save" it shows the present day of saving. . . is there any lisp that when used, it will show the original date its created. .?
View 3 Replies
View Related
Jun 22, 2012
In modelspace I have a drawing that is aligned perfectly, but when I create a new viewport in a layout the drawing that was created in modelspace seems slightly rotated in the layout view?
View 3 Replies
View Related
Aug 22, 2005
Last night i closed down my cad as per usual but this morning fired it up and my pulldown menus are missing-file,tools etc. The only one left if ltxpress which has been on my system for months now. I have turned my system off and rebooted but still missing.
View 6 Replies
View Related
May 8, 2013
its possible to insert a DataGrid into a Inventor drawing using VB or C#.
View 2 Replies
View Related
Jan 28, 2013
I want to insert arrows into an idw. I usually use 'Leader Text' then leave the text blank.
The only problem with this method is it leaves a small horizontal or vertical line at the 'text' end of the arrow. Is there a way to get rid of this or is there an alternative way of inserting an arrow?
Autodesk Inventor Professional 2011
Windows 7 Enterprise, 64-bit
View 5 Replies
View Related
Sep 24, 2012
Am trying to insert a drawing to specific coordinates, till now i did this part of coding; though this is executing but the drawing is not getting to coordinates specified
public void coordinates()
{
string dwgName = HostApplicationServices.Current.FindFile("D:\AutoCAD DWG's\SE-02416_37_A.dwg", acadApp.DocumentManager.MdiActiveDocument.Database, FindFileHint.Default);
//Database db1 = new Database(false, false);
Database db1 = new Database(false, false);
//db1.ReadDwgFile(dwgName, System.IO.FileShare.Write, true, "");
db1.ReadDwgFile(dwgName, FileOpenMode.OpenForReadAndWriteNoShare, true, "");
[code]....
View 3 Replies
View Related