[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Charles A. Lackman

11/24/2004 1:32:00 AM

Hello,

I have a DateTimePicker on my form and I need to make every Even week Red
and every Odd week Yellow.

Any Suggestions will be greatly appreciated (Detailed help is even more
appreciated).

Thanks,

Chuck


4 Answers

Ken Dopierala Jr.

11/24/2004 2:16:00 AM

0

Hi Chuck,

Are you talking about the Calendar server control that comes with ASP.Net?
If so, I don't see any properties on it that let you do that. So in order
to make it happen you need to override the Render event for that control and
modify the output from there. The easiest way would be to set the color of
the day to some odd value. Then in the render event find where that value
is and set it's color alternating by 7s. If this is a control you created
then the easiest way would be to alternate the value of the color everytime
you start a new row. If you aren't using the Calendar control could you
post some code to see what you are doing. I'm not sure how to answer this
question. Good luck! Ken.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid...
If you sign up under me and need help, email me.

"Charles A. Lackman" <Charles@CreateItSoftware.net> wrote in message
news:uvz8aUc0EHA.2624@TK2MSFTNGP10.phx.gbl...
> Hello,
>
> I have a DateTimePicker on my form and I need to make every Even week Red
> and every Odd week Yellow.
>
> Any Suggestions will be greatly appreciated (Detailed help is even more
> appreciated).
>
> Thanks,
>
> Chuck
>
>


Chuck

11/24/2004 3:11:00 AM

0

Hello And Thanks,

I am using a Windows Forms DateTimePicker.. ??

Chuck

"Ken Dopierala Jr." <kdopierala2@wi.rr.com> wrote in message
news:eiWpmsc0EHA.1940@TK2MSFTNGP15.phx.gbl...
> Hi Chuck,
>
> Are you talking about the Calendar server control that comes with ASP.Net?
> If so, I don't see any properties on it that let you do that. So in order
> to make it happen you need to override the Render event for that control
> and
> modify the output from there. The easiest way would be to set the color
> of
> the day to some odd value. Then in the render event find where that value
> is and set it's color alternating by 7s. If this is a control you created
> then the easiest way would be to alternate the value of the color
> everytime
> you start a new row. If you aren't using the Calendar control could you
> post some code to see what you are doing. I'm not sure how to answer this
> question. Good luck! Ken.
>
> --
> Ken Dopierala Jr.
> For great ASP.Net web hosting try:
> http://www.webhost4life.com/default.asp?refid...
> If you sign up under me and need help, email me.
>
> "Charles A. Lackman" <Charles@CreateItSoftware.net> wrote in message
> news:uvz8aUc0EHA.2624@TK2MSFTNGP10.phx.gbl...
>> Hello,
>>
>> I have a DateTimePicker on my form and I need to make every Even week Red
>> and every Odd week Yellow.
>>
>> Any Suggestions will be greatly appreciated (Detailed help is even more
>> appreciated).
>>
>> Thanks,
>>
>> Chuck
>>
>>
>
>


Ken Dopierala Jr.

11/24/2004 10:24:00 AM

0

Hi Chuck,

Sorry! I forgot what forum I was in. I was thinking ASP.Net all the way
and didn't realize this was the general forum. Hopefully someone will
provide you with the correct answer soon. Ken.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid...
If you sign up under me and need help, email me.

"Chuck" <CLMN_ME@hotmail.com> wrote in message
news:emth6Md0EHA.2600@TK2MSFTNGP09.phx.gbl...
> Hello And Thanks,
>
> I am using a Windows Forms DateTimePicker.. ??
>
> Chuck
>
> "Ken Dopierala Jr." <kdopierala2@wi.rr.com> wrote in message
> news:eiWpmsc0EHA.1940@TK2MSFTNGP15.phx.gbl...
> > Hi Chuck,
> >
> > Are you talking about the Calendar server control that comes with
ASP.Net?
> > If so, I don't see any properties on it that let you do that. So in
order
> > to make it happen you need to override the Render event for that control
> > and
> > modify the output from there. The easiest way would be to set the color
> > of
> > the day to some odd value. Then in the render event find where that
value
> > is and set it's color alternating by 7s. If this is a control you
created
> > then the easiest way would be to alternate the value of the color
> > everytime
> > you start a new row. If you aren't using the Calendar control could you
> > post some code to see what you are doing. I'm not sure how to answer
this
> > question. Good luck! Ken.
> >
> > --
> > Ken Dopierala Jr.
> > For great ASP.Net web hosting try:
> > http://www.webhost4life.com/default.asp?refid...
> > If you sign up under me and need help, email me.
> >
> > "Charles A. Lackman" <Charles@CreateItSoftware.net> wrote in message
> > news:uvz8aUc0EHA.2624@TK2MSFTNGP10.phx.gbl...
> >> Hello,
> >>
> >> I have a DateTimePicker on my form and I need to make every Even week
Red
> >> and every Odd week Yellow.
> >>
> >> Any Suggestions will be greatly appreciated (Detailed help is even more
> >> appreciated).
> >>
> >> Thanks,
> >>
> >> Chuck
> >>
> >>
> >
> >
>
>


nick

11/30/2004 3:07:00 PM

0

Slightly off topic but then again, maybe not...

Keep in mind that week numbers are not calculated the same way everywhere,
just like the first day of the week is not always Sunday. It can also be
Monday. The 2nd of January 2005 is in week 1 in some parts of the World and
in week 53 in other.


"Charles A. Lackman" <Charles@CreateItSoftware.net> wrote in message
news:uvz8aUc0EHA.2624@TK2MSFTNGP10.phx.gbl...
> Hello,
>
> I have a DateTimePicker on my form and I need to make every Even week Red
> and every Odd week Yellow.
>
> Any Suggestions will be greatly appreciated (Detailed help is even more
> appreciated).
>
> Thanks,
>
> Chuck
>