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

Search:

Type: Posts; User: c94wjpn

Page 1 of 15 1 2 3 4

Search: Search took 0.34 seconds.

  1. Replies
    6
    Views
    1,101

    how do you deploy a csharp application?

    [ I concur with Hannes and DataMiser (see below); Question is therefore reinstated -BioPhysEngr ]

    I know this sounds like a simple question, but let's not forget we're using MS technologies here....
  2. Thread: extern "C"

    by c94wjpn
    Replies
    1
    Views
    384

    extern "C"

    If I declare a function in a header to be C-linkage, do I also need to declare its definition in the source file?
  3. Replies
    3
    Views
    954

    Re: error LNK2019: unresolved external symbol

    I've deleted your caveat, otherwise thanks for the answer.
  4. Replies
    3
    Views
    954

    error LNK2019: unresolved external symbol

    I'm building a project, which is set to create a dll, and it's producing LNK2019 linking errors. ie it can't find dependencies. I thought that when you built a library you didn't need to provide it...
  5. Replies
    3
    Views
    1,926

    Re: BlockInput fails with 5

    I expect there is a privilege that will enable it. Which one?
  6. Replies
    3
    Views
    1,926

    BlockInput fails with 5

    Hi folks,
    I'm calling BlockInput in user32.dll, and it's failing with 5 Access Denied when UAC is on. How do I deal with this?
  7. Thread: boost linking

    by c94wjpn
    Replies
    3
    Views
    751

    Re: boost linking

    no, actually I think I need to look up boost BOOST_ALL_NO_LIB option.
  8. Replies
    17
    Views
    2,365

    Re: libraries and linking

    I have cleverly discovered what "link library dependencies" is all about. I think it means "link against project dependencies". Are Microsoft good at misleading people?
  9. Thread: boost linking

    by c94wjpn
    Replies
    3
    Views
    751

    boost linking

    hi folks,
    I'm building an app and the error is

    1>LINK : fatal error LNK1181: cannot open input file 'libboost_date_time-vc90-mt-sgd-1_42.lib'

    and I haven't told it to link against this...
  10. Replies
    17
    Views
    2,365

    Re: libraries and linking

    ... you missed the bit that said

    Further, no-one has commented yet on the purpose of the "link library dependencies" option.
  11. Replies
    17
    Views
    2,365

    Re: libraries and linking

    you miss the point of my statement "if I build app P against A, it will only do so successfully if project A knows about B's library files." To make it clearer for you, perhaps I should state it...
  12. Replies
    17
    Views
    2,365

    Re: libraries and linking

    b is what I'm aiming for. I seem to have achieved this, but I'd like confirmation that I'm doing it the right way: how do I build A.lib so as it copies everything it needs from B?

    Further, will I...
  13. Replies
    17
    Views
    2,365

    Re: libraries and linking

    indeed, Paul, but you're not answering my questions. (1) is not going to happen. (2) is not viable either.
  14. Replies
    17
    Views
    2,365

    Re: libraries and linking

    i) if I tell project A where B's library files are, it produces an A.lib file which is bigger
    ii) if I build app P against A, it will only do so successfully if project A knows about B's library...
  15. Replies
    17
    Views
    2,365

    libraries and linking

    Hi folks,
    I'm building a library A which calls functions in library B. A depends on B.
    I'm making an application P which calls functions in library A. That is, P depends on A. I want to arrange...
  16. How do you view the security of a process?

    Hi folks,
    how do you get windows to show you the security info of a process? If you right-click properties on a process in task manager it helpfully shows you the security details of the file, not...
  17. Replies
    2
    Views
    1,689

    Re: RegEnumKey returns ERROR_ACCESS_DENIED

    Thanks for pointing this out. I am now getting the same error back from RegOpenKeyEx.
  18. Replies
    2
    Views
    1,689

    RegEnumKey returns ERROR_ACCESS_DENIED

    Hi folks,
    Can someone tell me what I need to do to enumerate the subkeys of a registry key? Is there a special privilege for this which overrides the dacl or do I need to put an entry in the dacl...
  19. Replies
    0
    Views
    719

    error

    error
  20. Re: include msxml couse compilation error PLEASE HELP

    well done prasad. You're right.
  21. Replies
    15
    Views
    2,138

    Re: 2d array pointer

    well I think I've outgrown codeguru. Maybe I should quit.

    I'm not creating an array. I'm creating a pointer to a memory block.

    I think I shall take my problem elsewhere.
  22. Replies
    15
    Views
    2,138

    Re: 2d array pointer

    engage your brain please.

    I can set a pointer to NULL if I want to - I'm not accessing it yet.

    I have explicitly supplied a second dimension :

    double q[][8] = 0; /// not ok. THE 8 IS THE...
  23. Replies
    15
    Views
    2,138

    Re: 2d array pointer

    Trying to define a pointer to a 2d array which has a stride of 8.
    If I know that my doubles are in a consecutive memory block at location p, and the stride is 8, then the notations

    p[y][x]
    and...
  24. Replies
    15
    Views
    2,138

    Re: 2d array pointer

    you are defining a pointer to an array of pointers.
    From looking at the memory blocks in a debugger, it is clear that

    double coslu1[8][8];

    does not create an array of pointers.

    hence
    ...
  25. Replies
    15
    Views
    2,138

    Re: 2d array pointer

    I'm not defining an array.
Results 1 to 25 of 354
Page 1 of 15 1 2 3 4





Click Here to Expand Forum to Full Width

Featured