![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
|
The reason I ask is because I need a way to pass an integer to Microsoft.Office.Interop.Excel.SeriesCollection.It em(Object) In C#, int is aliased to System.Int32 so doing something like SeriesCollection.Item(1) works fine. However, in J# this will not even compile, and doing something like SeriesCollection.Item(new Integer("1")) throws a "Item method of SeriesCollection class failed" exception for me. Thanks, Nate |
#2
| |||
| |||
|
|
For you Excel interop problem, you should try SeriesCollection.Item((System.Int32)1). I did a small test, yes Bruno this will work. = )Cheers, Lars-Inge |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |