I am assuming that you are trying to set the decimal separator in Excel. What you need to do first, is tell Access what "application" is... Like this:
Dim app as Excel.Application
app = new Excel.Application
app.International (xlDecimalSeparator) = whatever.
If this is NOT what you are trying to do, please provide more of your code.