User Profile

Collapse

Profile Sidebar

Collapse
odefta
odefta
Last Activity: Dec 19 '07, 12:45 PM
Joined: Jul 5 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • 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
    See more | Go to post

    Leave a comment:


  • odefta
    replied to Newbie
    in Java
    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!
    See more | Go to post

    Leave a comment:


  • odefta
    replied to to create exe file
    in Java
    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 luck
    See more | Go to post

    Leave a comment:


  • odefta
    replied to Catch/Throw
    in Java
    You can make any subclass of subclass :)
    See more | Go to post

    Leave a comment:


  • odefta
    replied to Class cast exception
    in Java
    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...
    See more | Go to post

    Leave a comment:


  • odefta
    replied to About import command
    in Java
    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.Class
    See more | Go to post

    Leave a comment:


  • odefta
    replied to About import command
    in Java
    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?
    See more | Go to post

    Leave a comment:


  • odefta
    replied to How to dump memory from some address ?
    in Java
    Yes it's true... that's Java...
    See more | Go to post

    Leave a comment:


  • odefta
    replied to Delegates?
    in Java
    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...
    See more | Go to post

    Leave a comment:


  • odefta
    replied to Can We convert Class to java
    in Java
    For converting class to java I recommend you:

    DJ Java Decompiler v.3.9.9.91

    Googling for DJ Java and download

    IT IS SUPER
    See more | Go to post

    Leave a comment:


  • odefta
    replied to not a number double
    in Java
    Correct.
    make a loop and ...
    System,out.prin tln(czyNajblizs zySasiad[i])...
    See more | Go to post

    Leave a comment:


  • odefta
    replied to Applet size
    in Java
    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"...
    See more | Go to post

    Leave a comment:


  • odefta
    replied to javaexe
    in Java
    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 luck
    See more | Go to post

    Leave a comment:


  • odefta
    replied to comatibility...
    in Java
    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 Java
    See more | Go to post

    Leave a comment:


  • odefta
    replied to A problem with Eclipse and Java runtime 1.6
    in Java
    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).
    See more | Go to post

    Leave a comment:


  • odefta
    started a topic Java on VMWare problem
    in Java

    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,
    See more | Go to post

  • odefta
    replied to Windows Bat
    I found the answer: use javaw instead of java...
    See more | Go to post

    Leave a comment:


  • odefta
    started a topic Windows Bat

    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,
    See more | Go to post
No activity results to display
Show More
Working...