or

I am using a DateTimePicker to allow users to schedule jobs in the database. I want to constrain the time selection to be between 8:00 PM and 6:00 AM. Is there a way to make the Timeview only show times between 12:00 AM - 6:00 AM and 8:00 PM - 11:00 PM (assuming a 1 hour interval)? I want the available times to be (00:00, 01:00, 02:00, 03:00, 04:00, 05:00, 06:00, 20:00, 21:00, 22:00, 23:00).

Dim
dtDatos As DataTable = New Utilidades.Abismo(Session("Conexion")).CargarDatosExplotadores()
grdExplotadores.DataSource = dtDatos
grdExplotadores.DataBind()
grdExplotadores.Columns(1).Visible =
False
The same code works fine with a asp:gridview, how can I do to hide a column with a radgrid?
Thanks.

| SELECT [Assignment], [Task], [M9_Sep], [M10_Oct], [M11_Nov], [M12_Dec], [M1_Jan], [M2_Feb], [M3_Mar], [M4_Apr], [M5_May], [sno], [Resource_Name], [Resource_Year], [Resource_Month], [Resource_week], [Division_ID], [Section_ID] FROM [Resource_Data] WHERE (([Resource_Name] = @Resource_Name) AND ([Division_ID] = @Division_ID) AND ([Section_ID] = @Section_ID) AND ([Resource_Year] = @Resource_Year) AND ([Resource_Month] = @Resource_Month) AND ([Resource_week] = @Resource_week)) |
| Protected Sub Button3_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button3.Click |
| RadGrid1.DataSourceID = "Sqldatasource3" |
| End Sub |