Code

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I am trying to run the following code but I must be missing something because I keep getting errors. This refers the MSKB article 177176. Any help?

BoB

<html><body><script>
class test
{
public static void main(String[] args)
{
String build;
build=com.ms.util.SystemVersionManager.getVMVersion().getProperty
("BuildIncrement");
System.out.println("Using build "+build);
}
}
</script></body>
 
That's visual J++ script for a JAVA project
- not a browser supported script
Search for a JavaScript to determine if JAVA is installed

--




| Hi,
|
| I am trying to run the following code but I must be missing something because I keep getting errors. This refers the MSKB article
177176. Any help?
|
| BoB
|
| <html><body><script>
| class test
| {
| public static void main(String[] args)
| {
| String build;
| build=com.ms.util.SystemVersionManager.getVMVersion().getProperty
| ("BuildIncrement");
| System.out.println("Using build "+build);
| }
| }
| </script></body>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top