4
Answers

9 to 5 job in software

t k

t k

11y
2.7k
1
I have 5 yrs experience in asp.net,sql,vb.net,c#,crystal reports and i stay in mumbai..... I love coding and I think i will not like any other career than this .....Only thing i can't sit in front of computer for longer hours ...I want a 9 to 5 job in software with no latesittings and no working on saturday .Can you suggest me options so as which companies i should be appying to.I don't mind getting lesser pay for this.
Answers (4)
0
Mohammed Ismail

Mohammed Ismail

NA 3 0 18y
Hi Kavita:

For your second question removing of previous and next month days:  you can not remove them but you can hide them by setting those days back and forecolors using OtherMonthDayStyle attribute of Calendar.

Eg: <OtherMonthDayStyle ForeColor="Blue" BorderStyle="None" BorderColor="Blue" BackColor="Blue"></OtherMonthDayStyle>


But those cells are selectable in order to suppress this, add this in DayRender event of calendar:

if (e.Day.IsOtherMonth==true)
   {
    e.Cell.BackColor = System.Drawing.Color.Blue;
    e.Cell.ForeColor = System.Drawing.Color.Blue;
    e.Day.IsSelectable = false;
  }


in Page_Load event add this:

Calendar1.Attributes["onMouseDown"] = "JavaScript:Void(0);";

try out this.
Next Recommended Forum