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

Search:

Type: Posts; User: KellyLynch

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. How to monitor all the Check-Ins to a Facebook page?

    I have to develop an application (NOT Facebook app – it will be run on a remote computer) that (in real-time) monitors all Check-Ins made into a specified Facebook page.

    I know the Login /...
  2. Re: Single-click or double-click in lists to start an action?

    No, in my situation an active cannot be 'destructive' or just 'taking too much time to react on Stop signal'.
  3. Single-click or double-click in lists to start an action?

    This is question about usability.

    I develop a Windows application (standalone, not Web) that contains, partially, several list controls. The controls display some type of objects. Using such...
  4. Replies
    0
    Views
    4,936

    Error_internet_incorrect_handle_state

    I have C++ Win32 app that uses HttpSendRequest to request some URL (via https). It worked OK earlier; but then errors ERROR_INTERNET_INCORRECT_HANDLE_STATE began happen. Why these ones? Any ideas?
  5. Replies
    1
    Views
    2,505

    CoUninitialize in ExitInstance hangs

    Language: Visual C++ 6.0; MFC app with CWinApp-based class
    OS: WinXP

    I use a COM component (http://www.emailarchitect.net/webapp/popcom/) in MFC app. I release it BEFORE call of ExitInstance; in...
  6. Replies
    2
    Views
    1,187

    Re: Examples of various MIME emails

    yes, I did it for Outlook. But however I need more examples
  7. Replies
    2
    Views
    1,187

    Examples of various MIME emails

    Can someone give me links to collection of samples of MIME emails in various formats? Of course I have already found examples of text/plain and text/html; but it is hard to find others. I am...
  8. Access to a POP3 mailbox: Windows Messaging and Collaboration

    Can someone clarify me the following question - unfortunately I cannot understand it from MSDN docs. There are several messaging libraries in Windows - see...
  9. Which MIME types of mails are most popular?

    I have to add into my server app an ability to receive a mail via POP3 and process it. The processing is: to convert it correctly into plain text (WCHAR* string).So I am looking for a ready...
  10. Replies
    0
    Views
    879

    Reading and parsing mails via POP3

    Hi

    Please help me choose a component for the following task

    I have C++ Win32-application (MS Visual C++ 2005 or 2008) that must:
    - periodically (say once in 5 min) check a mailbox via POP3
    -...
  11. Replies
    3
    Views
    1,382

    Re: Working with POP3 from Win32 application

    Thank you for the replies

    During this time my task became more complicated (:-)) Now I should not only receive mails via POP3 but also convert body of received mail into plain text (WCHAR*...
  12. Replies
    3
    Views
    1,382

    Working with POP3 from Win32 application

    Hi

    Please help me choose how (an API, component, library etc) can I work with POP3 in the following task. I have no experience with POP3 and do not know where to start.

    I have C++...
  13. MSI product installed on computer with Norton Antivurus

    I have created MSI package of my product - using Install Shield 12. A customer sent me the following complaint:

    "We use corporate version of Norton Antivurus. After installation of your product,...
  14. Replies
    2
    Views
    3,115

    JScript to detect if Windows user admin

    I need JScript that will be launched on Windows from command line. The script shoudl detect (using WScript, I guess) is the current user local admin on given computer or no.

    How could I do this?
  15. Uninstallation of Visual C++ 8.0 ATL (x86) WinSXS MSM

    I have a project on InstallShield 12. The project includes standard redistributable module Visual C++ 8.0 ATL (x86) WinSXS MSM (Microsoft_VC80_ATL_x86.msm) – it contains file ATL80.dll and others....
  16. Problem with URL moniker: OnStopBinding is not called

    I have the following problem with URL moniker. A Visual C++6 application downloads web resources. Somtimes (not always) the following happens:

    1. While a file is being download my method...
  17. Need something like Doxygen but with additional tags

    I have the following situation: I have a lot of C++ sources with embedded documentation that is LIKE to .NET MS standard. It uses tags <summary>, <param>, <returns>:

    /// <class name=MyClass>
    ///...
  18. Search with wildcards in MS Visual C++ 6

    I have a MS Visual C++ 6 application, it uses Standard Library only. I need to perform a search in string by pattern that may contain wildcard symbols '*'. For example: to search in "abcdefg" by...
  19. Replies
    1
    Views
    710

    Optimal distribution by blocks

    I have the following task. I have an array of non-negative numbers, let us name it A. For instance: {30, 3, 2892}. In fact, each of the numbers is count of some objects (it does not matter – which...
  20. Replies
    10
    Views
    1,796

    Re: How to accelerate std::wofstream

    NtWriteFile is writing buffer of bytes into file, right? And I need streamed output - using std::wfostream or some other stream. More exactly, I need WCHAR-based stream - because of my output file is...
  21. Replies
    10
    Views
    1,796

    Re: How to accelerate std::wofstream

    NtWriteFile? I do not think this is what I need. I need to somehow imrpove performance of std::wofstream; not just 'write blocks of bytes into a file'.
  22. Replies
    10
    Views
    1,796

    Re: How to accelerate std::wofstream

    Release
  23. Replies
    10
    Views
    1,796

    Re: How to accelerate std::wofstream

    I have tried - no effect.

    BTW, when I tried to use std::ofstream instead of std::wofstream - the time was 200 ms! 20 times faster!!
  24. Replies
    10
    Views
    1,796

    Re: How to accelerate std::wofstream

    >for (i = 0; i < 700000; ++i)

    Sorry, misprint - in fact, there is '70000' in the program, not '700000" (extra zero). So the output file is, really, about 10 Mb. The time is, as I said, 4.1 sec.
  25. Replies
    10
    Views
    1,796

    How to accelerate std::wofstream

    I have the following code that performs writing into std::wofstream (with conversion into UTF-8):

    std::wofstream stream;
    stream.open(L"D:\\MyFile.txt", std::ios_base::app | std::ios_base::out);
    ...
Results 1 to 25 of 42
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured