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

Search:

Type: Posts; User: ajhampson

Page 1 of 6 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    1
    Views
    1,201

    Re: OpenFire templates for Eclipse

    I'd suggest you post in the Eclipse forum (if you havaen't already). There you find more Eclipse-dedicated answers, while here the answers tend to be about Java itself.
  2. Replies
    2
    Views
    1,268

    Re: while loop issue

    You could also consider using the modulus operator for your while condition. It returns the remainder of dividing its first argument by the second. For example:



    System.out.println(5 % 2);

    ...
  3. Re: [Struts] Which IDE to use and how to start a new project

    Odd, just Googling "struts2 example netbeans" gave me a page full of relevant results. Am I missing something?
  4. Replies
    26
    Views
    3,460

    Re: Question about C++, compilers

    I thought I answered that:


    Am I just not understanding your question? :confused:
  5. Replies
    1
    Views
    837

    Re: Netbeans Web Applications

    Are you talking about doing JSPs or some Java related technology, or just creating HTML and/or JavaScript pages?

    If it's Java, if you could clarify your question a bit more it would help.

    If...
  6. Replies
    2
    Views
    751

    Re: Linux programming

    Ok. What does this have to do with Java programming? What is your question? Your title is Linux Programming, but nothing I see in the comment involves programming, just putting up a server.

    Please...
  7. Replies
    3
    Views
    4,042

    Re: Refreshing crystal report using java

    Code tags [ code] [ \code] will preserve your formatting and make the code easier for us to read.

    Any errors? Any exceptions thrown? How does this code get executed? Again, I don't know if anyone...
  8. Replies
    26
    Views
    3,460

    Re: Question about C++, compilers

    Mostly correct. The make utility is sometimes provided by a compiler install, sometimes as a stand-alone utility. More on this below.


    Not at all. I haven't tried this in a while, but Nokia...
  9. Replies
    3
    Views
    4,042

    Re: Refreshing crystal report using java

    OK, I don't have a Crystal Ball to look at your Crystal Reports code :D, so any answer would be a guess.

    I would think though that this might be a problem for a Crystal Reports forum. If you...
  10. Replies
    3
    Views
    3,278

    Re: Not able to clear data in 2d array

    Also, please post all the code and use code tags.
  11. Re: Easy answer new to Java. "reached end of file while parsing"

    This is why you'll see code indented. It makes finding missing end brackets a bit easier. Take a look:


    public class week3day5
    {

    public static void main(String[] args)
    {
    ...
  12. Replies
    2
    Views
    1,454

    Re: javadb problem pls help

    First of all, I agree with ProgramThis about the "location" vs date thing. You should check that first.

    In this code

    List result = session.createQuery("from Presentation.Appoinment where...
  13. Replies
    6
    Views
    4,291

    Re: Send SMS BlackBerry

    Apologies. Apparently, I didn't test my link. It should have been this which would have taken you here.

    The first link is Sending and receiving GSM SMS on Blackberry using RIM APIs ...

    The...
  14. Re: Is private void the wrong thing to be using here?

    That's the way it works sometimes. You have to use 2 or 4 (or more) methods to build the data you need in the current method. And each of them might call other methods as well.

    It's like building...
  15. Replies
    12
    Views
    2,372

    Re: Reverse Engineering Code Prevention

    One last thought from here:



    Obfuscation is STO in a classic sense. If someone really want the code, they'll find a way to get it. By hiding it on the server and obfuscating it, you may even...
  16. Replies
    6
    Views
    4,291

    Re: Send SMS BlackBerry

    Try this

    Really, the first result is a tutorial article and the third one is directly from RIM's support site. :confused:
  17. Replies
    4
    Views
    1,000

    Re: incremented loop question

    Well, if I was doing this, I'd first loop through all the nodes in the list. Then I'd use the node in the list from that loop as the starting point in a second loop. In the second loop I'd print the...
  18. Re: Is private void the wrong thing to be using here?

    Something I notice from your text is that you really don't seem to understand what public, private, and protected are. Also, void seems fuzzy to you.

    In Java, methods normally have return types...
  19. Replies
    2
    Views
    899

    Re: Any 3D Game information?

    Have you been to Java3d.org? Seems to be lots of examples, etc. there. Also, I have this book and it seems pretty good so far.

    Really, googling "3D game in Java3D" produced a ton of results, many...
  20. Replies
    5
    Views
    2,561

    Re: Cannot find symbol : class

    First of all, you should post the actual code you're working on. Trying to compile what you posted, I get the following:

    AddFractions.java:17: incompatible types
    found : int
    required: boolean...
  21. Replies
    2
    Views
    900

    Re: Trouble with code

    Hi,

    Please post your code in code tags to preserve formatting. It helps us to help you.

    What do you mean by "For some reason, my code isn't working properly"? Does it compile? Does it run? Do...
  22. Thread: Mbr

    by ajhampson
    Replies
    32
    Views
    5,228

    Re: Mbr

    Try this I see numerous options with source that you could use as a tutorial.
  23. Re: Recommend database engine for Java program

    Which is why you came here to ask questions. Recognizing your skill level and not letting your ego interfere are good traits. My question is, if you realized your noob status and asked for advice,...
  24. Replies
    8
    Views
    3,383

    Re: traversing a binary tree

    Welcome to codeguru. Some things we ask when you are posting questions:

    Always post your code (the actual code you're working on now) in code tags: [ code] [ /code] or the # tool on the post...
  25. Re: check colum which have multiple values in mysql

    I agree with this. The problem is with your SQL statement, where you're comparing user.user to games.games. You'll never get a match. I think you want something like this:


    select * from games...
Results 1 to 25 of 137
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured