Click here to Skip to main content
15,903,030 members
Home / Discussions / C#
   

C#

 
AnswerRe: Get connected clients Pin
WillemM6-Oct-06 2:06
WillemM6-Oct-06 2:06 
QuestionHow to print Datagrid in C# ? Pin
hdv2125-Oct-06 22:10
hdv2125-Oct-06 22:10 
AnswerRe: How to print Datagrid in C# ? Pin
Christian Graus5-Oct-06 23:04
protectorChristian Graus5-Oct-06 23:04 
QuestionHow to play a sound from my program. Pin
CodeItWell5-Oct-06 20:50
CodeItWell5-Oct-06 20:50 
AnswerRe: How to play a sound from my program. Pin
Merlin Tintin6-Oct-06 1:14
Merlin Tintin6-Oct-06 1:14 
Questionhi plz give a sample program for send data to com port in c#.net2003 using win32 API's Pin
premkamalg5-Oct-06 20:33
premkamalg5-Oct-06 20:33 
QuestionClass inheritance compile error Pin
ekareem5-Oct-06 18:14
ekareem5-Oct-06 18:14 
AnswerRe: Class inheritance compile error Pin
Michael Dunn5-Oct-06 18:57
sitebuilderMichael Dunn5-Oct-06 18:57 
Since the SavingsAccount ctor doesn't have an explicit call to the base class ctor, the compiler will insert a call to the default ctor (the one with no parameters). But there is no such ctor, so you get the error. You need to add the call to the initializer list:

public SavingsAccount(string ID) : base(ID) { ... }


--Mike--
Visual C++ MVP Cool | :cool:
LINKS~! Ericahist | PimpFish | CP SearchBar v3.0 | C++ Forum FAQ

GeneralRe: Class inheritance compile error Pin
ekareem6-Oct-06 2:59
ekareem6-Oct-06 2:59 
QuestionDrag Drop with Object Shadow Pin
robert1105-Oct-06 15:44
robert1105-Oct-06 15:44 
AnswerRe: Drag Drop with Object Shadow Pin
Christian Graus5-Oct-06 16:27
protectorChristian Graus5-Oct-06 16:27 
QuestionJust a though about httpwebrequest Pin
Anthony Mushrow5-Oct-06 14:06
professionalAnthony Mushrow5-Oct-06 14:06 
AnswerRe: Just a though about httpwebrequest Pin
Christian Graus5-Oct-06 16:26
protectorChristian Graus5-Oct-06 16:26 
GeneralRe: Just a though about httpwebrequest Pin
Anthony Mushrow5-Oct-06 20:41
professionalAnthony Mushrow5-Oct-06 20:41 
Questionis a byte array an octal number ? Pin
mmatteson5-Oct-06 12:20
mmatteson5-Oct-06 12:20 
AnswerRe: is a byte array an octal number ? Pin
Mike_V5-Oct-06 12:59
Mike_V5-Oct-06 12:59 
AnswerRe: is a byte array an octal number ? Pin
Christian Graus5-Oct-06 16:25
protectorChristian Graus5-Oct-06 16:25 
QuestionLicensing Component Pin
Aaron Schaefer5-Oct-06 11:23
Aaron Schaefer5-Oct-06 11:23 
QuestionGet a properties name via reflection Pin
Dan Neely5-Oct-06 10:28
Dan Neely5-Oct-06 10:28 
AnswerRe: Get a properties name via reflection Pin
S. Senthil Kumar6-Oct-06 5:44
S. Senthil Kumar6-Oct-06 5:44 
GeneralRe: Get a properties name via reflection Pin
Dan Neely6-Oct-06 16:10
Dan Neely6-Oct-06 16:10 
GeneralRe: Get a properties name via reflection Pin
S. Senthil Kumar6-Oct-06 19:20
S. Senthil Kumar6-Oct-06 19:20 
QuestionHow to use Collection.CopyTo? Pin
nicknotyet5-Oct-06 10:08
nicknotyet5-Oct-06 10:08 
AnswerRe: How to use Collection.CopyTo? Pin
S. Senthil Kumar6-Oct-06 5:51
S. Senthil Kumar6-Oct-06 5:51 
GeneralRe: How to use Collection.CopyTo? Pin
nicknotyet6-Oct-06 7:13
nicknotyet6-Oct-06 7:13 

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.