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

Search:

Type: Posts; User: Basit781

Page 1 of 3 1 2 3

Search: Search took 0.07 seconds.

  1. Re: question reagrding byte and integer size holder

    Hmm thanks to you both. Now i understood.

    Thanks:)
  2. question reagrding byte and integer size holder

    Hi to all,
    Hope you all will be fine. Actually i read a Java certification book in which i encountered these statements



    byte a = 3; // No problem, 3 fits in a byte
    byte b = 8; //...
  3. Re: Applet not creating files when put to server

    if it is not error then why file is not creating in the specified folder on server




    String folder="fmtest/"+uname;


    Thanks
  4. Re: Applet not creating files when put to server

    Sorry for late reply:( Actually i didn't check the java console. I just ran the applet and while running there is no error. Any ways on windows when i ran my applet i got this inside java console.
    ...
  5. Applet not creating files when put to server

    Hi to all,
    Hope you all will be fine. I have an applet that record your sound and create .wav file. I created the certificate and run it on wondows , it create file in the default folder...
  6. Need help regarding designing chat screen in Java ME

    Hi to all :)
    Hope you all will be fine. Actually i am developing sms chat application in Java ME. I want to design my chat screen like Iphone style message screen. In which when message...
  7. Replies
    15
    Views
    14,464

    Re: Need help regarding Java speech API

    Hi :)
    Hope you will be fine.



    Thanks to Keang for pointing me to the problem that i have to get recognizer form Sphinx4 or IBM. sphinx4 code is available so you can get it from the...
  8. Re: How to repeat the scene from scratch in game programming

    Hi ,
    Thanks. Sorry for very very late reply :). I have repeated the scene. You said right that just reinitialize all sprite positions after some time. But now i have to ask one question...
  9. How to repeat the scene from scratch in game programming

    Hi to all,
    Hope you all will be fine. I am making a cricket game. What is happening that game starts all the sprites position are set, the scene updated , ball move, when ball strikes...
  10. Replies
    4
    Views
    1,455

    Re: Need help regarding game logic

    Hi thanks,
    My friend after hitting the floor, i want ,the ball move in the same direction i.e. 270 but with a bouncing effect. Suppose i set my ball coordinates to (40, 100) and...
  11. Replies
    4
    Views
    1,455

    Need help regarding game logic

    Hi to all,
    Hope you all will be fine. I am making a cricket game and now i am stuck at a point when i am trying to do a ball. Actually what happen , that when ball strikes with the...
  12. Re: Sprite not showing when i use MathFP class in JavaME

    hey problem solved :). The line should be



    ballSprite.setRefPixelPosition(MathFP.toInt(ballXFP), MathFP.toInt(ballYFP));


    Thanks :)
  13. Sprite not showing when i use MathFP class in JavaME

    Hi to all,
    Hope you all will be fine.I am making a cricket game. Every things work fine when i use integers in my game, say to set the position of the sprite. But when i switch to...
  14. Re: Getting error invalid use of incomplete type ‘struct

    :D yup :) It was just a trial exercise :);)
  15. Re: Getting error invalid use of incomplete type ‘struct

    Hi,
    Thanks Mr Paul:) i always wait for you when i put post here in C++ forums:). Anyways when i did it in this way it compiled. Actually MainScreen is .cpp file. But when i converted it to .h...
  16. Replies
    3
    Views
    4,480

    Re: Netbeans C++ Error

    Hi,
    I use Netbeans for C++ and is working fine. You did something wrong while setup the netbeans for C++. Netbeans is very light IDE while Visual Studio is very heavy. I use Visual Studio...
  17. Getting error invalid use of incomplete type ‘struct

    Hi to all,
    Hope you all will be fine. Actually i wrote a simple class in which i used inheritance. But when i instantiate this class in main() i am getting error



    I used the forward...
  18. Need help regarding developing cricket game in Java or Java ME

    Hi to all,
    Hope you all will be fine. Actually i want to make a cricket game in Java ME. So i need some help that how can i start. I am a Java Programmer but new to Java Game...
  19. Error: identifier "WINDCLASSEX" is undefined

    Hi to all,
    Hope you all will be fine. I am new to Visual C++. Just stated Windows programming. While reading book, i was creating a program but at line, i got an error.


    ...
  20. Replies
    11
    Views
    1,038

    Re: Need Help Regarding Derived classes

    I mean to say when i am using syntax



    int main(int argc, char** argv) {
    SubClass subClass(5);
    SubClass SubClass(subClass);
    return 0;
    }
  21. Replies
    11
    Views
    1,038

    Re: Need Help Regarding Derived classes

    Thanks



    How can i implement copy constructor and assignment operator in this case. It's a very simple code so you can tell me easily.

    One thing i want to ask. I am passing subclass...
  22. Replies
    11
    Views
    1,038

    Re: Need Help Regarding Derived classes

    Hmmm, so you mean i should have to do some thing like this



    int main(int argc, char** argv) {

    SubClass subClass(5);

    SubClass SubClass(subClass);
  23. Replies
    11
    Views
    1,038

    Need Help Regarding Derived classes

    HI to all,
    Hope you all will be fine. I am reading about derived classes and wrote a simple program but i got an error. Actually i wanted to see how class hierarchy works. Means if you...
  24. Replies
    2
    Views
    520

    Need help regarding Linked List

    Hi to all,
    Hope you all will be fine. Actually i want to learn the basics of linked list, that's why i read about what linked list is and then wrote a simple program. I want to ask is...
  25. Re: Problem in printing characters by using class

    Hi :)
    Mr. Paul i read your comments and i am very thankful to you for giving me suggestions. I greatly appreciate your suggestions:). But as i already told that i am newbie so it was just an...
Results 1 to 25 of 73
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured