///
/// Name: isnumberic
/// function: Decision is the number of inputs
/// Parameters: String OText: Source text
/// Return value: BOOL TRUE: Yes FALSE: No
/// summary>
Public bool isnumberic (String OText)
{
Try
{
INT var1 = convert.toint32 (OText);
Return True;
}
Catch
{
Return False;
}
}