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

Search:

Type: Posts; User: tbear

Page 1 of 9 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    2
    Views
    925

    Re: Creating any sort of chart from a text file

    There are free Java libs available which will draw charts for you but they need data in a certain format (depends on the API). You will have to read data from the text file and format it as needed by...
  2. Replies
    2
    Views
    675

    Re: Problem with socket connection

    What process is listening to this socket ?
  3. Replies
    12
    Views
    1,492

    Re: java program "typing" into a different program?

    Have you looked at the java.awt.Robot class? I havent used it though it may have something for you.
  4. Thread: JBoss Problem

    by tbear
    Replies
    1
    Views
    743

    Re: JBoss Problem

    You need to give more details about your current application paths etc. As for creating/copying images at runtime, this should be doable and shouldnt cause a problem if you are using proper paths in...
  5. Thread: guiapp(java)

    by tbear
    Replies
    1
    Views
    620

    Re: guiapp(java)

    Java tutorial, GUI (Swing) section. Go to Sun website you will get it.
  6. Thread: JVM for Dos

    by tbear
    Replies
    2
    Views
    2,905

    Re: JVM for Dos

    Do you have a pure DOS machine(that should be pretty old) or a windows machine running in the DOS mode (command mode). First case you can try an old Sun JVM 1.1x , see if you get it on sun website.
    ...
  7. Replies
    5
    Views
    2,732

    Re: Confused with how to construct arrays

    Did you look at your class attributes ? those that are deaclared as private in your class ??
  8. Replies
    4
    Views
    1,067

    Re: Please Help me!Its Urgent!!!

    Oh, you are in R&D , lucky for you. In that case I would suggest go full throttle and work on this formatting it would be fun.

    I remember long time back I wrote code for some other standard...
  9. Replies
    4
    Views
    1,067

    Re: Please Help me!Its Urgent!!!

    I have not worked with this standard but did a quick google search, its format is not xml, though there are utilities available to deal with the stuff.
    The format looks pretty complex and there are...
  10. Thread: Java IDE

    by tbear
    Replies
    2
    Views
    1,027

    Re: Java IDE

    Use of IDE makes life simple, but you need to know Java in the first place to be able to write working code.
    Netbeans and Eclipse are two popular IDE's apart from those you mentioned and they are...
  11. Replies
    1
    Views
    581

    Re: Learning java + php

    Java and PHP are different, I havent worked on PHP but seen a few scripts in some projects. Their concepts are different too. PHP is a scripting language Java is OO based and I dont recall any...
  12. Replies
    3
    Views
    1,100

    Re: uploading data with ftp commands

    Pure Java FTP clients are available for free on the net if you want to use them. Just search on google, they are much better to be used in Java application. I had used one long time back works well.
  13. Replies
    3
    Views
    1,165

    Re: java.lang.OutOfMemoryError: Java heap space

    Not worked on Eclipse , but there must be an option to increase heap space, try using that. Anyways out of memory is caused by your JVM running out of heap memory, one of the causes may be using of...
  14. Replies
    18
    Views
    1,959

    Re: How can I do this?

    Thats pretty generic question, Iam assuming you are asking for code review.

    Class names should be CamelCase with first character capital eg. Assign.
    Class names should be meaningful whatever does...
  15. Replies
    3
    Views
    880

    Re: Help on a simple problem

    Your methods just have to return back a Matrix type object so you will have something like this in your method code.




    Matrix transposedMatrix; //this is the one you want to return back
    ...
  16. Re: get mobile number when mobile connects to internet

    Iam not an expert on this from what I know is internet access is provided by the service provider and WAP is the protocol (though there may be more protocols used)

    http://en.wikipedia.org/wiki/WAP...
  17. Replies
    18
    Views
    1,959

    Re: How can I do this?

    Are you sure that the code you have posted is the one thats running ? seems to have compilation issues. Also whats this piece supposed to do ?



    MouseListener q=null;
    //gen = new Random();
    ...
  18. Thread: Creating an IDE?

    by tbear
    Replies
    2
    Views
    1,656

    Re: Creating an IDE?

    This is a Java forum so your queries should be Java specific, you havent mentioned your language choice ;)

    Anways your task is really interesting, what I can make out from what you have described...
  19. Replies
    3
    Views
    1,165

    Re: java.lang.OutOfMemoryError: Java heap space

    Are you getting this error while testing ? how do you run this code ?
  20. Replies
    9
    Views
    1,695

    Re: Trouble with a shortest path program

    Did you try using the java.util.Stack class ? why have your own stack implementation ? any specific reason ?
  21. Replies
    1
    Views
    746

    Re: Updated: What can I do to make this work?

    Whatever happened to our other posts :

    Your pebbles variable is defined more than once, causes values to go haywire.
    Your pebbelesDone and pebblesRemain are mixed up, the code does not show...
  22. Thread: Thred main error

    by tbear
    Replies
    2
    Views
    662

    Re: Thred main error

    Seems like an error is happening when you are calling a parseDouble, possibly the string you are passing as parameter is null.
  23. Thread: cache simulator

    by tbear
    Replies
    4
    Views
    2,542

    Re: cache simulator

    Nope, my posting was meant for the original poster not you.
  24. Replies
    8
    Views
    936

    Re: Why won't this program run?

    Code has too many syntax errors, please fix em and then repaste the code.
  25. Thread: cache simulator

    by tbear
    Replies
    4
    Views
    2,542

    Re: cache simulator

    Caching is a failry simple concept and there are various algorithms to implement it, you can write a simple simulator yourself if you understand the concept properly.
    The basic concept is that...
Results 1 to 25 of 214
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured