Click here to Skip to main content
15,891,861 members
Home / Discussions / C#
   

C#

 
GeneralRe: open an IE Authentication window from code Pin
Ryan Roberts5-Apr-05 0:03
Ryan Roberts5-Apr-05 0:03 
GeneralRe: open an IE Authentication window from code Pin
Anonymous5-Apr-05 20:38
Anonymous5-Apr-05 20:38 
GeneralBatch script question Pin
Esmo20004-Apr-05 8:37
Esmo20004-Apr-05 8:37 
GeneralRe: Batch script question Pin
Andy Brummer4-Apr-05 9:24
sitebuilderAndy Brummer4-Apr-05 9:24 
GeneralRe: Batch script question Pin
Esmo20005-Apr-05 5:01
Esmo20005-Apr-05 5:01 
GeneralControls and datepicker Pin
xrado4-Apr-05 8:13
xrado4-Apr-05 8:13 
GeneralRe: Controls and datepicker Pin
theoutlander4-Apr-05 18:03
theoutlander4-Apr-05 18:03 
GeneralRe: Controls and datepicker Pin
Luis Alonso Ramos4-Apr-05 18:49
Luis Alonso Ramos4-Apr-05 18:49 
You have to cast the reference:
DateTimePicker dtp = ctl as DateTimePicker;
DateTime value = DateTime.MinValue;
if(dtp != null)
{
    value = dtp.Value;
}
else
{
    // Not a DateTimePicker control, react accordingly
}
I hope this helps!!

-- LuisR



Luis Alonso Ramos
Intelectix - Chihuahua, Mexico

Not much here: My CP Blog!

General[C#] Binary Registry Value Pin
RayMarron4-Apr-05 8:12
RayMarron4-Apr-05 8:12 
GeneralRe: [C#] Binary Registry Value Pin
RayMarron4-Apr-05 8:44
RayMarron4-Apr-05 8:44 
GeneralProblem deleting file after loading in imagelist.. Pin
abcxyz824-Apr-05 8:02
abcxyz824-Apr-05 8:02 
GeneralRe: Problem deleting file after loading in imagelist.. Pin
_eulogy_4-Apr-05 13:27
_eulogy_4-Apr-05 13:27 
GeneralNewbie help: ListView with Dropdown column Pin
b_p_smith4-Apr-05 7:54
b_p_smith4-Apr-05 7:54 
GeneralRe: Newbie help: ListView with Dropdown column Pin
Luis Alonso Ramos4-Apr-05 15:03
Luis Alonso Ramos4-Apr-05 15:03 
GeneralRe: Newbie help: ListView with Dropdown column Pin
b_p_smith4-Apr-05 15:39
b_p_smith4-Apr-05 15:39 
GeneralRe: Newbie help: ListView with Dropdown column Pin
mav.northwind4-Apr-05 20:08
mav.northwind4-Apr-05 20:08 
GeneralRe: Newbie help: ListView with Dropdown column Pin
b_p_smith5-Apr-05 1:49
b_p_smith5-Apr-05 1:49 
GeneralMarshalling MyStruct[] from C# to C++ API Pin
Grimolfr4-Apr-05 7:25
Grimolfr4-Apr-05 7:25 
GeneralRe: Marshalling MyStruct[] from C# to C++ API Pin
Daniel Turini4-Apr-05 8:24
Daniel Turini4-Apr-05 8:24 
Generalreferencing a control on another form Pin
kornstyle4-Apr-05 7:08
kornstyle4-Apr-05 7:08 
GeneralRe: referencing a control on another form Pin
tdciDoug4-Apr-05 7:36
tdciDoug4-Apr-05 7:36 
GeneralRe: referencing a control on another form Pin
Luis Alonso Ramos4-Apr-05 7:53
Luis Alonso Ramos4-Apr-05 7:53 
GeneralRe: referencing a control on another form Pin
kornstyle4-Apr-05 8:26
kornstyle4-Apr-05 8:26 
QuestionWrite a format provider ?? Pin
Ray-v4-Apr-05 5:59
Ray-v4-Apr-05 5:59 
AnswerRe: Write a format provider ?? Pin
Luis Alonso Ramos4-Apr-05 15:07
Luis Alonso Ramos4-Apr-05 15:07 

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.