Search:

Type: Posts; User: vopo

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,969

    The size of the image is not fixed, its designed...

    The size of the image is not fixed, its designed to stretch. While its stretching its suppose to add more squares as it stretches on the x and y axis.
  2. Replies
    3
    Views
    1,969

    Generating an image of squares?

    Hi,

    I'm having some trouble to generate this image, with my code:

    http://img81.imageshack.us/img81/6639/imagejm8.jpg

    My current problem is that I can't get the outer spacing around the green...
  3. Replies
    9
    Views
    10,266

    Oh, I never thought of that for the number 9 when...

    Oh, I never thought of that for the number 9 when it is incremented. But what does this part do though?


    //might need to adjust front marker
    if (front == dig)
    --front;


    Does it...
  4. Replies
    9
    Views
    10,266

    Yes it is an array of digits. The digits are...

    Yes it is an array of digits. The digits are short values.

    Thanks for the help!!! :)

    But I have a question about the for loop:


    for (dig = MaxDigits - 1; dig > 0 && hugeInt[dig] + 1 == 10;...
  5. Replies
    9
    Views
    10,266

    My problem is that the operator++ does not...

    My problem is that the operator++ does not increment by one, instead it seems that it increments by the current input value.




    // Pre-increment operator
    HugeInteger & HugeInteger::operator...
  6. Replies
    9
    Views
    10,266

    Overloading operator++

    Hi,

    I'm having some trouble trying to overload the operator ++. When I try to overload it, it does not output the correct output that I want. I want to try to make the first input to be...
  7. Replies
    19
    Views
    37,672

    O ya, the compiler does give a warning. I get...

    O ya, the compiler does give a warning.

    I get it now how to convert from positive to negative:

    -to get -10 from 10, I would need to do this:
    0 - 10 = 10


    Thanks for the help
  8. Replies
    19
    Views
    37,672

    Changing from positive to negative numbers

    Hi,

    I'm having some trouble trying to convert integer values from positive to negative and vice versa.

    Here's an example of what I mean:
    = 10 convert to -10
    = -10 conver to 10


    Here's my...
  9. Replies
    6
    Views
    1,951

    Thanks for the help, I figured out the problem: ...

    Thanks for the help, I figured out the problem:



    using std::cout


    I forgot to put the semicolon at the end of that line of code.
  10. Replies
    6
    Views
    1,951

    It's referring to this part of the code (line 6):...

    It's referring to this part of the code (line 6):



    SavingsAccount::SavingsAccount(double balances, double rate):Account(balances)



    I can't figure out what the problem is still, I rewrote...
  11. Replies
    6
    Views
    1,951

    Syntax error message for ctor

    Hi

    I'm having some trouble trying to figure out my syntax error on my code. I have inspected it many times, but I can't seem to find my error. The compiler that I am using is from the Visual...
  12. Replies
    4
    Views
    17,259

    to convert from string to integer

    Hi,

    I'm having some problems trying to change a string into an integer. I've looked up some examples, but can't seem to find the problem.

    Here's my code:


    #include <stdio.h> ...
  13. Replies
    4
    Views
    1,867

    thanks but is there a way where my...

    thanks

    but is there a way where my "validation" function can validate whether it is a decimal or not.
  14. Replies
    4
    Views
    1,867

    Accepting decimal numbers

    Hi,

    I'm having some trouble with code, trying to make my function to be able to accept decimal numbers.

    But it somehow cannot accept the decimal numbers. It has to be able to accept the...
  15. Replies
    1
    Views
    1,791

    Connecting Dialog window to main window

    Hi,

    I'm having some problem trying to connect my dialog window to my main window.

    Here's my code:


    LRESULT CALLBACK WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
    {...
  16. Thread: Button Design

    by vopo
    Replies
    3
    Views
    1,494

    I'll try that

    I'll try that
  17. Thread: Button Design

    by vopo
    Replies
    3
    Views
    1,494

    Button Design

    Hi,

    I'm having some trouble trying to create button design. I can't seem to put the buttons into a group box.

    Here's an example of what I mean:...
  18. Replies
    1
    Views
    2,022

    Multiplying numbers in an array

    Hi,

    I'm trying to write a code, where numbers in an array, are multiplied by another array of numbers.
    In addition, once the multiplied array has reached its final number it has to loop again. ...
  19. Replies
    2
    Views
    1,475

    Arrite thanks for the advice, I think I have...

    Arrite thanks for the advice, I think I have something working now.
  20. Replies
    2
    Views
    1,475

    Mouse being controlled my arrow keys

    Hi,

    I'm trying to write a code where I can use the arrow keys to move the mouse cursor. I've written my own code, but it doesn't seem to work.

    Can someone show me what my problem is?

    Here's...
  21. Replies
    2
    Views
    2,128

    thanks, I think got it running now.

    thanks, I think got it running now.
  22. Replies
    2
    Views
    2,128

    How to make to scrollbars work?

    Hi,

    I'm having some trouble trying to make my vertical scrollbar work. My horizontal scrollbar works, but the vertical doesn't work properly. It seems that the horizontal scrollbar works in...
  23. Replies
    1
    Views
    1,394

    Centering a map, using GDI

    Hi,

    I'm having some problem trying to figure out a way how to center my rectangle inside my window. I'm trying to make the window ro stay centered even when the window is stretched or compressed....
  24. Replies
    3
    Views
    1,431

    Thanks for the help

    Thanks for the help
  25. Replies
    3
    Views
    1,431

    How do I add buttons near the menu area.

    Hi,

    I'm trying to create a set of buttons that appear underneath the menu area.

    I'm using Visual Studios to create these buttons, i don't know how they can go underneath the menu area. I've...
Results 1 to 25 of 53
Page 1 of 3 1 2 3