Click here to Skip to main content
15,890,579 members
Home / Discussions / C#
   

C#

 
GeneralRe: Proxy Classes - Copy/Paste Pre-compiler Pin
Iain Wiseman1-Dec-09 20:17
Iain Wiseman1-Dec-09 20:17 
GeneralRe: Proxy Classes - Copy/Paste Pre-compiler Pin
dan!sh 1-Dec-09 20:27
professional dan!sh 1-Dec-09 20:27 
GeneralRe: Proxy Classes - Copy/Paste Pre-compiler Pin
Dave Kreskowiak2-Dec-09 1:09
mveDave Kreskowiak2-Dec-09 1:09 
QuestionSelecting from datatable Pin
myinstincts1-Dec-09 18:17
myinstincts1-Dec-09 18:17 
AnswerRe: Selecting from datatable Pin
Giorgi Dalakishvili1-Dec-09 18:56
mentorGiorgi Dalakishvili1-Dec-09 18:56 
AnswerRe: Selecting from datatable Pin
dan!sh 1-Dec-09 19:07
professional dan!sh 1-Dec-09 19:07 
AnswerRe: Selecting from datatable Pin
Anurag Gandhi1-Dec-09 19:58
professionalAnurag Gandhi1-Dec-09 19:58 
Questionout of memory exception Pin
eswar pothula1-Dec-09 17:57
eswar pothula1-Dec-09 17:57 
hi every body,

in my application i want to retrieve image from database and it will show on picture box, so my code is
try
{
int no = int.Parse(textBox2.Text);
SqlConnection con = new SqlConnection("user id=sa;password=sa123;server=192.168.0.44;database=eswar");

SqlCommand cmd = new SqlCommand("select imagedata from image1 where sno=" + no, con);
//byte[] barrImg=(byte[])cmdSelect.ExecuteScalar();

cmd.Parameters.Add(textBox2.Text, SqlDbType.Int, 4);
cmd.Parameters[textBox2.Text].Value = this.textBox2.Text;

con.Open();

byte[] imgarr = (byte[])cmd.ExecuteScalar();

string strfn = Convert.ToString(DateTime.Now.ToFileTime());
FileStream fs = new FileStream(strfn, FileMode.CreateNew, FileAccess.Write);
fs.Write(imgarr, 0, imgarr.Length);
fs.Flush();
fs.Close();
pictureBox1.SizeMode = PictureBoxSizeMode.Normal;
pictureBox1.Image = Image.FromFile(strfn);
cmd.Dispose();
con.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

when my application is running it will shows a out of memory exception

pls help me

thanks in advance.........
AnswerRe: out of memory exception Pin
Saksida Bojan1-Dec-09 19:18
Saksida Bojan1-Dec-09 19:18 
Answerunreadable Pin
Luc Pattyn2-Dec-09 1:16
sitebuilderLuc Pattyn2-Dec-09 1:16 
QuestionReally need help with platform invoke Lotus Notes API in C# Pin
senorAli331-Dec-09 16:27
senorAli331-Dec-09 16:27 
AnswerRe: Really need help with platform invoke Lotus Notes API in C# Pin
Luc Pattyn1-Dec-09 16:51
sitebuilderLuc Pattyn1-Dec-09 16:51 
QuestionMulticast Delegate using MethodInfo Pin
hobbel2221-Dec-09 12:29
hobbel2221-Dec-09 12:29 
AnswerRe: Multicast Delegate using MethodInfo Pin
N a v a n e e t h1-Dec-09 17:04
N a v a n e e t h1-Dec-09 17:04 
GeneralRe: Multicast Delegate using MethodInfo Pin
hobbel2221-Dec-09 23:50
hobbel2221-Dec-09 23:50 
QuestionIs their a better way than using the Try/Catch statement in this source? Pin
venomation1-Dec-09 9:07
venomation1-Dec-09 9:07 
AnswerRe: Is their a better way than using the Try/Catch statement in this source? Pin
OriginalGriff1-Dec-09 9:15
mveOriginalGriff1-Dec-09 9:15 
GeneralRe: Is their a better way than using the Try/Catch statement in this source? Pin
venomation1-Dec-09 9:24
venomation1-Dec-09 9:24 
GeneralRe: Is their a better way than using the Try/Catch statement in this source? Pin
OriginalGriff1-Dec-09 9:34
mveOriginalGriff1-Dec-09 9:34 
GeneralRe: Is their a better way than using the Try/Catch statement in this source? Pin
vtchris-peterson1-Dec-09 9:29
vtchris-peterson1-Dec-09 9:29 
GeneralRe: Is their a better way than using the Try/Catch statement in this source? Pin
venomation1-Dec-09 9:37
venomation1-Dec-09 9:37 
QuestionSandboxing with AppDomain Pin
softwarejaeger1-Dec-09 7:51
softwarejaeger1-Dec-09 7:51 
QuestionReading excel file in Vista x64 Pin
kmuthuk1-Dec-09 5:38
kmuthuk1-Dec-09 5:38 
AnswerRe: Reading excel file in Vista x64 Pin
Dave Kreskowiak1-Dec-09 5:47
mveDave Kreskowiak1-Dec-09 5:47 
GeneralRe: Reading excel file in Vista x64 Pin
kmuthuk1-Dec-09 5:55
kmuthuk1-Dec-09 5:55 

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.