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


ADVERTISEMENT

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 View Related

AutoCAD .NET :: Best Way To Auto-load DLL Code When It Loads?

Aug 10, 2011

What is the best way to autoload my dll code when AutoCAD loads?

View 2 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 :: 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 :: 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 :: 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 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 :: 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

Photoshop :: Why Does Adobe Program 2.0 Refuse To Load Up

May 18, 2013

Why does my Adobe Photoshop program 2.0 refuse to load up and gives an error message personalization information incomplete. I've reloaded it filled out everything . It's older than E mail registration requires either Fax Phone or mail . How can I circumvent that portion of Reg. ?.

View 6 Replies View Related

Paint Shop Pro :: When Exit The Program It Won't Load In Again?

Dec 19, 2012

I have an issue with PSP x5 on my Win-XP pc. When I exit the program, it won't load in again. if I open the Task manager. I can see that PSP is still loaded in memory. I can manually unload it and it will start properly the next time. I can use it on my Win-7 pc without the problem.

View 1 Replies View Related

Photoshop :: CS3 - Program Error On Load Of PSD Image

Sep 19, 2007

OS Vista
Photoshop CS3

Photoshop CS3 was all working so well until it stopped opening PSD format files that I had previously created.

I can open a JPG file but not a PSD file.

When I open a PSD file I get a messgae box "Could not complete your request because of a Program Error"

If I create a NEW USER ACCOUNT in widows VISTA, photoshop opens the same PSD files correctly.

Therefore there must be something wrong with files associated with MY windows user account.

I have looked at, and compared, user account files associated with Photoshop, even tried replacing the photoshop related files in my user account with those from the new user account.

View 3 Replies View Related

Photoshop Elements :: Unable To Load Program?

Aug 29, 2012

I was not able to load the program due to a limited space on my C drive, the program would not allow mew to change to anoither drive event thought it says select another drive,  now it states that the program is in the process of loading even though I've rebooted twice.

View 2 Replies View Related

Photoshop :: Program Error When Trying To Use Effect Within Layers Palette

Jan 24, 2013

When I am trying to use the effect options with in the layers palette I get the annoying message:
 
' Could not complete your request because of a program error. '
 
It was working fine then it went funny. I have restarted photoshop, my machine and re-installed the software but stiill not fix.

View 2 Replies View Related

AutoCAD Civil 3D :: Loading Custom Program R2014

Jun 18, 2013

I don't seem to be able to run a set of my custom programsn that I have been runnning since R2009.

I get the untrusted location dialogue box, the commands have demand loaded into the registry but when I run I get unknown command or nothing happens and no text on the command line.I have tried Rebuilding the code to target R2014 and also turning off the trusted switch all to no avail.

View 4 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

Photoshop :: DLL- An Attempt Was Made To Load A Program With An Incorrect Format

Oct 6, 2004

my adobe photoshop cs came with my laptop so i didnt have to install it or anything.. but now when i try starting the program error messages come up and the program shuts down

DLL- an attempt was made to load a program with an incorrect format
then; Adobe photoshop : a required application library failed to load nd the product cannot continue. please reinstall the application

View 1 Replies View Related

AutoCAD Inventor :: How To Create ILogic Rule To Create Custom IProperties

Sep 30, 2013

I'm trying to figure out how to create an  iLogic rule that would create a Custom iProperties and put in what version of Inventor the file was last updated with.

View 8 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

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

Lightroom :: 3.5 - Can't Load Custom Camera Profiles

Dec 15, 2011

I'm using both Lightroom 3.5 and Photoshop CS5 on a 64-bit Windowx XP-Pro system with 8GB of RAM and plenty of disk space.
 
I use an X-rite color checker to generate custom camera profiles whenever I do portraits or other color critical photo sessions. The camera profile is generally placed in the "Documents and Settings...{user...}Application DataAdobeCameraRawCameraProfiles " folder.

When I try to apply a profile in either lightroom or ACR the newely created profile is not visible in the camera profile drop-down box. When I check to see if the profile exists in the appropriate folder, it does.
 
I've used color profiles before and have always been able to create and select a profile. Now I'm no longer able to do this. I would prefer to not re-install all my Adobe software since then I'd have to reinstall all the updates and plug-ins.
 
How can I get lightroom and ACR to see these profiles and use them?

View 7 Replies View Related

3ds Max Modeling :: How To Create Custom Object With Custom Parameter

May 25, 2012

My ultimate goal is to have a virtual human model that I can re-size parametrically to reflect real-world measurements. I've used MAX to make architectural models and scenes so I know how to manipulate basic shapes in MAX.

how to make some sort of basic-custom geometric shape and control that shape parametrically, like the built-in "Box", "Sphere" and "Cylinder" objects.

View 1 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

Photoshop :: CS5 (Mac) / How To Load Custom Smart Sharpen Filter

Mar 10, 2012

Yesterday I was working with a collection of photos, and saved my Smart Sharpen settings. As I moved from one photo to another, I was able to choose my saved settings in the dropdown menu. Today, however, all that is available is "default" -- how can I load yesterday's saved settings?

View 5 Replies View Related







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