Click here to Skip to main content
15,895,256 members
Home / Discussions / C#
   

C#

 
GeneralRe: translucent cover over form Pin
Paul Watson25-Feb-03 1:51
sitebuilderPaul Watson25-Feb-03 1:51 
GeneralRe: translucent cover over form Pin
bwells25-Feb-03 2:12
bwells25-Feb-03 2:12 
GeneralRe: translucent cover over form Pin
Paul Watson25-Feb-03 2:20
sitebuilderPaul Watson25-Feb-03 2:20 
GeneralRe: translucent cover over form Pin
bwells25-Feb-03 2:29
bwells25-Feb-03 2:29 
Generalparse emails Pin
Roger Alsing24-Feb-03 23:58
Roger Alsing24-Feb-03 23:58 
GeneralStackOverflow Pin
monrobot1324-Feb-03 18:33
monrobot1324-Feb-03 18:33 
GeneralRe: StackOverflow Pin
Sean Winstead24-Feb-03 18:51
Sean Winstead24-Feb-03 18:51 
GeneralRe: StackOverflow Pin
David Stone24-Feb-03 19:00
sitebuilderDavid Stone24-Feb-03 19:00 
GeneralRe: StackOverflow Pin
Sean Winstead25-Feb-03 0:28
Sean Winstead25-Feb-03 0:28 
GeneralRe: StackOverflow Pin
David Stone25-Feb-03 15:31
sitebuilderDavid Stone25-Feb-03 15:31 
GeneralRe: StackOverflow Pin
Sean Winstead25-Feb-03 18:34
Sean Winstead25-Feb-03 18:34 
GeneralRe: StackOverflow Pin
monrobot1326-Feb-03 5:08
monrobot1326-Feb-03 5:08 
GeneralBucket Head Pin
eggie524-Feb-03 18:15
eggie524-Feb-03 18:15 
GeneralRe: Bucket Head Pin
Sean Winstead24-Feb-03 18:52
Sean Winstead24-Feb-03 18:52 
GeneralRe: Bucket Head Pin
Sean Winstead24-Feb-03 18:54
Sean Winstead24-Feb-03 18:54 
GeneralRe: Bucket Head Pin
eggie524-Feb-03 19:00
eggie524-Feb-03 19:00 
GeneralRe: Bucket Head Pin
Brian Olej28-Feb-03 7:11
Brian Olej28-Feb-03 7:11 
Generali have some problem with StartCap and EndCap Pin
chiou24-Feb-03 16:27
chiou24-Feb-03 16:27 
QuestionConverting a string to an int? Pin
monrobot1324-Feb-03 7:43
monrobot1324-Feb-03 7:43 
AnswerRe: Converting a string to an int? Pin
Chad Young24-Feb-03 7:47
Chad Young24-Feb-03 7:47 
AnswerRe: Converting a string to an int? Pin
leppie24-Feb-03 9:54
leppie24-Feb-03 9:54 
GeneralSerialization Question Pin
Marcus Spitzmiller24-Feb-03 7:38
Marcus Spitzmiller24-Feb-03 7:38 
Here's the deal - I have two programs. One is a utility program used to create objects and serialize them to disk. The second program is the real application which, in time, will be able to deserialize these objects and use them.

When I serialize and deserialize within the utility program, I have no problems. However, when I try to deserialize within the main program, I get an error that looks like:

"Type is not resolved for member MyNameSpace.MyClass, MyNameSpace."

I was getting a different error earlier, but I was able to make it further by setting the assembly names to be the same in each program. Is that necesarry and the correct thing to do?

Storing code, roughly:
<br />
Stream myStream = File.OpenWrite(m_sFileName);<br />
if (myStream != null)<br />
{<br />
  BinaryFormatter formatter = new BinaryFormatter();<br />
  formatter.Serialize(myStream, m_object);<br />
}<br />


Loading code for both programs, roughly:
<br />
if (myStream != null)<br />
{<br />
  BinaryFormatter formatter = new BinaryFormatter();<br />
  m_object = (MyObject)formatter.Deserialize(myStream);<br />
  myStream.Close();<br />
}<br />


Any help is appreciated!




Marcus Spitzmiller

"Why must life be so hard? Why must I fail at every attempt at masonry?" - Homer
GeneralRe: Serialization Question Pin
Davide Icardi24-Feb-03 7:47
Davide Icardi24-Feb-03 7:47 
GeneralRe: Serialization Question Pin
Marcus Spitzmiller24-Feb-03 11:52
Marcus Spitzmiller24-Feb-03 11:52 
GeneralRe: Serialization Question Pin
Marcus Spitzmiller25-Feb-03 14:34
Marcus Spitzmiller25-Feb-03 14:34 

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.