Click here to Skip to main content
15,907,905 members
Home / Discussions / C#
   

C#

 
AnswerRe: How do I “hide” controls that my control uses from the toolbox? Pin
carlecomm21-Sep-09 17:34
carlecomm21-Sep-09 17:34 
Questionhow to check if form was activated Pin
Jassim Rahma14-Sep-09 10:14
Jassim Rahma14-Sep-09 10:14 
AnswerRe: how to check if form was activated Pin
Abhishek Sur14-Sep-09 10:26
professionalAbhishek Sur14-Sep-09 10:26 
GeneralRe: how to check if form was activated Pin
Jassim Rahma14-Sep-09 10:38
Jassim Rahma14-Sep-09 10:38 
AnswerRe: how to check if form was activated Pin
Abhishek Sur14-Sep-09 11:08
professionalAbhishek Sur14-Sep-09 11:08 
GeneralRe: how to check if form was activated Pin
MickCurley14-Sep-09 11:18
MickCurley14-Sep-09 11:18 
AnswerRe: how to check if form was activated Pin
carlecomm21-Sep-09 22:58
carlecomm21-Sep-09 22:58 
QuestionPassing Information to Timer.Elapsed Method Pin
ezazazel14-Sep-09 9:52
ezazazel14-Sep-09 9:52 
AnswerRe: Passing Information to Timer.Elapsed Method Pin
PIEBALDconsult14-Sep-09 10:04
mvePIEBALDconsult14-Sep-09 10:04 
GeneralRe: Passing Information to Timer.Elapsed Method Pin
ezazazel14-Sep-09 10:32
ezazazel14-Sep-09 10:32 
AnswerRe: Passing Information to Timer.Elapsed Method Pin
carlecomm21-Sep-09 0:58
carlecomm21-Sep-09 0:58 
QuestionTotalMinutes SQL Express datatype Pin
Jassim Rahma14-Sep-09 9:50
Jassim Rahma14-Sep-09 9:50 
AnswerRe: TotalMinutes SQL Express datatype Pin
PIEBALDconsult14-Sep-09 10:10
mvePIEBALDconsult14-Sep-09 10:10 
QuestionSearching for Video Editing code Pin
sanyukta14-Sep-09 7:16
sanyukta14-Sep-09 7:16 
AnswerRe: Searching for Video Editing code Pin
Richard MacCutchan14-Sep-09 7:19
mveRichard MacCutchan14-Sep-09 7:19 
AnswerRe: Searching for Video Editing code Pin
carlecomm21-Sep-09 15:35
carlecomm21-Sep-09 15:35 
Questionform Pin
sos_amin14-Sep-09 6:47
sos_amin14-Sep-09 6:47 
AnswerRe: form Pin
musefan14-Sep-09 6:51
musefan14-Sep-09 6:51 
AnswerRe: form [modified] Pin
Not Active14-Sep-09 7:29
mentorNot Active14-Sep-09 7:29 
GeneralRe: form Pin
0x3c014-Sep-09 7:55
0x3c014-Sep-09 7:55 
GeneralRe: form Pin
Not Active14-Sep-09 8:11
mentorNot Active14-Sep-09 8:11 
AnswerRe: form Pin
Dave Kreskowiak14-Sep-09 14:32
mveDave Kreskowiak14-Sep-09 14:32 
Questionimage to crystal report Pin
tanweer14-Sep-09 6:24
tanweer14-Sep-09 6:24 
hello i m trying to show an image on a crystal report using this code but it does not working
can any body help me ???????????????

<br />
             string imagepath="";<br />
            DataTable dt = new DataTable();<br />
            DataRow drow;<br />
            dt.Columns.Add("Image", System.Type.GetType("System.Byte[]"));<br />
            drow = dt.NewRow();<br />
            FileStream fs = new FileStream(imagepath, FileMode.Open);<br />
            BinaryReader br = new BinaryReader(fs);<br />
            Byte[] imgbyte = new Byte[fs.Length];<br />
            imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));<br />
            drow[0] = imgbyte;<br />
            dt.Rows.Add(drow);<br />
            br.Close();<br />
            fs.Close();

Questionsyncronization service Pin
amer shammout14-Sep-09 5:47
amer shammout14-Sep-09 5:47 
AnswerRe: syncronization service Pin
Keith Barrow14-Sep-09 6:23
professionalKeith Barrow14-Sep-09 6:23 

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.