Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Srini Kella

@Srini Kella
About
Posts
23
Topics
9
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • disable keys in word document
    S Srini Kella

    My web project allows a user to navigate to a word document. My task is, not to allow the user to modifify the document. I can have the word document read only. But, user is still allowed to type-in the keys from keyboard, though he can not save it. I do not want the user to press any key that modifies the text on the word document while it is being displayed in IE. Is it possible? :)

    C / C++ / MFC question

  • Regions in GDI+
    S Srini Kella

    Thank you verymuch for your detailed response.

    C / C++ / MFC question winforms graphics

  • Regions in GDI+
    S Srini Kella

    What is the diff. between GDI and GDI+?

    C / C++ / MFC question winforms graphics

  • Mem Usage???
    S Srini Kella

    Guys: How will the NT-TaskManager gets the "Mem Usage" bytes? Is there any API(s) for that? thanks

    C / C++ / MFC json question

  • memory leaks...
    S Srini Kella

    Tim: I just want to make sure. Thats all. Thanks for your reply.

    C / C++ / MFC performance question

  • memory leaks...
    S Srini Kella

    Guys: I know my program leaks memory. Win32 documentation says, the leaked memory will be acquired by win32 OS once the leaking process terminates. Is it true? If it is so, how do I make sure that the OS 'really' acquired the leaked bytes? Is there any tool which shows the memory size before and after? Is the "Mem Usage" in Performance tab of NT-Task Manager indicates this?

    C / C++ / MFC performance question

  • 'asynchronous' version of _access()
    S Srini Kella

    Guys: I need to test the existence of a file on Novell server. I could use _access() function. But, under some conditions (example: when the Novell Server is in the process of shut-down), the _access() function takes very long time to return to the caller. So, what I need is a scheme which will enable me testing the existence of a file asynchronously. The Async version of access() should check the file existence and notify the caller once it is done with the file check. Thanks in advance. :)

    C / C++ / MFC sysadmin testing beta-testing tutorial announcement

  • ShellExecuteEx doen't wait...
    S Srini Kella

    I am not waiting for the process to finsih. I am waiting for the process to begin 'fully' instead! Thanks anyway.

    C / C++ / MFC help question career

  • ShellExecuteEx doen't wait...
    S Srini Kella

    The Wait* functions are not going to work because, once the ShellExecute returns, the corresponding new process will already be in non-signalled state. I got a work around: My new process has a got window. So, I delayed the calling thread using EnumWindows() in a loop. EnumWindows() checks for the new window!! ;P Anybody has got a better solution for this, Please!!

    C / C++ / MFC help question career

  • ShellExecuteEx doen't wait...
    S Srini Kella

    I have a thread which launcher another application using ShellExecuteEx(). The problem is, the calling thread is NOT wating till the new Process gets launched. Is there any way to delay the calling thread until ShellExecuteEx() finishes its job? Or is there any other solution for this??? Thanx in advance.

    C / C++ / MFC help question career

  • Testing File Existence
    S Srini Kella

    Alvaro, Thanks for your response. I have the following situation: Testing existence for \\Serv1\Vol1\Dir1\File1 is finished in few milli seconds if the server 'Serv1' is up and running. But, if somebody is shutting down the Serv1 and my program tests for the existence of a file on Serv1 at the same time, it takes huge time for the 'check existence' code to return. Under such situations, I wonder, if there is a kind of 'Asynchronous file existence checking' code which would just return immediately and fire a 'kind' of 'done' event later!!

    C / C++ / MFC sysadmin testing beta-testing question

  • Testing File Existence
    S Srini Kella

    Joe: Thanks for your response. But what I need is Asynchronous 'kind' of function to test a file existence. I have the following situation: Testing existence for \\Serv1\Vol1\Dir1\File1 is finished in few milli seconds if the server 'Serv1' is up and running. But, if somebody is shutting down the Serv1 and my program tests for the existence of a file on Serv1 at the same time, it takes huge time for the 'check existence' code to return. Under such situations, I wonder, if there is a kind of 'Asynchronous file existence checking' code which would just return immediately and fire a 'kind' of 'done' event later!!

    C / C++ / MFC sysadmin testing beta-testing question

  • Testing File Existence
    S Srini Kella

    How could I test the existence of a file on a network drive ASynchronously? I used _access() function. But, that is a synchronous one; won't return immediately for invalid file paths. :confused:

    C / C++ / MFC sysadmin testing beta-testing question

  • Unhandled exeption when using shell functions
    S Srini Kella

    Just a clue: There are some mistakes in your code. For example you have:

    if(pBrowe)
    {
    ...
    ...
    }
    pBrowse->Release();

    Where as it should be:

    if(pBrowse)
    {
    ...
    pBrowse->Release();
    }

    C / C++ / MFC help linux announcement

  • BIOS problem for upgrade to XP!!
    S Srini Kella

    I want to upgrade my 98 machine to XP. I tested the system to see if its upgradable by running PCWorld's XPReady program. It says my PC meets all requirements for the upgrade except the BIOS. It seems my system's BIOS is created earlier than Jan 1, 2000 and XP has a problem with that. How far is it true? Will XP fails to run if the system BIOS date is earlier than Jan 1, 2000??:confused:

    System Admin business help question

  • GetModuleHandle() or GetCurrentProcess()
    S Srini Kella

    thanks!!

    C / C++ / MFC question

  • UDP broadcast!!
    S Srini Kella

    I too tried the same thing some time back. I did not get help from anywhere. As my project deadline was nearing, I found a 'rude' way. I appended the IP address of the broadcaster to the broadcast message at the very end!:(

    C / C++ / MFC tutorial question

  • GetModuleHandle() or GetCurrentProcess()
    S Srini Kella

    Are the handles returned from the following funcs going to be same?? GetModuleHandle(NULL) GetCurrentProcess(void)

    C / C++ / MFC question

  • Use Com in Multithread
    S Srini Kella

    'Gpf with Atl and VB' is a good example. Thanks Vaz!!

    COM com question

  • What is the min OS I can install .Net on?
    S Srini Kella

    Guys: I am very new to .Net. I have setup CDs of Visual Studio.Net Enterprise Architect. When I run the setup on Win 98, it says the OS should be at least Win NT4.0. Will ME or XP OK? :confused:

    .NET (Core and Framework) csharp question visual-studio workspace
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups