Wrox Programmer Forums
Go Back   Wrox Programmer Forums > .NET > .NET 1.0 and Visual Studio.NET > VS.NET 2002/2003
|
VS.NET 2002/2003 Discussions about the Visual Studio.NET programming environment, the 2002 (1.0) and 2003 (1.1). ** Please don't post code questions here ** For issues specific to a particular language in .NET, please see the other forum categories.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the VS.NET 2002/2003 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 25th, 2007, 09:44 AM
Registered User
 
Join Date: Jan 2007
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi,
Please send me the solution to this problem to:
[email protected]
Thanks!


 
Old February 12th, 2007, 07:36 AM
Registered User
 
Join Date: Feb 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Did anyone get the answer to this? Please post it on the forum ...

Quote:
quote:Originally posted by shueyr
 
Quote:
quote:Originally posted by ezeoj
Quote:
 I got this working.If anyone still in need mail me

Eze
please e-mail me the fix - [email protected]

thanks

 
Old April 24th, 2007, 04:08 AM
Registered User
 
Join Date: Apr 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

I dont think anyone got the solution for this. If anybody got it pls mail it to me as well pls.

 
Old May 4th, 2007, 07:45 AM
fl fl is offline
Registered User
 
Join Date: May 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Quote:
quote:Originally posted by chrissun
 yes, need solution to 'Cannot create ActiveX component" error in .Net
thanks!

Would really appreciate if you email the solution to [email protected]

Thanks in advance.
 
Old May 16th, 2007, 07:00 AM
Registered User
 
Join Date: May 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

What is ur email!! I really need the solution to this prob!! If anyone has it, PLZ could you email me and tell me how i can fix it! thanx

[email protected]

Stompi2004

 
Old August 12th, 2007, 06:45 AM
Registered User
 
Join Date: Aug 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Quote:
quote:Originally posted by ezeoj
 I got this working.If anyone still in need mail me

Eze
Please send me the solution, thanks larry

 
Old February 25th, 2008, 05:15 PM
Registered User
 
Join Date: Feb 2008
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

What a boneheaded thing 2 do: send me a private email and i'll send the answer.....

Why have a forum if we all need to send email somewhere else? If you have the answer, POST IT.

Otherwise you are wasting all our time (and I suspect you don't actually have an answer, just phishing 4 e-mail addresses).

Prove me wrong, please......
 
Old February 27th, 2008, 07:09 PM
Registered User
 
Join Date: Feb 2008
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

In case anybody still needs it, here's how you can use Adobe InDesign CS3 from .Net code:

1. Locate Resources for Visual Basic.tlb in C:\Documents and Settings\All Users\Application Data\Adobe\InDesign\Version 5.0\Scripting Support\5.0 folder.

2. Open command prompt and execute:
Code:
TlbImp.exe "Resources for Visual Basic.tlb" /out:Interop.InDesign.dll
TlbImp.exe is located in C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin folder on my machine. This will generate Interop.InDesign.dll file. This is an interop assembly.

3. Add reference to Interop.InDesign.dll to your project.

4. Use this code to create application object:
Code:
Type type = Type.GetTypeFromProgID("InDesign.Application.CS3");
if (type == null)
{
   throw new Exception("Adobe InDesign CS3 is not installed");
}
InDesign._Application app = (InDesign._Application)Activator.CreateInstance(type);
--
Please visit my blog at http://chuchuva.com/pavel/





Similar Threads
Thread Thread Starter Forum Replies Last Post
ActiveX Component cannot create Object Madhivanan VB How-To 5 December 23rd, 2006 02:33 AM
ActiveX Component can't create an object lihar Access VBA 1 December 20th, 2006 07:52 AM
cannot create activex component - help please cobweb Classic ASP Components 1 September 14th, 2006 08:40 PM
Cannot create ActiveX Component Ron Howerton Pro VB.NET 2002/2003 0 July 18th, 2006 10:33 AM
ActiveX component can't create object lameneural Classic ASP Components 0 July 4th, 2006 12:14 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.