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

Search:

Type: Posts; User: nwadc10

Search: Search took 0.02 seconds.

  1. Anyone Successful Getting FC.GEPluginCtrls to work in C++.NET?

    I came across the winforms-geplugin-control-library project (http://code.google.com/p/winforms-geplugin-control-library/) and it is just what I need for my C++.NET windows forms application. The...
  2. Re: Draw Text in Picturebox at Mouseclick Coordinates

    Well, I may have accidentally figured it out lol. This is my new code...


    private: System::Void pictureBox1_MouseDown(System::Object^ sender, System::Windows::Forms::MouseEventArgs^ e)
    {
    ...
  3. Re: Draw Text in Picturebox at Mouseclick Coordinates

    Ya, I'll have to create a new project with just this form in question as the entire program is thousands and thousands of lines of code...unless you are just looking for the source code on this...
  4. Re: Draw Text in Picturebox at Mouseclick Coordinates

    I couldn't find anything in that link to help with this particular problem unfortunately. I don't think I need the Refresh, in fact I put that in the code for a reset button that clears the X and...
  5. Re: Draw Text in Picturebox at Mouseclick Coordinates

    private: System::Void pictureBox1_MouseDown(System::Object^ sender, System::Windows::Forms::MouseEventArgs^ e)
    {
    Graphics^ g = CreateGraphics();
    g =...
  6. Re: Draw Text in Picturebox at Mouseclick Coordinates

    pictureBox1.Update() doesn't change the behavior.
    pictureBox1.Refresh() causes the X to appear for a split second before the image is refreshed and the X removed (I can use this feature for another...
  7. Re: Draw Text in Picturebox at Mouseclick Coordinates

    Yes Quinn, that did help me along thanks. I converted that to C++ and the result is the following:


    Graphics^ g = CreateGraphics();
    g = Graphics::FromHwnd(pictureBox1->Handle);...
  8. Draw Text in Picturebox at Mouseclick Coordinates

    Hi Folks,

    I have a Windows Forms application in C++ and am stumped on what seems to be a simple task. While I have written many lines of code, I am a self taught programmer and do this as a...
Results 1 to 8 of 9





Click Here to Expand Forum to Full Width

Featured