1
Answer

web browser window

Tom

Tom

15y
2.5k
1
I am creating a small app that sits on the desktop at all time, all it contains is a web browser window. that runs just one website. My problem is I added the window using visual studio 2008 and all works well it loads my site and does all I want it to, but the web browser it includes runs like ie7 the site was designed for ie8 and doesn't render properly under ie7, it would be alot of work to update the site that will only ever be viewed in this app, so was wondering if there is anyway to have it run like ie8 or even firefox or chrome. This is my first ever c# app I usually work with php, so would be helpful if you broke any suggestions down to a way I can understand as I am not savvy with the more complex features of visual studio. Thanks in advance
Answers (1)
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.