﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - crashes</title><link>http://www.intersoftsolutions.com/Community/Tags/crashes/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>64 bit build crashes in 32 bit</title><link>http://www.intersoftsolutions.com/Community/Tags/crashes/</link><pubDate>Tue, 15 Mar 2011 22:53:31 GMT</pubDate><dc:creator>rp36</dc:creator><category>crashes</category><category>WPF</category><description>&lt;p&gt;I'm working on ClientUI based WPF application.  I'm building the WPF application on a 64bit desktop but they desktop are failing on 32 bit systems with multiple exceptions mainly.  One such exception:&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;Value was either too large or too small in Convert.ToIn32 function, called from System.Windows.Documents.CaretElement.Win32SetCaretPos and System.Windows.UIElement.Arrange.&lt;/pre&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I was wondering, if I have to take special care for ClientUI components to run on 32-bit vs 64-bit system.  Please let me know.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Thanks!&lt;br /&gt;&lt;/p&gt;</description></item><item><title>WebGrid Client Side Refresh Crashes IE8</title><link>http://www.intersoftsolutions.com/Community/Tags/crashes/</link><pubDate>Fri, 07 May 2010 10:53:51 GMT</pubDate><dc:creator>gdexter</dc:creator><category>WebGrid</category><category>crashes</category><description>&lt;p&gt;I have a web grid inside of a web pane. When a user clicks on a row a Web Dialog box is opened a more information is displayes regarding the item. The user can edit the information. When the Dialog box is closed, in the OnClosed event I call a client side refresh of the Web Grid. It processes for a second or two and then the whole browser is closed with an Unhandled Exception in iexplorer process. &lt;/p&gt;&lt;pre&gt;&lt;pre&gt;/*
Returns the Site Grid object
*/
function GetGrid(gridName)
{
    var grid = ISGetObject(gridName);
    return (grid);
}

/*
Refreshes the grid data and UI
*/
function RefreshGrid(grid)
{
    grid.ClearSelectedObject();
    grid.RootTable.UpdateUI();
    grid.RefreshAll();
}

/*
Load the request editor dialog
*/
function LoadWorkScheduleEditorControl(editType, taskID, jobType)
{
    if (_jobDialog == null)
    {
        _jobDialog = ISGetObject("DialogTaskEditor");
    }

    var contentUrl = "Windows/Dialogs/" &amp;#43; jobType &amp;#43; "/WorkSchedule.aspx?method=" &amp;#43; editType &amp;#43; "&amp;amp;task=" &amp;#43; taskID;
    _jobDialog.ReuseIFrame = true;
    _jobDialog.SetContentURL(contentUrl);
    _jobDialog.ClientSideEvents.OnClosed = TaskEditor_OnClosed;
    _jobDialog.ShowDialog();
}

/*
Event handler for closing request editor dialog
*/
function TaskEditor_OnClosed(id, dialogResult) 
{
    try 
    {
        _jobDialog.SetContentURL(_inactiveDialogURL);
//this is where it fails and closes the browser
        RefreshGrid(GetGrid("WebGridTaskList"));
    }
    catch (e) 
    {
        alert(e.Message);
    }
}&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Any ideas?&lt;/p&gt;&lt;/pre&gt;</description></item></channel></rss>