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

C#

 
QuestionFile Upload in Windows Application ? Pin
Kamal.Afridi11-Dec-06 3:30
Kamal.Afridi11-Dec-06 3:30 
AnswerRe: File Upload in Windows Application ? Pin
Guffa11-Dec-06 3:36
Guffa11-Dec-06 3:36 
GeneralRe: File Upload in Windows Application ? Pin
Kamal.Afridi11-Dec-06 3:37
Kamal.Afridi11-Dec-06 3:37 
GeneralRe: File Upload in Windows Application ? Pin
Vasudevan Deepak Kumar11-Dec-06 4:17
Vasudevan Deepak Kumar11-Dec-06 4:17 
QuestionReturn Type Pin
Saialsh11-Dec-06 3:10
Saialsh11-Dec-06 3:10 
GeneralRe: Return Type Pin
Guffa11-Dec-06 3:29
Guffa11-Dec-06 3:29 
AnswerRe: Return Type Pin
jchigg200011-Dec-06 6:15
jchigg200011-Dec-06 6:15 
AnswerRe: Return Type Pin
eggsovereasy11-Dec-06 9:01
eggsovereasy11-Dec-06 9:01 
You can override ToString and use it or you can just do like: yourTimeHoldingClassInstance.Time.ToString(userSuppliedFormatString);

public class YourTimeHoldingClass
{
  public DateTime Time
  {
    get { return this.time; }
    set { this.time = value; }
  }
  private DateTime time;

  public override string ToString(string format)
  {
    return time.ToString(format);
  }
}

QuestionNewbie: NullReferenceException Pin
praths_c11-Dec-06 3:06
praths_c11-Dec-06 3:06 
AnswerRe: Newbie: NullReferenceException Pin
Luc Pattyn11-Dec-06 3:32
sitebuilderLuc Pattyn11-Dec-06 3:32 
AnswerRe: Newbie: NullReferenceException Pin
Stefan Troschuetz11-Dec-06 3:43
Stefan Troschuetz11-Dec-06 3:43 
GeneralRe: Newbie: NullReferenceException Pin
praths_c11-Dec-06 4:20
praths_c11-Dec-06 4:20 
GeneralRe: Newbie: NullReferenceException Pin
Stefan Troschuetz11-Dec-06 4:28
Stefan Troschuetz11-Dec-06 4:28 
GeneralRe: Newbie: NullReferenceException Pin
gnadeem11-Dec-06 10:46
gnadeem11-Dec-06 10:46 
QuestionRunning an application by the start up of the windows Pin
hadad11-Dec-06 2:34
hadad11-Dec-06 2:34 
AnswerRe: Running an application by the start up of the windows Pin
Stefan Troschuetz11-Dec-06 2:38
Stefan Troschuetz11-Dec-06 2:38 
AnswerRe: Running an application by the start up of the windows Pin
Eric Dahlvang11-Dec-06 2:50
Eric Dahlvang11-Dec-06 2:50 
AnswerRe: Running an application by the start up of the windows Pin
Pete O'Hanlon11-Dec-06 4:50
mvePete O'Hanlon11-Dec-06 4:50 
QuestionHow to access data from a control on one from from another form? [modified] Pin
Saira Tanwir11-Dec-06 1:45
Saira Tanwir11-Dec-06 1:45 
AnswerRe: How to access data from a control on one from from another form?(URGENT) Pin
Not Active11-Dec-06 2:17
mentorNot Active11-Dec-06 2:17 
GeneralRe: How to access data from a control on one from from another form?(URGENT) Pin
Saira Tanwir11-Dec-06 2:30
Saira Tanwir11-Dec-06 2:30 
AnswerRe: How to access data from a control on one from from another form?(URGENT) Pin
quiteSmart11-Dec-06 2:34
quiteSmart11-Dec-06 2:34 
GeneralRe: How to access data from a control on one from from another form?(URGENT) Pin
Saira Tanwir11-Dec-06 2:49
Saira Tanwir11-Dec-06 2:49 
AnswerRe: How to access data from a control on one from from another form? Pin
Nader Elshehabi11-Dec-06 3:25
Nader Elshehabi11-Dec-06 3:25 
GeneralRe: How to access data from a control on one from from another form? Pin
Saira Tanwir11-Dec-06 3:58
Saira Tanwir11-Dec-06 3:58 

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.