Flickering appears in IE 6,7.
Put this in your html
< meta http-equiv="Page-Enter" content="reveal trans(duration= 1.0)">
< meta http-equiv="Page-Exit" content="reveal trans(duration= 1.0)">
Good luck
User Profile
Collapse
-
If you want to learn a programming language:
1) learn from one good tutorial (24 Days tutorial is ok)
2) make all examples from that tutorial
3) take some sources from net and try to understand them
4) make a small project
5) make a bigger project
6) work, work, work
Good luck!Leave a comment:
-
It is possible to create an exe file from a java .class
Make a shortcut - a create shortcut window appears... in 'type the location of the item textbox' insert the javaw command to point to the java class.
For example: javaw Test.class
Type next. A windows exe file will be created!
Good luckLeave a comment:
-
-
I think the problem is at add method.
Please use add(Object o), not add(int o)
Read java documentation about ArrayList
http://java.sun.com/j2se/1.4.2/docs/...ArrayList.html...Leave a comment:
-
Import only tells the compiler where to look for symbols.
The search for names is very efficient so there is no effective difference between
import java.* or import java.ClassLeave a comment:
-
There is not a memory problem.
But importing classes can lead to ambiguities. A class name is ambiguous if it occurs in two packages that are imported by wildcards. For example, suppose a program contains the imports
import java.awt.*;
import java.util.*;
The List class exists in both import statements.
If use List in your program, which List trully will use?Leave a comment:
-
-
You can't use delegates in java!
The java events mechanism is different from C# for example.
I C# you declare a delegate, an event that use the delegate, a method that implements the code of event and so on...
In java you declare an event like...
import java.util.Event Listener;
public interface WizardListener extends EventListener
{
public abstract void nextSelected(Wi zardEvent...Leave a comment:
-
For converting class to java I recommend you:
DJ Java Decompiler v.3.9.9.91
Googling for DJ Java and download
IT IS SUPERLeave a comment:
-
Correct.
make a loop and ...
System,out.prin tln(czyNajblizs zySasiad[i])...Leave a comment:
-
Probably you must increase the Java applet memory limit.
Click on 'Control Panel'
Double click on the 'Java Plug-in' icon
Select the 'Java' tab and click on the 'View...' button, under the 'Java Applet Runtime Settings' section.
Find the most recent 'Version' Java runtime line (below: 1.5.0_06 is more recent than 1.5.0_05) and double click on the 'Java Runtime Parameters' box and add "-Xmx300m"...Leave a comment:
-
It is possible to create an exe file from a java .class
Make a shortcut - a create shortcut window appears... in 'type the location of the item textbox' insert the javaw command to point to the java class.
For example: javaw Test.class
Type next. A windows exe file will be created!
Good luckLeave a comment:
-
If you want to make a GUI application for windows, the Visual C Sharp or Visual Basic is probably the best solution.
If you want to make a GUI application for other platform, you can choose JavaLeave a comment:
-
It's very possible to get error with an older eclipse running a very new java version.
Try an eclipse version that was tested with java 1.6 (if exists).Leave a comment:
-
Java on VMWare problem
Hello,
I run a Java GUI application on Windows XP platform in VMWare.
I have a very very strange problem... my application stops unexpectedly without returning an error.
Is there a problem with java on vmware?
Is possibly a memory problem? i set 1500 mb of memory.
Any ideas?
Thanks, -
-
Windows Bat
Hello,
I have a bat file in which I run a java command.
I've made a shortcut to that java file, and work.
But in the background a cmd console appear.
How can I hide the cmd window?
Thanks,
No activity results to display
Show More
Leave a comment: