Click here to Skip to main content
15,885,141 members
Home / Discussions / C#
   

C#

 
GeneralRe: Q: How to serialize layer structure Pin
pandd24-Feb-09 23:52
pandd24-Feb-09 23:52 
QuestionHow to retrieve images from webbrowser control without reload? Pin
WebFormSubmitter24-Feb-09 21:08
WebFormSubmitter24-Feb-09 21:08 
AnswerRe: How to retrieve images from webbrowser control without reload? Pin
Curtis Schlak.25-Feb-09 10:08
Curtis Schlak.25-Feb-09 10:08 
GeneralThanks! But how to extraxt already loaded image from the webbrower? Pin
WebFormSubmitter26-Feb-09 8:57
WebFormSubmitter26-Feb-09 8:57 
GeneralRe: Thanks! But how to extraxt already loaded image from the webbrower? Pin
Curtis Schlak.26-Feb-09 10:34
Curtis Schlak.26-Feb-09 10:34 
Questiona serialization problem Pin
abhiram_nayan24-Feb-09 20:53
abhiram_nayan24-Feb-09 20:53 
AnswerRe: a serialization problem Pin
Expert Coming24-Feb-09 22:36
Expert Coming24-Feb-09 22:36 
GeneralRe: a serialization problem Pin
abhiram_nayan25-Feb-09 0:50
abhiram_nayan25-Feb-09 0:50 
Hey, i did google but still not able to understand why am I not able to do it.

Also, I have a doubt, if am doing some thing like this(code below) in a normal project(not an excel addin),this is working fine:


emp[] e = {
new emp(1,"Mark",5000),
new emp(2,"Mich",6000),
new emp ( 3, "Amol", 4460 ),
new emp ( 4, "Anil", 9456 ),
new emp ( 5, "Srikanth", 9500 ),
};

//SERIALIZING PART
Stream s = File.Open("c:\\New Folder\\emp.txt", FileMode.Create,FileAccess.ReadWrite);
BinaryFormatter b = new BinaryFormatter();
b.Serialize(s, e);
s.Close();

//DESERIALIZING PART
s = File.Open("c:\\New Folder\\emp.txt", FileMode.Open, FileAccess.ReadWrite);
emp[] ee = (emp[])b.Deserialize(s);
foreach (emp ez in ee)
MessageBox.Show(ez.ToString());
s.Close();

But, the same is not working when am introducing this piece of code in my excel-addin project. What could be the reason for this behavour?!

Thanks.
QuestionThread Pin
Ammu S24-Feb-09 20:33
Ammu S24-Feb-09 20:33 
AnswerRe: Thread Pin
Rob Philpott24-Feb-09 21:19
Rob Philpott24-Feb-09 21:19 
AnswerRe: Thread Pin
Krishnraj24-Feb-09 23:11
Krishnraj24-Feb-09 23:11 
GeneralRe: Thread Pin
Megidolaon25-Feb-09 22:13
Megidolaon25-Feb-09 22:13 
QuestionSimple Threading (VS 2005) Example Pin
WinSolution24-Feb-09 20:33
WinSolution24-Feb-09 20:33 
AnswerRe: Simple Threading (VS 2005) Example Pin
J a a n s24-Feb-09 20:41
professionalJ a a n s24-Feb-09 20:41 
GeneralRe: Simple Threading (VS 2005) Example Pin
WinSolution24-Feb-09 20:48
WinSolution24-Feb-09 20:48 
AnswerRe: Simple Threading (VS 2005) Example Pin
prasadbuddhika24-Feb-09 20:45
prasadbuddhika24-Feb-09 20:45 
GeneralRe: Simple Threading (VS 2005) Example Pin
WinSolution24-Feb-09 21:04
WinSolution24-Feb-09 21:04 
GeneralRe: Simple Threading (VS 2005) Example Pin
ABitSmart24-Feb-09 21:52
ABitSmart24-Feb-09 21:52 
AnswerRe: Simple Threading (VS 2005) Example Pin
Cracked-Down24-Feb-09 23:36
Cracked-Down24-Feb-09 23:36 
AnswerRe: Simple Threading (VS 2005) Example Pin
Luc Pattyn25-Feb-09 1:13
sitebuilderLuc Pattyn25-Feb-09 1:13 
QuestionEdit of C# DLL file Pin
HatakeKaKaShi24-Feb-09 20:24
HatakeKaKaShi24-Feb-09 20:24 
AnswerRe: Edit of C# DLL file Pin
WinSolution24-Feb-09 20:37
WinSolution24-Feb-09 20:37 
GeneralRe: Edit of C# DLL file Pin
HatakeKaKaShi24-Feb-09 20:47
HatakeKaKaShi24-Feb-09 20:47 
QuestionISO 8583 [modified] Pin
astrovirgin24-Feb-09 18:43
astrovirgin24-Feb-09 18:43 
AnswerRe: ISO 8583 Pin
N a v a n e e t h24-Feb-09 18:59
N a v a n e e t h24-Feb-09 18:59 

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.