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

C#

 
GeneralRe: ForEach Loop Pin
Agweet16-Jul-08 0:15
Agweet16-Jul-08 0:15 
GeneralRe: ForEach Loop Pin
PIEBALDconsult17-Jul-08 17:34
mvePIEBALDconsult17-Jul-08 17:34 
AnswerRe: ForEach Loop Pin
rah_sin15-Jul-08 22:47
professionalrah_sin15-Jul-08 22:47 
AnswerRe: ForEach Loop Pin
Harvey Saayman15-Jul-08 22:48
Harvey Saayman15-Jul-08 22:48 
QuestionProperties / VS2008 Designer Issue Pin
Harvey Saayman15-Jul-08 21:26
Harvey Saayman15-Jul-08 21:26 
AnswerRe: Properties / VS2008 Designer Issue Pin
leppie15-Jul-08 21:46
leppie15-Jul-08 21:46 
GeneralRe: Properties / VS2008 Designer Issue Pin
Harvey Saayman15-Jul-08 21:58
Harvey Saayman15-Jul-08 21:58 
General[Solved] i hope... Pin
Harvey Saayman15-Jul-08 23:14
Harvey Saayman15-Jul-08 23:14 
i solved the issue by doing the following

private DateTime breakEnd = new DateTime();
[DefaultValue(typeof(DateTime), "00:00")]
public DateTime BreakEnd
{
    get
    {
        return breakEnd;
    }
    set
    {
        breakEnd = value;
        if (breakEnd != new DateTime())
        {
            mtxtBreakEnd.Text = breakEnd.TimeOfDay.ToString();
        }
    }
}


i just hope it holds up...

thanx again for pointing me in a direction

Harvey Saayman - South Africa
Junior Developer
.Net, C#, SQL

you.suck = (you.passion != Programming)

GeneralRe: [Solved] i hope... Pin
leppie16-Jul-08 5:48
leppie16-Jul-08 5:48 
GeneralRe: [Solved] i hope... Pin
Harvey Saayman16-Jul-08 20:13
Harvey Saayman16-Jul-08 20:13 
AnswerRe: Properties / VS2008 Designer Issue Pin
DaveyM6915-Jul-08 22:37
professionalDaveyM6915-Jul-08 22:37 
QuestionReading word document stream Pin
Miss_hacker15-Jul-08 20:54
Miss_hacker15-Jul-08 20:54 
AnswerRe: Reading word document stream Pin
enginço16-Jul-08 0:23
enginço16-Jul-08 0:23 
QuestionHow to get first N rows from a datatable Pin
panyl15-Jul-08 20:47
panyl15-Jul-08 20:47 
AnswerRe: How to get first N rows from a datatable Pin
Nirandas15-Jul-08 21:21
Nirandas15-Jul-08 21:21 
AnswerRe: How to get first N rows from a datatable [modified] Pin
enginço16-Jul-08 1:00
enginço16-Jul-08 1:00 
GeneralRe: How to get first N rows from a datatable Pin
panyl24-Jul-08 20:16
panyl24-Jul-08 20:16 
GeneralRe: How to get first N rows from a datatable [modified] Pin
enginço25-Jul-08 2:24
enginço25-Jul-08 2:24 
GeneralRe: How to get first N rows from a datatable Pin
panyl25-Jul-08 18:57
panyl25-Jul-08 18:57 
QuestionHow to confirm wheather there is a value in a grid or not Pin
tasumisra15-Jul-08 20:26
tasumisra15-Jul-08 20:26 
AnswerRe: How to confirm wheather there is a value in a grid or not Pin
stancrm15-Jul-08 20:54
stancrm15-Jul-08 20:54 
GeneralRe: How to confirm wheather there is a value in a grid or not Pin
tasumisra15-Jul-08 21:27
tasumisra15-Jul-08 21:27 
QuestionGet data from IList Pin
zeeShan anSari15-Jul-08 19:50
zeeShan anSari15-Jul-08 19:50 
AnswerRe: Get data from IList Pin
N a v a n e e t h15-Jul-08 21:33
N a v a n e e t h15-Jul-08 21:33 
QuestionCalling two methods in a buttonClicked Pin
WebMaster15-Jul-08 19:46
WebMaster15-Jul-08 19:46 

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.