Having some issues after running a tool to convert the VB6.Format() to VS 2008 code. We had this statement:
VB6.Format(InVariable, szFormatMask))
That was converted to this:
InVariable.ToString(szFormatMask)
The issue being that now, when we call our function it has having the issue that it cannot convert a String = "" to an Integer value. InVariable is an object, and szFormatMask is a string in our function. Do you have any suggestions as to not cause this issue any longer?