Re: [DOTNET] Schema from Dataset

2002-05-01 Thread Wedinger, Keith
In XML, everything is a node. You have element nodes, attributes nodes, text nodes, processing instruction nodes, comment nodes...you get the picture. An element node has the serialization format you describe below. J. Keith Wedinger Senior Software Developer Sterling Commerce [EMAIL PROTECTED]

[DOTNET] OT: MSDN Library favorites will be lost with next quarterly rele ase

2002-04-26 Thread Wedinger, Keith
I went into my list of January 2002 MSDN library favorites and noticed that the shortcut for everyone of them has the following in it: 2002JAN When we get the next quarterly release, all of these favorites will no longer work unless MS provides a favorites migration tool. J. Keith Wedinger Seni

Re: [DOTNET] String.Insert() not working!!

2002-04-17 Thread Wedinger, Keith
Look at the StringBuilder class. Anytime you are doing string manipulation/building, StringBuilder is the way to go. Remember...String is immutable so each time you change one, you are actually creating a new String object and forcing the GC of the old one. J. Keith Wedinger Senior Software Dev

[DOTNET] VC++ 6.0 project VSS info not converting properly

2002-04-17 Thread Wedinger, Keith
I have a VC++ 6.0 project which contains source files that do not reside in the project directory. They reside in a common directory shared by other projects. All of the projects and their associated common source files are checked into Source Safe. When I open this project in VC++ 6.0, the com