Not really. I'm sure there is a much simple solution to this not to complicated problem. I'll continue look for it.
lior654 hotmail com
Posts
-
DataGridBoolColumn Question -
DataGridBoolColumn QuestionCan you be a bit more specific? Maybe even direct me to an example how to do such a thing? I have experiance in writing custom controls but I'm not sure that event I need to catch.
-
DataGridBoolColumn QuestionI'm looking for a way to trace changes in the status of DataGridBoolColumn. (Checked, Unchecked...)
-
SQL DATENAME() QUESTION...I have a number representing a month: DECLARE @MONTH INT SET @MONTH = 5 How can I use the DATENAME() function to get the name of the month? I must have a full date variable to use this and I don't know how to build a date using @MONTH as its month... PLEASE HELP...
-
crystal report questionI'm not sure that this is the place for my question but I really need your help on this one. Is there any way to pass parameters to Crystal Reports to be used in a query without calling a stored-procedure?
-
DateTime Rangeyou were reading this wrong. 1/1/2005 - 1/1/2005 - 1 (only one day cos' it is last day of a week) 1/2/2005 - 1/8/2005 - 2 (full second week) ...and so on... got it?
-
DateTime RangeI have 2 DateTime Vars. DateTime dtFrom = '1/1/2005'; DateTime dtTo = '1/24/2005'; How can I select a period of: Week, 2 Weeks, Month... And Divide the date range into it to something like this: Example: 1 week: 1 2 3 4 5 ======== ======== ========= ========= ========= 1/1/2005 1/2/2005 1/9/2005 1/16/2005 1/23/2005 1/1/2005 1/8/2005 1/15/2005 1/22/2005 1/24/2005 ======== ======== ========= ========= =========
-
bug in VS.NET 2003I’m using Visual Studio .NET 2003 and I don’t know about you guys but it is happening to be a lot that when I use DataSets (and I use them a lot) and trying to switch back to the design mode after editing code, the dataset disappear from the footer of the form. Every time this happens I need to close my project and reopen it to get it back. Does anyone else familiar with this problem?
-
Simple 'DateTimePicker' QuestionHello. I would like to get only the Date of a DateTimePicker control. I know I can use: DateTimePicker DTP; String* Date = DTP->Value.get_Date().ToString(); My problem is that the Time is set to '00:00:00' and I don't want it inside my string. What is the best why to get only the date out of a DateTimePicker control? Thanks.