5
Answers

C# question

Ovidiu Roman

Ovidiu Roman

13y
2.6k
1
I'm a beginner,so please forgive me if i'm asking a stupid question...
I'm currently working on a project with a interface in C#(in Visual Studio 2008) and i inserted a MenuStrip on the top of the form.I would like to put a link in one of the options from the MenuStrip towards a website.I asked my teacher at school but she told me that it's not possible to do such a thing and she told me to use a LinkLabel.I want to insert it in the MenuStrip,but i haven't found any documentaton on how to do something like this.Please give me some advice on how to do either of these things.
Answers (5)
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.