How can I control Visio from Delphi? [closed] - delphi

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How can I link a Delphi application with a Visio 2010 drawing? For example, I have an edit box on the app and a line on the Visio drawing. If I put "10" in the edit box on the app, I want the line length to become 10. (I'm not seeking code for this; it is just an example of the communication between the two I am looking for.)

Visio exposes a COM object. Import the type library in Delphi, and Delphi will generate a wrapper unit for whatever the type library exports. Use the type library and the MDSN reference to access whatever Visio provides.

Related

New instance in TWebBrowser [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I would like to use the TWebBrowser Component in a complete new instance independently from the instance of the Internet Explorer. Is there a way to start TWebBrowser (e.g. in private browsing mode) so it would have it's own instance of cookies, cache, history, etc.?
Try delphi chromium.
Based on Chrome browser, fully autonomous and more html5 compliant....
You can define the directory where to store cookies, and then, clean them as you like...

Drawing using asp.net mvc [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Is there any way to draw a simple image like some lines with asp.net mvc?
Any component or tool?
Actually user wants to draw a simple map and save it to database. Any idea?
I think they warn against doing it in ASP.NET but we've used the graphics libraries to do it before. http://msdn.microsoft.com/en-us/library/5y289054.aspx
try to understand mvc first, its a framework on top of ASP.NET not a client side tool. You could try HTML5 Canvas

Effort to emulate Rtti.pas to Delphi versions prior to D2009 resource needed [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I'm looking for Delphi resources related to any effort to emulate hopefully a substantive subset of the new Rtti.pas unit like ThorRtti.
Edit:
I edited the initial post (header,body and tag) because using backport is misleading and not appropriate for the post.
ThorRtti tried to mimick the Rtti.pas in Delphi 2010.
I just need a direction to go (URLs).
I don't believe what you are hoping to do is viable. The modern RTTI in Delphi is supported by the compiler. As I understand it the compiler writes a lot of extra information into the executable that the RTTI unit relies upon. Older compilers don't do that.

How can make skype clone with delphi XE? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
How make program like skype,?
What should I have to know to make it like the program?
Which component should I use?
On Windows, Skype is written in Delphi and uses Indy for its network communications. You will have to implement the actual audio/video protocols manually.

ActiveX vs Delphi, which is better? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I'm making a program and I need to use another program's API.
Which then let me pick between their activeX or Delphi.
Wondering which one I should utilize or focus more on.
Not sure if I'm being too broad here.
Edit: I'm more familiar with visual studio if that is of any concern.
Delphi is a programming language. If they're offering ActiveX or Delphi, they're offering you a COM object you can use from any language capable of using it (including Delphi) or a Delphi-specific implementation or interface to the library. Your question is pretty meaningless - "Which shall I take, the apple or the orange?".
If you're programming in Delphi, take the Delphi API; if not, or if you just prefer working with the ActiveX instead, choose it.

Resources