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

Search:

Type: Posts; User: newnick

Page 1 of 33 1 2 3 4

Search: Search took 0.36 seconds.

  1. Read / Write array of strings from/into Registry

    Hi,
    How do I read/write array of strings from/into registry?

    Thanks,
  2. Replies
    3
    Views
    1,799

    Re: How to add Recent File List?

    Thanks for the code snippet.

    Is there anyway we can store these MRU list in registry or any other means just to restore when the application runs next time?
  3. Replies
    3
    Views
    1,799

    How to add Recent File List?

    Hi!,
    How to add Recent File List to a menu in a dialog based application as well SDI application using C++/Win32?


    Thanks
  4. Replies
    2
    Views
    6,976

    TCHAR* to const char* / char* Conversion

    Hi,
    How do I convert the following:

    1. TCHAR to char
    2. TCHAR* to const char*
    3. TCHAR* to char*


    Thanks
  5. Replies
    1
    Views
    4,564

    CB_ADDSTRING in Combobox

    I am trying to add items into a combo box and it all displays junk characters in the list. With the following code where do I go wrong?

    const char* m_sArray[] = { "Item1", "Item2", "Item3" };
    ...
  6. Web Service Templates under C# project Type

    Hello,
    I am newbie on .NET. I am trying to create a C# web service using visual studio 2005 / 2003. In my IDE, I do not find such option while creating a new C# project to select a 'C# Web...
  7. Replies
    6
    Views
    957

    Re: opening new window

    Do you mean to hide the parent window? New windows means.. is that going to be a child of the first one?
  8. Replies
    3
    Views
    629

    Socket Library - URGENT

    Hi All,
    Can anyone send me a socket library (source code) which makes TCP/UDP conenction?

    email: codeguru_bank@yahoo.com

    Thanks,
  9. Re: How do I generate TLB file out of a DLL without source code?

    I tried with regasm too.. but still gets above errors...


    Any idea?

    Thanks,
  10. Re: How do I generate TLB file out of a DLL without source code?

    Thanks for your response.

    I tried with tlbexp.exe tool. But I am getting the folling error:


    TlbExp : error TX0000 : Type library exporter encountered an error while processing...
  11. Re: How do I generate TLB file out of a DLL without source code?

    I have a component(.DLL) written in C# and I want to use it in C++ which require a .TLB file.
  12. How do I generate TLB file out of a DLL without source code?

    Hello All,
    Is it possible to take an COM DLL and generate the TLB file from it without the source code? If so, how do I do this?

    Thanks!
  13. Replies
    2
    Views
    736

    Re: Incorporate C# library into C++

    Actually, I have a C# component( .dll) and I want to use that in C++ project to use the functionalities written in the C# component.


    Thanks,
  14. Replies
    2
    Views
    736

    Incorporate C# library into C++

    Hello All,
    How do I incorporate C# library into C++ code?


    Any help on this would greatly appreciated.

    Thanks,
  15. Replies
    2
    Views
    832

    Tooltip in a particular region..

    Hi,
    How do I set a tool tip in a particular region of an app on mouse move event?

    I have a track bar, and I want to display the tooltip within the region of the track bar..not beyond that..

    ...
  16. Replies
    1
    Views
    11,190

    Tooltip for PictureBox

    Hi!,
    How do I set a tooltip for a picturebox control.?

    Thanks
  17. Replies
    7
    Views
    1,606

    Re: Controls Buttons

    You're Right.. I am working with .NET 1.1 and it doesn't support Show() method.
  18. Replies
    7
    Views
    1,606

    Re: Controls Buttons

    Thanks for your reply.

    I think Show() is not a member of ToolTip Class. Thats what its complaining.

    _ncToolTip.Show(text,this, p);

    As per your sample code, how do I display the tool tips.?...
  19. Replies
    1
    Views
    991

    Double click on Title Bar

    Hello,
    How will the App maxmize/restore on double clicking on Title Bar? Can any one send me some code snippet?


    Thanks,
  20. Replies
    7
    Views
    1,606

    Controls Buttons

    Hello,
    How do I enable/disable control buttons( minimize, maxmize, 'x') ?

    Is it possible to set some custom tool tips for these buttons?

    Thanks,
  21. Replies
    1
    Views
    705

    Window + D key press

    Hello,
    How do my app listen to Window + D keys combinations which causes my app to be minimized to task bar..?

    Is there any specific event received by the app?

    Thanks,
  22. Replies
    3
    Views
    910

    Replace ' or " with '\'

    Hello,
    I am trying to replace single quotes ( ' ) and double quotes ( " ) with ( \' ) and ( \" ) in a string. But it does not work for me.

    For example;
    name = 'nick'; - should be...
  23. Thread: XMP Parser

    by newnick
    Replies
    5
    Views
    2,170

    Re: XMP Parser

    Here is a sample xml data:


    <message to="nick1@jabber.org" from="nick2@jabber.org/dash" id="iq_01" type="chat"><thread>ZasQ8</thread><msg...
  24. Thread: XMP Parser

    by newnick
    Replies
    5
    Views
    2,170

    Re: XMP Parser

    Thanks a lot Torrud for your reply.

    I tried with your code, I get the following exception now while using LoadXml();

    "The ':' character, hexadecimal value 0x3A, cannot be included in a name....
  25. Thread: XMP Parser

    by newnick
    Replies
    5
    Views
    2,170

    XMP Parser

    Hi,
    I have to parse a XML packet( which is stored in a string). I was trying with the following approach but gets an exception.

    string xmlPacket = "<Employee>
    ...
Results 1 to 25 of 818
Page 1 of 33 1 2 3 4





Click Here to Expand Forum to Full Width

Featured