Click here to Skip to main content
16,006,006 members
Home / Discussions / C#
   

C#

 
GeneralRe: Question about .NET visual inheritance and MDI apps. Pin
Heath Stewart30-Sep-04 6:55
protectorHeath Stewart30-Sep-04 6:55 
GeneralExcel Automation question Pin
sameerhanda30-Sep-04 6:33
sameerhanda30-Sep-04 6:33 
GeneralRe: Excel Automation question Pin
Heath Stewart30-Sep-04 6:46
protectorHeath Stewart30-Sep-04 6:46 
GeneralRe: Excel Automation question Pin
sameerhanda30-Sep-04 7:17
sameerhanda30-Sep-04 7:17 
GeneralRe: Excel Automation question Pin
Heath Stewart30-Sep-04 7:54
protectorHeath Stewart30-Sep-04 7:54 
GeneralRe: Excel Automation question Pin
sameerhanda30-Sep-04 8:12
sameerhanda30-Sep-04 8:12 
GeneralRe: Excel Automation question Pin
Heath Stewart30-Sep-04 10:13
protectorHeath Stewart30-Sep-04 10:13 
GeneralRe: Excel Automation question Pin
sameerhanda30-Sep-04 11:08
sameerhanda30-Sep-04 11:08 
Just wanted to give you a FYI as to how I had fixed this problem..or gotten around it.

int _count = _newApp.AddIns.Count;
for( int i = 1;i < _count ; i ++ )
{
//test to see what is the name of the AddIn.
if( _newApp.AddIns[i].Name.StartsWith("tm1p"))
{
//test to see if it is installed
if ( !_newApp.AddIns[i].Installed )
{
_newApp.AddIns[i].Installed = true;
this._addinIndex = i;
}
}

}

However I will try your method to Heath. Thank's for your responses.
Generalpictures in textboxes Pin
vyki_c30-Sep-04 6:22
vyki_c30-Sep-04 6:22 
GeneralRe: pictures in textboxes Pin
Heath Stewart30-Sep-04 6:40
protectorHeath Stewart30-Sep-04 6:40 
GeneralReal Time Applications Pin
sreejith ss nair30-Sep-04 6:03
sreejith ss nair30-Sep-04 6:03 
GeneralRe: Real Time Applications Pin
Dave Kreskowiak30-Sep-04 7:25
mveDave Kreskowiak30-Sep-04 7:25 
GeneralRe: Real Time Applications Pin
sreejith ss nair30-Sep-04 7:30
sreejith ss nair30-Sep-04 7:30 
GeneralRe: Real Time Applications Pin
Dave Kreskowiak30-Sep-04 7:52
mveDave Kreskowiak30-Sep-04 7:52 
GeneralRe: Real Time Applications Pin
Heath Stewart30-Sep-04 9:19
protectorHeath Stewart30-Sep-04 9:19 
GeneralEvil Textboxes Width Changes When Large Fonts (C#) Pin
dbromberg30-Sep-04 5:48
dbromberg30-Sep-04 5:48 
GeneralRe: Evil Textboxes Width Changes When Large Fonts (C#) Pin
leppie30-Sep-04 7:47
leppie30-Sep-04 7:47 
GeneralRe: Evil Textboxes Width Changes When Large Fonts (C#) Pin
dbromberg30-Sep-04 8:17
dbromberg30-Sep-04 8:17 
Generalstatic variable Pin
goatstudio30-Sep-04 5:32
goatstudio30-Sep-04 5:32 
GeneralRe: static variable Pin
Dave Kreskowiak30-Sep-04 6:01
mveDave Kreskowiak30-Sep-04 6:01 
GeneralRe: static variable Pin
goatstudio30-Sep-04 6:22
goatstudio30-Sep-04 6:22 
GeneralRe: static variable Pin
Heath Stewart30-Sep-04 6:22
protectorHeath Stewart30-Sep-04 6:22 
GeneralRe: static variable Pin
goatstudio30-Sep-04 6:27
goatstudio30-Sep-04 6:27 
GeneralRe: static variable Pin
Heath Stewart30-Sep-04 6:42
protectorHeath Stewart30-Sep-04 6:42 
GeneralRe: static variable Pin
Dave Kreskowiak30-Sep-04 8:33
mveDave Kreskowiak30-Sep-04 8:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.