37 Topics

Member Avatar for
Member Avatar for judithSampathwa

Hi there, I have a problem in datetimepicker in the interface in C#. I have restricted the user for entering a date that has passed by the below code dpSignedSO.Value = DateTime.Today; dpSignedSO.MinDate = DateTime.Today; but when the date is entered as 7/20/2010 and this is being saved to the …

Member Avatar for menakaa
0
984
Member Avatar for judithSampathwa

hi there, i have asked this question several times but i coudn't solve this problem. i have two datetime picker one as the start date and the othere as the end date. when the user clicks a date in the start date he should not select a date that has …

Member Avatar for judithSampathwa
0
165
Member Avatar for judithSampathwa

hi there, i have two datetime pickers in C#. one for the start date and the other for the end date. when a user selects a value in the start datetime picker it should validate that the user cannot select for a date that have passed. how to validate this. …

Member Avatar for kvprajapati
-1
130
Member Avatar for judithSampathwa

hi there, i have two datetime picker in the form that i have created. i added the below code for the datetime picker.one dpSDate and the other dpEDate. [CODE] private void dpStartD_Validating(object sender, CancelEventArgs e) { if (dpStartD.Value < System.DateTime.Now.Date) { dpStartD.Value = System.DateTime.Now; MessageBox.Show("Enter a valid date for start …

Member Avatar for pabloh007
0
727
Member Avatar for oceantrain

I have a datagridview with 10 columns. Every month the user will update new info in the grid. I would like to have a datetimepicker next to the binding navigator. The purpose of the datetimepicker is to scroll forward or backward month by month. If scrolling forward the datagridview creates …

Member Avatar for kvprajapati
0
214
Member Avatar for jetjash

Using VB.Net I have the Datagridview control, In Datagridview one of the column I want to use Datetimepicker control Inside of the column. For Example, Datagridview Control Column1 column2 column3 column4 Datetimepicker1 Checkbox Datetimepicker1 Checkbox ….., In whole column2 I want to add the datetimepicker1 control I gone through the …

Member Avatar for kvprajapati
0
202
Member Avatar for ddanbe

Hi everyone, Want a DateTimePicker column in my DataGridView. Essentially used code I found on MSDN [url=http://msdn.microsoft.com/en-us/library/7tas5c80.aspx]here[/url] Just dropped the different classes in separate files. It works, but the problem is I have to click from 2 to 4 times before I can select a date! The first click shows …

Member Avatar for ddanbe
1
2K

The End.