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

Search:

Type: Posts; User: jude_aj

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    1,308

    differentiate between treeview event

    Hi,

    I am new to C#.I have a treeview .I have created two events :-onselect and onexpand event.
    However when i expand a node , the node automatically gets selected and hence the onselect event...
  2. Replies
    3
    Views
    1,668

    .net obfuscator

    Hi,
    I am looking for a .net obfuscator.
    Can anybody recommend a powerful .net obfuscator.
    How is skater .net obfuscator?

    Thanks
  3. [RESOLVED] copy nodes of one Tree ctrl to other

    Hi,
    i have a dialog with a tree control. When i click a button a new sub dialog is created which in turn has a tree control. I want to copy all the nodes of the tree in parent dialog to the tree...
  4. Replies
    7
    Views
    1,133

    vector as queue

    Hi,
    I am using vector for the first time.
    I am using it as a queue

    i have a vector of object pointers declared as follows,

    std::vector< CObject* > myvector;


    I have inserted element as...
  5. Replies
    1
    Views
    532

    copy constructor

    Hi,
    just a quick question.
    if i use a copy constructor in the following way.

    A a;
    A a1(a)

    does it mean that any future updates made in member variable of class A using object 'a',
    will...
  6. Replies
    1
    Views
    913

    debug error: damage:after normal block..

    Hi,
    i have a dynamic byte array "ba". i have used it as follows

    BYTE *ba = new BYTE[len]; //len is non zero

    ZeroMemory(ba, sizeof(ba)*(len));
    ...
  7. Replies
    3
    Views
    763

    Re: inserting item into tree without images

    thanks for relying,
    yes i did try -1 ,but that did'nt work either.
    is there any other alternative?
  8. Replies
    3
    Views
    763

    inserting item into tree without images

    Hi,
    I developed a Mfc dialog, which contains tree. i have set images as follows

    m_TreeImg.Create ( 16, 16, ILC_COLOR16 | ILC_MASK, 4, 1 );
    m_TreeImg.Add...
  9. [RESOLVED] instantiating an inported call from dll

    Hi,
    How do i instantiate a class imported from dll
  10. Replies
    0
    Views
    950

    Problem using Redemption Type Library

    I am using redemption type library in VC++ (VS6) Application.
    its working amazing on my PC.
    but when i run the exe on some other machine it gives me error.
    As REGDB_E_CLASSNOTREG thought...
  11. Replies
    2
    Views
    1,526

    Converting unicode to ascii

    Hi,
    I am raw reading a file and storing the bytes read in a byte array.
    The data in the byte array is in unicode form . I want to convert this data from unicode to ascii and store it in a string...
  12. Replies
    4
    Views
    7,578

    Re: Hex value to date time

    hi thanks for replying and for sharing these useful information.

    The date part is giving me the right ans which is 16-01-2009
    however the time is still incorrect.
    the 4 bytes associated with...
  13. Replies
    4
    Views
    7,578

    Re: Hex value to date time

    thanks for replying,

    I tried using Coledatetime in following manner : -

    LONGLONG t = 0x00009B9300E313F9;

    //t = 171055677379577(decimal value)


    CString buffer;
  14. Replies
    4
    Views
    7,578

    Hex value to date time

    Hi,
    I a hex value 0x00009B9300E313F9 whose equivalent date time value is
    Jan 16 2009 13:46:45.950 .i got this hex value after raw reading an .mdf file of sql server 2000
    the sql datatype of...
  15. Replies
    1
    Views
    520

    Re: HEX value to real(float)

    I found the code on the net.
    Heres the link if any body is interested.
    http://www.winsite.com/bin/Info?500000021158

    Thanks anyways
    Cheers!!
  16. Replies
    1
    Views
    520

    [RESOLVED] HEX value to real(float)

    Hi,
    I am reading a file in hex editor which has some real values(float).
    These values are in hex form, Can any body show me how to convert a hex value to float.

    Thanks,
  17. Replies
    9
    Views
    9,065

    Re: Appcrash msdev.exe

    Thanks for replying,
    The browser window that used to allow me select the .cpp..h file does'nt even pop-up.
    The visual studio crashes as soon as i try to do so.
    Another thing i would like to...
  18. Replies
    9
    Views
    9,065

    Re: Appcrash msdev.exe

    Thanks for replying,
    I am afraid its not a problem with my project, there seems to be a problem with visual studio.
    Even if click the open option (Ctrl+O) option the visual studio crashes.
    With a...
  19. Replies
    9
    Views
    9,065

    Appcrash msdev.exe

    Hi,
    I'v been using visual studio 6 for vc++ programming. Today, when clicked on add files to source folder. The visual studio application crashed. I Reinstalled visual sudio 6 but no joy.
    I am...
  20. [RESOLVED] CString, CFileFind undeclared error

    hi,
    I have developing an ATL COM aplication for the first time in vc++
    I am using classes like CString and CFileFind in my application.
    I thought that since this might be a non-mfc application...
  21. adding user defined option to the windows right clk option

    Hi,
    I have developed an application shreds files. I wanted to add the shred option when one right clicks on any file or folder. I searched a lot on the net with little success. Can anybody...
  22. Re: Initializing the whole Byte arry with specific pattern of values

    Thanks , U made my Day!!

    cheers!!
  23. Re: Initializing the whole Byte arry with specific pattern of values

    I guess this is what i am looking for.
    this is a sample code from the link provided by u

    IntVector Numbers(VECTOR_SIZE) ; //vector containing numbers

    IntVectorIt start, end, it ;


    ...
  24. Re: Initializing the whole Byte arry with specific pattern of values

    hey ,thanks for replying, is there any alternate way to apart from that.
    Because that would be time consuming .
  25. Initializing the whole Byte arry with specific pattern of values

    Hi,
    I have a byte array of size say 900. is there any way to fill the array with pattern of values
    say 0x96,0x67,0x53, 0x96,0x67,0x53 ,0x96,0x67,0x53, 0x96,0x67,0x53, 0x96,0x67,0x53.....

    the...
Results 1 to 25 of 26
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured