﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <description><![CDATA[Comments for Using standard .NET controls in VCL .NET applications with Delphi 8]]></description>
    <title><![CDATA[Comments for Using standard .NET controls in VCL .NET applications with Delphi 8]]></title>
    <link>http://edn.embarcadero.com/article/31886</link>
    <!-- source: http://edn.embarcadero.com/article/31886/feed-->
    <dc:date>2009-11-08T00:57:26-08:00</dc:date>
    <item>
      <description><![CDATA[HiPlease copy your assembly to the required location where you want and then register it. Let the IDE reference remain the same as it is. I have tested this and it works fine.if you still have problem you can email me on shekhare@yahoo.com.regardsshekhar]]></description>
      <title><![CDATA[reply for David]]></title>
      <managingEditor>
	 (Shekhar Erande)
</managingEditor>
      <guid isPermaLink="true">http://threads.embarcadero.com/threads/threads.exe/view?commentid=39086</guid>
      <dc:date>2006-05-29T00:56:51-07:00</dc:date>
      <pubDate>2006-05-29T00:56:51-07:00</pubDate>
      <source url="http://edn.embarcadero.com/article/31886/feed">Comments for Using standard .NET controls in VCL .NET applications with Delphi 8</source>
    </item>
    <item>
      <description><![CDATA[I am getting same problem. Once you move your assembly it dosent get loaded.]]></description>
      <title><![CDATA[re: Using standard .NET controls in VCL .NET applications with Delphi 8]]></title>
      <managingEditor>
	 (Shekhar Erande)
</managingEditor>
      <guid isPermaLink="true">http://threads.embarcadero.com/threads/threads.exe/view?commentid=39085</guid>
      <dc:date>2006-05-28T23:55:21-07:00</dc:date>
      <pubDate>2006-05-28T23:55:21-07:00</pubDate>
      <source url="http://edn.embarcadero.com/article/31886/feed">Comments for Using standard .NET controls in VCL .NET applications with Delphi 8</source>
    </item>
    <item>
      <description><![CDATA[using Delphi 8.01 imported controls doesn't work at all...So, you can do all the things shown in the paper, that's ok, but what the paper doesn't show is using the imported component ! And now that i tried, i understand why authors did not provide any screen shot of this last and usefull part of import.. the whole thing is sucking hard...You can have the component in the palette, it's nice, but you can't use it...]]></description>
      <title><![CDATA[Using standard .NET controls in VCL .NET applications with Delphi 8]]></title>
      <managingEditor>
	 (Craven Weasel)
</managingEditor>
      <guid isPermaLink="true">http://threads.embarcadero.com/threads/threads.exe/view?commentid=36458</guid>
      <dc:date>2004-04-08T09:07:36-07:00</dc:date>
      <pubDate>2004-04-08T09:07:36-07:00</pubDate>
      <source url="http://edn.embarcadero.com/article/31886/feed">Comments for Using standard .NET controls in VCL .NET applications with Delphi 8</source>
    </item>
    <item>
      <description><![CDATA[I followed the steps in this article and it works fine - up to the point where I want to put the control on a form.  I then receive "Failed to find path location for assembly ...".  Is there a step missing from the article?]]></description>
      <title><![CDATA[Using standard .NET controls in VCL .NET applications with Delphi 8]]></title>
      <managingEditor>
	 (David Christian)
</managingEditor>
      <guid isPermaLink="true">http://threads.embarcadero.com/threads/threads.exe/view?commentid=36108</guid>
      <dc:date>2004-01-26T09:09:12-08:00</dc:date>
      <pubDate>2004-01-26T09:09:12-08:00</pubDate>
      <source url="http://edn.embarcadero.com/article/31886/feed">Comments for Using standard .NET controls in VCL .NET applications with Delphi 8</source>
    </item>
    <item>
      <description><![CDATA[Hi Guys,I just installed Delphi 8 and I want to port an application developed in Delphi 6 to Delphi VCL.NET. This application has ADO in it and I want to use ADO.NET now. I tried to import this .NET controls (System.Data) into the VCL.NET but when I tried to use them I got an error "Object reference not set to  and instance of an object"!!.Now, I though I was doing something wrong and I found this document, so I tried it, and it works fine, I can see the control and place it on a form, but when I tried to put data in it, it does not work. This is the code:unit Unit1;interfaceuses  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,  Dialogs,System.Data.SqlClient,System.Data, System.ComponentModel,  Borland.Vcl.StdCtrls, Borland.Vcl.NetControlContainer,  Borland.Vcl.NetControl, Borland.Vcl.NetControlWrapper,  Borland.Wrapper.System.Windows.Forms.DataGrid;type  TForm1 = class(TForm)    Button1: TButton;    DataGrid1: TImpDataGrid;    procedure Button1Click(Sender: TObject);  private    { Private declarations }  public    { Public declarations }    Connection: SqlConnection;    Adapter: SqlDataAdapter;    CustDataSet: DataSet;  end;var  Form1: TForm1;implementation{$R *.nfm}procedure TForm1.Button1Click(Sender: TObject);begin   Connection := SqlConnection.Create('Persist Security Info=False;' +   'Integrated Security=SSPI;database=TransBackup;' +   'server=servername;Connect Timeout=30');   Connection.Open;   CustDataSet := DataSet.Create;   Adapter := SqlDataAdapter.Create('select * from tblDomain', Connection);   Adapter.Fill(CustDataSet, 'Domain');   DataGrid1.DataSource := CustDataSet;   DataGrid1.DataMember := 'Domain';end;end.This code connects to the Database and get the data but it is not shown in the DataGrid control.Any idea?Additional info: I tested the same code in Delphi.NET and works fine.Thanks in advanced.Mario]]></description>
      <title><![CDATA[Using standard .NET controls in VCL .NET applications with Delphi 8]]></title>
      <managingEditor>
	 (Mario Quinones)
</managingEditor>
      <guid isPermaLink="true">http://threads.embarcadero.com/threads/threads.exe/view?commentid=36084</guid>
      <dc:date>2004-01-20T18:52:46-08:00</dc:date>
      <pubDate>2004-01-20T18:52:46-08:00</pubDate>
      <source url="http://edn.embarcadero.com/article/31886/feed">Comments for Using standard .NET controls in VCL .NET applications with Delphi 8</source>
    </item>
    <item>
      <description><![CDATA[As far as I know, not really no.The problem as far as I can see it is, Vcl components require an owner and a parent that follow a particular inheritance path. I.e. of you place a Tedit component down on a form, normally the form (ultimately a decendant of TComponent) would be the owner and the parent the TEdit, the TEdit will draw itself relative to the parents co-ordinates etc, and of course this won't be available in the same way from a WinForm.Maybe someone else can see a simple way around it, but from my cursory look it doesn't seem to be do-able in any easy way.Cheers Tim.]]></description>
      <title><![CDATA[re: Using standard .NET controls in VCL .NET applications with Delphi 8]]></title>
      <managingEditor>
	 (Tim Jarvis)
</managingEditor>
      <guid isPermaLink="true">http://threads.embarcadero.com/threads/threads.exe/view?commentid=35978</guid>
      <dc:date>2003-12-22T02:49:53-08:00</dc:date>
      <pubDate>2003-12-22T02:49:53-08:00</pubDate>
      <source url="http://edn.embarcadero.com/article/31886/feed">Comments for Using standard .NET controls in VCL .NET applications with Delphi 8</source>
    </item>
    <item>
      <description><![CDATA[Hi,is it also possible to use VCL.NET controls in Standard .NET Applications?Rainer]]></description>
      <title><![CDATA[Using standard .NET controls in VCL .NET applications with Delphi 8]]></title>
      <managingEditor>
	 (Rainer Kerber)
</managingEditor>
      <guid isPermaLink="true">http://threads.embarcadero.com/threads/threads.exe/view?commentid=35976</guid>
      <dc:date>2003-12-21T23:19:13-08:00</dc:date>
      <pubDate>2003-12-21T23:19:13-08:00</pubDate>
      <source url="http://edn.embarcadero.com/article/31886/feed">Comments for Using standard .NET controls in VCL .NET applications with Delphi 8</source>
    </item>
    <generator>Atom 1.0 XSLT Transform v1 (http://atom.geekhood.net)</generator>
  </channel>
</rss>