AutoCad :: Load Custom Tool Palette First?

Feb 6, 2012

I have created a custom office standards tool palette for the users, and it is properly loaded on all the machines. The issue is that when the 'Tools' button on the ribbon is pressed, it loads to the 'design tools' palette by default. Most user here have the habit of closing the tool menu after use, and reopening it from the menu - which defaults back to the design tools palette instead of the office standards... which is frustrating when jumping back and forth constantly. I assumed there was an easy way to tell them to set the 'standards' as the default, but I can't seem to find this property anywhere.

View 0 Replies


ADVERTISEMENT

AutoCAD .NET :: Create A Custom Palette That Will Load Whenever Program Loads

Feb 12, 2013

I am trying to create a custom palette that will load whenever Autocad loads.  The code below works with one exception.

  <CommandMethod("gtPalette")> _ Public Sub DoIt() If m_ps = Nothing Then Dim MYGuid As Guid = New Guid("{4AECF36F-C7E9-4C59-B72B-36A98DDA1D24}") m_ps = New Autodesk.AutoCAD.Windows.PaletteSet("gtPalette", MYGuid) myCoordPalette = New UserControl1() m_ps.Add("Coordinate List", myCoordPalette) End If m_ps.Visible = True End Sub

 The problem is that my Palette title is now "gtPalette"  which I do not want.  However if I change 
 
PaletteSet("gtPalette", MYGuid)
to 
PaletteSet("GunTech Cogo", MYGuid)

Then what occurs is that when Acad (actually I'm using Civil 3D 2012) start it trys to execute a command called 'GunTech' and then one called "cogo'.  Cogo being a valid Civil 3d Command brings up the Cogo dialog.  If I then type the command gtPalette it appears in the correct location.

Currently on my development PC the first code works perfect and brings up a palette that even has the correct title of "GunTech Cogo".  this info has presumable been saved with the GUID in my previous attempts to get the code to work.  

View 2 Replies View Related

AutoCAD .NET :: Load Tool Palette Automatically

Dec 7, 2011

Is there any option to load the dll on every drawing opened, like vba macro is loaded in start up suite. or is there any possibility to open a tool palette on every drawing opened.

View 2 Replies View Related

AutoCad :: Inserting Custom Tool Palette

May 31, 2013

I recently got a new drafting job for a chemical plant. The issue that I am having is that they are using AutoCAD 2004. That version came out when I was a freshman in high school and I am lost. I am trying to insert the custom blocks that pertain to our design standards, but I am getting nowhere.

I have the blocks in a separate folder. I am getting to the customize tool palette option, but every time I try and import these files the folders show up empty. Admittedly, I am not the greatest with the complexities of AutoCAD because I picked it up on the job and never had any "official" training; however, it has also been two years since I've had to do this and I am a little rusty... I'd like to think it's just that because they are using decade old software.

View 9 Replies View Related

AutoCad :: Adding Table Style To Custom Tool Palette?

Aug 19, 2008

i have created a table style and saved it within a drawing, how would i go about adding this style to a tool palette?

View 4 Replies View Related

CorelDRAW X3 :: Make Custom Palette Using Eyedropper Tool?

Feb 26, 2012

Is there a way to make a custom palette using the eyedropper tool?  I've made a palette from an object, but it has too many colors.  I've also made individual color swatches with the dropper, but I can't select them when  using the Mesh Tool.  Is there a way to make a color palette with the eyedropper tool that will work with the Mesh Tool?

View 8 Replies View Related

AutoCAD Architecture :: Old Tool Palette Has Replaced 2014 Tool Palette?

Jul 17, 2013

For some reason, the tool palette I usually use is not accessible. I opened a drawing that a co-worker was using and my tool palette now looks like an old version - it doesn't have any of my custom tools in it. How do I get back my tool palette??

View 1 Replies View Related

AutoCAD .NET :: Adding Properties Palette To Custom Made Palette Set

Feb 2, 2012

Is it possible to add the Properties Palette to a custom made palette set in .NET? And how to do this?

View 3 Replies View Related

AutoCAD .NET :: Delete Palette From Tool Palette

Dec 7, 2012

I wan´t to delete a palette from Autocad Tool Palette. How can I do?

View 3 Replies View Related

AutoCAD Architecture :: Saving A Wall Tool To Tool Palette?

Jun 9, 2011

In ACA 2009 I could, after saving the drawing, click on a wall, window etc and drag it to the tool palette to create a new tool.

In ACA 2011 this only works for lines/polylines.  Plus the wall, door and window palettes are gone.  How can I retreave them?

View 1 Replies View Related

AutoCad 2D :: Drag Previous Custom Command Into Existing Custom Tool Bar

Nov 27, 2013

When I drag a previous custom command into an existing custom tool bar and edit the custom command (then rename the command in the Name and Command Name) it also changes the previous custom command that I originally drug into the toolbar. What am I doing wrong?

View 2 Replies View Related

AutoCAD 2010 :: Custom AutoPurge Tool In A Custom Toolbar

Nov 9, 2012

We are a firm using ACAD 2011 w/ a custom toolbar that has an Auto Purge "tool" it currently deletes duplicated layers, reg ops, duped scales etc. we are wondering what else it can do (or any other tools that may be of use) or how can we get it to do more for us, like restrict referencing files from "unwanted" locations and any other tools that are essential to reducing the size of a drawing so its now so slow

View 3 Replies View Related

AutoCad :: Use Alphanumeric Character In Custom Palette?

Apr 12, 2013

I am trying to create a custom palette with symbols that I use in day-to-day work. Ideally, I'd like to add a tilde, rotated 90 degrees and with a specified line thickness, in a few different colors, into a custom palette. Is there a way to do this that doesn't involve me making a tilde-shaped pline and filling it in? When I click and drag the tilde to my custom tool palette it appears as a link for DText. Although it isn't much of a hassle to emulate a tilde shape, I'd like to know if it's possible in general.

Using AutoCAD LT 2011

View 2 Replies View Related

AutoCAD 2013 :: 2014 - Custom PGP Won't Load?

Mar 28, 2013

I just installed AutoCAD 2014, but it's not pulling my custom .pgp file, even though the folder that file is in is first in my support path. 

System specifications: AutoCAD 2014 64-bit SP1, Windows 7 64-bit SP1, Intel Core i7-2600K, AMD FirePro V4900
16GB RAM, Crucial M4 SSD, 3 Dell Monitors (2 30" 2560x1600 & 1 20" 1200x1600)

View 7 Replies View Related

AutoCAD .NET :: Expand / Collapse Custom Palette's Group?

Nov 28, 2012

I'm writing code that able user to show my custom palette.

Everything is working fine, but ... I want to make some of my groupbox to be expandable/collapsible, like here (3D visualization):

[URL]

I think that using groupbox control is bad idea, so how can I make some container with my controls (label and textbox) and make this container expandable/collapsible?

View 3 Replies View Related

AutoCAD Civil 3D :: Can't Load Custom North Arrow

Jul 5, 2013

In some templates I can't load a custom North arrow. AutoCAD can't find block.

The built-in north Arrows works fine. In a standard template from Autodesk there is no problem.

Wich settings should I change so I can select a block?

View 2 Replies View Related

AutoCAD Architecture :: Make Custom Palette For Structural Members?

Oct 21, 2011

I am trying to make a custom palette for structural members. "Then, temporarily deactivate the link and change the dimension properties of the tool to 4 x 4 x 4 meters. Next, copy the tool back to the Content Browser. The Content Browser catalog is updated with the new tool properties. Finally, reactivate the link from the Content Browser tool to the AutoCAD Architecture palette."

View 5 Replies View Related

AutoCAD Civil 3D :: Import / Export Custom Assemblies Palette?

Apr 13, 2012

I recently made a custom Tool Palette that contains all of our most commonly used Assemblies in our office on my PC. I then exported the Paleette to a location on our network and tried to import it onto another workstation. The Palette imported correctly and all of the assemblies are visible. However, when an assembly is attempted to be inserted into a drawing nothing is inserted.

Upon insertion the properties menu box shows up indicating that it is closed or locked..."do you wish to continue".

Is there a step that I am missing on importing or exporting of assemblies or Palettes?

View 1 Replies View Related

AutoCAD 2010 :: Missing Attribute Data With Custom Palette?

Oct 31, 2012

This was my first go-around attempting to create a custom tool palette for our office.  Everything was fine, the palette worked well.  All of the block libraries and associated files were initially saved on my local drive.  I then moved the files and folders out on the network, repathed all the items on the palette to the new area but for whatever reason when I insert blocks that have attribute data attached It is not recognizing it anymore.  I am just trying to get this piece straightened out before I export the palette itself out to the network to share. 

View 1 Replies View Related

AutoCAD 2010 :: Load CUI File Custom Toolbars And Settings Not Show Up

Dec 10, 2012

When I try and load my cui file, my custom toolbars and settings do not show up?

View 9 Replies View Related

CorelDRAW X6 :: Creating Custom Color Palette

Apr 24, 2013

I am having trouble creating a custom palette in Draw X6. I am trying to import (or create) a palette of a range of threads I use. There are around 300 swatches to create. I had this palette in Illustrator that I created from a CSV file using a script. It is in RGB colors. I need to have the swatch and thread number in the palette.

First, is there a way to convert a csv/xls/txt file into an palette xml file to make the palette automatically as I did in Illustrator?

Second, doing it manually is giving me trouble. I am following the below directions from the manual:

To create a custom color palette from scratch

1. Click Window Dockers Color palette manager.
2. Click the Creates a new empty color palette button.
3. Type a file name in the File name box.
4. Click Save.
5. In the Color palette manager, choose the custom palette that you created.
6. Click the Opens the Palette editor button.
7. In the Palette editor dialog box, click Add color.
8. In the Select color dialog box, choose a color, and click Add to palette.

I've gotten to  Step 7, but there's where everything goes badly, When I add a color, the Select Color box comes up, and I choose the Models tab and choose an RGB. All my thread colors are in RGB. I can then input the RGB values in the cvs table, however, when I try to name the color with the thread color number (say "2005 - Petal Yellow"), it changes the RGB values to something else and changes the color in the preview box. It's like there is no way to give the color my own custom name. If I just bypass the naming and try to Add To Palette, it either tells me the  color is already in the palette or I can't add any more because I've reached the maximum allowable entries....in a blank new palette file? Any color I choose from any of the pickers, or anything I enter in the value boxes just ends up with an error message.

I've checked the xml file of the new, supposedly blank, palette, and there are no colors or code, so what am I missing? Why can't I just input the color RGB values, name it, and add it? I can use the color picker to add colors to the palette, and after saving, that does show up in the xml file, but I don't have a document of color swatches, only a CSV. There's got to be a better way then making all the swatches in Draw, and also using the color picker on each one to make the palette.

View 10 Replies View Related

Xara :: Get Percentages Of Custom Palette Colors?

Oct 25, 2011

I want to detect percentages of my artist's oil colors in any area of a vectorized photo that I point to.

So, I want to first vectorize a photo to reduce it to manageable separate color areas. Then, I want to be able to get a list of the various percentages of 108 different colors that make up any of the vector color shapes I point to or select. These 108 different colors are somewhat accurate small bitmap swatches that correspond to 108 artist's oil paint colors.

Alternatively, can I just somehow plug in this 108 swatch palette and have a software (Xara?) break down a bitmap into areas of vector color using only this custom palette?

Is this possible in Xara, or by any other means you know of?

View 8 Replies View Related

AutoCAD .NET :: Create Tool Palette?

Mar 9, 2006

I'm trying to create a Tool Palette for Autocad 2000 from VB.Net.

View 5 Replies View Related

AutoCAD LT :: Annotation Tool Palette

Sep 18, 2013

My question has to do with the Annotation Tool Palette out-of-the-box. For a given scale, the Call out bubble circle and text is a different size from the Section call out. See attached image.

View 2 Replies View Related

AutoCad 2D :: How To Fix Little Buttons On Tool Palette

Nov 29, 2011

How to the fix the little buttons (icons) on the tool palette(s)?

Sometimes, by mistake, I drag an (or many) icon(s) to another place. I work with autocad 2010.

View 6 Replies View Related

AutoCad 2D :: Customizing Tool Palette?

Apr 9, 2013

I am using AutoCAD 2011. Because when I typically draw a circle I use the center, diameter style to create a circle. The factory default is Center, Radius. I would like to make the center, diameter my default setting whenever I chose to draw a circle. I would like to know how to make that change then how do I get it onto a custom tool palette?

View 5 Replies View Related

AutoCad :: Add A Block To Tool Palette?

Aug 8, 2013

I am trying to add a block to my tool palette. I am able to add it, but when I click on the palette to add it to a drawing, it acts like it's going to work but nothing shows up in the drawing. I have added it to the source drawing, saved the source drawing, dragged it into the palette. All is well until I try to place it in a drawing. The other blocks work fine.

View 9 Replies View Related

AutoCad 2D :: Create More Than One Tool Palette

Mar 6, 2013

Is there a way to create more than one tool palette in AutoCAD instead of just adding tabs onto an existing tool palette?

View 1 Replies View Related

AutoCad :: Create Tool Palette

May 11, 2011

I heard tool palettes are easy to create and use? I am being able to drop in doors and windows into plans. Is there an easy way to create these tool palettes?

View 2 Replies View Related

Photoshop :: How To Load Custom CS5 Layer Styles To CS6

May 11, 2012

how to load custom photoshop cs5 layer styles to photoshop cs6 ?

View 3 Replies View Related

Lightroom :: Can't Load Custom Camera Profiles Into 4.3?

Mar 29, 2013

I have googled this found some posts about putting it under the Users folder. However I don't have a library under my username it comes under a folder called Shared.I'm using a Mac computer
 
I placed my custom profiles in there , however it still won't work.

View 5 Replies View Related







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