Click here to Skip to main content
15,918,808 members
Home / Discussions / C#
   

C#

 
AnswerRe: how to write check value in textbox Pin
Christian Graus6-Oct-06 1:25
protectorChristian Graus6-Oct-06 1:25 
AnswerRe: how to write check value in textbox Pin
Private_Void6-Oct-06 8:56
Private_Void6-Oct-06 8:56 
QuestionIncrease the size of a label Pin
C-sharper 16-Oct-06 1:05
C-sharper 16-Oct-06 1:05 
AnswerRe: Increase the size of a label Pin
Christian Graus6-Oct-06 1:27
protectorChristian Graus6-Oct-06 1:27 
GeneralRe: Increase the size of a label Pin
C-sharper 16-Oct-06 1:40
C-sharper 16-Oct-06 1:40 
AnswerRe: Increase the size of a label Pin
Guffa6-Oct-06 1:45
Guffa6-Oct-06 1:45 
GeneralRe: Increase the size of a label Pin
Christian Graus6-Oct-06 1:51
protectorChristian Graus6-Oct-06 1:51 
GeneralRe: Increase the size of a label Pin
C-sharper 16-Oct-06 1:56
C-sharper 16-Oct-06 1:56 
GeneralRe: Increase the size of a label Pin
C-sharper 16-Oct-06 3:17
C-sharper 16-Oct-06 3:17 
QuestionGet connected clients Pin
The underdog5-Oct-06 22:10
The underdog5-Oct-06 22:10 
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 

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.