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

Search:

Type: Posts; User: bderagon

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Thread: databases

    by bderagon
    Replies
    3
    Views
    699

    Re: databases

    Personally, my preference is to use SQLite, its fast, low memory footprint, low file size, and no installs needed on client side. It's well known, and well documented.

    The .NET wrapper I use for...
  2. Thread: Excel crashes

    by bderagon
    Replies
    1
    Views
    6,352

    Re: Excel crashes

    Try using the following code, it looks like the interop/automation server is busy when you're trying to hit it because the dll's it needs are already in use.

    I made a wrapper function that...
  3. Re: LINQ not giving me output I want (newbie question)

    Just to clarify here, your Man object has multiple Dogs, and each Dog object, has an integer property that has the number of bones, and you want to get this property, sum it up from all the Dog's for...
  4. Replies
    1
    Views
    779

    Re: Help! - Property Pages in an Add-in

    Any Ideas? Spent a decent amount of time this weekend trying to find a way to get at those property pages and struck nothing. I'm lost.
  5. Replies
    1
    Views
    779

    Property Pages in a Visual Studio 2008 Add-in

    I'm currently using Visual Studio 2008, with Microsoft .Net Framework 3.5.

    I'm looking for assistance in writing a new visual studio add-in that adds an additional property to my references, the...
  6. Replies
    3
    Views
    769

    Re: Strings and Character Pointers..

    Sorry this is the wrong forum, I know for one I'm not very familiar with windows forms and managed c++, you should move this post to the managed c++ forum for a better response.
  7. Replies
    5
    Views
    1,652

    Re: redirect output in edit box in VC++

    See this thread if you haven't figured it out already:
    http://www.codeguru.com/forum/showthread.php?t=446185
  8. Replies
    5
    Views
    1,259

    Re: While Writing Exe get hang...

    also see my response under your other thread.
    added link just for future reference in case someone finds this in a search later :)

    http://www.codeguru.com/forum/showthread.php?t=446185
  9. Replies
    15
    Views
    2,609

    Re: Problem in running exe

    (critical code change) First code I changed here, is your startup info, your pipe flag was being overwritten by your show window flag. You need to use the |= operator, or better yet, declare them...
  10. Replies
    15
    Views
    2,609

    Re: Problem in running exe

    Did you get it work?
  11. Re: Desperately Stuck...CreateProcess & Pipes

    Fixed it, stupid mistake.
  12. Re: Desperately Stuck...CreateProcess & Pipes

    Thanks for the reply, but I actually do get a redirected output, just updated my code again, and got the text to display in my edit text box control.

    It still won't display in a static text...
  13. Re: Desperately Stuck...CreateProcess & Pipes

    Updated code with slight changes and still doesn't work as expected.
  14. Replies
    15
    Views
    2,609

    Re: Problem in running exe

    See what I'm doing, encountering slightly different issues, trying to do the same thing. Maybe we can help each other out here.

    http://www.codeguru.com/forum/showthread.php?t=446229
  15. [RESOLVED] Desperately Stuck...CreateProcess & Pipes

    For some reason, the following code isn't doing what I expected in two areas:

    First, the pipe is only reading the first line of the output.
    Second, the text control I have isn't displaying any...
  16. Thread: Best book

    by bderagon
    Replies
    13
    Views
    1,298

    Re: Best book

    Do you need a hard copy, or will a PDF/chm file work?
  17. Replies
    1
    Views
    948

    Re: 64-bit compliant ddk samples

    Correct, 64-bit compliant code, will not run on a 32-bit machine.
    32-bit code, runs on most current 64-bit builds, but not natively. It runs through an emulator, on windows platforms, it's called...
  18. Replies
    16
    Views
    3,982

    Re: CWaitCursor issue

    If you still can't get any of those to work, why don't you launch a window, with a progress bar and a wait cursor?
  19. Replies
    16
    Views
    3,982

    Re: CWaitCursor issue

    Keep in mind, in order to use the SetCursor function, you need to handle the WM_SETCURSOR message.
    Also I think somethings wrong with your LoadCursor function but, this morning I don't have access...
  20. Replies
    3
    Views
    1,129

    Re: Flickering in a list view

    I'm not exactly cilu...but....:P

    Check for the WM_WINDOWPOSCHANGING messagefor your main window in your message loop, whenever you don't have the message set your background redraw to false for...
  21. Replies
    7
    Views
    1,523

    Re: MFC Maximize Function

    Still having an issue with this, couldn't figure it out last night, tried using a multimedia timer, and java locking up still screws up my timer code for some reason, as long as java doesn't lock,...
  22. Replies
    10
    Views
    4,196

    Re: MFC missing a WM_ message I need

    You can set the power variables too, I'm not sure if you already tried that, and what total effect they'll have, I do know you can use them for blocking the screen going into standby mode, maybe...
  23. Replies
    7
    Views
    1,523

    Re: MFC Maximize Function

    Actually, as an update to this, I'm having some slight issues now after slightly over a week.

    First, I'm using a series of timers to decide when to redraw the window, I only target IE windows...
  24. Replies
    3
    Views
    791

    Re: Help Please- Design

    In all fairness, it depends on their experience, and related fields. For instance, I have only a very rough idea of where to start on his project. Yet, I can program DVD players, TV's, projector's...
  25. Replies
    10
    Views
    4,196

    Re: MFC missing a WM_ message I need

    SC_SCREENSAVE and WM_POWERBROADCAST are both sent when Windows calls its screensaver.

    SC_SCREENSAVE is only sent to the application with current focus though, so you might have to use...
Results 1 to 25 of 42
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured