1
Answer

Accessing metadata

diyakha

diyakha

20y
1.8k
1
Hi, I will be starting on a project which involves connecting an oracle database to .NET. One of the primary tasks will be to access the metadata of the database and display it in a tree view on a window form. 1) How can I access the metadata through ADO.NET and use it? 2) Is it also possible to access metadata information about primary keys, foreign keys etc.? I will greatly appreciate the suggestions. Thanks in advance. Diya
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.