Click here to Skip to main content
16,005,491 members
Home / Discussions / C#
   

C#

 
GeneralRe: Need help in creating an XML file from a Dataset using a schema file Pin
csharpguyfromde26-Jan-07 5:35
csharpguyfromde26-Jan-07 5:35 
GeneralRe: Need help in creating an XML file from a Dataset using a schema file Pin
Abisodun26-Jan-07 8:13
Abisodun26-Jan-07 8:13 
GeneralRe: Need help in creating an XML file from a Dataset using a schema file Pin
csharpguyfromde26-Jan-07 8:37
csharpguyfromde26-Jan-07 8:37 
GeneralRe: Need help in creating an XML file from a Dataset using a schema file Pin
Abisodun26-Jan-07 9:12
Abisodun26-Jan-07 9:12 
GeneralRe: Need help in creating an XML file from a Dataset using a schema file Pin
bobsugar22226-Jan-07 8:32
bobsugar22226-Jan-07 8:32 
GeneralRe: Need help in creating an XML file from a Dataset using a schema file Pin
csharpguyfromde26-Jan-07 8:35
csharpguyfromde26-Jan-07 8:35 
QuestionAbstract List Pin
jan v p26-Jan-07 2:26
jan v p26-Jan-07 2:26 
AnswerRe: Abstract List Pin
Pete O'Hanlon26-Jan-07 2:40
mvePete O'Hanlon26-Jan-07 2:40 
Your vBase class is entirely abstract, so why not make it an interface? Then you could do this:

public interface vBase
{
  int ID{ get; set; }
  string Group { get ; }
}

public abstract class ListVBase<T> where T : vBase
{
  public abstract List<T> Items;
  public abstract int Count { get ; }
  public abstract void Fill();
}



the last thing I want to see is some pasty-faced geek with skin so pale that it's almost translucent trying to bump parts with a partner - John Simmons / outlaw programmer

Deja View - the feeling that you've seen this post before.

QuestionXML Fragment Serialization [modified] Pin
Tristan Rhodes26-Jan-07 2:01
Tristan Rhodes26-Jan-07 2:01 
AnswerRe: XML Fragment Serialization Pin
Dustin Metzgar26-Jan-07 4:42
Dustin Metzgar26-Jan-07 4:42 
GeneralRe: XML Fragment Serialization Pin
Tristan Rhodes26-Jan-07 6:08
Tristan Rhodes26-Jan-07 6:08 
GeneralRe: XML Fragment Serialization Pin
Dustin Metzgar26-Jan-07 8:04
Dustin Metzgar26-Jan-07 8:04 
GeneralRe: XML Fragment Serialization Pin
Dustin Metzgar26-Jan-07 10:40
Dustin Metzgar26-Jan-07 10:40 
QuestionDelete a row from Datagrid Pin
Bobb198226-Jan-07 1:29
Bobb198226-Jan-07 1:29 
AnswerRe: Delete a row from Datagrid Pin
Not Active26-Jan-07 2:09
mentorNot Active26-Jan-07 2:09 
AnswerRe: Delete a row from Datagrid Pin
NKandwal26-Jan-07 2:17
NKandwal26-Jan-07 2:17 
GeneralRe: Delete a row from Datagrid [modified] Pin
Bobb198227-Jan-07 20:03
Bobb198227-Jan-07 20:03 
QuestionFor all brainy ones and exclusively for bobsugar222 Pin
Saira Tanwir26-Jan-07 1:20
Saira Tanwir26-Jan-07 1:20 
AnswerRe: For all brainy ones and exclusively for bobsugar222 Pin
Shajeel26-Jan-07 1:31
Shajeel26-Jan-07 1:31 
GeneralRe: For all brainy ones and exclusively for bobsugar222 Pin
Saira Tanwir26-Jan-07 1:34
Saira Tanwir26-Jan-07 1:34 
AnswerRe: For all brainy ones and exclusively for bobsugar222 Pin
Pete O'Hanlon26-Jan-07 1:34
mvePete O'Hanlon26-Jan-07 1:34 
AnswerRe: For all brainy ones and exclusively for bobsugar222 Pin
bobsugar22226-Jan-07 4:25
bobsugar22226-Jan-07 4:25 
Questionstrange error in DataGridView Control windows Forms Pin
Rocky#26-Jan-07 0:50
Rocky#26-Jan-07 0:50 
AnswerRe: strange error in DataGridView Control windows Forms Pin
t4ure4n26-Jan-07 4:34
t4ure4n26-Jan-07 4:34 
GeneralRe: strange error in DataGridView Control windows Forms Pin
Rocky#27-Jan-07 1:30
Rocky#27-Jan-07 1:30 

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.