Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Something wrong with how I'm using Substring()?
Message
From
11/01/2007 15:52:41
Alexandre Palma
Harms Software, Inc.
Alverca, Portugal
 
 
To
11/01/2007 15:48:24
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Miscellaneous
Thread ID:
01184772
Message ID:
01184774
Views:
22
Sam remember in .net everything is 0 based, while in VFp is 1 base so instead of cKey += nYear.ToString().Substring(3, 2); do cKey += nYear.ToString().Substring(2, 2);


>Hello.
>
>I'm getting an error on the last line of the code below "ArgumentOutOfRangeException Make sure all arguments to this method have valid values as defined by the invoked method...."
>
>
>
>int nYear = DateTime.Now.Year;
>int nDay = DateTime.Now.Day;
>int nMonth = DateTime.Now.Month;
>string cKey = nMonth.ToString().PadLeft(2, '0');
>cKey += nDay.ToString().PadLeft(2, '0');
>cKey += nYear.ToString().Substring(3, 2);
>
>
>
>What am I doing wrong?
>
>TIA.
Alexandre Palma
Senior Application Architect
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform