Hello,
You can define a visual rule with an VB script to run after a button click with instructions to create interpart expression
Gelson Z. Nicoletto
V.18-NX2206
Hello, in customer defaults you can suppress this itens in the report, but this will not change the time to process the analysis.
Gelson Z. Nicoletto
V.18-NX2206
Hello,
In the simple way, in your install folder like "C:\Program Files\Siemens\NX2206\STEP214UG" you will have the prt template files used to convert from step.
step214ugnull_in.prt
step214ugnull_mm.prt
you can overwrite with your template mantaining this names.
Gelson Z. Nicoletto
V.18-NX2206
The simple nx bundle could make a lot of stufs, i work with molds and don't use moldwizard.
the subtraction way depends if your part is simple or not. i prefer the aproach of extract faces of each side, model the split surface, and afeter sew in a solid block.
The tool "Check regions" is a good...
In cloning the parameters will remaing with the original retained files, so you will not lose any parameters. try to use first the create clone and in a second moment use edit exist assy
Gelson Z. Nicoletto
V.18-NX2206
I'd like to share my project to handle de NX Menu Script language using VSCode.
In this link to github I shared the project of language extension to handle some file types: abr, btn, dat, gly, grb, men, rtb, tbr
Link
The purpouse is get a more friendly view of nx customization files
Any...
Try with echo "%1" and -args "%1"
@echo off
echo "%1"
C:\PROGRA~1\Siemens\NX2212\NXBIN\run_journal.exe <pathtoscript> -args "%1"
pause
Gelson Z. Nicoletto
V.18-NX1980
Hello,
Try this string join and place all inside a try to get a error msg.
Try
Dim filename As String = Strings.Join(args, " ")
Catch ex As Exception
Console.OpenStandardOutput()
Console.WriteLine(ex.ToString)
Console.WriteLine()
End Try
Gelson Z. Nicoletto
V.18-NX1980
Hello,
I like the Arial Unicode MS as told by Tomas but you need to look if all of your coworkers have the 365 suite. If not you need to manual install this font in each pc.
Gelson Z. Nicoletto
V.18-NX1980
Hello,
You will need some expressions:
A handle exp Ex.: x = 4
A table with all data
ex. Table={{4,0.8,4.3,9},{...}}
In each expression you look in the table you will need a loop formula
Ex. H =
loop {
for $set in Table;
if ((x = nth(1,$set))) Return nth(2,$set);
Return is 0;
}
Gelson...
Hello,
Only with journaling you will unlock.
Folow a sample code I use to do it.
Option Strict On
Imports System
Imports NXOpen
Imports NXOpen.UF
Imports NXOpenUI
Module Unlock
Private text As String
Dim s As Session = Session.GetSession()
Dim ufs As UFSession =...