Click here to Skip to main content
15,887,812 members
Home / Discussions / C#
   

C#

 
AnswerRe: Collections and sorting using an interface Pin
User 66581-Aug-08 22:56
User 66581-Aug-08 22:56 
GeneralRe: Collections and sorting using an interface Pin
DaveyM692-Aug-08 2:29
professionalDaveyM692-Aug-08 2:29 
GeneralRe: Collections and sorting using an interface Pin
DaveyM692-Aug-08 4:11
professionalDaveyM692-Aug-08 4:11 
GeneralRe: Collections and sorting using an interface Pin
DaveyM692-Aug-08 4:48
professionalDaveyM692-Aug-08 4:48 
GeneralRe: Collections and sorting using an interface [modified] Pin
User 66582-Aug-08 5:06
User 66582-Aug-08 5:06 
GeneralRe: Collections and sorting using an interface Pin
DaveyM692-Aug-08 8:47
professionalDaveyM692-Aug-08 8:47 
GeneralRe: Collections and sorting using an interface Pin
DaveyM692-Aug-08 10:22
professionalDaveyM692-Aug-08 10:22 
Questionmeta file using C# Pin
algates00271-Aug-08 18:56
algates00271-Aug-08 18:56 
Hi
I am drawing a rectangle using OnmouseClick(vector image)..how can i convert to meta file





using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Text;

using System.Windows.Forms;

using System.Drawing.Drawing2D;

namespace WindowsApplication2

{

public partial class Form1 : Form

{

public Form1()

{

InitializeComponent();

}

protected override void OnMouseClick(MouseEventArgs e)

{

Graphics g = this.CreateGraphics();

g.DrawRectangle(new Pen(Color.Blue), new Rectangle(e.X, e.Y, 20, 40)); // How can i convert this vector in to a \\ meta file

base.OnMouseClick(e);

}

protected override void OnPaint(PaintEventArgs e)

{

//how to display the meatfile here

base.OnPaint(e);

}

}

}



Can anyone please explain this with source code.

Regards,

ALGATES






algates
AnswerRe: meta file using C# Pin
Thomas Stockwell2-Aug-08 7:31
professionalThomas Stockwell2-Aug-08 7:31 
QuestionHow to find the Content datatype in a String Pin
K V Sekhar1-Aug-08 18:47
K V Sekhar1-Aug-08 18:47 
AnswerRe: How to find the Content datatype in a String Pin
Rajesh R Subramanian1-Aug-08 20:59
professionalRajesh R Subramanian1-Aug-08 20:59 
AnswerRe: How to find the Content datatype in a String Pin
DaveyM691-Aug-08 21:11
professionalDaveyM691-Aug-08 21:11 
AnswerRe: How to find the Content datatype in a String Pin
Anurag Gandhi1-Aug-08 21:51
professionalAnurag Gandhi1-Aug-08 21:51 
GeneralRe: How to find the Content datatype in a String Pin
K V Sekhar1-Aug-08 23:06
K V Sekhar1-Aug-08 23:06 
GeneralRe: How to find the Content datatype in a String Pin
Guffa1-Aug-08 23:35
Guffa1-Aug-08 23:35 
QuestionThe reason behind the differences of this.Font = fontdialog1.Font and btnTest.Font Pin
Lim Yuxuan1-Aug-08 18:37
Lim Yuxuan1-Aug-08 18:37 
AnswerRe: The reason behind the differences of this.Font = fontdialog1.Font and btnTest.Font Pin
Gideon Engelberth2-Aug-08 2:12
Gideon Engelberth2-Aug-08 2:12 
GeneralRe: The reason behind the differences of this.Font = fontdialog1.Font and btnTest.Font Pin
Lim Yuxuan2-Aug-08 4:56
Lim Yuxuan2-Aug-08 4:56 
QuestionAdd rular in toolbar Pin
amitshan1-Aug-08 18:13
amitshan1-Aug-08 18:13 
AnswerRe: Add rular in toolbar Pin
Krazy Programmer1-Aug-08 22:13
Krazy Programmer1-Aug-08 22:13 
AnswerRe: Add rular in toolbar Pin
Paul Conrad2-Aug-08 10:29
professionalPaul Conrad2-Aug-08 10:29 
QuestionRegex Match counting problem Pin
Mohammad A Gdeisat1-Aug-08 17:06
Mohammad A Gdeisat1-Aug-08 17:06 
AnswerRe: Regex Match counting problem Pin
User 66582-Aug-08 0:56
User 66582-Aug-08 0:56 
GeneralRe: Regex Match counting problem Pin
Mohammad A Gdeisat2-Aug-08 0:59
Mohammad A Gdeisat2-Aug-08 0:59 
GeneralRe: Regex Match counting problem [modified] Pin
User 66582-Aug-08 1:08
User 66582-Aug-08 1:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.