Regional date settings

Is there any common coding for date settingsbecause client machine may in any format while comparing date for license creates exception in few machinescould u kindly give solution for this in vb.net application

Are you talking about license features date/time strings?

in general and using for this application

If you're talking about date/time license features, simply use the DateTime.Parse() function. Here's a C# example:

string resp = TurboActivate.GetFeatureValue("feature name");


// let's say "feature name" has a value of "2010-12-15 12:14:00"// use the DateTime.Parse() function to get a date time object from the string


DateTime featureValue = DateTime.Parse(resp);

If you're talking about timed trial dates - then don't worry about it. TurboActivate handles all the date info.

Does this help?