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

Search:

Type: Posts; User: VipulPathak

Page 1 of 15 1 2 3 4

Search: Search took 0.24 seconds.

  1. Re: Confusion about the terms SDLC and Software Process

    Thanks BioPhysEngr for the reply.
  2. Re: Confusion about the terms SDLC and Software Process

    Any one out there ?


    Thanks,
  3. Confusion about the terms SDLC and Software Process

    Hi Everyone,

    I have some confusion about the terms SDLC and Software Process. With respect to these (and more or less similar) terms, a have a few question.

    1. What is the difference between...
  4. Re: Application crash and use of mixed calling conventions ...

    Thanks Paul and Igor,

    Could you please give an example.

    Consider the following code snippet as an example:


    BOOL WINAPI GetServerInfo(OUT LPTSTR *lpInfo)
    {
    . . .
  5. Application crash and use of mixed calling conventions ...

    Hi Everyone,

    I have a DLL in my application that exports 5 functions. This DLL internally uses a few C++ classes and finally provide the functionality to DLL client applications by means of those...
  6. ISAPI Extension as a silent Wildcard mapped Request Interceptor ...

    Hello Everyone,

    I am writting an extension that will be installed as a wildcard script map on Exchange's CAS Role machine. It will be installed on the virtual directory...
  7. ISAPI Extension on Exchange CAS (IIS) caused Mobile Devices to stop synchronizing ...

    Hi Everyone,

    I am writing an ISAPI Extension that will be installed on the /Microsoft-Server-ActiveSync virtual directory as a wildcard script map.

    What I am trying to do:
    The purpose of this...
  8. Re: [IIS, ISAPI] Tracking What Response is Sent Back

    Hello, Any clues on this ?

    Thanks,
  9. Re: [IIS, ISAPI] Detecting Disconnections with an HTTPS Client

    Hi, Any clues ?
  10. [IIS, ISAPI] Tracking What Response is Sent Back

    Hello,

    As it happens for ISAPI Extensions, that they are called and the data of incoming request is available to the Extension in the function HttpExtensionProc().

    Definitely, If we hook an...
  11. [IIS, ISAPI] Detecting Disconnections with an HTTPS Client

    Hi Everyone,

    We have an application at client end that opens a long running connection with IIS. Ideally, it opens a connection with KeepAlive ON, and the server maintains the connection for as...
  12. Re: Problem with Debugging ISAPI Extension on IIS 6.0 ...

    I ran SysInternal's ProcMon utility on the machine where the WWW service was running. I enabled file system monitoring while disabling other type of monitoring.

    I observed that an attempt to...
  13. Re: Problem with Debugging ISAPI Extension on IIS 6.0 ...

    Yes, Definitely its Access Denied. Though I have already given READ+WRITE+EXECUTE+LIST+MODIFY permission to the user LOCAL_SERVICE. The WWW service executes under user LOCAL_SERVICE.
  14. Re: Problem with Debugging ISAPI Extension on IIS 6.0 ...

    Yes Igor, I tried it with an existing file as well, but the result was same :-(

    Then Instead of trying on a remote IIS server which doesn't have any debugger installed, I installed IIS 7 on my...
  15. Re: Problem with Debugging ISAPI Extension on IIS 6.0 ...

    Thanks Igor,

    However I used OPEN_ALWAYS after seeing the following description from MSDN. I think what you said is OPEN_EXISTING:
  16. Problem with Debugging ISAPI Extension on IIS 6.0 ...

    Hello All,

    I have written a small & Simple ISAPI extension that simply print "Hello" in the browser. The code that I used is below in the code section.

    I wanted to Write to a file from the...
  17. Replies
    9
    Views
    72,690

    Re: BCD to ASCII conversion

    Hey dude_1967,

    I was trying to interpret BCD byte array. I seen your solution and wow it worked.

    3 cheers to your solution :-)

    *(Vipul)() ;
  18. NotSupportedException on Windows Mobile Device ...

    Hi Everyone,

    I am writing a simple application to start with Windows Mobile 6. Though, I have developed many applications on .NET Framework 1.1, but this is the first time I am working on Compact...
  19. Re: Telling the Application, Where to load the DLLs from

    I was using the Depends.exe utility that comes with Visual Studio to see if C Runtime is being used.

    (1)
    I found that MSVCRT.dll is being used instead of MSVCR71.dll (even if the project was...
  20. Telling the Application, Where to load the DLLs from

    Hi,

    I have a Win32 GUI application that is a COM client as well. It is built using ATL Static link option. We have build the application using Visual C++ 7.1. I want to ensure that the application...
  21. Re: Adding a method to the IDL without using the Wizard

    Thanks Siddaharth,

    My COM DLL is already in use by VB and .NET clients. The problem I am facing is actually that the new methods that I have add to the COM DLL are not exposed to VB/.NET clients...
  22. Adding a method to the IDL without using the Wizard

    Hi,

    I am trying to add a method in a COM Interface. I know trhere is an "Add Method" wizard but it is not working due to some unknown problem (probably because the project was a VC 6.0 project...
  23. MAPI: MAPISendMail fails with MS Outlook 2000

    Hi every buddy,

    I am trying to send email programmatically. What I am trying is as follows:

    STEPS:
    ------------
    (1) LoadLibray("MAPI32.Dll") ;
    (2) Check IsFileExists(Attachment), If true...
  24. Replies
    2
    Views
    1,803

    Skinnable UI with WinForms

    Hello Everyone,

    I have a requirement of writing a WinForm application that should support "SKINS" for the UI. On applying a skin, the look and feel of the application can change drastically. Even...
  25. Thread: skins

    by VipulPathak
    Replies
    3
    Views
    968

    Re: Skins ...

    Hi,

    I need to write own .NET component for use with WinForm, that can do this:
    When component added to a WinForm Project, should enable all Controls and Forms to use the Skin.

    Can you give...
Results 1 to 25 of 361
Page 1 of 15 1 2 3 4





Click Here to Expand Forum to Full Width

Featured