Click here to Skip to main content
15,888,521 members
Home / Discussions / C#
   

C#

 
Questionweb development with c# Pin
ckruger7-Dec-05 20:04
ckruger7-Dec-05 20:04 
AnswerRe: web development with c# Pin
Anthony Mushrow7-Dec-05 23:01
professionalAnthony Mushrow7-Dec-05 23:01 
GeneralRe: web development with c# Pin
ckruger8-Dec-05 2:02
ckruger8-Dec-05 2:02 
AnswerRe: web development with c# Pin
Anthony Mushrow8-Dec-05 8:18
professionalAnthony Mushrow8-Dec-05 8:18 
QuestionCan anyone help me take a look at my code? Pin
momoo7-Dec-05 19:23
momoo7-Dec-05 19:23 
AnswerRe: Can anyone help me take a look at my code? Pin
Vikram A Punathambekar7-Dec-05 22:12
Vikram A Punathambekar7-Dec-05 22:12 
GeneralRe: Can anyone help me take a look at my code? Pin
momoo7-Dec-05 22:24
momoo7-Dec-05 22:24 
GeneralRe: Can anyone help me take a look at my code? Pin
Vikram A Punathambekar7-Dec-05 22:55
Vikram A Punathambekar7-Dec-05 22:55 
saddies wrote:
what i need to do now is that when i click on the date i've select it will show out the database of the user

What do you mean by 'database of the user'?

Let's say you want to retrieve all the details of employees who joined on a certain date, from a table Employee. Assume that the user chose the date 01 Sept 2004, and that it is contained in the DateTime value userDate. Your query should look like:
string selectQuery = "SELECT * FROM Employees WHERE JoiningDate='" + userDate.ToString("yyyy-MM-dd") + "'";

Of course, the details will differ in your application, but you should get the general idea. Smile | :)

Cheers,
Vikram.
"When I read in books about a "base class", I figured this was the class that was at the bottom of the inheritence tree. It's the "base", right? Like the base of a pyramid." - Marc Clifton.
GeneralRe: Can anyone help me take a look at my code? Pin
J4amieC7-Dec-05 23:20
J4amieC7-Dec-05 23:20 
GeneralRe: Can anyone help me take a look at my code? Pin
Vikram A Punathambekar8-Dec-05 0:05
Vikram A Punathambekar8-Dec-05 0:05 
GeneralRe: Can anyone help me take a look at my code? Pin
J4amieC8-Dec-05 0:20
J4amieC8-Dec-05 0:20 
GeneralRe: Can anyone help me take a look at my code? Pin
Vikram A Punathambekar8-Dec-05 1:41
Vikram A Punathambekar8-Dec-05 1:41 
AnswerRe: Can anyone help me take a look at my code? Pin
J4amieC7-Dec-05 23:25
J4amieC7-Dec-05 23:25 
GeneralRe: Can anyone help me take a look at my code? Pin
momoo8-Dec-05 14:05
momoo8-Dec-05 14:05 
Questionhwo to generate radom number with fixed seed? Pin
zhujp987-Dec-05 16:48
zhujp987-Dec-05 16:48 
AnswerRe: hwo to generate radom number with fixed seed? Pin
Vikram A Punathambekar7-Dec-05 17:47
Vikram A Punathambekar7-Dec-05 17:47 
QuestionWho do i include shell icons Pin
Garbast7-Dec-05 12:48
Garbast7-Dec-05 12:48 
AnswerRe: Who do i include shell icons Pin
Judah Gabriel Himango7-Dec-05 15:41
sponsorJudah Gabriel Himango7-Dec-05 15:41 
GeneralRe: Who do i include shell icons Pin
Garbast7-Dec-05 23:27
Garbast7-Dec-05 23:27 
QuestionGetting Selected Nodes from a Menu Pin
SeanCM7-Dec-05 12:20
SeanCM7-Dec-05 12:20 
AnswerRe: Getting Selected Nodes from a Menu Pin
Curtis Schlak.7-Dec-05 12:33
Curtis Schlak.7-Dec-05 12:33 
AnswerRe: Getting Selected Nodes from a Menu Pin
Curtis Schlak.7-Dec-05 12:36
Curtis Schlak.7-Dec-05 12:36 
GeneralRe: Getting Selected Nodes from a Menu Pin
SeanCM7-Dec-05 13:29
SeanCM7-Dec-05 13:29 
GeneralRe: Getting Selected Nodes from a Menu Pin
Curtis Schlak.8-Dec-05 2:23
Curtis Schlak.8-Dec-05 2:23 
QuestionBinary file serializaton Pin
Noon147-Dec-05 12:03
Noon147-Dec-05 12:03 

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.