|
pdmwe iedmtemplate53
all,
i am attempting to run a pdmwe template from within solidworks(to pull a part number). however i am having trouble with the iedmtemplate53 object.
to start i am just trying the sample code from the help.
the code contains the following:
'execute the template
dim retdata() as edmdata
dim refreshflag as long
refreshflag = temp.runex(me.hwnd, folder.id, retdata)
when i run the code i get a type mismatch on the retdata indicating it is not an array.
any help would be appreciated.
thanks,
corey v
corey vantilborg
tigercat industries
try:
dim retdata as array = array.createinstance(gettype(edmdata), 1)
lee thanks for your suggestion.
i am using vb 6.0 so i do not think i have the array.createinstance method availible.
corey
corey vantilborg
tigercat industries
if you're using pdmwe 2008/09, vb 6 isn't supported. (add-ins anyway, not sure about standalones)
edited: 03/31/2009 at 12:01 pm by lee young
lee,
its for pdmwe07.
although in my testing our vb stand alone stuff works just fine with newer versions.
corey v
corey vantilborg
tigercat industries
quick |
|