Click here to Skip to main content
16,004,906 members
Home / Discussions / C#
   

C#

 
AnswerRe: Urgent Regualr Expression Help Needed Pin
User 665817-Oct-05 6:21
User 665817-Oct-05 6:21 
GeneralRe: Urgent Regualr Expression Help Needed Pin
Brian Van Beek17-Oct-05 7:06
Brian Van Beek17-Oct-05 7:06 
GeneralRe: Urgent Regualr Expression Help Needed Pin
leppie17-Oct-05 8:15
leppie17-Oct-05 8:15 
GeneralRe: Urgent Regualr Expression Help Needed Pin
User 665817-Oct-05 9:06
User 665817-Oct-05 9:06 
GeneralRe: Urgent Regualr Expression Help Needed Pin
Daniel Turini17-Oct-05 9:44
Daniel Turini17-Oct-05 9:44 
AnswerRe: Urgent Regualr Expression Help Needed Pin
leppie17-Oct-05 10:22
leppie17-Oct-05 10:22 
QuestionDrawing over a picturebox Pin
budidharma17-Oct-05 4:55
budidharma17-Oct-05 4:55 
AnswerRe: Drawing over a picturebox Pin
Rick Beideman17-Oct-05 6:49
Rick Beideman17-Oct-05 6:49 
Here is some code used in a paint event. If it is not in an event with PaintEventArgs you will need to get a Graphics object in another way.

private void Image_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
{

Rectangle selRect = new Rectangle(0,0,0,0);
Graphics selGraphics = null;

int lineThickness = 2;
selGraphics = e.Graphics;
selRect.X = 10;
selRect.Y = 10;
selRect.Width=50;
selRect.Height=50;

Pen selPen = new Pen(Color.Black, lineThickness);
selGraphics.DrawRectangle(selPen, selRect);
}
Questionadd a delay before updating a file. Pin
Dan Neely17-Oct-05 4:38
Dan Neely17-Oct-05 4:38 
AnswerRe: add a delay before updating a file. Pin
S. Senthil Kumar17-Oct-05 5:07
S. Senthil Kumar17-Oct-05 5:07 
GeneralRe: add a delay before updating a file. Pin
Dan Neely17-Oct-05 6:56
Dan Neely17-Oct-05 6:56 
GeneralRe: add a delay before updating a file. Pin
S. Senthil Kumar17-Oct-05 15:14
S. Senthil Kumar17-Oct-05 15:14 
QuestionUpdate Form while Retaining Access to It Pin
thepolishguy17-Oct-05 3:40
thepolishguy17-Oct-05 3:40 
QuestionCreate an object dynamically for COM component witout reflection Pin
Member 227350917-Oct-05 3:14
Member 227350917-Oct-05 3:14 
AnswerRe: Create an object dynamically for COM component witout reflection Pin
S. Senthil Kumar17-Oct-05 5:27
S. Senthil Kumar17-Oct-05 5:27 
Questionconvert int to hexadecimal Pin
Sasuko17-Oct-05 3:10
Sasuko17-Oct-05 3:10 
AnswerRe: convert int to hexadecimal Pin
Rob Philpott17-Oct-05 5:10
Rob Philpott17-Oct-05 5:10 
AnswerRe: convert int to hexadecimal Pin
S. Senthil Kumar17-Oct-05 5:31
S. Senthil Kumar17-Oct-05 5:31 
QuestionMocking interface methods with 2 dimensional array return types Pin
Anonymous17-Oct-05 3:06
Anonymous17-Oct-05 3:06 
QuestionReminders Pin
PaulaM17-Oct-05 2:36
PaulaM17-Oct-05 2:36 
AnswerRe: Reminders Pin
Andy Brummer17-Oct-05 5:46
sitebuilderAndy Brummer17-Oct-05 5:46 
Questionhow to use the System.IO.IsolatedStorage Pin
Sasuko17-Oct-05 2:32
Sasuko17-Oct-05 2:32 
AnswerRe: how to use the System.IO.IsolatedStorage Pin
Dave Kreskowiak17-Oct-05 5:32
mveDave Kreskowiak17-Oct-05 5:32 
QuestionAdd Command bar in Outlook Pin
Talktorajeev17-Oct-05 1:07
Talktorajeev17-Oct-05 1:07 
QuestionProblem with webservice in production env Pin
Dario Solera17-Oct-05 0:53
Dario Solera17-Oct-05 0:53 

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.