Click here to Skip to main content
15,919,479 members
Home / Discussions / C#
   

C#

 
JokeRe: R/W in Notepad Pin
Not Active13-Sep-06 7:49
mentorNot Active13-Sep-06 7:49 
GeneralRe: R/W in Notepad Pin
Ed.Poore13-Sep-06 8:16
Ed.Poore13-Sep-06 8:16 
JokeRe: R/W in Notepad Pin
Guffa13-Sep-06 9:25
Guffa13-Sep-06 9:25 
AnswerRe: R/W in Notepad Pin
Nadia Monalisa13-Sep-06 6:55
Nadia Monalisa13-Sep-06 6:55 
QuestionCreate Instance of an Application Pin
EscKey200413-Sep-06 6:18
EscKey200413-Sep-06 6:18 
AnswerRe: Create Instance of an Application Pin
Ed.Poore13-Sep-06 6:49
Ed.Poore13-Sep-06 6:49 
AnswerRe: Create Instance of an Application Pin
Judah Gabriel Himango13-Sep-06 6:49
sponsorJudah Gabriel Himango13-Sep-06 6:49 
GeneralRe: Create Instance of an Application Pin
EscKey200413-Sep-06 7:34
EscKey200413-Sep-06 7:34 
I have tried this I built a little test app that looks like this but I really did not get much of a response from the stuff I tried loading is there something I am doing wrong?

OpenFileDialog open = new OpenFileDialog();<br />
                if (open.ShowDialog() == DialogResult.OK)<br />
                {<br />
                    System.IO.FileStream st = new System.IO.FileStream(open.FileName.ToString(), System.IO.FileMode.Open);<br />
                    System.IO.BinaryReader br = new System.IO.BinaryReader(st);<br />
                    byte[] bytes = new byte[br.BaseStream.Length];<br />
                    br.Read(bytes, 0, bytes.Length);<br />
<br />
                    System.Reflection.Assembly a = System.Reflection.Assembly.Load(bytes);<br />
                    a.CreateInstance(a.GetType().ToString());<br />
                }

GeneralRe: Create Instance of an Application Pin
Judah Gabriel Himango13-Sep-06 8:07
sponsorJudah Gabriel Himango13-Sep-06 8:07 
GeneralRe: Create Instance of an Application Pin
EscKey200413-Sep-06 8:14
EscKey200413-Sep-06 8:14 
Questionbit operations question for binary&gt;decimal Pin
mmatteson13-Sep-06 6:14
mmatteson13-Sep-06 6:14 
AnswerRe: bit operations question for binary&gt;decimal Pin
Guffa13-Sep-06 9:20
Guffa13-Sep-06 9:20 
GeneralRe: bit operations question for binary&gt;decimal Pin
mmatteson29-Sep-06 10:51
mmatteson29-Sep-06 10:51 
QuestionVB SCRIPT issue : called from C# Pin
Nadia Monalisa13-Sep-06 5:56
Nadia Monalisa13-Sep-06 5:56 
AnswerRe: VB SCRIPT issue : called from C# Pin
Nader Elshehabi13-Sep-06 9:07
Nader Elshehabi13-Sep-06 9:07 
GeneralRe: VB SCRIPT issue : called from C# Pin
Nadia Monalisa13-Sep-06 9:23
Nadia Monalisa13-Sep-06 9:23 
GeneralRe: VB SCRIPT issue : called from C# Pin
Nader Elshehabi13-Sep-06 9:48
Nader Elshehabi13-Sep-06 9:48 
QuestionStoring connection string in CODE instead of App.Config ! , POSSIBLE ? Pin
Nadia Monalisa13-Sep-06 5:46
Nadia Monalisa13-Sep-06 5:46 
AnswerRe: Storing connection string in CODE instead of App.Config ! , POSSIBLE ? Pin
Nader Elshehabi13-Sep-06 6:04
Nader Elshehabi13-Sep-06 6:04 
GeneralRe: Storing connection string in CODE instead of App.Config ! , POSSIBLE ? Pin
Nadia Monalisa13-Sep-06 6:22
Nadia Monalisa13-Sep-06 6:22 
GeneralRe: Storing connection string in CODE instead of App.Config ! , POSSIBLE ? Pin
Nader Elshehabi13-Sep-06 7:32
Nader Elshehabi13-Sep-06 7:32 
GeneralRe: Storing connection string in CODE instead of App.Config ! , POSSIBLE ? Pin
Nadia Monalisa13-Sep-06 7:37
Nadia Monalisa13-Sep-06 7:37 
GeneralRe: Storing connection string in CODE instead of App.Config ! , POSSIBLE ? Pin
Nadia Monalisa13-Sep-06 7:44
Nadia Monalisa13-Sep-06 7:44 
GeneralRe: Storing connection string in CODE instead of App.Config ! , POSSIBLE ? Pin
Nader Elshehabi13-Sep-06 8:40
Nader Elshehabi13-Sep-06 8:40 
GeneralRe: Storing connection string in CODE instead of App.Config ! , POSSIBLE ? Pin
Nadia Monalisa13-Sep-06 9:37
Nadia Monalisa13-Sep-06 9:37 

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.