nxplm
Computer
- Nov 3, 2011
- 11
I have implemented that function in my program. All the time it returns false, even the part was modified. However When I write the same code in a NX Journal, it works perfectly.
Code:
bool result;
Session theSession = Session.GetSession();
UFSession theUFSession = UFSession.GetUFSession();
UFPart ufPart = theUFSession.Part;
Part part1 = (Part)theSession.Parts.FindObject("MyPart");
result = theUFSession.Part.IsModified(part1.Tag);
Does anyone know the reason of that problem?
Thanks
Code:
bool result;
Session theSession = Session.GetSession();
UFSession theUFSession = UFSession.GetUFSession();
UFPart ufPart = theUFSession.Part;
Part part1 = (Part)theSession.Parts.FindObject("MyPart");
result = theUFSession.Part.IsModified(part1.Tag);
Does anyone know the reason of that problem?
Thanks