×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Is it possible to test SNAP without licence ?

Is it possible to test SNAP without licence ?

Is it possible to test SNAP without licence ?

(OP)
When trying to learn SNAP by my self with this simple Program (found in the SNAP Reference Manual) I have the following message for each line with 'Info Window'

'InfoWindow' is not declared. It may be inaccessible to its protection value.

What's wrong ? I thought this simple program worked
____________________________________________________________________
Imports Snap, Snap.Create

Partial Public Class MyProgram

Public Shared Sub Main()

Dim myString1 As String = "The sky is blue!"
Dim myString2 As String = "The air is fresh!"

Dim myStringArray As String() = {"Sunny", "Windy", "Rainy"}

InfoWindow.Write(myString1)
InfoWindow.WriteLine("")

InfoWindow.WriteLine(myString2)

InfoWindow.WriteLine(myStringArray, 10)

End Sub

End Class
_____________________________________________________________________

TIA


Regards
Didier Psaltopoulos
http://www.psi-cad.com

RE: Is it possible to test SNAP without licence ?

What version of NX are you using?

Starting with NX 8.5 we are now including, free of charge, 'MiniSNAP' (a subset of SNAP) which will allow you to test the basic capabilities of a SNAP program by running it from the normal 'Journal Editor'. There is enough functionality available so that you can run all of the sample programs outlined in the 'Getting Started with SNAP' guide which can be found in the NX Help files for programming tools.

John R. Baker, P.E.
Product 'Evangelist'
Product Engineering Software
Siemens PLM Software Inc.
Industry Sector
Cypress, CA
Siemens PLM:
UG/NX Museum:

To an Engineer, the glass is twice as big as it needs to be.

RE: Is it possible to test SNAP without licence ?

(OP)
I am using NX8.5 and I tried Tools Journal Run


Regards
Didier Psaltopoulos
http://www.psi-cad.com

RE: Is it possible to test SNAP without licence ?

Based on the title of this thread I assume that you do NOT have a full license of SNAP, correct? Perhaps the 'InfoWindow' item is not supported by 'MiniSNAP'.

Please remember that the purpose of 'MiniSNAP' was to provide a way for users to 'test drive' the software by being able to work out the sample programs provided in the SNAP getting started guide, but not a whole lot more than that.

John R. Baker, P.E.
Product 'Evangelist'
Product Engineering Software
Siemens PLM Software Inc.
Industry Sector
Cypress, CA
Siemens PLM:
UG/NX Museum:

To an Engineer, the glass is twice as big as it needs to be.

RE: Is it possible to test SNAP without licence ?

In the "Imports" statements, replace Snap with MiniSnap. And comment/delete or change the line highlighted in red, it will throw an error.

CODE

Imports MiniSnap
imports MiniSnap.Create

Partial Public Class MyProgram

Public Shared Sub Main()

Dim myString1 As String = "The sky is blue!"
Dim myString2 As String = "The air is fresh!"

Dim myStringArray As String() = {"Sunny", "Windy", "Rainy"}

InfoWindow.Write(myString1)
InfoWindow.WriteLine("")

'InfoWindow.WriteLine(myString2, 10)


End Sub

End Class 

www.nxjournaling.com

RE: Is it possible to test SNAP without licence ?

(OP)
Hi John and Cowski

Thanks for your answers. Now I understand how to test MiniSnap.


Regards
Didier Psaltopoulos
http://www.psi-cad.com

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources