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

Search:

Type: Posts; User: saj

Page 1 of 9 1 2 3 4

Search: Search took 0.27 seconds.

  1. Replies
    0
    Views
    781

    Treeview AddRange problem VS2005

    What I am doing is:

    1. To a treeview, a number of nodes using AddRange method (Items are
    displayed in the treeview in the order in which added)
    3. Remove some of the nodes using Remove() method...
  2. Thread: OLE2ANSI issue...

    by saj
    Replies
    16
    Views
    4,296

    Re: OLE2ANSI issue...

    Hi,

    I am using the following funcitons now:




    char* SysAllocString(const char * psz)
    {
    if (psz == NULL)
  3. Thread: OLE2ANSI issue...

    by saj
    Replies
    16
    Views
    4,296

    Re: OLE2ANSI issue...

    Thank you... that was a great suggestion...
  4. Replies
    6
    Views
    1,017

    Re: file compilation order

    Ya, I got it. Its not the compilation order that gives the error.
    Some of the deprecated macros that I was using is giving the errors.
    Thank you for your reply....
  5. Replies
    6
    Views
    1,017

    Re: file compilation order

    :mad: Hi, Its urgent, please help....
  6. Replies
    6
    Views
    1,017

    Re: file compilation order

    Hi,

    I am converting a vc6 project to vc7.
    It works fine in vc6 and gives lot of errors in vc7.
    I assume that some of the errors are due to change in compilation order of files.
    In vc6, it...
  7. Replies
    6
    Views
    1,017

    file compilation order

    Hi all,

    In VC++, How can we change order of compilation of files in a project.
    By default, it seems to do in alphabatic order.

    thanks...
  8. Thread: compilation error

    by saj
    Replies
    4
    Views
    662

    Re: compilation error

    Hi,
    Thanks for your suggestions, let me try that..
    thanks again.. :)
  9. Thread: compilation error

    by saj
    Replies
    4
    Views
    662

    compilation error

    Hi all,
    I am getting compilation error at the following line:

    typedef char FAR* str;

    It gives the error:
    ; needed before *

    Any idea how to avoid this?..
    thanks..
  10. Thread: Link error

    by saj
    Replies
    11
    Views
    1,132

    Re: Link error

    Hi gurus,
    The issue is not solved, please help....
    thanks...
  11. Thread: Link error

    by saj
    Replies
    11
    Views
    1,132

    Re: Link error

    may be this thread is something similar...

    http://www.codeguru.com/forum/showthread.php?t=293822
  12. Thread: Link error

    by saj
    Replies
    11
    Views
    1,132

    Re: Link error

    The same project (dll and client) is running fine in vc6. No issues while linking there...
  13. Thread: Link error

    by saj
    Replies
    11
    Views
    1,132

    Re: Link error

    Hi, thanks for your reply.
    This is a function exported from a dll to convert Wide char array to ansi char array.
    It takes wide char array as first parameter and returns the ansi char array through...
  14. Thread: Link error

    by saj
    Replies
    11
    Views
    1,132

    Re: Link error

    Please help... :)
  15. Thread: Link error

    by saj
    Replies
    11
    Views
    1,132

    Re: Link error

    No, I don't want to go for unicode. Actually I am converting the projects from VC6 to VC7. Its not enabled in the VC6 projects...
    Is that the problem?
    thanks...
  16. Thread: Link error

    by saj
    Replies
    11
    Views
    1,132

    Link error

    Hi All,

    I have an function exported from a dll:
    HRESULT FuncName(LPWSTR *, LPSTR * *, ULONG);

    When I link to this function from the client program, it gives link error(Unresolved externals.
    ...
  17. Replies
    1
    Views
    1,691

    Re: VC++ .NET problem with DLL + error lnk2019

    Hi hajer,
    I am facing the same problem.
    Could you find the solution? Please share it.
    thanks...
  18. Thread: OLE2ANSI issue...

    by saj
    Replies
    16
    Views
    4,296

    Re: OLE2ANSI issue...

    Not solved...
    Help please gurus...
    thanks...
  19. Thread: OLE2ANSI issue...

    by saj
    Replies
    16
    Views
    4,296

    Re: OLE2ANSI issue...

    Hi all,
    To add to that, when I compile it in vs.net, most of the errors are given in atlconv.h
    (You can compile the source code attached, both .dsw and .sln files are provided).
    Gurus, please...
  20. Thread: OLE2ANSI issue...

    by saj
    Replies
    16
    Views
    4,296

    Re: OLE2ANSI issue...

    Hi marten_range,
    Thank you very much for your reply.
    Please find a sample program in the attachment.
    in the VC6 version it compiles with the OLE2ANSI preprocessor setting(in the projects settings....
  21. Thread: OLE2ANSI issue...

    by saj
    Replies
    16
    Views
    4,296

    Re: OLE2ANSI issue...

    Hi alanjhd,
    Thanks for your reply.
    Actually, I am converting a project working perfectly fine in vc6.
    This is the part of the code(Its giving this errors at similar string conversion through out...
  22. Thread: OLE2ANSI issue...

    by saj
    Replies
    16
    Views
    4,296

    Re: OLE2ANSI issue...

    Hi Gurus,
    Please help....
  23. Thread: OLE2ANSI issue...

    by saj
    Replies
    16
    Views
    4,296

    Re: OLE2ANSI issue...

    Just to keep the thread alive...
    Please help....
  24. Thread: OLE2ANSI issue...

    by saj
    Replies
    16
    Views
    4,296

    OLE2ANSI issue...

    Hi all,

    I have the following function in my VC6 project:


    LPSTR getFieldName(int index)
    {
    return (index < 0 ? "abcd" : SysAllocString("Newstring")) ;
    }
  25. Thread: VC6 to VC.Net

    by saj
    Replies
    4
    Views
    790

    Re: VC6 to VC.Net

    Hi gurus,
    please help......
Results 1 to 25 of 202
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured