function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
mknobmknob 

Load a Java-Program

Hi.

I'm trying to run Java Code on Salesforce. Exactly i've try to create a button on a Object (Account for example). If this button be clicked a window should be open where a Java-Programm do something (for example paint a circle or write a text).

Please can you give me a tip where i have to look for this issue?

David VPDavid VP

You can not run Java code *on* the salesforce servers (you can run Apex code on our servers though).

 

However, if you want the java code to be run in a window then you don't want it to run on our servers, you just need an applet.

 

Check out VisualForce and Apex code. That might be an easer way to accomplish what you want.