Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to call a NX Dialog in a VB application?

Status
Not open for further replies.

Stike

Automotive
Joined
Mar 29, 2011
Messages
6
Location
DE
Hello,

is there a way to call a NX Dialog in a VB application to let the user create a feature, that can then be handled for further actions?

For example something likes this:

Dim InstanceGeometryFeature As Features.Feature = Nothing
NX.UI.UserInput.DialogCreateInstanceGeometry(InstanceGeometryFeature)
InstanceGeometryFeature.setName("New Face")

?

Thank you!
 
As far as my experiences go, no. After all, it would make little sense for dialogs of such type to be presented to a user. You can either make a basic dialog which allows the user to put in the bare requirements to make the feature, which you then use and pass to the mandatory functions, or you can have the user create the feature(s), after which you have access to.

Marc
NX Software Developer
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top