Click here to Skip to main content
15,910,234 members
Home / Discussions / C#
   

C#

 
QuestionDraw a line avoiding objects Pin
Zaegra5-Jan-10 21:45
Zaegra5-Jan-10 21:45 
GeneralRe: Draw a line avoiding objects Pin
Skippums6-Jan-10 7:58
Skippums6-Jan-10 7:58 
Questiondatatable filter Pin
abcurl5-Jan-10 21:38
abcurl5-Jan-10 21:38 
AnswerRe: datatable filter Pin
Greg Chelstowski5-Jan-10 23:26
Greg Chelstowski5-Jan-10 23:26 
GeneralRe: datatable filter Pin
abcurl5-Jan-10 23:38
abcurl5-Jan-10 23:38 
GeneralRe: datatable filter Pin
Greg Chelstowski5-Jan-10 23:55
Greg Chelstowski5-Jan-10 23:55 
GeneralRe: datatable filter Pin
Kaushal Arora6-Jan-10 20:33
Kaushal Arora6-Jan-10 20:33 
Questionproblem in insert picture to sql Pin
SajjadZare5-Jan-10 21:05
SajjadZare5-Jan-10 21:05 
I use below code for add picture to dataBase but if I need that insert null instead of picture into database the program give me Error (I set allowNull for column in Sql)
(it's neccesary becuase maybe user dosen't have picture for insert into database)
how can I do that?


MemoryStream mstr = new MemoryStream();
pictureBox1.Image.Save(mstr, pictureBox1.Image.RawFormat);
byte[]pic= mstr.GetBuffer();

SqlConnection sq=new SqlConnection(...);
SqlParameter sp1 = new SqlParameter("@pic", pic);
SqlCommand sc = new SqlCommand("insert into Info values(@pic)", sq);
sc.Parameters.Add(sp1);
sc.ExecuteNonQuery();
AnswerRe: problem in insert picture to sql Pin
SeMartens5-Jan-10 21:20
SeMartens5-Jan-10 21:20 
GeneralRe: problem in insert picture to sql Pin
SajjadZare5-Jan-10 22:13
SajjadZare5-Jan-10 22:13 
GeneralRe: problem in insert picture to sql Pin
SeMartens5-Jan-10 22:19
SeMartens5-Jan-10 22:19 
GeneralRe: problem in insert picture to sql Pin
SajjadZare5-Jan-10 23:45
SajjadZare5-Jan-10 23:45 
GeneralRe: problem in insert picture to sql Pin
SeMartens5-Jan-10 23:51
SeMartens5-Jan-10 23:51 
GeneralRe: problem in insert picture to sql Pin
SajjadZare6-Jan-10 2:33
SajjadZare6-Jan-10 2:33 
GeneralRe: problem in insert picture to sql Pin
Pete O'Hanlon6-Jan-10 3:23
mvePete O'Hanlon6-Jan-10 3:23 
AnswerRe: problem in insert picture to sql Pin
carlecomm6-Jan-10 19:16
carlecomm6-Jan-10 19:16 
AnswerRe: problem in insert picture to sql Pin
April Fans6-Jan-10 19:19
April Fans6-Jan-10 19:19 
Questionuse DB file without attaching Pin
SajjadZare5-Jan-10 20:55
SajjadZare5-Jan-10 20:55 
AnswerRe: use DB file without attaching Pin
SeMartens5-Jan-10 21:21
SeMartens5-Jan-10 21:21 
GeneralRe: use DB file without attaching Pin
SajjadZare5-Jan-10 22:11
SajjadZare5-Jan-10 22:11 
GeneralRe: use DB file without attaching Pin
SeMartens5-Jan-10 22:17
SeMartens5-Jan-10 22:17 
AnswerRe: use DB file without attaching Pin
Ashfield5-Jan-10 21:41
Ashfield5-Jan-10 21:41 
QuestionInstalling Windows Service issue Pin
Priya Prk5-Jan-10 20:50
Priya Prk5-Jan-10 20:50 
AnswerRe: Installing Windows Service issue Pin
SeMartens5-Jan-10 21:24
SeMartens5-Jan-10 21:24 
AnswerRe: Installing Windows Service issue Pin
Ashfield5-Jan-10 21:43
Ashfield5-Jan-10 21:43 

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.