Click here to Skip to main content
15,891,033 members
Home / Discussions / C#
   

C#

 
QuestionHow can I get the file name with full path of File which is Sent to Print to Printer++ Pin
Shohel Ahsan28-May-14 22:54
Shohel Ahsan28-May-14 22:54 
AnswerRe: How can I get the file name with full path of File which is Sent to Print to Printer++ Pin
Richard MacCutchan29-May-14 0:38
mveRichard MacCutchan29-May-14 0:38 
GeneralRe: How can I get the file name with full path of File which is Sent to Print to Printer++ Pin
Shohel Ahsan29-May-14 0:52
Shohel Ahsan29-May-14 0:52 
GeneralRe: How can I get the file name with full path of File which is Sent to Print to Printer++ Pin
OriginalGriff29-May-14 1:09
mveOriginalGriff29-May-14 1:09 
GeneralRe: How can I get the file name with full path of File which is Sent to Print to Printer++ Pin
Richard MacCutchan29-May-14 1:22
mveRichard MacCutchan29-May-14 1:22 
GeneralRe: How can I get the file name with full path of File which is Sent to Print to Printer++ Pin
Shohel Ahsan29-May-14 1:25
Shohel Ahsan29-May-14 1:25 
QuestionHow do I add a video bookmark? Pin
Member 1085116328-May-14 19:16
Member 1085116328-May-14 19:16 
Questionoverloading a construtor Pin
sneezesnoeze28-May-14 11:00
sneezesnoeze28-May-14 11:00 
I try to create a form with 2 constructors.

The first constructor takes no parameters. User will give their input manually.

The second constructor has parameters. Some ui-controls are filled with data from a database.

I want the second constructor to call the first (or default) constructor for initialisation purposes. How can I do that ?

C#
Public class something
{
    Public Something()//first constructor
    {
        Backcolor = clgreen;
    }

    Public Something(string name) //second constructor
    {

        Label.text = name
    }
}


I used to write code in Delphi, which uses the keyword "inherited" to do this.

I found this article on code project, that is doing the opposite. I have no clue why a default constructor would call the more complex constructor.
How to call an overloaded constructors in C#[^]
AnswerRe: overloading a construtor Pin
Matt T Heffron28-May-14 11:04
professionalMatt T Heffron28-May-14 11:04 
GeneralRe: overloading a construtor Pin
sneezesnoeze28-May-14 11:21
sneezesnoeze28-May-14 11:21 
GeneralRe: overloading a construtor Pin
Pete O'Hanlon28-May-14 12:47
mvePete O'Hanlon28-May-14 12:47 
AnswerRe: overloading a construtor Pin
Eddy Vluggen28-May-14 11:14
professionalEddy Vluggen28-May-14 11:14 
AnswerRe: overloading a construtor Pin
Matt T Heffron28-May-14 11:48
professionalMatt T Heffron28-May-14 11:48 
AnswerRe: overloading a construtor Pin
BobJanova29-May-14 1:01
BobJanova29-May-14 1:01 
GeneralRe: overloading a construtor Pin
sneezesnoeze2-Jun-14 10:32
sneezesnoeze2-Jun-14 10:32 
QuestionSong Organizer c# Pin
AtmotechDejan28-May-14 9:55
AtmotechDejan28-May-14 9:55 
AnswerRe: Song Organizer c# Pin
Mycroft Holmes28-May-14 13:00
professionalMycroft Holmes28-May-14 13:00 
QuestionMethod for erase textboxes by clicking a button Pin
Vexy28-May-14 7:19
Vexy28-May-14 7:19 
AnswerRe: Method for erase textboxes by clicking a button Pin
Eddy Vluggen28-May-14 7:22
professionalEddy Vluggen28-May-14 7:22 
GeneralRe: Method for erase textboxes by clicking a button Pin
Vexy28-May-14 7:28
Vexy28-May-14 7:28 
GeneralRe: Method for erase textboxes by clicking a button Pin
Eddy Vluggen28-May-14 7:51
professionalEddy Vluggen28-May-14 7:51 
AnswerRe: Method for erase textboxes by clicking a button Pin
Pete O'Hanlon28-May-14 8:24
mvePete O'Hanlon28-May-14 8:24 
GeneralRe: Method for erase textboxes by clicking a button Pin
Vexy28-May-14 8:36
Vexy28-May-14 8:36 
GeneralRe: Method for erase textboxes by clicking a button Pin
Eddy Vluggen28-May-14 9:18
professionalEddy Vluggen28-May-14 9:18 
AnswerRe: Method for erase textboxes by clicking a button Pin
osamashatnawe29-May-14 0:27
osamashatnawe29-May-14 0:27 

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.