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

Search:

Type: Posts; User: algea

Search: Search took 0.07 seconds.

  1. Thread: ASP interpreter?

    by algea
    Replies
    0
    Views
    1,072

    ASP interpreter?

    i am looking for an ASP interpreter that would be used by Xitami Web Server and behave like Perl.exe and be run inside Xitami after producing meta task and take results.
    Is there a specific solution...
  2. Environ variables setted to be used from Batch Files

    Hi
    i have tried to apply this to the enviroment variable to be changed from batch files. I have tried to find an definite answers from spesific resource... Then the thing what i tried to be solved...
  3. Replies
    3
    Views
    612

    Pointer write error

    Hi,
    I am trying to learn C++ programming inside VS2010. I have a impossible error at line highlighted with ****. After for loop, the data can not be written inside the memory that is pointed. What...
  4. getch replacement and typematic rate problem

    Hi
    i have prepared a new inputbox fuction that gets keyboard input from console.it is more useful than scanf. I tried to add mouse support to my function i also prepared mouse routines for this...
  5. Re: How to get mouse row and column position in console application

    ok Below code is final status of my function. it is working and fullscreen problem has been solved. There is not so much information about this on net so i had to prepare one. i wanted to share. ...
  6. Re: How to get mouse row and column position in console application

    ok i have tried to fix it. i am not good at C++. i have completed nearly all. The last issue is fullscreen mode trick that i could not solve. Then i will continue my project. i have stucked here
  7. Re: How to get mouse row and column position in console application

    I have tried to modify the function. But there is a problem. When i press "Alt+Enter" in Fullscreen mode GetConsoleFontSize function returns only zero value for font size. is there a tip for this. i...
  8. Re: How to get mouse row and column position in console application

    hıım, i have found a different method. But i still have some problems in full screen mode




    void mousexy(int& x, int& y){
    POINT p;
    CONSOLE_FONT_INFO tempfont;...
  9. How to get mouse row and column position in console application

    i have prepared a basic function that gives the mouse coordinates relative to console. But i want to calculate the mouse row and mouse column values. How can we do this.
    Regards


    void...
  10. Replies
    9
    Views
    1,671

    Re: Ternary operator???

    ok thanks to everyone. This time works the same
    Dim a As Integer = (23 * 3 \ 9 + 1993 + 4 + 1977 \ 4 - 1977 \ 100 + 1977 \ 400) mod 7
  11. Replies
    9
    Views
    1,671

    Re: Ternary operator???

    Dim a As Integer = (23 * 3 / 9 + 1993 + 4 + 1977 / 4 - 1977 / 100 + 1977 / 400) mod 7

    int a =(23 * 3 / 9 + 1993+ 4 + 1977 / 4 - 1977 / 100 +1977 / 400) %7;

    why these two expressions are...
  12. Replies
    9
    Views
    1,671

    Re: Ternary operator???

    if (m < 3) {
    d=d+y;
    y=y-1;
    r=(23 * m / 9 + d + 4 + y / 4 - y / 100 + y / 400) % 7;
    }
    else{
    d +=y -2;
    r= (23 * m / 9 + d + 4 + y / 4 - y / 100 + y / 400) % 7;
    }
  13. Replies
    9
    Views
    1,671

    Ternary operator???

    Hi,
    This is my first post. i want to explain my problem. There is a C++ statement using Ternary operator.
    int d = day; // day is first
    int m = month; // the month we selected
    int y = year; // the...
Results 1 to 13 of 13





Click Here to Expand Forum to Full Width

Featured