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

Search:

Type: Posts; User: NYWalker

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Replies
    6
    Views
    1,291

    Re: CListView - limited number of items?

    Sorry about this question. I was so stupid. I had code that reduced number of items in CListView after inserting elements.

    The question is closed.

    Thank you for you help.
  2. Replies
    6
    Views
    1,291

    Re: CListView - limited number of items?

    I don't use BYTE type for the counters.
    I use the following code for inserting and modifying the item of CListView-based control.



    int CInfoView::MySetItem(int item,int subitem, LPCTSTR...
  3. Replies
    6
    Views
    1,291

    CListView - limited number of items?

    Hi Gurus,

    My CListView-based control doesn't display items more than 200. Why? I've got no error while calling CListCtrl::InsertItem().

    Moreover, CListCtrl-based control in the same application...
  4. DCOM on Windows 2003: error in COM-client

    Hi,

    I’ve got a strange behaviour of DCOM on Windows 2003 Server. I’ve created COM-server (out-of-process) and COM-client for that COM-server. Both work successfully on local computer under any...
  5. Replies
    0
    Views
    470

    Posting data in different encodings

    Hello,

    I have a simple ASP.NET that receives data from website visitors. Visitors may post data in "ISO-8859-1" and "utf-8" encodings.

    How to convert string from utf-8 to ISO-8859-1 (taking...
  6. Replies
    2
    Views
    766

    Subclassing from parametrized class

    Hi,

    Assume, I have a parametrized class:

    template <class A>
    class CBase
    {
    public:
    CBase() {};
    ~CBase() {};
  7. Replies
    2
    Views
    26,118

    what does "rhs" mean? (I'm very curious :)

    Hi,

    I recently started learning pure C++ and want to know what does "rhs" mean?

    For example:

    class MyClass
    {
    public:
    MyClass& operator=(const MyClass& rhs);
  8. Thank you for fast reply. I've tested your...

    Thank you for fast reply.
    I've tested your suggestion but it doesn't work.
    The question is still open.
  9. Stranges with virtual operator (pure C++ quiz)

    Hi Gurus,

    I have a question about pure C++.

    I've created three classes as follows in Addr.h:

    ----------------- begin of Addr.h --------------

    #include "stdafx.h"
  10. MSXML: troubles with "insertBefore" in Microsoft Visual C++

    Hi Gurus!

    I have the simplest xml document:
    <?xml version="1.0"?>
    <Report>
    ...
    </Report>

    I've written the small program (inserting XSL reference in the prolog):
  11. Replies
    1
    Views
    1,020

    Changing the prolog of XML document (MSXML)

    Hi Gurus!

    How to programmaly update the prolog of existing XML document? (using MSXML)
    I have the follows in the prolog:

    <?xml-stylesheet href="/style.css" type="text/css">

    I want to change...
  12. Getting information about remote COM client

    Hi Gurus!

    I've written COM-server (executable, out-of-process) and COM-client. Both works successfully through DCOM on separate PCs. Is it possible to obtain information about calling client in...
  13. Re: Re: difference between _stprintf() and wsprintf() ?

    Probably, you have misunderstood this question.

    When _UNICODE is defined, _stprintf == swprintf().

    swprintf() != wsprintf()

    My question is still open.
  14. difference between _stprintf() and wsprintf() ?

    Hi Guys,

    What is a difference between _stprintf() and wsprintf() ?
  15. Replies
    1
    Views
    524

    Stupid question about Automation

    Hello guys,

    I'm novice in VB 6.0 but have some skill in VC++.

    I'm developing COM-server using Visual C++ and "thin client" in VB 6.0 ("late binding").

    One of function is present in...
  16. Replies
    2
    Views
    737

    Yes, I can run server and client on the separate...

    Yes, I can run server and client on the separate machines after configuring dcomcnfg utility.

    But I want to run it without using dcomcnfg
  17. Replies
    2
    Views
    737

    DCOM: running application on another PC.

    Hi Guys!

    I'm novice in DCOM and my question will be very easy.

    I'm created COM-server and its COM-client. I can successfully run both on the same machine and successufully run

    on the...
  18. Replies
    2
    Views
    1,853

    Thank you, but I've done as you proposed but got...

    Thank you, but I've done as you proposed but got the follows:

    Compiling...
    EncodeClt.cpp
    Linking...
    EncodeClt.obj : error LNK2005: _CLSID_MyEncode already defined in Encode_i.obj
    EncodeClt.obj...
  19. Replies
    2
    Views
    1,853

    COM: precompiled header in *_i.c files

    Hellp guys!

    I'm novice in COM and my question is very easy.

    I've created my first COM-server (say, Encoder that have produced files Encode_i.c and Encode.h).

    Now, I'm writting COM-client for...
  20. Replies
    7
    Views
    1,264

    Oops! I've found where was trouble but I can't...

    Oops! I've found where was trouble but I can't believe this.

    Before using ShellExecute, I call
    ::CoInitializeEx(NULL,COINIT_MULTITHREADED);

    This was my error. I should call instead:...
  21. Replies
    7
    Views
    1,264

    Problems with ShellExecute

    Sorry,

    #define WEBSITE "http://www.microsoft.com"

    The problem is still not resolved. I'm in shock. Any ideas?
  22. Replies
    7
    Views
    1,264

    Problems with ShellExecute

    Dear MFC Gurus!

    My brains don't want to work. I have no ideas. I'm writting simple MFC-based application. ShellExecute doesn't

    work in my application (in other words, when clicking the static...
  23. Replies
    3
    Views
    1,413

    combobox in DialogBar and SDI application

    Dear MFC Gurus!

    I'm writting SDI-based application that has DialogBar with combobox control. This DialogBar is initialized as the follows:

    int CMainFrame::OnCreate(LPCREATESTRUCT...
  24. Replies
    0
    Views
    663

    Enumarate all non-plug and play drivers

    Hi,

    Is anyone here to explain me how to Enumarate all non-plug and play drivers appearing in Windows Device Manager?
  25. Replies
    1
    Views
    2,529

    STL deque problem

    Hi,

    I'm novice in STL C++ librari, so my question will be very easy.

    I have a structure, for example:

    typedef struct _mystruct
    {
    char name[256];
    bool sex;
Results 1 to 25 of 40
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured