<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: JMP Access Violation - Likely Causes? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5647#M5646</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem that you report has been fixed for a future release.&amp;nbsp; Please do report these issues to technical support when you see them - we try to fix crashes as soon as possible and can often help you work around the underlying problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Sep 2015 12:21:01 GMT</pubDate>
    <dc:creator>danschikore</dc:creator>
    <dc:date>2015-09-10T12:21:01Z</dc:date>
    <item>
      <title>JMP Access Violation - Likely Causes?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5640#M5639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it's possible to answer this question - and of course it may not be - what are likely causes of a fatal error message that states that "JMP has performed an access violation and will close down", please?&amp;nbsp; For example, should I be looking out for an attempt to write data to a table that's locked, or something like that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've hit this problem every now and again during assorted scripting exercises over the years, and never really managed to pin down the reason for it.&amp;nbsp; Usually I manage to isolate the block of script within which the fatal error evidently occurs, and simply rewrite it a different way, after which the problem disappears.&amp;nbsp; As my scripting's improved over time I've encountered fewer and fewer such problems, but I still get one every now and then - and I'm looking at one right now in the middle of a quite complex script and wondering where to start.. Are there any likely causes I ought to be looking out for, or any dubious scripting constructions that are likely to generate such an error?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2012 18:54:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5640#M5639</guid>
      <dc:creator />
      <dc:date>2012-09-20T18:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Access Violation - Likely Causes?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5641#M5640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had this same issue twice in an hour. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2015 15:37:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5641#M5640</guid>
      <dc:creator>jenkins_macedo</dc:creator>
      <dc:date>2015-09-02T15:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Access Violation - Likely Causes?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5642#M5641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;An access violation can occur any time an invalid memory operation occurs, I'm not sure I've seen any particular pattern, but JMP seems incredibly robust to table operations so that's probably the last place I would look.&amp;nbsp; The problem of course if its hard and tedious to diagnose the location of the problem.&amp;nbsp; I usually place a Throw() in my code to try and abort execution before the crash occurs.&amp;nbsp; Then by moving the position of the Throw I can home-in on the area of code that is causing the problem.&amp;nbsp; Sometimes I have done something clearly stupid, other times it might be a couple of mistakes which in combination are catastrophic.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Here is an example.&amp;nbsp; A modal window is created with a handler for the validate event - the handler returns 1 or 0 indicating whether or not the window should close when OK is clicked:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;New Window&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: purple;"&gt;"Test"&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;&amp;lt;&amp;lt;&lt;STRONG&gt;Modal&lt;/STRONG&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;On Validate&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;(&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; txt &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;Trim&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;teb &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;Get Text&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt; &lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;Length&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;txt&lt;STRONG&gt;)&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10pt; font-family: Consolas;"&gt;0&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; isValid &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10pt; font-family: Consolas;"&gt;1&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; isValid &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10pt; font-family: Consolas;"&gt;0&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: green;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // return&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; isValid&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Lineup Box&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;NCol&lt;/SPAN&gt;&lt;STRONG style="font-size: 10pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: teal;"&gt;1&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt; Spacing&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="font-size: 10pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: teal;"&gt;10&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Text Box&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: purple;"&gt;"Enter something, anything, but something:"&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;)&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; teb &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;Text Edit Box&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: purple;"&gt;""&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;This works fine, you can run it without crashing JMP!&amp;nbsp; When we write a function or an event handler then the last thing evaluated is what gets returned (see Glue to understand why).&amp;nbsp; But at some point JMP introduced a Return function which makes "returning" more explicit - it works with functions but not event handlers like above.&amp;nbsp; So replacing isValid with Return(isValid) in the last line of the OnValidate will not work.&amp;nbsp; But JMP won't crash.&amp;nbsp; But if I were to mistakenly use the OnClose event then JMP gets unhappy and will give me an access violation:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: green;"&gt;// dont try this at home&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;New Window&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: purple;"&gt;"Test"&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;&amp;lt;&amp;lt;&lt;STRONG&gt;Modal&lt;/STRONG&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;On Close&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;(&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; txt &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;Trim&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;teb &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;Get Text&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt; &lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;Length&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;txt&lt;STRONG&gt;)&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10pt; font-family: Consolas;"&gt;0&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; isValid &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10pt; font-family: Consolas;"&gt;1&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="color: navy; font-family: Consolas; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; isValid &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 10pt; font-family: Consolas;"&gt;0&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="color: black; font-family: Consolas; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000dd; font-family: Consolas; font-size: 13.3333px;"&gt;Return&lt;/SPAN&gt;(isValid)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Lineup Box&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;NCol&lt;/SPAN&gt;&lt;STRONG style="font-size: 10pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: teal;"&gt;1&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt; Spacing&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="font-size: 10pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: teal;"&gt;10&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Text Box&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: purple;"&gt;"Enter something, anything, but something:"&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;)&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; teb &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: navy;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: #0000dd;"&gt;Text Edit Box&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: purple;"&gt;""&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG style="color: black; font-size: 10pt; font-family: Consolas;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2015 21:34:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5642#M5641</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2015-09-02T21:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Access Violation - Likely Causes?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5643#M5642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i also came across this problem. in my case it was very difficult to detect the cause since the whole script was a big loop and it would crash only after 20 or 30 individual runs. and this was after i made the script as robust as possible. at the end i found that if i mention the objects each time the program don't crash.&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;don't do this - &lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;dt10i &amp;lt;&amp;lt; go to( :Event Duration ) &amp;lt;&amp;lt; Move Selected Columns( After( “Event Date” ) ) &amp;lt;&amp;lt;&amp;nbsp; go to( 2 ) &amp;lt;&amp;lt; Clear column Selection;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do this instead:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;dt10i &amp;lt;&amp;lt; go to( :Duration );&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt10i &amp;lt;&amp;lt; Move Selected Columns( After( “Date” ) );&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt10i &amp;lt;&amp;lt; go to( 2 );&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt10i &amp;lt;&amp;lt; Clear column Selection;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i didn't find this issue documented and but i am sure i isolated it and it was the cause for the program crash in my case.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2015 15:54:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5643#M5642</guid>
      <dc:creator>ron_horne</dc:creator>
      <dc:date>2015-09-04T15:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Access Violation - Likely Causes?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5644#M5643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;JMP allows you to send multiple messages in 1 line of code but I there is no point in doing it - it's ugly, has ambiguous meaning, and makes debugging impossible.&amp;nbsp; So maybe JMP crashes are just a reminder to us to try and write decent code!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2015 19:31:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5644#M5643</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2015-09-04T19:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Access Violation - Likely Causes?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5645#M5644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the inputs. I think in the case the problem wasn't associated in anyways with whether or not a code was good or bad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2015 12:36:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5645#M5644</guid>
      <dc:creator>jenkins_macedo</dc:creator>
      <dc:date>2015-09-08T12:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Access Violation - Likely Causes?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5646#M5645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem was associated with the input of a text file which at the last few rows had character data in columns with numeric data. The table had over 291,000 thousand rows and those slightly misplaced data were in the last few (4) rows of the data table. I corrected those and it worked well and I have had the problem again. JMP Tech Support provided the exact row where the problem they thought happened, but after re-examining the data I found out the the input text data had few slightly misplaced data in the wrong fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2015 12:40:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5646#M5645</guid>
      <dc:creator>jenkins_macedo</dc:creator>
      <dc:date>2015-09-08T12:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Access Violation - Likely Causes?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5647#M5646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem that you report has been fixed for a future release.&amp;nbsp; Please do report these issues to technical support when you see them - we try to fix crashes as soon as possible and can often help you work around the underlying problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 12:21:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5647#M5646</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2015-09-10T12:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Access Violation - Likely Causes?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5648#M5647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have a script that demonstrates the crash, please do send it to &lt;A href="http://support.sas.com/ctx/supportform/createForm?ctry=us_JMP"&gt;JMP Technical Support&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 12:26:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5648#M5647</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2015-09-10T12:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Access Violation - Likely Causes?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5649#M5648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Dan for suggesting, i just filed it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Sep 2015 11:41:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5649#M5648</guid>
      <dc:creator>ron_horne</dc:creator>
      <dc:date>2015-09-11T11:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Access Violation - Likely Causes?</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5650#M5649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #555555;"&gt;Yes, I figured out that if you have Data Type (for example character, numeric, etc.) which should all be in different columns mixed up, you might run into this violation especially when you are dealing with large sums of data. In my case, few rows of my table was slightly overlapping, thus, i had numeric variables that should have been in the specific column with that variable name into a column that had character data type. I figured that out my carefully looking through the data table after JMP Tech Support closely identified, which rows in the data table caused the problem. Initially, they were assuming it was a system bug, but I figure out that that happened because some variables (as described previously) slightly overlapped starting from the 331,670 rows of the data table that i was working with when the crash/access violation occurred. I suggest you carefully make sure that each variable is approrpiately in the same column with the Data Type and Modeling Type the same for each of the columns. That is, you should not have a character variable in a numeric variable column. Even though sometimes we use numeric variable as character in the case of Zip Code. But, I think you got the idea. At least for my case that seems to be the problem. I solved it my just reloading the original text file and formatting the data again.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2015 12:14:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Access-Violation-Likely-Causes/m-p/5650#M5649</guid>
      <dc:creator>jenkins_macedo</dc:creator>
      <dc:date>2015-10-07T12:14:31Z</dc:date>
    </item>
  </channel>
</rss>

