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

Search:

Type: Posts; User: Alexz003

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    1,230

    Problem with recursive file search

    I am trying to recursively search through all the files on my computer and for the life of me, I can't seem to get it to go without erroring/getting stuck in a loop. Basically, when the program...
  2. Replies
    2
    Views
    1,917

    Re: NullPointerException Java MySQL problem

    I actually figured it out.

    Originally i was using a PreparedStatement and set it = to null. i forgot to prepare the statement and then execute it...

    So the final code was



    ...
  3. Replies
    2
    Views
    1,917

    NullPointerException Java MySQL problem

    Hello, i'm working with SQL's and in this bit of code i'm basically trying to fetch the data located in the 'date' column in my table.



    Statement pStmt = null;...
  4. Replies
    5
    Views
    4,243

    Re: MySql Error in Java program

    Thanks that worked :)
  5. Why is this coming up with a NullPointerException Error

    Hello, i'm working with SQL's and in this bit of code i'm basically trying to fetch the data located in the 'date' column in my table.



    Statement pStmt = null;...
  6. Replies
    5
    Views
    4,243

    Re: MySql Error in Java program

    Sorry. I tested it and it didn't work. Returning the same error.
  7. Replies
    5
    Views
    4,243

    Re: MySql Error in Java program

    Hmm really? Im just curious because when I ran the program and inserted the date directly, it didn't require quotes around it. Could that be because I was using an actual value instead of a variable...
  8. Replies
    5
    Views
    4,243

    MySql Error in Java program

    Hello,

    I'm not really sure if this is the right area i should be putting this(so i'm going to post it both in java section and this section) but here is the problem.

    I am getting the following...
  9. Replies
    4
    Views
    1,806

    MySql Error in Java program

    Hello,

    I'm not really sure if this is the right area i should be putting this(so i'm going to post it both in mysql section and this section) but here is the problem.

    I am getting the following...
  10. Replies
    3
    Views
    1,532

    Re: What am i doing wrong in this code?

    Thank you so much :D is there a thank button or anything? xD
  11. Replies
    3
    Views
    1,532

    What am i doing wrong in this code?

    I am having problems with a very basic menu program and can't seem to figure out why i not getting the proper return:



    import java.util.Scanner;
    public class WellnessMenu
    {
    public static...
  12. Replies
    1
    Views
    1,609

    Injectable DLL's

    Hey, i am looking for a tutorial on creating an injectable DLL's into applications using DLL injectors. What language is most commonly used? is it even based off of another programming language?
  13. Replies
    1
    Views
    8,838

    JTextField setBounds

    ok so i am trying to create a program but when i try set its bounds, i always get a small box each time...


    JTextField ip = new JTextField();
    ip.setVisible(true);
    ip.setBounds(10,10,40,40);...
  14. Replies
    4
    Views
    997

    Re: Help with Java

    Yea i am aware, he was asking for some ways to make him a better coder, i was just helping him with making it easier to read and understand what was going on in coding.
  15. Replies
    5
    Views
    1,106

    Re: Accessing website data

    Is there a way i can find out if it is hashed or not?
  16. Replies
    4
    Views
    997

    Re: Help with Java

    Well, i can give you a tip regarding the way it is organized. When you are doing a System.out.println(""); you can keep all of the text on one line so that you dont use up alot of lines.
    Also with...
  17. Replies
    5
    Views
    1,106

    Re: Accessing website data

    In a program on my desktop. I want it to login into the website and retrieve my grades and re-display them in a new program so it makes it easier to access.
  18. Replies
    5
    Views
    742

    Re: array assignmnet =(

    try something using a for loop

    when you have your variable declared just do print



    for(int counter=0;counter<array.length;counter++){
    System.out.print("*");
    }
  19. Replies
    5
    Views
    1,106

    Accessing website data

    Ok, i am trying to get a program to connect to a website and grab information. I want to be able to get my grades in school and be able to display them in a program, but i don't know how to get the...
  20. Replies
    3
    Views
    692

    Re: Embedding a video.

    Thanks ninja9578
  21. Replies
    3
    Views
    692

    Re: Embedding a video.

    hello?
  22. Replies
    3
    Views
    692

    Embedding a video.

    Is there a way to embed a video into a program using Qt? I want to add a video to this program that i am working on that comes from a website, but loads right there.

    I need this for Qt 4.0
    ...
  23. Replies
    18
    Views
    3,482

    Re: C++ Programing Help

    If you are going to argue with other people and show off noob code that won't get you anywhere in life, then at least learn how to spell sarcasm...


    --Alex
  24. Re: Get files from other computers on wireless network

    I am talking about for other computers that allow me to access them. I want to, for example, get on a co-workers computer and get the file that i am looking for. I want it to be able to give me a...
  25. Get files from other computers on wireless network

    Hi, i am working on a new program and i need to know what i would need to learn in order to be able to make a program that can explore and take files from another computer on your wireless network....
Results 1 to 25 of 105
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured