Click here to Skip to main content
15,892,005 members
Home / Discussions / C#
   

C#

 
GeneralRe: wrinting a query Pin
Eduard Keilholz1-Apr-08 0:35
Eduard Keilholz1-Apr-08 0:35 
GeneralRe: wrinting a query Pin
Hum Dum1-Apr-08 0:44
Hum Dum1-Apr-08 0:44 
GeneralRe: wrinting a query Pin
dan!sh 1-Apr-08 1:28
professional dan!sh 1-Apr-08 1:28 
GeneralRe: wrinting a query Pin
Hum Dum1-Apr-08 2:12
Hum Dum1-Apr-08 2:12 
GeneralRe: wrinting a query Pin
Herman<T>.Instance1-Apr-08 23:24
Herman<T>.Instance1-Apr-08 23:24 
General[Message Deleted] Pin
pyde31-Mar-08 23:14
pyde31-Mar-08 23:14 
GeneralRe: I'h problem to fetch some data from a db Pin
Colin Angus Mackay31-Mar-08 23:38
Colin Angus Mackay31-Mar-08 23:38 
GeneralRe: I'h problem to fetch some data from a db Pin
pyde31-Mar-08 23:47
pyde31-Mar-08 23:47 
the idea is when the user are in the default.aspx he or she can from an calendar choose some events which are disposed in the calender and it's information is poped up in a panel where you can se the different language for events.....

So I select a day from the calendar which are underlined and the panel is not show the information...


this code I'h in the masterpage.cs to for the calendar

protected void calEvents_DayRender(object sender, DayRenderEventArgs e)
{


DataSet ds = CacheUtility.GetEvents(Cache);
DataView dvEvents = new DataView(ds.Tables[0]);
string strFilter = String.Format("eventDate >= '{0}' AND eventDate < '{1}'", e.Day.Date.ToString("yyyy-MM-dd"), e.Day.Date.AddDays(1).ToString("yyyy-MM-dd"));
dvEvents.RowFilter = strFilter;


e.Cell.VerticalAlign = VerticalAlign.Top;


if (dvEvents.Count > 0)
{
e.Cell.Controls.Add(new LiteralControl("<p>exhb</p>"));
e.Cell.BorderColor = System.Drawing.Color.Black;
e.Cell.BorderWidth = 1;
e.Cell.BorderStyle = BorderStyle.Solid;
e.Cell.BackColor = System.Drawing.Color.Yellow;
}

}

/max
GeneralMouse hittest for a rotated rectangle Pin
free_soul42431-Mar-08 23:12
free_soul42431-Mar-08 23:12 
QuestionC# abstract class Pin
kannan.M31-Mar-08 22:24
kannan.M31-Mar-08 22:24 
GeneralRe: C# abstract class Pin
laserbaronen31-Mar-08 22:34
laserbaronen31-Mar-08 22:34 
GeneralRe: C# abstract class Pin
Vikram A Punathambekar31-Mar-08 22:35
Vikram A Punathambekar31-Mar-08 22:35 
GeneralRe: C# abstract class Pin
Eduard Keilholz31-Mar-08 23:54
Eduard Keilholz31-Mar-08 23:54 
GeneralRaising event from an user control Pin
narayanagvs31-Mar-08 21:31
narayanagvs31-Mar-08 21:31 
GeneralWebbrowser component Pin
bdiepeveen31-Mar-08 21:07
bdiepeveen31-Mar-08 21:07 
GeneralRe: Webbrowser component Pin
Aditya Baraya31-Mar-08 21:55
Aditya Baraya31-Mar-08 21:55 
GeneralRe: Webbrowser component Pin
bdiepeveen31-Mar-08 22:54
bdiepeveen31-Mar-08 22:54 
QuestionImage Processing Lab Doubt Pin
billaprem31-Mar-08 20:13
billaprem31-Mar-08 20:13 
QuestionWaking a thread.. Pin
ptr2void31-Mar-08 20:06
ptr2void31-Mar-08 20:06 
GeneralRe: Waking a thread.. Pin
K.L.K7-Apr-08 14:35
K.L.K7-Apr-08 14:35 
QuestionCheck digit calculation Pin
D i x y31-Mar-08 19:59
D i x y31-Mar-08 19:59 
GeneralRe: Check digit calculation Pin
Eduard Keilholz31-Mar-08 21:09
Eduard Keilholz31-Mar-08 21:09 
QuestionProblem while uploading file on FTP server Pin
pavya_Cool31-Mar-08 19:50
pavya_Cool31-Mar-08 19:50 
AnswerRe: Problem while uploading file on FTP server Pin
JABIR E14-May-08 20:21
JABIR E14-May-08 20:21 
GeneralPass Arguments to Button Click event Pin
karthik_dotnet131-Mar-08 19:18
karthik_dotnet131-Mar-08 19:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.