AutoCad :: Ribbon Workspace Set Up

May 16, 2013

I have Cad 2013 and don't know how to set up the ribbon style workspace. Ihad set it up a while ago in 2011 and labeled my workspace as KPRIBBON. This workspaceis selected, but the classic CAD Is still the view now in 2013.

View 1 Replies


ADVERTISEMENT

AutoCAD .NET :: How To Create Ribbon Tabs That Persist Through Workspace Changes

Sep 3, 2013

I've followed a few examples and am able to create a new tab on the Ribbon, with panels and buttons, that appears when my DLL is loaded. However, it doesn't persist through workspace changes. I've read that this is due to my use of AdWindows.dll and my current code, as opposed to AcCui.dll, which would modify a CUIx file (that I don't know much about) to make persistent changes.

Here is a sample of my current code.
 
public class Commands : Autodesk.AutoCAD.Runtime.IExtensionApplication{public void Initialize(){Application.Idle += callback_Idle;}private void callback_Idle(Object sender, EventArgs e){CreateRibbon();Application.Idle -= callback_Idle;}private void CreateRibbon(){RibbonControl mainAcadRibbon = ComponentManager.Ribbon;if (mainAcadRibbon != null){RibbonTab rTab = mainAcadRibbon.FindTab("Tab Name");if (rTab != null){mainAcadRibbon.Tabs.Remove(rTab);}rTab = new RibbonTab();rTab.Title = [code].......

View 5 Replies View Related

AutoCAD Civil 3D :: 2011 Will Not Load Enterprise Ribbon In Workspace

Aug 14, 2012

I have a cuix setup as an enterprise menu. The drop-down menu loads up fine in my workspace. However, when i go to customize the workspace, and add the ribbon portion of the cuix, it fails to load it. The same enterprise menu loads fine in AutoCAD 2011.

View 1 Replies View Related

AutoCAD 2013 :: Convert Ribbon Menu Items Into Classic Workspace?

Nov 13, 2012

i having a fully working ribbon in ACAD2013. it is a registered dll that is originally coded in vb.net.

unfortunatley the functionality is only visible at the drafting & annotation workspace but is desperatly needed in classic workspace mode.

for hours i am trying to find a way to make my functionality working in classic workspace too.

is it possible to extend the classic workspace in acad2013 with my functions? if so, how, or where can i get more detailed information to solve my task.

View 6 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Missing Ribbon Combo Box - Workspace

May 14, 2013

I am unable to find the "Ribbon Combo Box - Workspace" to our 2013 MEP or ACA CUI. It is visible in vanilla AutoCAD 2013, but it isn't listed in the Command List (under Ribbon Control Elements). I am unable to transfer it from AutoCAD's cuix either. We typically have this control in our Quick Access Toolbar, but I am unable to create this same environment in the 2013 verticals.

I am unable to see it even using one of the default profiles, like "AutoCAD Architecture (US Imperial)".

View 2 Replies View Related

AutoCAD 2013 :: Where To Find Workspace Settings To Change Workspace

Apr 11, 2012

I just downloaded 2013 Autocad for MAC and I can't manage to see my drawing toolbars and also don't know where to find workspace settings to change my workspace to autocad classic.

View 9 Replies View Related

AutoCad :: How To Change From 3D Modeling Workspace To Standard 2D Drawing Workspace

May 1, 2011

I am trying to go from the 3D Modeling workspace to the 2D workspace without the XYZ coordinate gizmo on the drawing screen (just want to see the XY ucs) to work in 2D format.

View 1 Replies View Related

AutoCAD Architecture :: Workspace Doesn't Open With Workspace 2D

Jan 4, 2012

is there a way to have the profile be on 2d drafting already as yoju open a new file or should you always open a new file and then change the profile from architecture to 2d drafting?

View 2 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Customize Ribbon Panel In Ribbon Tab

Nov 28, 2012

I am trying to customize Autocad 2012 ribbon tab. I can't seem to find how to mimic the small arrow that appears in several of the standard menus. For example, in the 3D Solids - Home Tab, the second panel from the left is "3D Solids Home - Mesh" It has a small arrow in the corner that opens up a preferences dialogue box.

How can I add that arrow to a custom panel with that little arrow so that I can add my command to it?

View 4 Replies View Related

AutoCAD .NET :: Where Are Bits Of Ribbon API To Add Slide Out To Ribbon Panel

Jan 24, 2013

Where are the bits of the Ribbon API to add a slide out to a ribbon panel?

Autodesk.Windows.RibbonControl ribbonControl = Autodesk.Windows.ComponentManager.Ribbon; RibbonTab Tab = new RibbonTab(); ribbonControl.Tabs.Add(Tab); // create Ribbon panels Autodesk.Windows.RibbonPanelSource panel1Panel = new RibbonPanelSource(); panel1Panel.Title = "Panel1"; RibbonPanel Panel1 = new RibbonPanel(); Panel1.Source = panel1Panel; Tab.Panels.Add(Panel1);
 
I saw some source that hinted you could use panel1Panel.AddSlideout() but in the search I do not see any Ribbon API that allows for any slideout functionality?Do you *have* to use the CUI API for this?

View 5 Replies View Related

AutoCAD .NET :: How To Protect Workspace

Sep 7, 2011

I just wanted to know is there any way, not to allow user to change,  workspace or  save workspace in another name.

we have 2 shifts of  drafters in our company who work with one machine. Shift 2 always complain about user on shift one change  panel and ribbons . we have a standard icon and panel , But you know some users have their own way which thinks is the best and always keep changing UI.

So I need to know is there anyway to lock acad.cuix  or  lock workspace.

View 9 Replies View Related

AutoCad 2D :: How To Set Workspace Into Inches Instead Of Mm

Dec 12, 2011

Another problem i'm afraid!!! We had a problem with a drawing which came from an outside source, and some how set up the workspace of my colleague into inches instead of mm?! we managed to sort that (how - just randomly clicking!) but now they can only select one item at a time? they can select by dragging over the items but cannot individually select item by item

View 6 Replies View Related

AutoCAD Architecture :: Migrate Workspace From 13 To 14?

Oct 14, 2013

Can you migrate you settings from acad 13 to acad 14

View 1 Replies View Related

AutoCAD Inventor :: How To Delete Workspace

Dec 14, 2012

After I figured out how to delete a project (why not just have a delete button in the Project Dialog box)  that I didn't want created in the first place (apparently some missed option in the pack&go process) I now cannot delete the incredibly convoluted wokspace folder structure it created.

I deleted the project shortcut as was posted somewhere else and it no longer shows up in the Project dialog box.  However, the workspace it created cannot be deleted.  I had even removed the workspace from the project before I got rid of it.

I simply get a windows error that it cannot delete the folder(s).  I am an admin of this entire folder structure and everything beneath it.

I have opened and closed inventor making sure the project is still not in existence.  I have verified the workspace is not listed under any other project.  No other user has been to this folder or opened any files even closely related to my work.

View 9 Replies View Related

AutoCAD Map 3D :: Loading 3D Modeling Workspace

Sep 10, 2012

Curious as to how to load the 3D Modeling workspace so that I can access the editing features and whatnot without having to type in the commands.  I have seen a few different questions dealing with this issue, they pretty much said to into the "custom user interface", click on the transer tab and then path to the support folder where you would load the "acad.cuix"  file and drag the 3D Modeling Workspace over to the left hand side.  The issue I'm having is that when I path to the folder with all the different ".cuix" files there isn't a plain "acad.cuix" file to be found and none of the other options offer any sort of 3D Modeling Workspace? 

View 5 Replies View Related

AutoCAD 2010 :: Copying Workspace

Jan 8, 2013

I asked this last year, but never figured it out.

I am an AutoCAD user, not a Computer wiz, so the "obvious" isn't always so, to me.

I have my Office AutoCAD set up the way I like it.

I have an AutoCAD at Home that I'd like to have the screen appear the same.

How and Where do I find my Workspace settings?

How and Where do I put it at Home?

View 5 Replies View Related

AutoCad 3D :: Create (in 3D Workspace) 3D Polyline

Jun 13, 2011

I'm trying to create (in 3D workspace), a 3D polyline which starts from the "ground" and goes up the Z axis for 45 units (meters for example), then, the polyline continues "up" but in a 45 degree inclination, and then it goes up further but still 45 degrees from the last segment.

I attached a picture of this to the post, the top line is the one I want to create, and the bottom one is what I get.
The thing is that the 3dpoly command doesn't let me set the line on the Z plane, unless I fix it in ortho mode, and even after I do the first segment that way, the next one stays fixed in either the Z plane or the XY plane, but not in the 45 degree between them that I want....

P.S. - when I click the 3d polyline command, there are no options in the command area, just "specify first point...." - is this what should appear?

View 9 Replies View Related

AutoCad :: How To Change Workspace Background

Aug 10, 2011

After reloading archecture 2008 on my new computer, the workspace is now black background. I'm used to white. How do you change back to white?

View 3 Replies View Related

AutoCAD 2013 :: Saving Workspace In It?

Jan 17, 2013

In my workspace I have loaded pull down menu's, and I have saved my workspace in workspace settings.

But every time I close AutCAD and re-open it again, the pull down menu's disappear!! Is there a setting.

View 2 Replies View Related

AutoCAD 2013 :: How To Get Electric Workspace

Sep 26, 2013

looking to do shop drawings for electric showing pipe runs, i saw a video and  a guy had "electric" and "plumbing" workspaces down along the bottom, my autocad doesn't have.

View 5 Replies View Related

AutoCad :: Difference Between Workspace And Profile

Jan 26, 2014

difference between a customized workspace and a saved profile? What are the specific uses of each?

View 2 Replies View Related

AutoCad :: How To Copy Workspace From One Profile To Another

Dec 6, 2011

I'm running Autocad mechanical and I want to copy workspace settings from

<<ACADMPP>> to <<VANILLA>>. I am using a plugin that setsup like so,

"C:Program FilesAutodeskACADM 2011acad.exe" /b"C:Program FilesM.E.P.CAD, IncAutoCAD ARX90x64AlarmAlarmCAD90x64.scr"

and I'd really like to work "/p <<VANILLA>> " in there somewhere.

The goal is to use the 2D Drawing and Drafting workspace with this plugin.

View 2 Replies View Related

AutoCad :: Export Workspace Layout

Nov 21, 2006

in Autocad i have set up my workspace layout (how all my toolbars are arranged), How i can export this and use it on somebody else autocad (transport via flashdrive).

View 5 Replies View Related

AutoCad 3D :: Workspace With White Background

Aug 15, 2012

First I am still editing my 3D objects in the 2d workspace, how do I switch to the 3D workspace (with the white background)? Also, I made 3D rectangles with lines and converted them to blocks so I could name them specific things and I am having trouble chamfering or filleting the edges?

View 3 Replies View Related

AutoCad 2D :: Crosshairs Snapping In Workspace

Jun 24, 2013

My crosshairs are not moving smoothly in my workspace. They are jumping big spaces. I typed "snap" and click "OFF" but it had not effect. I can't click on objects.. or draw from.. my mouse moves smoothly in every other application of my computer..just not in CAD workspace.

View 9 Replies View Related

AutoCad :: How To Use Ribbon

Oct 10, 2012

After the last issue with ACAD and Vista my IT director has finally decided I can have a new computer... In April. So I need to know what people think would be good graphics cards, processors, etc. for ACAD 2012 & 2013. I say 12 because most times I'm in 13 something goes wrong (Vista). So I have gone back to 12.how to use the Ribbon now and I guess I'll have to learn Windows 7 too. I like my XP and toolbars and I'll miss them.

View 9 Replies View Related

AutoCAD 2010 :: Workspace Resets When Restarting It?

Apr 28, 2012

For some odd reason Autocad will not maintain my workspace customizations. For example I typically can customize my workspace by toggling which toolbars are shown and where they are placed. Then I can close autocad and when I start it again all the customizations are present. Now when I start autocad it loads the default workspace. I should have to customize my workspace every time I start autocad. I also shouldn't have to create any custom workspace profile or anything like that. AutoCad used to simply save any GUI customizations made automatically. I need it to get back to that.

View 9 Replies View Related

AutoCAD 2013 :: Disable Workspace Shortcut?

May 2, 2013

i set up the w key in my pgp file for a shortcut for wblocking (i only have 1 pgp file on my work station) it saved fine however, when i press the W key i get the workspace dialog box not a wblock dialog box any clue as to why the pgp file shortcut isnt working loading and how can i disable or change the workspace dialog from the W key

View 4 Replies View Related

AutoCAD .NET :: Create / Copy Existing Workspace

Mar 5, 2013

I'm trying to create / copy an existing workspace using c#

I couldn't find a direct way to just copy the existing workspace so I tried to add it's properties manually. The only trouble is I can't seem to cover all the settings here's what I have so far...

var userworkspace = new Workspace(cs, acadUser)
 {
  WorkspaceRibbonRoot = wsMaster.WorkspaceRibbonRoot,
  WorkspaceQuickAccessToolbar = wsMaster.WorkspaceQuickAccessToolbar,
  Name = acadUser
 [Code] ....

Pretty basic I know, how can I get PartialCUI tabs, palettes, etc.. applied?

View 3 Replies View Related

AutoCAD Architecture :: Change Workspace From 2D Drafting

Apr 15, 2011

Am I able to change the workspace from 2D Drafting and Annotation to Autocad Classic?  When I open the workspace dialogue box, AutoCAD Architecture is the only option.  With AutoCAD 2010, the workspace dialogue box gave me three options:  2D Drafting and Annotation, 3D Modeling and AutoCAD Classic.

How do I get Autocad Classic as a workspace option?

View 2 Replies View Related

AutoCAD 2010 :: Add Custom In A Standard Workspace

Nov 27, 2013

I can add the SNCL-MMG tab in all the standard Workspace.

After that I save in a new profile.

In this computer it's ok.

My custom CUI is an Enterprise CUI.

But when I go to another computer and install my custom menu using my profile saved.

I didn't see the tab I need in all standard Workspace.

Autocad add my custom workspace and everything is fine on my custom workspace.

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved