AutoCAD .NET :: Reading Some Variables Into DWG File?
May 3, 2013reading some variables into DWG file - how? C#.
View 3 Repliesreading some variables into DWG file - how? C#.
View 3 RepliesHow can I read the content/ string in the *.dwg file through autolisp?
Suppose I have used any word multiple times in a sheet. How can I count it through lisp programme?
if I'm able to save some variables into current DWG?I would like to provide availability for user to save some data which is different for each DWG file.
View 9 Replies View Relatedhow to get a list of Variables and Commands from the Help file?
View 9 Replies View RelatedI want to write content of variables to a text file but I should have conversion function for variables.
for example
(setq a 123); a is an integer type, contetnt of a is 123
so I should use (itoa a) to get "123" as a string and then I can write it to text file.
but what about another type of variables?
(defun ToString ( a / result)(setq result "")(cond((= (type a) 'ENAME) (progn (setq result "Entity names")))((= (type a) 'EXRXSUBR) (progn (setq result "External ObjectARX applications")))((= (type a) 'FILE) (progn (setq result "File descriptors")))((= (type a) 'INT) (progn (setq result (itoa
[Code].....
I know how to read the BMP thumbnail (there are some code here: [URL], but in 2013, the BMP has been replaced by a PNG. The type seems to be 6 instead of 2 (BMP), but I don't know how the PNG is stored (I've not made further investigation).
View 1 Replies View RelatedSome users are getting the following error when running Script Pro:
Error while reading log file for <drawing path>
I am running 2011 c3d on windows 7 with 15 GB of ram.
An error message I get is "reading triangles from file" and the program locks up to where you need to do a reset on the computer. I have an existing ground surface that is data shortcut into the file I am opening when I get this error. The existing ground surface is about 5 mg in size. I'm not sure if this is causing the error.
What the maximum size xml file one can use when making data driven graphics in Illustrator?
I can successfully batch when I load a single variable library with about 100 datasets at one time but anything much larger than that in the same xml format gives me a “the incoming variable library is invalid” error. Elsewhere on this discussion forum I have seen answers say there is no limit to the size of the XML file. [URL]..... But my experience with Illustrator CS5 says otherwise.
1. If there is a maximum size either in file size, number of datasets, or number of variables/values, what the limit is.
2. I still need to create thousands of the final document I am creating - if the limit is close to 100 and I need to create many thousands - scripting or other methods to get this done?
I have the following code which isnt quite working, it reads a text file which has a list of Names of images and their bottom left coordinates i.e. name x y etc. I want it to check for a name equal to that input then in this case alert the user it is found, eventually I want it to load the tile but for the moment where am I going wrong, also the lisp wont close the file and I dont know why.
(defun c:imi ()
(setq IM (getstring "
Input name of 2010 tile"))
(while (not (= "" IM))
(setq TILE (strcat "BM" IM))
[Code] ......
For the past three day I've been modeling a character for an animation im making, but now when ever i try to open the file in Maya, Maya stalls at reading file 99% and stops working.
View 1 Replies View Relatedbecause the specified color book cannot be found? The file is opening without any colors and as i am trying to set the file up to print, it is VITAL that i have colors.
View 1 Replies View RelatedI am not being able to open a .cdr file in Draw. Its about 1.16 gb, I know its big but I didnt realise it has become so big, it has 18 pages now. It was working fine till yesterday. but now when i am trying to open it a pop up comes showing error reading file. I am using x4 in a 32 bit windows 7 with 4 gb ram.I have tried opening in laptop with 64bit windows 7 4 gb ram, it opened till 80% adn then a different error came which said - invalid object. I need to retrieve the artwork, i have worked on it for more than 3 weeks. The back up file also shows the same.
View 7 Replies View RelatedI am trying to read JPEG files generated by Panorama Tools software into PS 7. Some are read with no problems and some files can not be opened by PS 7. In the later case the following error message is displayed: "Could not open file because of a problem parsing the JPEG data".
The problematic files are read and displayed with no problem by Windows pictures and fax viewer software.
I have a scriptUI generated palette which contains 26 icons linked to their respective scripts. When an icon is pressed, it invokes the required script via this:
searchPanel.children[0].onClick = function(){
searchOne.open("r");
var bt = new BridgeTalk;
[Code].....
My other scripts have "normal" functions that don't cause any problems, so I'm assuming it has something with BridgeTalk being loaded inside the palette function (since the code that's read in from the file is inserted at the location from where it's called).
I had my Mac crash on me a few days ago and since then I've been only able to work on my current project for ten minutes at a time before I get the above dialogue come up.
It's not just this file that suffers from this and there doesn't appear to be a pattern to which file is affected. The files that are mentioned in the dialogue are outputs from both FCP and from AE itself, they are always Quicktimes and they are compressed with the Animation codec, although I've used a number of other codecs and it doesn't seem to make any difference. If I quit and restart AE, I can continue working for a while on a composition with the same file that caused the dialogue to appear, until it happens again, often with a different file mentioned in the dialogue.
We have re-installed the CC suite after an uninstall and clean-up, but to no avail.
Do we need to reinstall the OS? Could it be a quicktime thing?
i backup my files and now when i want open them see this message
error reading a bitmap in file......
this is my sample file
[URL].....
my old corel was X3 and now cant open with X5 sp 3 or X3.
my system is:
windows 7 x64
4GB ram
cpu intel core i5 760
i was working on an animation and that was a great animation I worked on that 2 months and i was working on that and when i wanted to save the scene the monitor gone black and i restart my pc.and when i opened the maya and tried to open the scene it said error reading file.
View 2 Replies View RelatedI would like to somehow save the depth reading (in mm or inches) at each pixel of the image through a camera viewport. Currently, I'm using this script to save each reading in inches to a text file but it is really slow. I've learnt that OpenEXR can save a single floating-point channel image. Are there a faster way that I can save all the readings (in mm or inches) to .exr file or other format that support 32 bits single channel? If not, is it possible to scale the output (grayscale) floating point reading in exr to mm. (are they linear?) given that I set the minimum/maximum zdepth range.
script:
startFrame = 0
endFrame = 50
for frameNum = startFrame to endFrame do (
sliderTime = (int(frameNum))
fname = ("H:HAND_DATAdepthh" + (int(framenum) as string) + ".txt")
myfile = createfile (fname)
rbm = render outputsize: channels:#(#zDepth) vfbff
for y=0 to 239 do
(
[code].....
I subscribe to Digital Photo magazine, from England. They supply a CD with every issue. I attempted to read in a .jpg file directly in the PSE 12 editor. PSE consistently crashes as soon as I start the process. I tried the same process on PSE 10 and 11 with the same result. I then took the CD on my Windows 7 system, which also has the save versions of PSE. On Windows 7 the process works without a hitch.
Workaround. If I import the file from the CD while in PSE 12 organizer, highlight the file and then invoke the editor, it works fine. I do NOT want to use a workaround. This should work AND in no event should the system crash.
NOTE: I have submitted the crash reports to both Apple and Adobe without getting any response.
I'm using Coreldraw X3,operating system, Windows XP Professional version 2002, 1GB of RAM,free space of 4.56GB on C drive, 34.8GB on backup drive,display adapter Radeon X300,HP compaq dc7600 convertibleI'm having a lot of difficulties opening a series of files. I had been working on a laptop for a few months and upon returning to the office I tansfered the files to my desktop to complete thr final revisions. I worked on my desktop for 3wks without no problems and then one day I went to open the files and recieved this message on all of them:"Error reading a bitmap in file"I have since tried numerous methods with no success.
View 13 Replies View RelatedWorking in LR 3.6, Mac OS10.6.8, 8GB RAM, accessing from an external USB 2TB harddrive, and when opening an image I get the error:
"Lightroom encountered an error when reading a catalogue file and needs to quit.
"Lightroom will attempt to diagnose the problem the next time it launches."
I've run "Optimize Catalogue" and that didn't relieve the problem. Also have deleted preference files and still no joy. I also have upgrade to LR4 in hopes that it will fix the problem and it didn't. So I've removed LR4 for the time being until I can figure this out in LR3.
Here is a screen shot:
When I try and render my 23 minute project to WMV HD 720p it gets to 6% and says file reading error.
View 11 Replies View RelatedAm I able to access and read and write to the file holding the variables used in the parameters-manager's palette. Ideally, I want to read the value held for an action-parameter, do some math using C, and write the result back to the file as a user-parameter which may be seen in the parameters-manager's palette.
View 2 Replies View RelatedUsing ACAD2014LT. I want to use the first variable attribute value as a variable in subsequent attributes in the same block. This will be extracted and used for tag references in a PLC program.
Along the line, i know I can change the enclosed character ( ' ), but can I remove it?
I've been working on converting a VBA macro to an Add-In (my first). I thought all was going well, but I'm struggling to share the InventorApplication object within my add-in...
All the googling I've done suggests the most suitable way is to declare it as a global variable. So I followed the work flow on this page:
([URL]......) and created a module to declare my global variables. I've then referenced this module back in the original class, but when I do, I get a message saying "modDeclarations is a type and cannot be used as an expression"..
So here's what I've got:
I was wondering if there is any way to dump out all system variables with current value in a text file. One way would be to have the variable names already preset in a list of strings then extract them. But is there any other faster way? I need to compare some drawings side by side.
View 6 Replies View RelatedI have several variables I want to be able to set and then use throughout my project.
First, and seems simplest, would be to just Public Shared the variables. Set them as required, call them when needed.
Second would be to create an object and assign the variables as properties to that object. It would take more programming to do this option. The beauty of this would be that I could store the values from drawing session to drawing session and would not have to ask the user for the values every time he starts my program. Can this be a custom dictionary object? Is that how you would design it?
Unless there is a way to make my Public Shared variables hold their values when the drawing is closed. Static doesn't seem to work here, but I could be missing something.
when using baseview / viewbase how can I make the resulting views linetypes, weights and colors what I want by default. Currently I change them after creating the views.
View 3 Replies View RelatedUsing the VB.NET example code on exchange.autodesk.com for Defining a User Coordinate System, I pretty much copy and pasted the code to suit my needs. While the example shows how to create a UCS origin, X Axis and Y Axis from scratch, I am attempting to simply cast the values from the system variables UCSORG, UCSXDIR and UCSYDIR. These system variables are read only, and when looking into the types, I believe they are all 3D Point type values.
I'm experiencing errors when trying to run the following code, and it's making me wonder whether what I'm attempting to do is possible. The JIT Debugger is pointing out a System.InvalidCastException. Is there a problem with setting a Point3D value (from the system variable) to a Vector3D type (which is required for defining a new ucs)?
Public Sub saveCurrentUcs()
'get the current document and database
Dim acDoc As Document = Application.DocumentManager.MdiActiveDocument
Dim acCurDb As Database = acDoc.Database
[Code]....
Parametric Drawing about .net API。
I define a user Variables in autocad2010(such as variableaa=10),I want to use the variable to drive the dimension of a line。
Now I want to change the value of variableaa through .net API,can you tell me how to change the value of variableaa through .net API? can you tell me the code?