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

Search:

Type: Posts; User: Jim Mcpherson

Page 1 of 26 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    2
    Views
    722

    IPV6 support

    Does the latest Microsoft Visual Studio support IPV6?

    Thanks...
  2. Re: beginner's question regarding fopen()

    int nError = GetLastError();
    MessageBox("bad");


    What is the error number in is returning?
  3. Set Window Position between 2 GUI applications

    I have a GUI application (#1) that calls another GUI application (#2). I want the windows of the GUI application #2 to take precedence over the windows of GUI application #1. It would be like the...
  4. Replies
    8
    Views
    1,222

    Re: Window Service Question

    Thanks Guys for the replies....

    I appreciate it...
  5. Replies
    8
    Views
    1,222

    Re: Window Service Question

    Kirants,


    # Process A creates a same named manual reset event, initially non-signalled. Since the name is the same, it will point to the same kernel event object internally.

    # Process A then...
  6. Replies
    8
    Views
    1,222

    Window Service Question

    I have an Windows Service that will run an application that connects to an SQL Server database, retrieves and stores database information. They way I call this application in the service is by...
  7. Error trying run a windows service that I programmably added

    I added a service (code below) and when I try to run it from the Control Panel Services list 30 seconds later it responds with

    "The Service does not respond to the start or control request in a...
  8. Convert my Application to run as a Windows service

    I want run my application as a Windows Service. My application is written in Visual Studio 6.0. I know there is software out that can do this such as Eltima Software. Which gives a GUI to add...
  9. Replies
    7
    Views
    1,518

    Re: Simple ADODB help needed

    Where to do you bind your record set pointer?




    inline void TESTHR(HRESULT x)
    {
    if(FAILED(x))
    _com_issue_error(x);
    }
  10. Re: ADO Create Connection Instance Falied~

    Have you imported msado15.dll into your App..





    /********************************************************************
    File Name: stdafx.h

    Description:
  11. Replies
    3
    Views
    13,073

    Re: how send syslog messages

    I believe CodeProject (www.codeproject.com) has an example Syslog Client App. I believe its in C++. This should help you to understand the Syslog functionality.
  12. Replies
    4
    Views
    829

    Edit Box Question

    I have edit box in my dialog. The user enters in the Date/Time.

    Format : MM/DD/YYYY HH:MM

    What I want to do is as the user enters the data, automatically put in the '/' , space, and ':'.


    ...
  13. Replies
    4
    Views
    5,574

    Re: Clear All BreakPoint in VC++ 6.00

    Thanks!
  14. Replies
    4
    Views
    5,574

    Clear All BreakPoint in VC++ 6.00

    Is there a way to clear all the breakpoints in VC++ 6.0, by a command or delete a file? I know you can do it Visual Studio .Net ?

    Thanks
  15. Replies
    5
    Views
    2,470

    Re: How to assign an IP address using C++

    Look at SendARP() function.
  16. Re: Programically Inserting date/time into the SQL Server database

    Thanks for the reply.

    This is what I going to do:

    If the short date format of the PC is set for DD/MM/YYYY, then the insertion of the date will be in MM/DD/YYYY format. SQL Server does the...
  17. Programically Inserting date/time into the SQL Server database

    Inserting date/time into the SQL Server database:


    I set my regional options locale (off Control Panel) to English (United Kingdom) for the SQL Server PC, which makes the date format of...
  18. Replies
    4
    Views
    1,195

    Re: ODBC cdatabase problem!

    You should always check the return values of your functions if they return anything. You would of caught the problem much more quickly. That is basic coding...

    The open database function returns...
  19. Replies
    17
    Views
    2,128

    Re: How do you add numbers after eachother?

    Sorry, It is monday morning. What can I say!!!
  20. Replies
    17
    Views
    2,128

    Re: How do you add numbers after eachother?

    // Made a mistake here

    char buffer[20];
    x += 0x30;
    y += 0x30;
    z += 0x30

    sprintf( buffer, "%c%c%c\0", x, y, z);
  21. Replies
    17
    Views
    2,128

    Re: How do you add numbers after eachother?

    You want the output as a character buffer ("123")!!



    char buffer[20];

    sprintf( buffer, "%d%d%d\0", x, y, z);
  22. Re: Retrieve the number of seconds from Jan 1, 1980 00:00

    Thanks a lot for the replies. I will try them.
  23. Retrieve the number of seconds from Jan 1, 1980 00:00

    I need Retrieve the number of seconds from Jan 1, 1980 00:00.

    I know the time(0) function retrieves the number of seconds from Jan 1, 1970 00: 00.

    Thanks
  24. Replies
    75
    Views
    25,338

    Poll: Re: Which versions of VC++ are you using?

    I using VC++ 6 because its more stable and I have VC++ 7. I have converted one my Apps to VC++ 7 (Not managed code) from VC++ 6. It seems to work. But for me to release this version of my App this...
  25. Replies
    4
    Views
    1,569

    Re: memory leak with COleDispatchDriver

    You should check the test pointer to make sure it is not a NULL pointer.





    {

    CTest *test=new CTest(idispatch);
Results 1 to 25 of 640
Page 1 of 26 1 2 3 4





Click Here to Expand Forum to Full Width

Featured