cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
rmthomas
Level III

Is there a way to Lock/password protect a JMP Journal?

Hello Everyone,

 

I am trying to lock or password protect a JMP Journal. I plan to give this journal out at work and I want it to be not able to be edited just used as a guide. is this even possible?

1 REPLY 1
txnelson
Super User

Re: Is there a way to Lock/password protect a JMP Journal?

Many times I will place a picture of an object in a journal, if I don't want it to be changed.  The simple script below does that for the output from a Fit Y by X(Bivariate)

Names Default To Here( 1 );
dt = Open( "$sample_data/semiconductor capability.jmp" );
biv = Bivariate(
	Y( :PNP2 ),
	X( :NPN1, PNP1 ),
	Fit Line( {Line Color( {212, 73, 88} )} )
);

myJournal = New Window( "Locked",
	((Report( biv[1] ) << parent) << parent) << get Picture
);

biv << close window;
Jim