Hai,
I would like to do take another .brd file report while running the skill code in current .brd file For examole :1.brd is file and 2.brd is other file here in the tool i opened 1.brd file in that i want to take report of 2.brd file for that i used this attaeched skill code.
procedure(plac()
out=outfile("report.rpt")
file = axlDMFileBrowse(nil nil ?optFilters "BRD Files|*.brd|")
foreach(cmp, axlDBGetDesign() ->components
when(cmp ->symbol
a = cmp ->name
inList = a
fprintf(out, "\n%L", inList)
)
)
)
Here by this code it return only the current board file report i want to get 2.brd report file can you say it is possible if it possible please say how to do it.