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

Search:

Type: Posts; User: surfdabbler

Page 1 of 6 1 2 3 4

Search: Search took 0.03 seconds.

  1. Passing derived class members to base class constructer?

    I'm trying to derive a class from HtmlTextWriter to specifically write Html to a string.
    This means constructing the HtmlTextWriter class with some strings, but as these strings are part of the...
  2. Replies
    1
    Views
    3,642

    Re: WM_GESTURE not working

    I'm still stuck on this. Anyone?
  3. Replies
    1
    Views
    1,958

    Wincrypt.idl error in VS2010

    I'm in the process of upgrading a VS2005 project to VS2010, and it is giving an error...


    2>C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\include\wincrypt.idl(47): error MIDL2025: syntax...
  4. Replies
    11
    Views
    2,275

    Re: Problems updating to new Windows SDK

    Hi Victor,

    The event viewer is a good idea, but unfortunatly the errors in the event viewer are just as useless...

    "Component identity found in manifest does not match the identity of the...
  5. Replies
    11
    Views
    2,275

    Re: Problems updating to new Windows SDK

    Well, after four frustrating days, I've found the problem. It turns out the Platform SDK was not the problem at all. Turns out Visual Studio updated itself the other day, and installed a runtime...
  6. Replies
    11
    Views
    2,275

    Re: Problems updating to new Windows SDK

    Hmm, we really aren't getting anywhere here are we? I haven't got answers to any of my questions yet. I will assume by the lack of answers that there is no way to find out what versions of what...
  7. Replies
    11
    Views
    2,275

    Re: Problems updating to new Windows SDK

    :) Yes, true I know, but there are two problems...

    1) I would like to have a single install package to cover it all and simplify the install for my customers. Yes, potentially I can wrap the...
  8. Replies
    11
    Views
    2,275

    Re: Problems updating to new Windows SDK

    Is there a way to find out exactly what's in the redist package? I can install it on my test machine, but I'd really like to know what's there, to identify the critical components (dlls) that are...
  9. Replies
    11
    Views
    2,275

    Problems updating to new Windows SDK

    I've just integrated the Windows SDK V7.0A into my VS2005 application, and I'm getting the dreaded "Application configuration error" when I try to run it on an XP machine.

    It runs fine on the...
  10. Replies
    1
    Views
    3,642

    WM_GESTURE not working

    I'm trying to add gesture processing to an existing app, but it's not receiving WM_GESTURE messages.

    I am using VS2005, and have updated to the Windows SDK v7.0A, so the gesture processing...
  11. Replies
    1
    Views
    1,953

    WM_GESTURE in VS2005

    I have a project in VS2005 and I'm trying to add the two-finger panning gesture. Problem is, there doesn't seem to be a way to add this in Visual Studio 2005. None of the windows gesture code seems...
  12. Replies
    8
    Views
    2,104

    Re: Visual C++ Studio 2008, Intellisense????

    I've had Intellisense problems for years. I've given up and bought Visual Assist X. It does the job much better than VS, and has plenty of other benefits beside. I'm using VS2005 mostly. I did...
  13. Replies
    2
    Views
    1,352

    Re: Check whether webpage has changed?

    Thanks for the reply. I ended up using the HTTPWebRequest class instead of WebClient. This allowed me to cache the date-time from the previous request, and pass it back in the IfModifiedSince...
  14. Replies
    2
    Views
    1,352

    Check whether webpage has changed?

    I have an application file that is hosted on a webserver. The client app needs to regularly check for changes to this file and download the new version. I will use the WebClient class to download...
  15. Replies
    4
    Views
    2,373

    Re: Productivity Tools for C++?

    @ovidiucucu: I'm using C++, no CLI, and Intellisense has never worked properly. A lot of the time it won't even "Go to definition" or "Go to declaration", and much of the time it won't give me the...
  16. Replies
    4
    Views
    2,373

    Productivity Tools for C++?

    I saw a friend running Resharper for C#, and was impressed with a few specific features. Does anyone know of some good similar productivity tools for C++?

    In particular, the ability to mark a...
  17. Re: OnPowerBroadcast() not detecting sleep mode

    It's OK, I found the problem. Turns out the messages only go to the MainFrame, and I need to specifically pass them through to the child windows if I want them to be processed in the child windows.
  18. Re: Why do these two produce different results?

    [quote=hypheni;1992152]{0} this means only 1st element. I dont think so[quote]

    OK, I stand corrected on this one for an array. :) Although for a structure, as we have here, what I said is true....
  19. [RESOLVED] OnPowerBroadcast() not detecting sleep mode

    I'm using OnPowerBroadcast(), to detect when the computer goes to sleep or hibernates. I don't need to stop sleep, just clean up some things before sleep happens.

    So, in my MDI child view, I...
  20. Re: Why do these two produce different results?

    The first code assigns zero to the first element only. If MIB_IF_ROW2 is an array, then only the first element is set to zero.
  21. Replies
    1
    Views
    2,088

    Re: Open socket and read from web page

    Hi, I've just been looking at this myself, and came across your question. CInternetSession seems to be the class to use. It looks like it will handle all the sockets and HTTP level coding, and then...
  22. Replies
    6
    Views
    2,925

    Re: Menu font size

    OK, so back to original question. Why is my app is not following this font setting? It also happens in the MFC sample application. As you can see from my screenshot, they are not following the...
  23. Replies
    6
    Views
    2,925

    Re: Menu font size

    OK, thanks for your lack of help. Anyone else know why this font behaviour has changed, and how to control it in my application?
  24. Replies
    6
    Views
    2,925

    Re: Menu font size

    "Standard" means all the same. The way it looks in preview would be the way it looks in the final app. It would also be nice if it was the same as previous compilers, and the same as visual studio...
  25. Replies
    6
    Views
    2,925

    Menu font size

    I have just upgraded to Visual Studio 2010, and I've noticed in recompiling my app, the menu size has changed.

    I have rebuilt the MDITabsDemo sample application, and it happens there too. In the...
Results 1 to 25 of 137
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured