<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Forex Software — Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
		<link>https://forexsb.com/forum/topic/4224/reporting-bugs-and-debugging-of-fsb-v2981-rc/</link>
		<atom:link href="https://forexsb.com/forum/feed/rss/topic/4224/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Reporting Bugs and Debugging of FSB v2.98.1 RC.]]></description>
		<lastBuildDate>Fri, 31 May 2013 17:03:20 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20093/#p20093</link>
			<description><![CDATA[<p>This thread was composed from post of another thread. It seams that the order of posting is broken. First 11 posts must be after this one <img src="https://forexsb.com/forum/img/smilies/smile.png" width="15" height="15" alt="smile" /> </p><p>Strange things happens some times.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Fri, 31 May 2013 17:03:20 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20093/#p20093</guid>
		</item>
		<item>
			<title><![CDATA[Re: Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20027/#p20027</link>
			<description><![CDATA[<p>I remember a comment in a Microsoft library code.</p><p>// This code was added by Steve. It doesn&#039;t do anything, but if we remove it, program crashes. No one knows why. Please do not remove the following code.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Fri, 31 May 2013 08:45:54 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20027/#p20027</guid>
		</item>
		<item>
			<title><![CDATA[Re: Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20026/#p20026</link>
			<description><![CDATA[<p>No, reloading is working just fine.&nbsp; Very very odd indeed!&nbsp; Lets hope a try/catch is an acceptable offering to the Microsoft gods <img src="https://forexsb.com/forum/img/smilies/wink.png" width="15" height="15" alt="wink" /></p>]]></description>
			<author><![CDATA[null@example.com (slipshod)]]></author>
			<pubDate>Fri, 31 May 2013 08:43:12 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20026/#p20026</guid>
		</item>
		<item>
			<title><![CDATA[Re: Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20025/#p20025</link>
			<description><![CDATA[<p>!?!?!?! Very strange things happen in the mist of the dark Microsoft forest. </p><p>I&#039;ll add this try ... catch in the distribution. </p><p>I suppose that if you press Ctrl + I (reload indicators) it will crash because the try...catch covers startup loading only.</p><p>I think we can close the case for now due to missing evidences.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Fri, 31 May 2013 08:39:45 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20025/#p20025</guid>
		</item>
		<item>
			<title><![CDATA[Re: Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20024/#p20024</link>
			<description><![CDATA[<p>Ok, with that change made I&#039;m not getting any crashing at all, Debug build or Release build.&nbsp; No messageboxes are popping up, its all just working.&nbsp; Its rebuilding the Libraries too (if I delete them before starting the app).</p>]]></description>
			<author><![CDATA[null@example.com (slipshod)]]></author>
			<pubDate>Fri, 31 May 2013 08:34:17 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20024/#p20024</guid>
		</item>
		<item>
			<title><![CDATA[Re: Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20023/#p20023</link>
			<description><![CDATA[<p>Can you replace &quot;CustomIndicators.LoadCustomIndicators();&quot;<br />on line 108 of file Action.cs in folder UserInterface</p><p>with debugging code:<br /></p><div class="codebox"><pre><code>try
{
    CustomIndicators.LoadCustomIndicators();
}
catch(Exception e)
{
    string msg = e.Message;
    if(e.InnerException != null &amp;&amp; e.InnerException.Message != &quot;&quot;)
        msg += Environment.NewLine + e.InnerException.Message;
    
    MessageBox.Show(msg, &quot;CustomIndicators.LoadCustomIndicators();&quot;, 
                    MessageBoxButtons.OK, 
                    MessageBoxIcon.Error);
}</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Fri, 31 May 2013 08:26:16 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20023/#p20023</guid>
		</item>
		<item>
			<title><![CDATA[Re: Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20022/#p20022</link>
			<description><![CDATA[<p>Unfortunately that&#039;s not an option - its a computer owned by my employer &amp; they wouldn&#039;t allow external access like that.&nbsp; </p><p>What I can do right now is run FSB directly (not the launcher) compiled using the Debug target, so I&#039;m able to actually use the application now.&nbsp; I know that doesn&#039;t help you narrow down what went wrong ... perhaps a full recursive diff of the sourcecode between 2.93 and 2.98 might be useful?&nbsp; Or alternately, progressing with development and hope my case is an isolated incident that won&#039;t happen elsewhere.</p>]]></description>
			<author><![CDATA[null@example.com (slipshod)]]></author>
			<pubDate>Fri, 31 May 2013 08:23:07 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20022/#p20022</guid>
		</item>
		<item>
			<title><![CDATA[Re: Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20020/#p20020</link>
			<description><![CDATA[<div class="quotebox"><blockquote><p>Running a release version built from source crashes too.</p></blockquote></div><p>????</p><p>Can you run &quot;Windows Remote Assistance&quot;, save invitation file and send me it via PM together with the password?</p><p>EDIT<br />Opss no attachments to PM. You can send me the file via email.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Fri, 31 May 2013 08:13:16 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20020/#p20020</guid>
		</item>
		<item>
			<title><![CDATA[Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20019/#p20019</link>
			<description><![CDATA[<p>I&#039;ve compiled the source in SharpDevelop, had to change the target to 32 bit else the debugger wouldn&#039;t work.&nbsp; Stepping through as it runs, it goes into a tight loop calling WndProc in LauncherForm.cs line 51 over &amp; over, then crashes on the if statement.&nbsp; I&#039;m not sure what to make of this, and SharpDevelop doesn&#039;t give me a callstack when the crash occurs.</p><p>If I change the project to run Forex Strategy Builder directly instead of the Launcher, it runs without crashing, and builds the libraries in the process.&nbsp; Running the distributed FSB in this way results in an immediate crash.&nbsp; Running a release version built from source crashes too.&nbsp; Unfortunately it seems I&#039;m not getting much closer here.</p>]]></description>
			<author><![CDATA[null@example.com (slipshod)]]></author>
			<pubDate>Fri, 31 May 2013 07:58:19 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20019/#p20019</guid>
		</item>
		<item>
			<title><![CDATA[Re: Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20092/#p20092</link>
			<description><![CDATA[<p>Yes, FST RC works.</p>]]></description>
			<author><![CDATA[null@example.com (slipshod)]]></author>
			<pubDate>Fri, 31 May 2013 07:04:15 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20092/#p20092</guid>
		</item>
		<item>
			<title><![CDATA[Re: Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20091/#p20091</link>
			<description><![CDATA[<p>@slipshod does latest FST RC works? It uses the same changes as in FSB RC.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Fri, 31 May 2013 06:47:50 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20091/#p20091</guid>
		</item>
		<item>
			<title><![CDATA[Re: Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20090/#p20090</link>
			<description><![CDATA[<div class="codebox"><pre><code>    &lt;ProblemSignatures&gt;
        &lt;EventType&gt;CLR20r3&lt;/EventType&gt;
        &lt;Parameter0&gt;forex strategy builder.exe&lt;/Parameter0&gt;
        &lt;Parameter1&gt;2.98.1.0&lt;/Parameter1&gt;
        &lt;Parameter2&gt;51a58205&lt;/Parameter2&gt;
        &lt;Parameter3&gt;System.Xml&lt;/Parameter3&gt;
        &lt;Parameter4&gt;2.0.0.0&lt;/Parameter4&gt;
        &lt;Parameter5&gt;4ca2ba8e&lt;/Parameter5&gt;
        &lt;Parameter6&gt;210c&lt;/Parameter6&gt;
        &lt;Parameter7&gt;230&lt;/Parameter7&gt;
        &lt;Parameter8&gt;System.InvalidOperationException&lt;/Parameter8&gt;
    &lt;/ProblemSignatures&gt;</code></pre></div><p><strong>System.InvalidOperationException</strong> this is the error, but it doesn&#039;t help much!?</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Fri, 31 May 2013 06:44:13 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20090/#p20090</guid>
		</item>
		<item>
			<title><![CDATA[Re: Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20089/#p20089</link>
			<description><![CDATA[<p>Ok, the .NET repair finished, another reboot, and FSB is still crashing.&nbsp; 2.83 works, 2.76 works and Pro works, its just the RC that doesn&#039;t want to play ball.&nbsp; I&#039;ve attached the crash report XML in case that helps, I also have a 10mb memory dump file if that&#039;s of any use.</p>]]></description>
			<author><![CDATA[null@example.com (slipshod)]]></author>
			<pubDate>Fri, 31 May 2013 06:36:47 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20089/#p20089</guid>
		</item>
		<item>
			<title><![CDATA[Re: Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20088/#p20088</link>
			<description><![CDATA[<div class="quotebox"><blockquote><p>Edit: After the magic reboot it installs.&nbsp; I start Sharp Develop...</p></blockquote></div><p>I think you have to download FSB source code from GitHub and to compile it in SharpDevelop.<br />It will complain about Processor type 64, but it can be change in project settings. <br />Probably I&#039;ll have to take a look vie Windows Remote Assistance.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Fri, 31 May 2013 06:34:56 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20088/#p20088</guid>
		</item>
		<item>
			<title><![CDATA[Re: Reporting Bugs and Debugging of FSB v2.98.1 RC]]></title>
			<link>https://forexsb.com/forum/post/20087/#p20087</link>
			<description><![CDATA[<p>I&#039;m compiling FSB targeting .NET 2 but MS Visual Studio uses features from .NET 4. They promised that support back compatibility. There were several updates to .NET 2 and also a service pack. All this works on my development machines but I have everything updated including the additional updates.</p><p>I&#039;m installing now virtual machine to test FSB on Win XP with pure .NET 2.0.<br />This work takes great amount of time. </p><p>I&#039;ll try to compile FSB on .NET 2 but if it shows too much errors I&#039;ll announce a requirement for .NET 4 Client Profile for FSB and FST.</p>]]></description>
			<author><![CDATA[null@example.com (Popov)]]></author>
			<pubDate>Fri, 31 May 2013 06:29:37 +0000</pubDate>
			<guid>https://forexsb.com/forum/post/20087/#p20087</guid>
		</item>
	</channel>
</rss>
