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

Search:

Type: Posts; User: resumurof

Page 1 of 6 1 2 3 4

Search: Search took 0.11 seconds.

  1. convert from object to ObservableCollection

    Hi,
    Could anyone help me to convert from object to ObservableCollection, sample code below

    func1()
    {

    lvItems.ItemsSource = portNameLists; //portNameLists is of type...
  2. Replies
    5
    Views
    2,467

    Re: Conditional compilation issue.

    thanks, this link http://blogs.msdn.com/b/vcblog/archive/2012/03/25/10287354.aspx helped me to resolve the issue ..

    procedure followed to resolve the issue.
    1)install windows 8 sdk.
    2)set the...
  3. Replies
    5
    Views
    2,467

    Conditional compilation issue.

    Hi,
    I want to do conditional compilation based on whether it is windows 7 or windows 8. Here is the code below.

    #if (_WIN32_WINNT >= 0x0602) //Condition to check whether it windows 7 or 8...
  4. Replies
    0
    Views
    2,581

    Compilation error in windows 8

    HI,
    im facing some compilation error in windows 8 but the same code works fine in windows 7. Error is given below

    1>m:temp1.cpp(427): error C2039: 'DOMDocument60' : is not a member of...
  5. SetWindowText is removing & charatcter in a string.

    Hi,
    Im passing "& temp1 & temp2" string as a parameter to SetWindowText("& temp1 & temp2"). not sure why it sets the text as temp1 temp2. & character is getting removed.
  6. Thread: COM Related

    by resumurof
    Replies
    2
    Views
    870

    COM Related

    I have attached a document explaining the problem, Please give your suggestion on this issue.
  7. Replies
    8
    Views
    5,156

    Re: A problem with RegSetValueEx

    Check whether you have proper admin priviliges to modify registry.
  8. Replies
    5
    Views
    1,791

    Re: union issues.

    I know this is a restriction....but i want to know why it has been restricted...the reason behind it...
  9. Replies
    5
    Views
    1,791

    union issues.

    #include <iostream.h>

    class vehicle
    {
    public : vehicle()
    {
    }
    int i;
    float e;
    };
  10. Replies
    8
    Views
    5,045

    Re: Array of references

    I have a sample program created for array of references, it works fine.

    void main()
    {

    cout << endl << endl << "Values in nArray2 when referenced" << endl;

    int pnArray2[10] = {1, 2,...
  11. Replies
    8
    Views
    5,045

    Array of references

    Hello Guys,

    why array of references are not allowed,can anyone give me explanation on this.

    thanks in advance
  12. Thread: postmessage

    by resumurof
    Replies
    4
    Views
    933

    postmessage

    Hello Guys,
    I have 2 dialogs from dialog2 i need to call dialog1 function via postmessage pls let me how can it be implemented.
  13. Replies
    1
    Views
    1,683

    Reason for upcast and downcast

    Helo guys,
    can anyone clarify me like what is the need for doing downcast and upcast ?

    Thanks in advance
  14. Replies
    2
    Views
    714

    Re: Vista PC problem

    Hello Guys,
    I have taken Crash.dump for the problem below, and i opened it in VS2005 i located the crash point ,crash point is pointing to ntdll.dll and i can see the message...
  15. Replies
    2
    Views
    714

    Vista PC problem

    Hello Guys,
    I have a strange problem in Vista PC, actual problem is whenever i tick a check box i get an message like this “Configuration program for Omni PCX Office doesn’t...
  16. Replies
    5
    Views
    1,960

    MFC Internals

    Hello Guys,
    I need MFC internals by Scott wingo do anyone know the link where ebooks can be downloaded for free.
  17. Replies
    6
    Views
    6,464

    SubclassWindow???

    Hello Guys,
    what is SubclassWindow with an example ?
    thanks in advance
  18. Replies
    7
    Views
    1,703

    Re: upper to lower case conversion.

    Is their any datatype available for storing special characters since decimal value of special characters are Ä=196 ä=228 etc.in c++ in windows
  19. Replies
    7
    Views
    1,703

    Re: upper to lower case conversion.

    Hello Lindley,

    I need a special character Like (ä,ö,ü) to be converted to Lowerse in Linux using C/C++, I tried using tolower() but it always return -60 which is not the...
  20. Replies
    7
    Views
    1,703

    upper to lower case conversion.

    Hello guys,
    Is their any function api available to convert a character to lowercase(eg:- A to a) in C,I tried with tolower but it returns a ASCII value but i need a character as...
  21. Thread: Outlook.exe

    by resumurof
    Replies
    1
    Views
    714

    Outlook.exe

    hi guys,
    I need a reference of already running outlook.exe in task manager, i tried with GetObject("", "Outlook.Application") it always creates a new instance,is their any other method...
  22. Replies
    7
    Views
    937

    Re: What's wrong with this??

    int whereToGo;


    while ((whereToGo !=1) || (whereToGo!=2))
    {

    cout<<"Enter I/p"<<endl;
    cin >> whereToGo;

    if(whereToGo == 1)
  23. Replies
    2
    Views
    1,313

    registry read and write

    Hi guys,

    is their any api present to read and write to registry in VB, kindly provide me some sample
  24. Replies
    2
    Views
    1,631

    Re: compilation error

    No compilation error in VS2005 thank u VCproj ,is their any COM inerface available to get Active application.... CComQIPtr<IHTMLDocument2> pDoc; dosnt have any interface to get Active...
  25. Replies
    2
    Views
    1,631

    compilation error

    Im trying to compile the source code of this link
    http://www.codeproject.com/KB/shell/enum_selected_elements.aspx
    im getting an compilation error,Error shown below.

    Compiling...
    IESelection.cpp...
Results 1 to 25 of 143
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured