cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

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

rmthomas
Level III

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