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

Search:

Type: Posts; User: voidspace

Page 1 of 17 1 2 3 4

Search: Search took 0.21 seconds.

  1. Replies
    1
    Views
    4,349

    Converter for Value in Trigger

    I would like to have a ItemsControl display different color when a item is clicked. My natural tendency was to have a trigger from where I can set the color I want ..

    <Trigger Property="IsPressed"...
  2. Replies
    0
    Views
    536

    Debugging expert (VC++)

    Paid: Yes
    Location: san diego

    Type: full time,contract

    Requirements: MFC, VC++ debugging expert (10+ years experience)
    time frame: Open
    Period: 2 months
  3. Re: Keep application running when computer locked

    So the lock basically means keyboard and mouse is locked but not the running processes. So are all mouse messages and keyboard messages are also blocked? Like SendMessage(WM_LBUTTONCLICK) etc?

    Is...
  4. Re: Keep application running when computer locked

    No, it does not quit but it stops processing.

    Like if I want to search and backup a few files when the computer is locked. Or I want to run an automated test on an application when the PC is...
  5. Keep application running when computer locked

    How to run an application when the computer is locked. I want to perform system maintainence when the computer is locked.

    How can I set an application to keep processing even when the computer is...
  6. Replies
    13
    Views
    5,354

    Re: Prevent DLL injection

    Ok what I mean was the application execution pointer is corrupt when this third party dll screws up. So the problem is the 3rd party dll is crashing and since it is sitting in our address space our...
  7. Replies
    13
    Views
    5,354

    Re: Prevent DLL injection

    Yes we did. When this dll is injected our application crashes (only in release mode) the crash in side a simple if block.

    The reason for ending up here is because the function table is messed up...
  8. Replies
    13
    Views
    5,354

    Re: Prevent DLL injection

    The reason for the crash is a memory leak in the third party dll injected into our application. The memory keeps incresing till 200 MB and our application just vanishes.
  9. Replies
    13
    Views
    5,354

    Re: Prevent DLL injection

    Well these are the function that are being imported/exported for the injected dll?

    c:\program files\capture express\QCAPHK.DLL

    c:\windows\system32\KERNEL32.DLL
    ...
  10. Replies
    13
    Views
    5,354

    Re: Prevent DLL injection

    Thanks that should tell me.
  11. Replies
    13
    Views
    5,354

    Re: Prevent DLL injection

    This is a 3rd party application so I have no idea how they are hooking into it ..but their dlls shows up in our processer loaded dlls when using process explorer and our application crashes if their...
  12. Replies
    13
    Views
    5,354

    Prevent DLL injection

    Is there a way to prevent peeps from injecting dlls into your application. We have this screen capture application that injects its dll into our application which is causing a crash in our...
  13. Replies
    5
    Views
    828

    Re: CMyDocumentArray serialization

    Ok let me try and clear things up a bit here..

    Our project is an MDI app and curretly only uses one document template. The serialization (via CArchive) is done to a file. These files contain data...
  14. Replies
    5
    Views
    828

    Re: CMyDocumentArray serialization

    Well we are using MFC document templates. But the problem is we want to save an array of documents that created using the main document template into a different (Project) document template.

    I...
  15. Replies
    5
    Views
    828

    CMyDocumentArray serialization

    We are extending our application to support opening multiple documents at the same time. we want all of these CMyDocuments to be serialized into a single project file.

    How do I create a...
  16. Replies
    2
    Views
    662

    Re: Can find the record.

    That was pretty evident once you pointed it out.. Thanks
  17. Replies
    2
    Views
    662

    Can find the record.

    Below is the code i use for finding a record. I am getting the error "No value given for one or more required parameters". Please help.



    private void Find()
    {

    // to find a record in...
  18. Replies
    3
    Views
    1,936

    Re: Bug Collector Pro

    I know this might be the wrong section but I posted here as this section has the maximum visibility.

    BTW BugCollector is a bug/feature tracking software. The website was nesbitt.com and...
  19. Replies
    3
    Views
    1,665

    Re: How Do I debug LNK2001 errors?

    Search for WSAFDIsSet and detemine which library is needed for it .. and include those in the project.

    Same with select@20
  20. Replies
    3
    Views
    1,936

    Bug Collector Pro

    Looks like nesbitt closed shop ..

    Please post if you have any info ..
  21. Replies
    4
    Views
    1,951

    Re: Wm_stylechanged

    Well it was being send even when no document is open and the application is sitting idel. We want to make sure we are no changing the STYLE repeatedly in the main application timer.

    Anyways I...
  22. Replies
    4
    Views
    1,951

    Wm_stylechanged

    Our application when checked with spy seems to be sending this message endlessly. We what to be able to track it down in code but are not able to ..
    Any suggestions?
  23. Replies
    5
    Views
    955

    Re: Start when windows starts

    Put a link to your application in the Run of windows in registry or put a link to your applicaton executeable in the startup folder.

    Registry:...
  24. Replies
    6
    Views
    1,221

    Re: Enum String

    I know this might be inefficient but I used CStringArray for the purpose.
  25. Replies
    9
    Views
    1,018

    Re: void pointer to type

    Thanks guys. I did the function overloading and it works fine.

    I like the template idea .. so will try that too.
Results 1 to 25 of 411
Page 1 of 17 1 2 3 4





Click Here to Expand Forum to Full Width

Featured