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

Search:

Type: Posts; User: Mike Pliam

Page 1 of 72 1 2 3 4

Search: Search took 0.32 seconds.

  1. Replies
    2
    Views
    1,181

    Re: Still Need Help With Unicode IO

    Thanks, Arjay. Turns out there are two projects in the solution, one a dll (Unicode), the other an MFC (char set not defined). Suspecting that may be the problem, since the dll compiles without...
  2. Replies
    2
    Views
    1,181

    Still Need Help With Unicode IO

    Attempting to port code from VS 2010 to VS 2017 I have found that a single code method is breaking my newly ported apps. This was originally a daunting problem in VS 2010, but you gurus helped me to...
  3. Re: How to get MFC CHtmlView to run HTML5 and CSS3

    Tried that. No joy. Too many linking errors despite following directions carefully to best of my ability using VS 2013 on Win7 Ultimate. I wonder why author doesn't provide a working demo exe?
  4. Re: How to get MFC CHtmlView to run HTML5 and CSS3

    Anyone feeling adventurous enough to delve further into this quagmire is cordially invited to download my VS 2013 project and see if they can get it to run.
    ...
  5. Re: How to get MFC CHtmlView to run HTML5 and CSS3

    Visual Studio Community 2013
    Version 12.0.31101.00 Update 4

    MS.NET Framework
    Version 4.6.01055

    on Win7 (64-bit) Dell XPS
  6. Re: How to get MFC CHtmlView to run HTML5 and CSS3

    Perhaps if someone could help me with the final step that I have alluded to I might make a beauty of the beast.
    Building the 64-bit version of Chromium Embedded Framework on Windows...
  7. Re: How to get MFC CHtmlView to run HTML5 and CSS3

    Good point Igor. Nevertheless, there is some demand in the C++ community to be able to program a Chrome-like browser using Visual Studio. After wasting a significant amount of time researching...
  8. Re: How to get MFC CHtmlView to run HTML5 and CSS3

    Upon further investigation I have determined that it is CHtmlView that is the problem, not the operating system and not Internet Explorer 11 (which at least on Win7 doesnt support html5 among other...
  9. Re: How to get MFC CHtmlView to run HTML5 and CSS3

    I don't think so.

    See: http://www.html5report.com/topics/html5/articles/360938-internet-explorer-11-windows-7-drops-some-html5.htm

    When I build a web browser app using C# and try to point it...
  10. Re: How to get MFC CHtmlView to run HTML5 and CSS3

    Internet Explorer 11 on Windows 7 (64-bit)
  11. How to get MFC CHtmlView to run HTML5 and CSS3

    MFC CHtmlView is a beautiful and flexible interface for building desktop apps testing out *.html files locally. However, the current version only uses Internet Explorer which does not recognize...
  12. Re: How to convert xml deserialized object to array

    Good information. Thanks.
  13. Re: How to convert xml deserialized object to array

    Thanks Arjay.

    Is this better?


    using (TextWriter WriteFileStream = new StreamWriter(@"patients12.xml"))
    {
    XmlSerializer listObj = new...
  14. How to convert xml deserialized object to array

    Using .NET 4.6 on Win7(64bit). I have a relatively simple xml data set:



    <?xml version="1.0" encoding="utf-8"?>
    <Profile ID="1">
    <ClinicDr>Christian</ClinicDr>
    ...
  15. Re: How to prevent resolution changes from destroying graphics on winform

    Further searching reveals a simpler method that doesn't involve importing user.dll stuff.

    Thanks to 'IMMORTAL' at http://stackoverflow.com/questions/14976612/




    // From the form Load event...
  16. Re: How to prevent resolution changes from destroying graphics on winform

    Thank you, Hannes. But it seems liking "bringing the mountain to Mohammed" instead of the other way around. I was hoping for a solution that automatically manipulated the form controls and graphics...
  17. How to prevent resolution changes from destroying graphics on winform

    If I develop a C# winform app on a high resolution screen, then try to run it on a lower resolution screen, the graphics can be quite distorted, essentially destroying the interface, or at least...
  18. What are the options for saving user specific data ?

    On April 18, 2016 Arjay wrote:


    So what are the best options to save user specific data in a C# app?
  19. Thread: Picturebox

    by Mike Pliam
    Replies
    4
    Views
    743

    Re: Picturebox

    Check out:

    Drawing on picture box images D*****hka Madushan lk, 24 Jan 2012
    http://www.codeproject.com/Tips/318900/Drawing-on-picture-box-images
  20. How to draw precisely on a picturebox image

    Loading a bitmap image onto a picturebox on a WinForm is straightforward. Drawing on that bitmap is a bit trickier, but code is available to do that. The real difficulty is to draw precisely on the...
  21. Re: Object reference not set to an instance of an object

    Thanks for the great information. I'm still learning, but I've become fascinated with C#.
  22. Re: Object reference not set to an instance of an object

    Yes. That works. I've much to learn about organizing classes and using attributes in C#.
  23. Re: Object reference not set to an instance of an object

    Very nice, Arjay. Thanks. I will need some time to work with it. The demo app is 'not compatible' with Visual Studio version 2010, despite the latter having .NET 4.601.. SP1Rel, but runs just fine...
  24. Object reference not set to an instance of an object

    Newbie Alert! .NET4.0 / VS 2010

    I have an xml database that I wish to read:



    <?xml version="1.0"?>
    -<patients>
    -<profile>
    <ID>1</ID>
  25. Re: Object reference not set to an instance of an object.

    I found this little gem:
    // https://social.msdn.microsoft.com/Forums/vstudio/en-US/77b87843-ae0b-463d-b50e-b6b8e9175e50/write-to-appconfig-at-runtime-very-urgent?forum=csharpgeneral

    Seems to...
Results 1 to 25 of 1799
Page 1 of 72 1 2 3 4





Click Here to Expand Forum to Full Width

Featured