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

Search:

Type: Posts; User: kwcoffee1

Search: Search took 0.11 seconds.

  1. Replies
    1
    Views
    104,721

    Capturing AJAX on the Web Client

    Hi All,

    I’m capturing html as it download to a web client app. I programmatically click a checkbox and this triggers an ajax call to download additional none cache html. I want to use something...
  2. Re: error C3867: function call missing argument list; for a cli thread calling functi

    Yes, as long as you are processing local variables (not a heap referenced objects) or not using preexisting code… interop migation offers no advantageous. Currently, I’m experimenting with two large...
  3. Re: error C3867: function call missing argument list; for a cli thread calling functi

    Thanks,

    You gave me good insight it my erroneous thinking. I'm in the process of rediscovering C++. Although, CLI expand C++ to the .NET world... the best practice is not to unnecessary (or...
  4. Re: error C3867: function call missing argument list; for a cli thread calling functi

    Sorry, poor chioce of words.

    Specify, I has thinking of the "BackgroundWorker" thread Object and the "assigning of events delegates" to it.
    And I notices with the native scenario... only a header...
  5. Re: error C3867: function call missing argument list; for a cli thread calling functi

    Thanks Eri523,

    I recall working with managed threads but it requires defining a working thread class. But the simplicity of calling an asynchronous function in native code is attractive. So, if...
  6. Re: error C3867: function call missing argument list; for a cli thread calling functi

    Thanks Eri523, I will look at the System::Threading namespace... and the usage of native code only.

    A long time ago, I programmed in C++, but more recently I programmed in ASP.NET/C#.

    I like C#...
  7. Re: error c3867 function call missing argument list; for calling a Thread function

    Thanks VictorN,

    I will. I did not realize codeguru had one.

    King
  8. error C3867: function call missing argument list; for a cli thread calling function

    Hi all,

    I searched the web for error: c3867 and most discussion were murky or obscure.
    My code excerpt is:

    #pragma once
    #include <stdlib.h>
    #include <process.h>

    void PutUpfrmIO(void *);
  9. error c3867 function call missing argument list; for calling a Thread function

    Hi All,

    I searched the web for error: C3867... and the discussions where murky or obscure.

    My code excerpt is:

    #pragma once

    #include <windows.h>
    #include <stdlib.h>
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured