Search:

Type: Posts; User: paul_uk

Search: Search took 0.01 seconds.

  1. Replies
    22
    Views
    8,658

    int main( void ) { int *buff; //...

    int main( void )
    {
    int *buff; // stores your data
    int num = 0; // stores number of digits
    int ch; // temp store for data

    buff = malloc( sizeof( int...
  2. Replies
    22
    Views
    8,658

    int num; if( num < 10 ) { printf( "num is...

    int num;

    if( num < 10 )
    {
    printf( "num is 1 digit" );
    }
    else if( num < 100 )
    {
    printf( "num is 2 digits" );
    }
  3. Replies
    37
    Views
    11,873

    Aoccdrnig to rscheearch at Cmabrigde Uinervtisy,...

    Aoccdrnig to rscheearch at Cmabrigde Uinervtisy, it deosn't mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht the frist and lsat ltteer be at the rghit pclae. The rset...
  4. Replies
    31
    Views
    7,861

    goverments spend on their military because...

    goverments spend on their military because otherwise you would have a lot of people out of work, not just in the military but civillian contractors to. Impressing the public with how much they spend...
  5. Thread: Formula 1 2005

    by paul_uk
    Replies
    3
    Views
    5,436

    It says a lot for schumi that the governing body...

    It says a lot for schumi that the governing body has to radically change the rules to help the others. Remember schumi left benetton as double world champion with a great team to go to ferrari who,...
  6. Thread: double range

    by paul_uk
    Replies
    1
    Views
    11,692

    double range

    hi
    Am I right in saying that a double can hold a range of:
    +/- 2.2 E-308 to +/- 1.8 E308 (8 bytes)

    If so then should
    1.797693134862315907729305190789e+308
    fit in a double variable
    the above...
  7. Replies
    6
    Views
    1,304

    Why dont you store the old text and use strcat to...

    Why dont you store the old text and use strcat to append your text, then send the new text to the control
  8. Thread: Window Hook

    by paul_uk
    Replies
    5
    Views
    8,274

    The Error description came from msdn, i just...

    The Error description came from msdn, i just searched for 'error 1428', i guess maybe different things use the same codes, will try it in a dll. I was hoping to do away with the hassle of a dll, it...
  9. Thread: Window Hook

    by paul_uk
    Replies
    5
    Views
    8,274

    Hi again been busy for a bit. Here is the code...

    Hi again been busy for a bit. Here is the code i've been playing with, just messing about with notepad.
    Am I right in thinking that with CreateProcess the dwThreadId member of PROCESS_INFORMATION...
  10. Thread: Window Hook

    by paul_uk
    Replies
    5
    Views
    8,274

    Window Hook

    With SetWindowsHookEx() you can either specify a dll in hMod and use 0 for dwThreadId which gives you a system wide hook, or you use NULL for hMod and specify your programs thread id in dwThreadId to...
  11. Thread: API watching

    by paul_uk
    Replies
    1
    Views
    950

    API watching

    hello, is it possible using windows hooks to see a api function call? if so which of the hook procs would be used?
Results 1 to 11 of 12