<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for Steve's Blog</title>
	<link>http://www.lnssoftware.ca/blog</link>
	<description>Random Meanderings on all Things Technical</description>
	<pubDate>Sat, 25 May 2013 04:41:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>Comment on The Mystery of the Disappearing Icon by Bruce</title>
		<link>http://www.lnssoftware.ca/blog/?p=140#comment-8555</link>
		<author>Bruce</author>
		<pubDate>Tue, 09 Apr 2013 14:47:14 +0000</pubDate>
		<guid>http://www.lnssoftware.ca/blog/?p=140#comment-8555</guid>
		<description>I have battled for hours and after deleting the registry keys you suggest, the icon appeared.

There are surely many people with this same problem but your blog is the only one I found that suggests a solution.  

I would expect this kind of info to be in the Delphi 2010 documentation and on the Embarcadero web site...</description>
		<content:encoded><![CDATA[<p>I have battled for hours and after deleting the registry keys you suggest, the icon appeared.</p>
<p>There are surely many people with this same problem but your blog is the only one I found that suggests a solution.  </p>
<p>I would expect this kind of info to be in the Delphi 2010 documentation and on the Embarcadero web site&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Visual Studio 2010 Very Slow by Paul</title>
		<link>http://www.lnssoftware.ca/blog/?p=130#comment-8550</link>
		<author>Paul</author>
		<pubDate>Fri, 22 Mar 2013 17:01:42 +0000</pubDate>
		<guid>http://www.lnssoftware.ca/blog/?p=130#comment-8550</guid>
		<description>Huh. That seems to have fixed mine, too. I'm working on a solution that was upgraded from VS2005, so I wonder if the .SUO contained something from the older version that VS2010 didn't like.

Thanks for the tip!</description>
		<content:encoded><![CDATA[<p>Huh. That seems to have fixed mine, too. I&#8217;m working on a solution that was upgraded from VS2005, so I wonder if the .SUO contained something from the older version that VS2010 didn&#8217;t like.</p>
<p>Thanks for the tip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Forcing a Delphi Program to Run with Administrator Privilege by Mr .Hoek</title>
		<link>http://www.lnssoftware.ca/blog/?p=113#comment-8548</link>
		<author>Mr .Hoek</author>
		<pubDate>Thu, 21 Mar 2013 11:02:47 +0000</pubDate>
		<guid>http://www.lnssoftware.ca/blog/?p=113#comment-8548</guid>
		<description>&#60;?xml version="1.0" encoding="UTF-8" standalone="yes"?&#62;
&#60;assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"&#62;
  &#60;dependency&#62;
    &#60;dependentAssembly&#62;
      &#60;assemblyIdentity
        type="win32"
        name="Microsoft.Windows.Common-Controls"
        version="6.0.0.0"
        publicKeyToken="6595b64144ccf1df"
        language="*"
        processorArchitecture="*"/&#62;
    &#60;/dependentAssembly&#62;
  &#60;/dependency&#62;
  &#60;trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"&#62;
    &#60;security&#62;
      &#60;requestedPrivileges&#62;
        &#60;requestedExecutionLevel
          level="requireAdministrator"
          uiAccess="false"/&#62;
        &#60;/requestedPrivileges&#62;
    &#60;/security&#62;
  &#60;/trustInfo&#62;
&#60;/assembly&#62;</description>
		<content:encoded><![CDATA[<p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243; standalone=&#8221;yes&#8221;?&gt;<br />
&lt;assembly xmlns=&#8221;urn:schemas-microsoft-com:asm.v1&#8243; manifestVersion=&#8221;1.0&#8243;&gt;<br />
  &lt;dependency&gt;<br />
    &lt;dependentAssembly&gt;<br />
      &lt;assemblyIdentity<br />
        type=&#8221;win32&#8243;<br />
        name=&#8221;Microsoft.Windows.Common-Controls&#8221;<br />
        version=&#8221;6.0.0.0&#8243;<br />
        publicKeyToken=&#8221;6595b64144ccf1df&#8221;<br />
        language=&#8221;*&#8221;<br />
        processorArchitecture=&#8221;*&#8221;/&gt;<br />
    &lt;/dependentAssembly&gt;<br />
  &lt;/dependency&gt;<br />
  &lt;trustInfo xmlns=&#8221;urn:schemas-microsoft-com:asm.v3&#8243;&gt;<br />
    &lt;security&gt;<br />
      &lt;requestedPrivileges&gt;<br />
        &lt;requestedExecutionLevel<br />
          level=&#8221;requireAdministrator&#8221;<br />
          uiAccess=&#8221;false&#8221;/&gt;<br />
        &lt;/requestedPrivileges&gt;<br />
    &lt;/security&gt;<br />
  &lt;/trustInfo&gt;<br />
&lt;/assembly&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Forcing a Delphi Program to Run with Administrator Privilege by Mr .Hoek</title>
		<link>http://www.lnssoftware.ca/blog/?p=113#comment-8545</link>
		<author>Mr .Hoek</author>
		<pubDate>Thu, 21 Mar 2013 10:59:32 +0000</pubDate>
		<guid>http://www.lnssoftware.ca/blog/?p=113#comment-8545</guid>
		<description>Nice article....

One addition: when using Delphi XE(2) or higher you can just specify in the project options if the application needs to compile with a custom manifest file, which you can ten place in you're projects folder.

Example of my manifest:



  
    
      
    
  
  
    
      
        
        
    
  
</description>
		<content:encoded><![CDATA[<p>Nice article&#8230;.</p>
<p>One addition: when using Delphi XE(2) or higher you can just specify in the project options if the application needs to compile with a custom manifest file, which you can ten place in you&#8217;re projects folder.</p>
<p>Example of my manifest:</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Delphi Class Completion (Ctl-Shft-C) Stops Working by admin</title>
		<link>http://www.lnssoftware.ca/blog/?p=146#comment-8544</link>
		<author>admin</author>
		<pubDate>Thu, 24 Jan 2013 14:12:47 +0000</pubDate>
		<guid>http://www.lnssoftware.ca/blog/?p=146#comment-8544</guid>
		<description>I haven't experience the problem that you are describing.  All I know is that when I uninstalled AQtime my problem went away and it hasn't returned.</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t experience the problem that you are describing.  All I know is that when I uninstalled AQtime my problem went away and it hasn&#8217;t returned.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Remote Desktop Plugin Using Delphi - Part 5 by admin</title>
		<link>http://www.lnssoftware.ca/blog/?p=157#comment-8543</link>
		<author>admin</author>
		<pubDate>Thu, 24 Jan 2013 14:11:37 +0000</pubDate>
		<guid>http://www.lnssoftware.ca/blog/?p=157#comment-8543</guid>
		<description>Mine is working perfectly.  I'm not sure why mstsc.exe would be crashing for you.  I have tried this on several different versions of the RDP client without any problems.</description>
		<content:encoded><![CDATA[<p>Mine is working perfectly.  I&#8217;m not sure why mstsc.exe would be crashing for you.  I have tried this on several different versions of the RDP client without any problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Remote Desktop Plugin Using Delphi - Part 5 by Ted</title>
		<link>http://www.lnssoftware.ca/blog/?p=157#comment-8542</link>
		<author>Ted</author>
		<pubDate>Wed, 23 Jan 2013 20:46:43 +0000</pubDate>
		<guid>http://www.lnssoftware.ca/blog/?p=157#comment-8542</guid>
		<description>I have also implemented a plugin such as this a few years ago using Delphi5 and some Project JEDI wrappers named CChannel.pas and PChannel.pas for the definitions of the different structures.  This worked flawlessly until I needed to develop a 64-bit Virtual Channel.  I dutifully upgraded to Delphi XE3 and upgraded my code so that it would compile without error.  

The problem that I am now having, both with my code and yours, is that when I close the RDP/Terminal Service session, the plugin crashes mstsc.exe.  Have you run into this at all?  I am currently running RDP version 6.2.9200.16398 which I believe is the latest and greatest version.</description>
		<content:encoded><![CDATA[<p>I have also implemented a plugin such as this a few years ago using Delphi5 and some Project JEDI wrappers named CChannel.pas and PChannel.pas for the definitions of the different structures.  This worked flawlessly until I needed to develop a 64-bit Virtual Channel.  I dutifully upgraded to Delphi XE3 and upgraded my code so that it would compile without error.  </p>
<p>The problem that I am now having, both with my code and yours, is that when I close the RDP/Terminal Service session, the plugin crashes mstsc.exe.  Have you run into this at all?  I am currently running RDP version 6.2.9200.16398 which I believe is the latest and greatest version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Delphi Class Completion (Ctl-Shft-C) Stops Working by Glen Kleidon</title>
		<link>http://www.lnssoftware.ca/blog/?p=146#comment-8541</link>
		<author>Glen Kleidon</author>
		<pubDate>Wed, 23 Jan 2013 14:45:53 +0000</pubDate>
		<guid>http://www.lnssoftware.ca/blog/?p=146#comment-8541</guid>
		<description>Steve,

I don't believe this is the full answer.  I suddenly started having this problem in Xe2.  So in order to get around it, I collected my units into a vcl app and loaded with XE.  I did my edits in XE and compile in XE2 (FMX). Suddently XE2 started working again.  A few hours later it broke again.  Loading back up in XE found - IT WAS BROKEN THERE TOO.  Not to be outdone, I said right - load in Delphi 2009 - broken there too!!!!  AQTime is certainly not installed in Delphi 2009 and Also other people ahve reported the issue coming back after AQTime has been uninstalled</description>
		<content:encoded><![CDATA[<p>Steve,</p>
<p>I don&#8217;t believe this is the full answer.  I suddenly started having this problem in Xe2.  So in order to get around it, I collected my units into a vcl app and loaded with XE.  I did my edits in XE and compile in XE2 (FMX). Suddently XE2 started working again.  A few hours later it broke again.  Loading back up in XE found - IT WAS BROKEN THERE TOO.  Not to be outdone, I said right - load in Delphi 2009 - broken there too!!!!  AQTime is certainly not installed in Delphi 2009 and Also other people ahve reported the issue coming back after AQTime has been uninstalled</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Remote Desktop Plugin Using Delphi - Part 3 by admin</title>
		<link>http://www.lnssoftware.ca/blog/?p=153#comment-8512</link>
		<author>admin</author>
		<pubDate>Wed, 26 Dec 2012 20:34:50 +0000</pubDate>
		<guid>http://www.lnssoftware.ca/blog/?p=153#comment-8512</guid>
		<description>Glad it helped.  The link that you provided seems to be dead.</description>
		<content:encoded><![CDATA[<p>Glad it helped.  The link that you provided seems to be dead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Remote Desktop Plugin Using Delphi - Part 3 by Markus</title>
		<link>http://www.lnssoftware.ca/blog/?p=153#comment-8499</link>
		<author>Markus</author>
		<pubDate>Sat, 22 Dec 2012 13:02:28 +0000</pubDate>
		<guid>http://www.lnssoftware.ca/blog/?p=153#comment-8499</guid>
		<description>This is a very helpful example for writing a Virtual Channel Plug-In in Delphi.

In the begining of 2012 i faced the same problem of finding examples doing this in Delphi. The only example i found was a russian one.
See: http://www.sql.ru/forum/actualthread.aspx?tid=702704.
This example transfers files from the server to the client over Virtual Channel and opens the file with the according application.

I modified this example for our needs but couldn't get it to work
for 64bit clients.

So i am very glad to find your example.

Greets 
Markus</description>
		<content:encoded><![CDATA[<p>This is a very helpful example for writing a Virtual Channel Plug-In in Delphi.</p>
<p>In the begining of 2012 i faced the same problem of finding examples doing this in Delphi. The only example i found was a russian one.<br />
See: <a href="http://www.sql.ru/forum/actualthread.aspx?tid=702704." rel="nofollow">http://www.sql.ru/forum/actualthread.aspx?tid=702704.</a><br />
This example transfers files from the server to the client over Virtual Channel and opens the file with the according application.</p>
<p>I modified this example for our needs but couldn&#8217;t get it to work<br />
for 64bit clients.</p>
<p>So i am very glad to find your example.</p>
<p>Greets<br />
Markus</p>
]]></content:encoded>
	</item>
</channel>
</rss>
