Computer Science Canada

microsoft publisher

Author:  The_$hit [ Mon Apr 18, 2005 5:50 pm ]
Post subject:  microsoft publisher

My teacher is making us use microsoft publisher to create a website. Does any one know of any way to incorperate a small java program into a microsoft publisher web page?

Author:  rizzix [ Mon Apr 18, 2005 6:52 pm ]
Post subject: 

applets... speaking of which do you know how to program in java?.. or are u using a program created by someone else.

Author:  The_$hit [ Mon Apr 18, 2005 9:27 pm ]
Post subject: 

i am learning the syntax of java so it would be a program that i am making. nothing complicated.

Author:  Tony [ Mon Apr 18, 2005 9:32 pm ]
Post subject: 

publisher? not FrontPage? Confused

ether way -- design your site, then just paste in a desired HTML tag after Wink

Author:  The_$hit [ Tue Apr 19, 2005 1:02 pm ]
Post subject: 

What is the tag that is to be used? What would you need to add to make java code into an applet?

Author:  wtd [ Tue Apr 19, 2005 9:47 pm ]
Post subject: 

The_$hit wrote:
What is the tag that is to be used? What would you need to add to make java code into an applet?


You're need to use the JApplet class in Javax.swing. Look at the init and paint methods, if memory serves.

Author:  The_$hit [ Wed Apr 20, 2005 6:44 am ]
Post subject: 

do you know the HTML tag that is used to include the Java code?

Author:  Tony [ Wed Apr 20, 2005 2:01 pm ]
Post subject: 

HTML:

<APPLET CODE=AppletSubclass.class WIDTH=anInt HEIGHT=anInt>
</APPLET>


For more in-depth, consult Sun


: