VB Nullable DateTimePicker

  • Thread starter Thread starter Rod
  • Start date Start date
R

Rod

I can find lots of references to Nullable DateTimePickers written in C#.
Unfortunately my attempts to translate them into Visual Basic have failed.

Does anybody know of a VB version.
I don't need anything fancy, just the ability to bind to a table which may
have null values for the date.

Many thanks in advance

Rod
 
Rod said:
I can find lots of references to Nullable DateTimePickers written in C#.
Unfortunately my attempts to translate them into Visual Basic have failed.

Does anybody know of a VB version.
I don't need anything fancy, just the ability to bind to a table which may
have null values for the date.

You may want to keep the DateTimePicker in a C# class library and reference
this library in order to be able to use the control in your VB.NET
applications.
 
Herfried K. Wagner said:
You may want to keep the DateTimePicker in a C# class library and reference
this library in order to be able to use the control in your VB.NET
applications.


I only have Visual Basic .Net so I don't think I can do this even if I knew
how.
 
I can find lots of references to Nullable DateTimePickers written in C#.
Unfortunately my attempts to translate them into Visual Basic have failed.

Does anybody know of a VB version.
I don't need anything fancy, just the ability to bind to a table which may
have null values for the date.

Many thanks in advance

Rod

Rod,

I'm the developer of this nullable DateTimePicker:
http://www.codeproject.com/cs/miscctrl/NullableDateTimePicker.asp

I just ported it to VB.NET for you. You can download it here:
http://www.grazioli.ch/Blog/PermaLink.aspx?guid=c4a63d35-71f9-4b02-9de7-0c87e5b1c770

hth
 
Claudio Grazioli said:
Rod,

I'm the developer of this nullable DateTimePicker:
http://www.codeproject.com/cs/miscctrl/NullableDateTimePicker.asp

Then it was yours I was trying to translate!

For which I thank you lots, only snag is when I go to download it I am asked
for an username and password.
Am I doing something wrong?
 
Then it was yours I was trying to translate!


For which I thank you lots, only snag is when I go to download it I am asked
for an username and password.
Am I doing something wrong?

I am sorry. Try again please. I've moved my web server this sunday and
there was a wrong security configuration for one folder causing this
problem.

Please let me know if it worked.
 
Claudio Grazioli said:
I am sorry. Try again please. I've moved my web server this sunday and
there was a wrong security configuration for one folder causing this
problem.

Please let me know if it worked.


Have got the files, thanks a mil

will work on them tomorrow morning.

 
Back
Top