Click here to Skip to main content
15,921,990 members
Home / Discussions / C#
   

C#

 
GeneralRe: Problem with ComboBox Selected.Item Pin
Ravenet7-Feb-08 16:31
Ravenet7-Feb-08 16:31 
GeneralSend newsletter Pin
AkmalSyed6-Feb-08 22:59
AkmalSyed6-Feb-08 22:59 
GeneralRe: Send newsletter Pin
Gareth H6-Feb-08 23:15
Gareth H6-Feb-08 23:15 
GeneralRe: Send newsletter Pin
Jamman7-Feb-08 1:19
Jamman7-Feb-08 1:19 
GeneralRude Pin
pmarfleet7-Feb-08 2:30
pmarfleet7-Feb-08 2:30 
Generalimage display on window form Pin
RajeevKumarSharma6-Feb-08 22:53
RajeevKumarSharma6-Feb-08 22:53 
GeneralRe: image display on window form Pin
J a a n s6-Feb-08 23:02
professionalJ a a n s6-Feb-08 23:02 
GeneralRe: image display on window form Pin
RajeevKumarSharma6-Feb-08 23:13
RajeevKumarSharma6-Feb-08 23:13 
private Bitmap MyImage ;
public void ShowMyImage(String fileToDisplay, int xSize, int ySize)
{
// Sets up an image object to be displayed.
if (MyImage != null)
{
MyImage.Dispose();
}

// Stretches the image to fit the pictureBox.
pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage ;
MyImage = new Bitmap(fileToDisplay); HOW TO GIVE HERE FILE PATH WHICH EXIST IN MY PROJECT
pictureBox1.ClientSize = new Size(xSize, ySize);
pictureBox1.Image = (Image) MyImage ;
}


please look on the bold,under line text

Rajeev Kr. Sharma
VRI Software Pvt.Ltd.
New Delhi India
HumOnline.com
Stay Connected

GeneralRe: image display on window form Pin
Vikram A Punathambekar7-Feb-08 0:16
Vikram A Punathambekar7-Feb-08 0:16 
GeneralRe: image display on window form Pin
Gareth H6-Feb-08 23:10
Gareth H6-Feb-08 23:10 
GeneralRe: image display on window form Pin
electriac7-Feb-08 4:25
electriac7-Feb-08 4:25 
GeneralCrystal_Report PRoblem Pin
simworld6-Feb-08 22:51
simworld6-Feb-08 22:51 
QuestionC# Office 2003 interop Drag & Drop Pin
dnaycxxx6-Feb-08 22:20
dnaycxxx6-Feb-08 22:20 
QuestionNDoc and C# 2.0 templates Pin
Chesnokov Yuriy6-Feb-08 21:45
professionalChesnokov Yuriy6-Feb-08 21:45 
GeneralRe: NDoc and C# 2.0 templates Pin
Pete O'Hanlon6-Feb-08 23:14
mvePete O'Hanlon6-Feb-08 23:14 
AnswerRe: NDoc and C# 2.0 templates Pin
Chesnokov Yuriy7-Feb-08 0:42
professionalChesnokov Yuriy7-Feb-08 0:42 
GeneralRe: NDoc and C# 2.0 templates Pin
Pete O'Hanlon7-Feb-08 2:59
mvePete O'Hanlon7-Feb-08 2:59 
AnswerRe: NDoc and C# 2.0 templates Pin
Chesnokov Yuriy7-Feb-08 3:26
professionalChesnokov Yuriy7-Feb-08 3:26 
GeneralRe: NDoc and C# 2.0 templates Pin
Pete O'Hanlon7-Feb-08 4:05
mvePete O'Hanlon7-Feb-08 4:05 
AnswerRe: NDoc and C# 2.0 templates Pin
Chesnokov Yuriy7-Feb-08 18:57
professionalChesnokov Yuriy7-Feb-08 18:57 
Generalsetting DPI in Printing Pin
Xmen Real 6-Feb-08 20:42
professional Xmen Real 6-Feb-08 20:42 
GeneralRe: setting DPI in Printing Pin
Christian Graus6-Feb-08 21:32
protectorChristian Graus6-Feb-08 21:32 
GeneralRe: setting DPI in Printing Pin
Xmen Real 6-Feb-08 23:51
professional Xmen Real 6-Feb-08 23:51 
QuestionSet the count of number after the decimal point in a column with expression Pin
Noemi Katinka6-Feb-08 20:04
Noemi Katinka6-Feb-08 20:04 
GeneralRe: Set the count of number after the decimal point in a column with expression Pin
That's Aragon6-Feb-08 20:18
That's Aragon6-Feb-08 20:18 

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.