<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" xml:lang="en">
	<channel>
		<title>Gurock Software Forum</title>
		<link>http://www.gurock.com/support/forum/</link>
		<description>Community for users of Gurock Software products</description>
		<language>en</language>
		<pubDate>Thu, 28 Aug 2008 23:56:08 GMT</pubDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>UseBB</generator>

		<item>
			<title><![CDATA[Re: Feature Request Watches and Report/Printing]]></title>
			<description><![CDATA[Oh sorry for the missunderstanding.<br />I mean for the second point (smallest time unit and inspect boolean values) the watches graphs.]]></description>
			<author><![CDATA[Stephan Rabich]]></author>
			<link>http://www.gurock.com/support/forum/topic-post552.html#post552</link>
			<comments>http://www.gurock.com/support/forum/post-topic179-quotepost552.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Thu, 28 Aug 2008 16:51:55 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post552.html#post552</guid>
		</item>

		<item>
			<title><![CDATA[Re: Viewing all log entries and understanding them...]]></title>
			<description><![CDATA[Hello Michael,<br /><br /><blockquote class="quote"><div class="title">Quote</div><div class="content">I can extend the rightmost column that shows the time. ...</div></blockquote><br /><br />That's a known limitation of the underlying tree view control. We are looking into ways how to improve this. What usually helps in this situation is, if the tree is growing to the right because of unmatched Enter/Leave pairs, to insert a 'Reset Call Stack' log entry (Edit | Reset Call Stack) to reset the tree.<br /><br /><blockquote class="quote"><div class="title">Quote</div><div class="content">Yet, if you look at the log, you see that it has logged several calls of GetRowFromCurrentRecord, while there are no calls of subroutines in my code. ...</div></blockquote><br /><br />I also guess that these log statements come indeed from different threads. To verify this, you can apply a so-called AutoView rule which lets you, among other things, create a new view for each thread in the current log.<br /><br />Several simple rules are already built-in and can be found under 'Edit | Apply Built-in AutoView Rules'. Custom rules can be added with the AutoView rules dialog (Edit | AutoView Rules). So, if you apply the built-in 'Thread Rule', the Console will open a new view for each thread in your log and you can easily see your log statements independently from other threads. This should help you to find out if your method is really called from multiple threads.]]></description>
			<author><![CDATA[Tobias Gurock]]></author>
			<link>http://www.gurock.com/support/forum/topic-post551.html#post551</link>
			<comments>http://www.gurock.com/support/forum/post-topic181-quotepost551.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Thu, 28 Aug 2008 14:54:08 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post551.html#post551</guid>
		</item>

		<item>
			<title><![CDATA[Viewing all log entries and understanding them...]]></title>
			<description><![CDATA[Hi,<br /><br />one screenshot, a bit of code and two questions <img src="http://www.gurock.com/support/forum/templates/default/smilies/wink.gif" alt=";)" /><br /><img src="http://forum.mbaas.de/si1.png" alt="User posted image" /><br /><br />1) I can extend the rightmost column that shows the time. With the title-column, I saw that I drag the divider to the right of the control and it would add that width, but for the time-column this doesn't work.<br /><br />The next question is about VB.net-logging (and sequence of execution and logging).<br />below is the code which was logged in the screenshot above:<br /><pre class="code">              SiAuto.Main.LogString(&quot;defval893 VOR Aufruf GFCR&quot;,defval893.Value)<br />              defval893.Value = GetFromCurrentRecord(&quot;id_stammvpm&quot;,&quot;DropDownList&quot;,&quot;TplDropDownList893&quot;) <br />              SiAuto.Main.LogString(&quot;defval893 NACH Aufruf GFCR&quot;,defval893.Value)<br />              if MultiView1.ActiveViewIndex = 0 Then<br />	              SiAuto.Main.LogObject(&quot;GridView1&quot;,GridView1)<br />  	            SiAuto.Main.LogObject(&quot;GridView1.FooterRow&quot;,&quot;GridView1.FooterRow&quot;)<br />  	          	if GridView1.FooterRow is Nothing Then<br />  	          		SiAuto.Main.LogMessage(&quot;Footer undefiniert!&quot;)<br />  	          	else <br />	              	ctl = GridView1.FooterRow.FindControl(&quot;FooterTplDropDownList893&quot;)<br />              		ctl.SelectedValue=defval893.Value<br />		              SiAuto.Main.LogString(&quot;defval893&quot;,defval893.Value)<br />  	          		SiAuto.Main.LogString(&quot;selval&quot;,ctl.SelectedValue)<br />              	end if<br />              end if<br />              SqlDataSource1.InsertParameters(&quot;id_stammvpm&quot;).DefaultValue=defval893.Value<br /></pre><br /><br />Now, in that code we can basically see the sub &quot;GetFromCurrentRecord&quot; is only called in the 2nd line, thereafter we see a lot of different logs and no calls of other subs. Yet, if you look at the log, you see that it has logged several calls of GetRowFromCurrentRecord, while there are no calls of subroutines in my code.<br />Two possible explanations I could think of:<br />1) the log doesn't show the entries in exact order of time. Unfortunately I couldn't verify that idea, as I couldn't make the time-column wide enough. (see #1).<br />2) ASP.NET was executing in multiple threads and called GetRowFromCurrentRecord as part of execution of some &lt;%-code.<br /><br />Or could there be another reason? Are there perhaps additional features in SI that I could use to find out more about the 'calling environment'?]]></description>
			<author><![CDATA[MBaas]]></author>
			<link>http://www.gurock.com/support/forum/topic-post550.html#post550</link>
			<comments>http://www.gurock.com/support/forum/post-topic181-quotepost550.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Wed, 27 Aug 2008 20:33:35 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post550.html#post550</guid>
		</item>

		<item>
			<title><![CDATA[Re: Logging in javascript?]]></title>
			<description><![CDATA[Great, thanks! <img src="http://www.gurock.com/support/forum/templates/default/smilies/smile.gif" alt=":)" />]]></description>
			<author><![CDATA[MBaas]]></author>
			<link>http://www.gurock.com/support/forum/topic-post549.html#post549</link>
			<comments>http://www.gurock.com/support/forum/post-topic180-quotepost549.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Wed, 27 Aug 2008 20:21:17 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post549.html#post549</guid>
		</item>

		<item>
			<title><![CDATA[Re: Logging in javascript?]]></title>
			<description><![CDATA[I added it to the feature request list and we will look into it whether it's possible or not. It would indeed be interesting as Javascript can get quite tedious to debug. A SmartInspect library (maybe even a very basic one) would probably help a lot.<br /><br />Thanks for the suggestion!]]></description>
			<author><![CDATA[Tobias Gurock]]></author>
			<link>http://www.gurock.com/support/forum/topic-post548.html#post548</link>
			<comments>http://www.gurock.com/support/forum/post-topic180-quotepost548.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Wed, 27 Aug 2008 18:09:24 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post548.html#post548</guid>
		</item>

		<item>
			<title><![CDATA[Re: Logging in javascript?]]></title>
			<description><![CDATA[Ooops, I wasn't logged in when I replied - but of course I was the Guest <img src="http://www.gurock.com/support/forum/templates/default/smilies/wink.gif" alt=";)" />]]></description>
			<author><![CDATA[MBaas]]></author>
			<link>http://www.gurock.com/support/forum/topic-post547.html#post547</link>
			<comments>http://www.gurock.com/support/forum/post-topic180-quotepost547.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Wed, 27 Aug 2008 15:11:53 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post547.html#post547</guid>
		</item>

		<item>
			<title><![CDATA[Re: Logging in javascript?]]></title>
			<description><![CDATA[Hi Tobias,<br /><br />thanks for the quick reply.  I don't know JS well enough myself to answer about the TCP-sockets, but I would hope that (maybe as part of some Ajax-framework) this could be done.<br /><br />Maybe something for V3.5...  <img src="http://www.gurock.com/support/forum/templates/default/smilies/wink.gif" alt=";)" />]]></description>
			<author><![CDATA[Hi Tobias,]]></author>
			<link>http://www.gurock.com/support/forum/topic-post546.html#post546</link>
			<comments>http://www.gurock.com/support/forum/post-topic180-quotepost546.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Wed, 27 Aug 2008 15:09:48 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post546.html#post546</guid>
		</item>

		<item>
			<title><![CDATA[Re: Logging in javascript?]]></title>
			<description><![CDATA[Hello Michael,<br /><br />There's unfortunately currently no direct way to use SmartInspect with Javascript. I'm not even sure if it's possible at all (does Javascript have an API for TCP sockets?). The only way I think this could work is by using Ajax to call some server routines that then forward the logging data to SmartInspect.]]></description>
			<author><![CDATA[Tobias Gurock]]></author>
			<link>http://www.gurock.com/support/forum/topic-post545.html#post545</link>
			<comments>http://www.gurock.com/support/forum/post-topic180-quotepost545.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Wed, 27 Aug 2008 14:18:15 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post545.html#post545</guid>
		</item>

		<item>
			<title><![CDATA[Logging in javascript?]]></title>
			<description><![CDATA[Hi,<br /><br />I just searched the forum for &quot;javascript&quot; and got no matches - now there will be at least one <img src="http://www.gurock.com/support/forum/templates/default/smilies/wink.gif" alt=";)" /><br /><br />Would like to know if there is any way to call SI from JS, because it would certainly make sense to have that logging integrated (especially during development, when all runs on the same machine).<br /><br />All the best<br /><br />Michael]]></description>
			<author><![CDATA[MBaas]]></author>
			<link>http://www.gurock.com/support/forum/topic-post544.html#post544</link>
			<comments>http://www.gurock.com/support/forum/post-topic180-quotepost544.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Wed, 27 Aug 2008 09:14:35 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post544.html#post544</guid>
		</item>

		<item>
			<title><![CDATA[Re: Feature Request Watches and Report/Printing]]></title>
			<description><![CDATA[Hi Stephan,<br /><br />Thanks for the suggestions. I know that the printing and exporting features could be improved and we will consider it for a future update. It's a request that comes regularly but so far other things have been more important.<br /><br /><blockquote class="quote"><div class="title">Quote</div><div class="content">I will use the log file to inspect the timing of the application. It is possible but the smallest unit is seconds.</div></blockquote><br /><br />You can configure the time and date format in the SmartInspect options (Tools menu &gt; Options, then the Time Format tab). For example, to include seconds and micro seconds, you can specify the following format. Please also take a look at the online help topic 'Working with SmartInspect | High-Resolution Timestamps' to learn how to generate more accurate timestamps in your logs.<br /><br /><pre class="code">dd.mm.yyyy hh:nn:ss.uuuuuu</pre><br /><br />About the boolean values: do you mean in the Watches toolbox, in the log entry list or in the Graph toolbox? Thanks.]]></description>
			<author><![CDATA[Dennis Gurock]]></author>
			<link>http://www.gurock.com/support/forum/topic-post543.html#post543</link>
			<comments>http://www.gurock.com/support/forum/post-topic179-quotepost543.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Tue, 26 Aug 2008 16:14:57 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post543.html#post543</guid>
		</item>

		<item>
			<title><![CDATA[Feature Request Watches and Report/Printing]]></title>
			<description><![CDATA[Hello,<br /><br />I'm using SmartInspect since a couple of weeks and I'm very 	satisfied.<br />Some features I'm missing.<br />1. During printing or export only the titles of the lines will displayed not the other columns. It would be very helpful for documentation when all columns are exported or printed.<br />And by the way it would be very nice if the printing keeps the collapsing of entries (at the moment during printing and exporting all entries are automatically expand)<br /><br />2. I will use the log file to inspect the timing of the application. It is possible but the smallest unit is seconds. It would be very helpful if the smallest unit is microsecond respectively I can zoom in manually. The second very helpfully thing would be the display of boolean values as an rectangle graph. At the moment I use integer instead of boolean but the result looks not very good to inspect boolean values.]]></description>
			<author><![CDATA[Stephan Rabich]]></author>
			<link>http://www.gurock.com/support/forum/topic-post542.html#post542</link>
			<comments>http://www.gurock.com/support/forum/post-topic179-quotepost542.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Tue, 26 Aug 2008 14:44:14 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post542.html#post542</guid>
		</item>

		<item>
			<title><![CDATA[Re: Watch interaction with ProcessFlows]]></title>
			<description><![CDATA[Hello Scott,<br /><br />You are right that watches currently do not have any process or thread information and are not directly related to the current view. There's the Selected tab in the Watches toolbox which shows the current watch values for the selected log entry but I think a better integration between watches and general log entries sounds like a good idea. I added it to our feature request list, thanks.<br /><br />However, have you thought about using the standard LogValue methods instead of (or maybe in combination with) watches? This way the logged variable values would be shown directly in the context of the corresponding method.]]></description>
			<author><![CDATA[Tobias Gurock]]></author>
			<link>http://www.gurock.com/support/forum/topic-post541.html#post541</link>
			<comments>http://www.gurock.com/support/forum/post-topic178-quotepost541.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Sun, 24 Aug 2008 13:25:46 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post541.html#post541</guid>
		</item>

		<item>
			<title><![CDATA[Watch interaction with ProcessFlows]]></title>
			<description><![CDATA[Giday, <br /><br />I am currently using SmartInspect to instrument our in-house written interpreter...  As far as I understand the watches are global in nature as the packets don't have process and thread information... Have you thought about about supporting something similar to Watches but being sensitive to the current process flow so that only the &quot;Locals&quot; within the current method are displayed?  <br /><br />Thanks.<br /><br />Scott.]]></description>
			<author><![CDATA[ScottM]]></author>
			<link>http://www.gurock.com/support/forum/topic-post540.html#post540</link>
			<comments>http://www.gurock.com/support/forum/post-topic178-quotepost540.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Sat, 23 Aug 2008 06:11:28 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post540.html#post540</guid>
		</item>

		<item>
			<title><![CDATA[Re: Still Problem with %p specifier]]></title>
			<description><![CDATA[That's still the same problem with the WideFormat routine. I submitted it long ago as a Delphi bug but I guess it's still in there. I think it will be fixed with the upcoming Delphi 2009 as this version will be completely Unicode based and we can then use the normal Format routine again.<br /><br />As an alternative to using %p, you could also use the following:<br /><br /><pre class="code">SiMain.LogDebug('%.8x', [Cardinal(Pointer(myObj))]);</pre>]]></description>
			<author><![CDATA[Tobias Gurock]]></author>
			<link>http://www.gurock.com/support/forum/topic-post539.html#post539</link>
			<comments>http://www.gurock.com/support/forum/post-topic177-quotepost539.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Thu, 21 Aug 2008 18:47:51 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post539.html#post539</guid>
		</item>

		<item>
			<title><![CDATA[Re: Sync Button]]></title>
			<description><![CDATA[Hello Giuseppe,<br /><br />Great to hear that you like the Synchronize View feature and SmartInspect 3.0 in general. I think a toolbar icon for the Sync feature would be a good idea. I am not so sure about adding it to the context menu though because the menu is already quite crowded (but we will look into it). I personally use the shortcut for this feature (Ctrl+Y) and find it quite convenient to navigate through the list of views with the keyboard. <br /><br />Regarding the 4.0, we have some ideas about what we would like to do next but we haven't made any decisions yet. But we are looking into gathering feedback from our customers (probably with a survey or something similar) in the future.<br /><br />Thanks for the feedback!]]></description>
			<author><![CDATA[Tobias Gurock]]></author>
			<link>http://www.gurock.com/support/forum/topic-post538.html#post538</link>
			<comments>http://www.gurock.com/support/forum/post-topic176-quotepost538.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Thu, 21 Aug 2008 18:43:13 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post538.html#post538</guid>
		</item>

		<item>
			<title><![CDATA[Still Problem with %p specifier]]></title>
			<description><![CDATA[In SI 3.0.5<br />%p specifier still don't work<br /><br />I need write<br /><br />SiMain.LogDebug(Format('Test %p',[Pointer(myObj)])<br /><br />and not simple<br />SiMain.LogDebug('Test %p',[Pointer(myObj)])<br /><br />Regards <br />Ing Giuseppe Monteleone]]></description>
			<author><![CDATA[Giuseppe Monteleone]]></author>
			<link>http://www.gurock.com/support/forum/topic-post537.html#post537</link>
			<comments>http://www.gurock.com/support/forum/post-topic177-quotepost537.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Thu, 21 Aug 2008 15:37:24 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post537.html#post537</guid>
		</item>

		<item>
			<title><![CDATA[Sync Button]]></title>
			<description><![CDATA[Sync is really a fantastic feature but could be better:<br /><br />can you put a button on ribbon and a context menu voice to sync quickly with other view ?<br /><br />Thanks<br />Ing Giuseppe Monteleone<br /><br />P.S: SI 3.0 is perfect. What Will you invent next year for SI 4.0 ?]]></description>
			<author><![CDATA[Giuseppe Monteleone]]></author>
			<link>http://www.gurock.com/support/forum/topic-post536.html#post536</link>
			<comments>http://www.gurock.com/support/forum/post-topic176-quotepost536.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Thu, 21 Aug 2008 13:26:25 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post536.html#post536</guid>
		</item>

		<item>
			<title><![CDATA[Re: Stops Vista x64 from rebooting]]></title>
			<description><![CDATA[Hello,<br /><br />Thanks for the bug report. This problem is known and a fix is already included in 3.0.6.]]></description>
			<author><![CDATA[Tobias Gurock]]></author>
			<link>http://www.gurock.com/support/forum/topic-post535.html#post535</link>
			<comments>http://www.gurock.com/support/forum/post-topic175-quotepost535.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Tue, 19 Aug 2008 09:22:59 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post535.html#post535</guid>
		</item>

		<item>
			<title><![CDATA[Stops Vista x64 from rebooting]]></title>
			<description><![CDATA[3.0.5.x installed, try to reboot Windows and SmartInspect (running in the tray) always throws an error and blocks the reboot.  Vista shows me a dialog and I tell it to proceed with the reboot.<br /><br />I see that 3.0.6.x is available so I just downloaded it and will see/hope it fixes the issue.  <br /><br />FYI]]></description>
			<author><![CDATA[NC Software]]></author>
			<link>http://www.gurock.com/support/forum/topic-post534.html#post534</link>
			<comments>http://www.gurock.com/support/forum/post-topic175-quotepost534.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Mon, 18 Aug 2008 23:39:50 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post534.html#post534</guid>
		</item>

		<item>
			<title><![CDATA[Re: FEATURE - export settings]]></title>
			<description><![CDATA[Hello Piotr,<br /><br />Yes, you are right. Polishing up the HTML export unfortunately didn't make it into the 3.0 but it's definitely on our list. We also think about writing an exporter tool (with the help of the SmartInspect SDK) which can be used without the Console and which would make it easier to customize and automate the export of log files.]]></description>
			<author><![CDATA[Tobias Gurock]]></author>
			<link>http://www.gurock.com/support/forum/topic-post533.html#post533</link>
			<comments>http://www.gurock.com/support/forum/post-topic174-quotepost533.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Tue, 12 Aug 2008 16:08:27 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post533.html#post533</guid>
		</item>

		<item>
			<title><![CDATA[FEATURE - export settings]]></title>
			<description><![CDATA[Hello, <br />I think it would be useful to have ability to export visible columns content when saving log entries to html file. Currently, only log title is stored in html. I think it is very useful to have at least time column<br /><br />best regards<br />Piotr Rezmer]]></description>
			<author><![CDATA[Piotr Rezmer]]></author>
			<link>http://www.gurock.com/support/forum/topic-post532.html#post532</link>
			<comments>http://www.gurock.com/support/forum/post-topic174-quotepost532.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Mon, 11 Aug 2008 19:32:54 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post532.html#post532</guid>
		</item>

		<item>
			<title><![CDATA[SmartInspect 3.0 is available for download]]></title>
			<description><![CDATA[Hello,<br /><br />This is a quick note that we just uploaded the final version of SmartInspect 3.0 to our website. You can download the new trial version from our <a href="http://www.gurock.com/downloads/" title="http://www.gurock.com/downloads/" rel="nofollow">download area</a> and the full version from <a href="http://my.gurock.com" title="http://my.gurock.com" rel="nofollow">My Gurock.com</a>.<br /><br />We will officially launch SmartInspect 3.0 next week, so there aren't any announcements or updates to the What's New page yet. You can learn more about new features and enhancements on <a href="http://blog.gurock.com" title="http://blog.gurock.com" rel="nofollow">our blog</a>.]]></description>
			<author><![CDATA[Dennis Gurock]]></author>
			<link>http://www.gurock.com/support/forum/topic-post531.html#post531</link>
			<comments>http://www.gurock.com/support/forum/post-topic173-quotepost531.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Fri, 08 Aug 2008 17:50:21 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post531.html#post531</guid>
		</item>

		<item>
			<title><![CDATA[Re: SmartInspect 2.x and Vista]]></title>
			<description><![CDATA[Hello Darren,<br /><br />I suspect that this has something to do with the access rights of your web application. Vista has changed a lot in this regard when compared to XP. To check if this is really the problem, it would be great if you can assign an event handler to the SmartInspect Error event and see if your handler is called. An event handler can be assigned as follows:<br /><br /><pre class="code">public static void EventHandler(object sender, ErrorEventArgs args)<br />&#123;<br />    // Output the exception<br />   ...<br />&#125;<br /><br />...<br /><br />// Register our event handler for the error event.<br />SiAuto.Si.Error += new ErrorEventHandler(EventHandler);<br /></pre><br /><br /><pre class="code">Sub EventHandler(ByVal Sender As Object, ByVal Args As ErrorEventArgs)<br />    ' Output the error<br />    ...<br />End Sub<br /><br />...<br /><br />' Register our event handler for the error event.<br />AddHandler SiAuto.Si.Error, AddressOf EventHandler<br /></pre><br /><br />In the error event handler, you can either set a break point or output the passed exception as part of the ASP.NET page.]]></description>
			<author><![CDATA[Tobias Gurock]]></author>
			<link>http://www.gurock.com/support/forum/topic-post530.html#post530</link>
			<comments>http://www.gurock.com/support/forum/post-topic172-quotepost530.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Thu, 07 Aug 2008 11:45:05 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post530.html#post530</guid>
		</item>

		<item>
			<title><![CDATA[SmartInspect 2.x and Vista]]></title>
			<description><![CDATA[I am using SmartInspect with windows vista and IIS.<br />Under XP I get logging through tcp and file but when I setup my web application under Vista Ultimate, no logging occurs at all.<br /><br />Any ideas?]]></description>
			<author><![CDATA[Darren]]></author>
			<link>http://www.gurock.com/support/forum/topic-post529.html#post529</link>
			<comments>http://www.gurock.com/support/forum/post-topic172-quotepost529.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Thu, 07 Aug 2008 02:31:01 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post529.html#post529</guid>
		</item>

		<item>
			<title><![CDATA[SmartInspect 3.0 Preview Postings]]></title>
			<description><![CDATA[Hello,<br /><br />we have started to post about new features of the upcoming SmartInspect  3.0 release over on our blog:<br /><br /><a href="http://blog.gurock.com/" title="http://blog.gurock.com/" rel="nofollow">http://blog.gurock.com/</a><br /><br />We will continue to publish new postings over the next few days, so make sure to subscribe to our blog or to visit it regularly.]]></description>
			<author><![CDATA[Dennis Gurock]]></author>
			<link>http://www.gurock.com/support/forum/topic-post528.html#post528</link>
			<comments>http://www.gurock.com/support/forum/post-topic171-quotepost528.html</comments>
			<category><![CDATA[SmartInspect]]></category>
			<pubDate>Wed, 30 Jul 2008 16:53:17 GMT</pubDate>
			<guid isPermaLink="true">http://www.gurock.com/support/forum/topic-post528.html#post528</guid>
		</item>

	</channel>
</rss>