Re: Dateformat in RQL

2009-02-12 Thread theHam
Hey RustyLogic, If you're talking about the latest version of your rqldotnet framework i'd love to check it out. I pulled down the version of your framework off the google group a couple of days ago and i'm really enjoying having a poke around in your code. I'm currently building out a desktop ap

Re: Dateformat in RQL

2009-02-11 Thread Richard Hauer (5 Limes)
Touche. Hadn't noticed the correlation with OLE Automation date format but makes total sense given the context (i.e. CMS's COM+ architecture). I just built the conversion from the "spec" in the RQL manual. HTH. Regards, Richard Hauer 5 Limes Pty Limited www.5Limes.com.au

Re: Dateformat in RQL

2009-02-10 Thread RustyLogic
Easier method: DateTime theDate = DateTime.FromOADate(double.Parse(rqlDate); string rqlDate = ((int)value.ToOADate()).ToString(); It's probably in my library somewhere, maybe I'll upload a newer version if I get a moment. On 9 Feb, 01:10, "Richard Hauer (5 Limes)" wrote: > Hi Ingo, > > Thi

Re: Dateformat in RQL

2009-02-08 Thread Richard Hauer (5 Limes)
Hi Ingo, This is a method we use for conversion. private static string _getDateFromCMSDate( string cmsDate ) { if ( cmsDate == null || cmsDate == string.Empty ) return ""; string[] parts = cmsDate.Split( '.' ); //date part DateTime val = new DateTime( 1899, 12,

Dateformat in RQL

2009-02-06 Thread Ingo Hillebrand
Hi, i am programming a RQL application in .NET ( C# ). RedDot uses not a common, but a specific dateformat. Does anyone has a working .NET and not a classic ASP Interface? Thanks in Advance, Ingo Hillebrand --~--~-~--~~~---~--~~ You received this message beca