cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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

Recommended Articles