CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: proxima centaur

Page 1 of 18 1 2 3 4

Search: Search took 0.11 seconds.

  1. Replies
    2
    Views
    944

    Re: Doubt in Java

    I don't think he wants to reinvent the wheel, but would rather be pointed in the direction of the wheel ;)
  2. Replies
    60
    Views
    4,300

    Re: Gas prices in ur country

    True, lots of money goes to taxes, but oil control by OPEC makes the prices rise and keep our wallets hostages... It's all about a quasi-monopoly.

    Gas companies decide on a price and stick to...
  3. Replies
    30
    Views
    5,192

    Re: Transition from non-visual to visual

    trying without knowing makes you know ;)

    that's called learning... and programmers do that a-plenty! :p :thumb:
  4. Replies
    6
    Views
    5,690

    Re: K-means algorithm

    If you precalculate all distances in a table between each point, then the algorithm will go fast after.
  5. Replies
    60
    Views
    4,300

    Re: Gas prices in ur country

    Today in Quebec, Canada, the cost of ordinary leadless gas is at a record high

    0.81$us / liter

    (according to XE.COM conversion)

    it used to be 0.46$us / liter 10-15 years ago.

    :rolleyes:...
  6. Replies
    30
    Views
    5,192

    Re: Transition from non-visual to visual

    My comment: try and see for yourself. Then forge your own opinion ;) :p
  7. Replies
    0
    Views
    1,029

    floating JToolBar title change

    How can I change the title (the label of the window) of a floating JTooBar instance?

    setName() will only work if I put the window back to unfloatable and then re-drag the JToolBar to create the...
  8. Re: Someone stole my phone! HELP!

    huh,... wrong forum, maybe? :ehh:
  9. Re: Changing DefaultLookAndFeel at runtime

    Ok, you mean for the application bar, icons...

    hmmm it says in your tutorial you simply have to tell the frame that it should use decoration. after that, when you use the application like with my...
  10. Re: Changing DefaultLookAndFeel at runtime

    I have no idea what LookAndFeelDecoration is... :thumb:
  11. Re: Changing DefaultLookAndFeel at runtime

    In an application JFrame class, for example, place the following member variables:


    private LookAndFeelInfo[] InfoLAF = null;
    private ButtonGroup group = null;
    private JMenu jMenu = null;

    ...
  12. Replies
    1
    Views
    1,465

    Re: Eclipse editor compatible with 1.5

    Version 3.1.0 RC2 seems to provide support for java 1.5.

    Self-answered question :).
  13. Replies
    1
    Views
    1,465

    Eclipse editor compatible with 1.5

    Is there an Eclipse plug-in somewhere that implements the syntax for the new templates for containers that java 1.5 has?

    I mean so that I can use for instance: "Vector<String>"

    thanks
  14. Replies
    24
    Views
    2,992

    Re: Common Sense Programming

    What's worse, is when you try to change the policy in a company about that and people say: "Well, you can't make all functions less than 25 lines! that's crazy! It will be **** to debug! :rolleyes: ...
  15. Poll: Re: CodeGuru Poll: Have You Used Visual Studio 2005 Beta?

    I do not need anything more than 6.0... but I'm coding with .net... so I really don't need anything else. Does the IDE get improved? That would be the only reason I'd give it a try.
  16. Re: Problems with diaolg-based application

    where is your question?

    If you fail to provide people with a good description of your problem, you will fail to have people answer...
  17. Re: Instantiate a new class when only have Class Name in String

    Look at "abstract factory" or "factory method" in design patterns.
  18. Replies
    10
    Views
    1,762

    Re: Why .NET, not Win32?

    Personally, I have yet to understand what .NET really is hehehe

    sorry to pollute the poste... ;) gone now. :p
  19. Replies
    1
    Views
    1,734

    Search in TreeSet

    Is it possible to do a search in a TreeSet object other than by using iterators and looking at each elements?
  20. Replies
    5
    Views
    1,691

    Re: Aggravating Advertising

    Does it give you back the space the ad occupied?
  21. Replies
    3
    Views
    2,463

    Re: reading html file in JAR file

    I found a way to force the jar file to load my html file as html.



    java.net.URL aboutURL = AboutDialog.class.getResource("About.html");
    if (aboutURL != null) {
    try {...
  22. Replies
    16
    Views
    1,866

    Re: MultiPlatform IDE/Compiler needed

    Code Warrior, for Mac.
  23. Replies
    3
    Views
    2,463

    Re: reading html file in JAR file

    Yes, it's the only difference. JAR vs. non-JAR files.

    Yeah... I haven't investigated this bug since I have other "higher" priority things to do, but I thought I'd ask anyway... to see if anybody...
  24. Replies
    3
    Views
    2,463

    reading html file in JAR file

    I'm trying to read an html file from a JAR file. I'm using a JEditorPane to display the html contents.

    When I execute my program outside of the JAR file (meaning that I "unjar" the jar), the code...
  25. Visual Editor w/ Eclipse not rendering my visual class

    I'm using Eclipse with the Visual Editor installed. It worked perfectly fine, meaning I would put swing elements and it would generate the code, and I'd add code and the changes would be in the...
Results 1 to 25 of 427
Page 1 of 18 1 2 3 4





Click Here to Expand Forum to Full Width

Featured