Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Delphi scripting in Altium 14 - netlist generation problem

Status
Not open for further replies.

moro

Member level 3
Joined
Jul 12, 2009
Messages
65
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
2,013
Hello,
i am working on a script which translates some odb++ pcb file, and passes out a altium pcb document.

I dont know or cannot generate nets for the placed pads.

How can i create a net from the script?


I tried like this:

NetList : TStringList;

NetList.Add := 'MyNet';

But i encounter a error "undeclared identifier: Add" , has anyone experienced similar problems and maybe a solution would help me alot
 

The syntax usage of the method Add seems like not correct on your above snippet.
You should do something like:

Code:
NetList.Add('MyNet');
...instead of:

Code:
NetList.Add := 'MyNet';
 

It not working with NetList.Add('MyNet'); , i have the same error
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top