Questions tagged [zwcad]

Zwcad is a CAD program developed by ZWSOFT.

6 questions
0
votes
1 answer

pyautocad loop through attributes

I have many blocks which have attributes. I'm trying to search through attributes in WEE specific value and when I find it, I would like to change the NDT to some value. Name Att Value Att WEE A011 NDT (Null) for Atributi in…
Hom Tom
  • 3
  • 2
0
votes
1 answer

open ZWCAD application with pascal programming language

I have an application that opens the autocad app in the following way: XlApp := GetActiveOleObject('AutoCAD.Application'); Now I want to do the same but with the ZWCAD app, how could I do it?
csb95
  • 1
  • 1
0
votes
2 answers

how to use python libirary pyzwcad to automate tasks and draw in ZWcad?

I was working on a project to create a tool that helps engineers to automate drawing tasks and as my company using ZWcad instead of Autocad I found myself obliged to use pyzwcad but I could not find enough information about it in one place or I was…
0
votes
1 answer

Can the Help.ShowHelp API be modified to simply invoke the CHM file?

This is my primary way for displaying help topics from within my WinForm button click handlers: Handler: private void buttonHelp_Click(object sender, EventArgs e) { CutTools.DisplayHelpTopic(this, "create-new-viewport.htm"); } Base…
Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164
0
votes
1 answer

Where are settings saved wiithin the context of BricsCAD?

My C# DLL project has settings and the defaut values are held automatically in the xxx.dll.cong file. When I perform a save of the settings: Properties.Settings.Default.Save(); They are correctly read back in when I display my form. But I can't…
Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164
0
votes
1 answer

Adding elements to model space the correct way using .NET API

Method One _AcDb.Line oLine = new _AcDb.Line(ptStart, ptEnd); AddToModelSpace("PLOT", oLine); Where AddToModelSpace is: public static void AddToModelSpace(string strLayer, _AcDb.Entity oEntity) { _AcAp.Document acDoc =…
Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164