User Jamey McElveen - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T13:06:12Z http://stackoverflow.com/feeds/user/30099 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1776062/how-can-i-retrieve-the-current-position-of-the-vertices-after-they-have-been-tran 1 how can I retrieve the current position of the vertices after they have been transformed? Jamey McElveen 2009-11-21T17:10:42Z 2009-11-25T07:15:42Z <p>How can I retrieve the current position of the vertices after they have been transformed? I have the following code....</p> <p>How can I get the position of the "modelVertices" after the transform has been applied?</p> <p>I am really after the screen coordinates so I can tell if a vert has been clicked by the mouse.</p> <p><hr></p> <pre><code>glMatrixMode(GL_MODELVIEW); // save model transform matrix GLfloat currentModelMatrix[16]; glGetFloatv(GL_MODELVIEW_MATRIX, currentModelMatrix); // clear the model transform matrix glLoadIdentity(); // rotate the x and y axis of the model transform matrix glRotatef(rotateX, 1.0f, 0.0f, 0.0f); glRotatef(rotateY, 0.0f, 1.0f, 0.0f); // reapply the previous transforms glMultMatrixf(currentModelMatrix); glClearColor(0.1f, 0.1f, 0.1f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); // since each vertes is defined in 3D instead of 2D parameter one has been // upped from 2 to 3 to respect this change. glVertexPointer(3, GL_FLOAT, 0, modelVertices); glEnableClientState(GL_VERTEX_ARRAY); </code></pre> http://stackoverflow.com/questions/1391151/how-do-i-install-xmllibxml-for-activeperl 1 How do I install XML::LibXML for ActivePerl? Jamey McElveen 2009-09-07T22:18:21Z 2009-11-23T23:11:13Z <p>I am new to Perl and I am using <a href="http://www.activestate.com/activeperl/" rel="nofollow">ActivePerl</a>. I am getting the following error:</p> <blockquote> <p>Can't locate XML/LibXML.pm in @INC...</p> </blockquote> <p>I have tried everything but cannot find the steps to install the "correct" module for XML::LibXML.</p> <p>Here is exactly what is going on. I am running a script from a command prompt:</p> <blockquote> <p>c:\temp>perl myscript.pl</p> </blockquote> <p>The first few lines of myscript.pl:</p> <pre><code>#!/usr/bin/perl use Archive::Zip qw( :ERROR_CODES :CONSTANTS ); use HTTP::Date; use XML::Parser; use LWP::UserAgent; use XML::LibXML; use Archive::Extract; use Encode; use LWP::Simple; require HTTP::Request; ... </code></pre> <p>Then I get this error:</p> <blockquote> <p>c:\temp>perl myscript.pl Can't locate XML/LibXML.pm in @INC (@INC contains: C:/Perl/site/lib C:/Perl/lib .) at myscript.pl line 7. BEGIN failed--compilation aborted at myscript.pl line 7</p> </blockquote> http://stackoverflow.com/questions/986180/how-can-i-determine-which-exceptions-can-be-thrown-by-a-given-method 8 How can I determine which exceptions can be thrown by a given method? Jamey McElveen 2009-06-12T11:29:43Z 2009-11-12T19:37:21Z <p>My question is really the same as this one <a href="http://stackoverflow.com/questions/264747/finding-out-what-exceptions-a-method-might-throw-in-c">"Finding out what exceptions a method might throw in C#"</a>. However, I would really like to know if anyone knows of a way to determine the stack of all the exceptions that may be thrown by a given method. I am hoping for a tool or utility that I can analyze code at compile time or through reflection like FxCop, StyleCop, or NCover. I do not need this information at run time I just want to make sure we are trapping exceptions and logging them correctly in out code. </p> <p>We are currently trapping the exceptions that we know about and logging all the wild cards. This does work well; however, i was just hoping someone has used or knows of a tool that can discover this information.</p> http://stackoverflow.com/questions/1715697/what-is-the-best-ide-to-develop-android-apps-in 1 What is the best IDE to develop Android apps in? Jamey McElveen 2009-11-11T14:56:09Z 2009-11-11T15:22:11Z <p>I am about to start developing an android app and need to get an IDE. Eclipse and the android eclipse plugin appears to be the natural choice. However I am familiar with intelliJ and re-sharper so I would prefer use intelliJ. </p> <p>Has anyone used http://code.google.com/p/idea-android/">http://code.google.com/p/idea-android/? Is this any good?</p> <p>Should I just bite the bullet and learn Eclipse?</p> http://stackoverflow.com/questions/1710653/is-there-a-free-code-to-html-syntax-highlighter-written-in-c 0 Is there a free code to html syntax highlighter written in C#? Jamey McElveen 2009-11-10T19:44:41Z 2009-11-10T19:55:53Z <p>Is there a free code to html syntax highlighter written in C#? I am looking for something I can host in an .net mvc app</p> http://stackoverflow.com/questions/1650102/what-is-a-good-microsoft-sql-database-export-import-tool 0 What is a good Microsoft SQL Database Export / Import tool? Jamey McElveen 2009-10-30T14:25:13Z 2009-10-31T12:38:04Z <p>I need a tool that will look at a Microsoft SQL Server database and export the data as a SQL script. I want to be able to run the script on another box with an empty database and insert all the data from the previous one without having to muck with the index's due to ref-integ constraints.</p> http://stackoverflow.com/questions/1650102/what-is-a-good-microsoft-sql-database-export-import-tool/1654261#1654261 1 Answer by Jamey McElveen for What is a good Microsoft SQL Database Export / Import tool? Jamey McElveen 2009-10-31T12:38:04Z 2009-10-31T12:38:04Z <p>I decided to go with <a href="http://www.red-gate.com/products/SQL%5FPackager/index.htm" rel="nofollow">ReadGate SQL Packager</a> it create a very nice script for the entire DB or an exe that will install it if necessary</p> http://stackoverflow.com/questions/1643086/can-i-accept-an-image-that-is-dragging-in-html 0 Can I accept an image that is dragging in HTML? Jamey McElveen 2009-10-29T11:30:11Z 2009-10-29T12:25:19Z <p>In many browsers today you can click and drag images. Can I leverage this in any way? Could I receive an event when an image is dragged and dropped on top of another image in the same browser window?</p> http://stackoverflow.com/questions/899209/how-do-i-test-if-a-string-is-empty-in-objective-c 5 How do I test if a string is empty in Objective C? Jamey McElveen 2009-05-22T18:12:48Z 2009-10-27T13:42:10Z <p>How do I test if an <code>NSString</code> is empty in Objective C?</p> http://stackoverflow.com/questions/1596452/how-do-you-get-an-xmlwriter-to-write-an-html-tag-with-xmlns-and-xmllang 0 How do you get an XmlWriter to write an HTML tag with xmlns and xml:lang? Jamey McElveen 2009-10-20T18:26:15Z 2009-10-20T18:36:00Z <p>I am using an XmlWriter to render HTML. How can I get an XmlWriter to emit a proper tag that looks like this?</p> <pre><code>&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"&gt; </code></pre> <p>here is what I have so far</p> <pre><code> var xml = XmlWriter.Create(HtmlFileName, new XmlWriterSettings { Indent = true, OmitXmlDeclaration = true}); xml.WriteDocType("html", "-//W3C//DTD XHTML 1.0 Transitional//EN", "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd", null); xml.WriteStartElement("html"); xml.WriteAttributeString("xmlns", "http://www.w3.org/1999/xhtml"); ... </code></pre> <p>The last line crashes</p> http://stackoverflow.com/questions/273350/iphone-and-html5-cache-manifest 1 iPhone and HTML5 Cache Manifest Jamey McElveen 2008-11-07T19:35:08Z 2009-09-28T15:07:27Z <p>I am trying to build an iPhone web application using ASP.NET. The page is dynamically rendered once for each visitor. At this point the page can be bookmarked and it will never change again for that visitor. For this reason it should be cached locally from that point on so the application will run if referenced from the bookmark even if no network connection is available. No matter what I try the phone continues to request the page from the server forcing a re-render or it fails if the phone is offline. </p> <p><a href="http://stackoverflow.com/users/30506/louis-gerbarg">Louis Gerbarg</a> suggested in <a href="http://stackoverflow.com/questions/264367/iphone-web-app-cache-persistence">this</a> post that I use HTML5 Cache Manifest to get this working however following the <a href="http://www.w3.org/TR/offline-webapps/#offline" rel="nofollow">w3.org docs</a> does not appear to work for the iPhone. Does anyone have a good example where application cache is working?</p> http://stackoverflow.com/questions/537526/do-you-inflate-your-estimated-project-completion-dates 41 Do you inflate your estimated project completion dates? Jamey McElveen 2009-02-11T16:13:51Z 2009-09-27T07:08:45Z <p>Do you inflate your estimated completion dates? If so why? How much? </p> <p>I tend to inflate mine a little because I can be overly optimistic.</p> http://stackoverflow.com/questions/809682/error-using-ssl-cert-with-php 0 Error using ssl cert with PHP Jamey McElveen 2009-05-01T00:11:35Z 2009-09-26T23:34:51Z <p>I am new to php and I am getting this error trying to load a cert</p> <pre><code>jameys-macbookpro41:~ user$ php -f ~/Sites/providerService.php </code></pre> <p>Warning: stream_socket_client(): Unable to set local cert chain file `cert.pem'; Check that your cafile/capath settings include details of your certificate and its issuer in /Users/jamey/Sites/providerService.php on line 27</p> <p>cert.pem is in the same folder as the php file. the file cert.pem was created in the Apple keychain tool</p> <pre><code>class pushNotifications { ... private $sslPem = 'cert.pem'; ... function connectToAPNS(){ $streamContext = stream_context_create(); stream_context_set_option($streamContext, 'ssl', 'local_cert', $this-&gt;sslPem); </code></pre> <p>Thanks for any help!</p> http://stackoverflow.com/questions/1433058/is-there-a-webclient-object-that-can-be-used-in-monotouch 0 Is there a WebClient object that can be used in MonoTouch? Jamey McElveen 2009-09-16T13:45:19Z 2009-09-23T23:55:21Z <p>Is there a WebClient object that can be used in MonoTouch?</p> http://stackoverflow.com/questions/1408157/how-can-i-get-the-raw-xml-from-an-ixmldomnodelist-in-microsoft-access 0 How can I get the raw xml from an IXMLDOMNodeList in Microsoft Access? Jamey McElveen 2009-09-10T22:59:13Z 2009-09-12T01:30:13Z <p>How can I extract raw Xml text from an MSXML2 - IXMLDOMNodeList in Microsoft Access?</p> http://stackoverflow.com/questions/1148143/what-are-some-good-iphone-3d-2d-opengl-es-game-tutorials/1396324#1396324 0 Answer by Jamey McElveen for What are some good iPhone 3D / 2D OpenGL ES game tutorials? Jamey McElveen 2009-09-08T21:03:24Z 2009-09-08T21:03:24Z <p>I have learned the most for Jeff LaMarche's series, great stuff.<br /> <a href="http://iphonedevelopment.blogspot.com/2009/05/opengl-es-from-ground-up-table-of.html" rel="nofollow">http://iphonedevelopment.blogspot.com/2009/05/opengl-es-from-ground-up-table-of.html</a></p> http://stackoverflow.com/questions/1354947/iphone-game-development/1396316#1396316 1 Answer by Jamey McElveen for Iphone Game Development Jamey McElveen 2009-09-08T21:01:30Z 2009-09-08T21:01:30Z <p>I have learned the most for Jeff LaMarche's series, great stuff.<br /> <a href="http://iphonedevelopment.blogspot.com/2009/05/opengl-es-from-ground-up-table-of.html" rel="nofollow">http://iphonedevelopment.blogspot.com/2009/05/opengl-es-from-ground-up-table-of.html</a></p> http://stackoverflow.com/questions/1360462/can-i-turn-off-the-automatic-single-instance-feature-in-windows-mobile-6 0 Can I turn off the automatic single instance feature in Windows Mobile 6? Jamey McElveen 2009-09-01T04:01:38Z 2009-09-01T12:36:39Z <p>Windows Mobile 6 single instances applications by default can I turn off or override this behavior? This is needed if one needs to automatically restart or self update an application.</p> http://stackoverflow.com/questions/1358390/how-can-i-perform-application-restart-in-windows-mobile-6 2 How can I perform Application.Restart() in Windows Mobile 6? Jamey McElveen 2009-08-31T17:14:46Z 2009-08-31T22:12:03Z <p>I need to restart a windows mobile 6 application.</p> <p>Here is the code I have tried but it just exits and does not restart the app.</p> <pre><code>public static void RestartApplication() { var fileName = Assembly.GetExecutingAssembly().GetName().CodeBase; var startInfo = new ProcessStartInfo { FileName = fileName, }; Process.Start(startInfo); Application.Exit(); } </code></pre> <p>Thanks!</p> http://stackoverflow.com/questions/1307188/how-can-i-respond-to-the-statuscode-of-webclient-before-it-throws-an-exception 2 How can I respond to the StatusCode of WebClient before it throws an exception. Jamey McElveen 2009-08-20T16:01:15Z 2009-08-20T16:41:32Z <p>We are writing a REST like set of services and we are returning errors as different StatusCodes. </p> <p>In our client application we we prefer if our work flow did not require us to catch and cast an exception to discover the error code.</p> <p>Is there a way to tell the WebClient or HttpWebRequest to stop throwing exceptions when it encounters a StatusCode other than 200? </p> http://stackoverflow.com/questions/713874/how-to-write-a-custom-mvc-actionfilterattribute-that-redirects-a-facebook-applica 1 How to write a custom MVC ActionFilterAttribute that redirects a facebook application Jamey McElveen 2009-04-03T13:22:15Z 2009-07-24T14:56:01Z <p>I need an attribute that handles Authorization for my controllers. This is for a facebook application and there are a few hurdles surrounding the problem.</p> <p>What I really need is the equivalent to a server.transfer but of course that is not an option in ASP MVC. A redirect will not work because of the way facebook consumes the application.</p> <p>Is there an a way I can re-route from within an ActionFilterAttribute? </p> <pre><code>public class FbAuthorize : ActionFilterAttribute { public override void OnActionExecuting(ActionExecutingContext filterContext) { if (!Service.SignedIn()) RouteToAction("Account", "Index"); // Fictional method (I wish it existed) } } </code></pre> http://stackoverflow.com/questions/635123/what-is-a-good-tool-or-site-to-use-to-performance-test-a-web-page-site 4 What is a good tool or site to use to performance test a web page/site? Jamey McElveen 2009-03-11T15:46:17Z 2009-07-18T22:31:17Z <p>What is a good tool or site to use to performance test a web page/site? I am trying to find a good baseline to detect how fast my page will load on one hosting provider vs another. I initially used <a href="http://www.freespeedtest.com/" rel="nofollow">http://www.freespeedtest.com/</a> but like to get opinions and links for others.</p> http://stackoverflow.com/questions/1093919/what-is-the-most-hated-error-you-have-encounter-when-developing-for-the-iphone 6 What is the most hated error you have encounter when developing for the iPhone? [closed] Jamey McElveen 2009-07-07T18:16:25Z 2009-07-07T19:44:27Z <p>Ever language has their famous and painfull errors. I will be fun to learn which errors earn this reputation when developing for the iPhone.</p> <p>Please list yours!</p> <p>I agree with <a href="http://stackoverflow.com/users/44269/generictypetea">GenericTypeTea</a> If you can please list the error code/message and the cause to make for a more useful post. </p> http://stackoverflow.com/questions/1093919/what-is-the-most-hated-error-you-have-encounter-when-developing-for-the-iphone/1093920#1093920 5 Answer by Jamey McElveen for What is the most hated error you have encounter when developing for the iPhone? Jamey McElveen 2009-07-07T18:16:34Z 2009-07-07T18:16:34Z <p>I hate this one EXC_BAD_ACCESS (sometimes called EXEC_BAD_ACCESS)</p> http://stackoverflow.com/questions/1039481/where-can-i-find-an-iphone-opengl-es-example-that-responds-to-touch 4 Where can I find an iPhone OpenGL ES Example that responds to touch? Jamey McElveen 2009-06-24T16:33:50Z 2009-07-07T18:00:11Z <p>I would like to find an iPhone OpenGL ES Example that responds to touch. Ideally it would meet these requirements:</p> <ul> <li>Displays a 3D object in the center of the screen like a cube</li> <li>Maps a texture to the cube surfaces</li> <li>Should move the camera around the cube as you drag your finger</li> <li>Should zoom the camera in and out on the cube by pinching</li> <li>Optionally has a background behind the cube that wraps around the back of the camera.(for example this could create the effect of the cube being in space) </li> </ul> <p>Has anyone seen one or more examples that can do these or at least render the cube with the texture?</p> http://stackoverflow.com/questions/1032981/why-would-i-get-this-error-intermittently-the-server-was-not-found-or-was-not-a 3 Why would I get this error intermittently? "The server was not found or was not accessible" Jamey McElveen 2009-06-23T14:40:18Z 2009-06-23T14:45:11Z <p>We keep getting this error randomly in our web application.</p> <blockquote> <p>System.Data.SqlClient.SqlException: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)</p> </blockquote> <p>It would make sense if we got the error ever time but to get it intermittently suggest something else is going on. </p> <p>Has anyone experienced this? Any suggestions or theories? </p> <p>Thanks!</p> http://stackoverflow.com/questions/878681/is-there-anything-i-can-do-to-make-help-load-faster-in-visual-studio-2008 2 Is there anything I can do to make "help" load faster in Visual Studio 2008? Jamey McElveen 2009-05-18T16:52:03Z 2009-05-18T17:18:42Z <p>Loading Help or clicking F1 in Visual Studio is horribly slow to load and has been on ever PC I have installed it on. Is there any optimizations that can be employed to ease this pain?</p> <p>This is not the same question as <a href="http://stackoverflow.com/questions/8440/visual-studio-optimizations">Visual Studio Optimizations</a> I am just trying to solve the problem with help loading.</p> http://stackoverflow.com/questions/864794/how-can-i-change-the-way-mvc-renders-an-action-link-dynamically 1 How can I change the way MVC renders an action link dynamically? Jamey McElveen 2009-05-14T17:54:53Z 2009-05-15T12:31:06Z <p>I need to change the way MVC is rendering action links(and form's and url's, etc) based on a configuration setting. I am writing a facebook application using MS MVC and my action links need to render link so:</p> <pre><code>&lt;a href="/MyFBApplication/Home/Index/"&gt;home&lt;/a&gt; </code></pre> <p>clicking the above link would browse to:<br /> <em><a href="http://apps.facebook.com/MyFBApplication/Home/Index/" rel="nofollow">http://apps.facebook.com/MyFBApplication/Home/Index/</a></em></p> <p>"MyFBApplication" is the name of the facebook application. To build the link I started by calling</p> <pre><code>Html.ActionLink("Home", "Index", "Home") </code></pre> <p>When a user click the link facebook will then make a request to this link under the covers:</p> <p><em><a href="http://www.myapplicationserver.com/facebook/123456/Home/Index/" rel="nofollow">http://www.myapplicationserver.com/facebook/123456/Home/Index/</a></em><br /> <em>(123456 is client id and is needed)</em></p> <p>Then response from here is processed by facebook and displayed to the user as:<br /> <em><a href="http://apps.facebook.com/MyFBApplication/Home/Index/" rel="nofollow">http://apps.facebook.com/MyFBApplication/Home/Index/</a></em></p> <p>As mentioned above facebook request the page data behind the scenes from.<br /> <em><a href="http://www.myapplicationserver.com/facebook/123456/Home/Index/" rel="nofollow">http://www.myapplicationserver.com/facebook/123456/Home/Index/</a></em></p> <p>The problem is a call to </p> <pre><code>Html.ActionLink("Home", "Index", "Home") </code></pre> <p>will render a link that leads to<br /> <em><a href="http://apps.facebook.com/facebook/123456/Home/Index/" rel="nofollow">http://apps.facebook.com/facebook/123456/Home/Index/</a></em></p> <p>and I need it to lead to:<br /> <em><a href="http://apps.facebook.com/MyFBApplication/Home/Index/" rel="nofollow">http://apps.facebook.com/MyFBApplication/Home/Index/</a></em></p> <p>I did get it work properly buy building a new set of extension methods.</p> <pre><code> Html.FacebookActionLink("Home", "Index", "Home") Html.FacebookBeginForm("Index", "Home") Html.Facebook(etc) </code></pre> <p>But this has a "smell" to it. I would like to find a place where I can intercept the plumbing of Html.ActionLink() in process and change the output. Then I can use all the standard calls.</p> <p>Thanks!</p> http://stackoverflow.com/questions/659962/what-type-of-performance-should-i-expect-out-of-web-services 0 What type of performance should I expect out of web services? Jamey McElveen 2009-03-18T20:27:40Z 2009-05-13T18:59:59Z <p>What type of performance should I expect out of web services? I have an application that is averaging between 2 an 7 call per second on a simple GetServerTime() method. This method only returns a date from the server. I am using WCF and making the call over SSL. I know this question is really relative but I am just looking for some ballpark figures.</p> http://stackoverflow.com/questions/829376/who-is-a-good-host-for-a-realtime-tcp-ip-game-server 5 Who is a good host for a realtime TCP/IP game server? Jamey McElveen 2009-05-06T12:42:22Z 2009-05-06T18:44:54Z <p>I a trying to set up a real time game server that runs a game I am writing as a C# .NET 3.5 service. The game is similar to classic pong so I need to send real time feedback to both clients through a persistent socket connect to the server.</p> <p>This is an example of how it is coded. <a href="http://www.codeproject.com/kb/IP/socketsByBobJanova.aspx" rel="nofollow">http://www.codeproject.com/kb/IP/socketsByBobJanova.aspx</a></p> <p>Does anyone know of any hosting services that can support this? I am only concerned with getting an reasonably priced host that I can test in for now. </p> http://stackoverflow.com/questions/1710653/is-there-a-free-code-to-html-syntax-highlighter-written-in-c/1710749#1710749 Comment by Jamey McElveen on Is there a free code to html syntax highlighter written in C#? Jamey McElveen 2009-11-11T20:56:25Z 2009-11-11T20:56:25Z Thanks for the code!!! http://stackoverflow.com/questions/1650102/what-is-a-good-microsoft-sql-database-export-import-tool/1650155#1650155 Comment by Jamey McElveen on What is a good Microsoft SQL Database Export / Import tool? Jamey McElveen 2009-10-30T14:36:06Z 2009-10-30T14:36:06Z Thanks for your response! I need this for Microsoft SQL not MySQL. That was my bad I updated the question to be more clear. Sorry for the confusion. http://stackoverflow.com/questions/1643086/can-i-accept-an-image-that-is-dragging-in-html/1643103#1643103 Comment by Jamey McElveen on Can I accept an image that is dragging in HTML? Jamey McElveen 2009-10-30T14:20:34Z 2009-10-30T14:20:34Z I have seen that plug-in. Thanks! I was hoping for an easier way, but looks like you are right. http://stackoverflow.com/questions/1596452/how-do-you-get-an-xmlwriter-to-write-an-html-tag-with-xmlns-and-xmllang/1596505#1596505 Comment by Jamey McElveen on How do you get an XmlWriter to write an HTML tag with xmlns and xml:lang? Jamey McElveen 2009-10-20T18:50:27Z 2009-10-20T18:50:27Z That did it THANKS! http://stackoverflow.com/questions/1391151/how-do-i-install-xmllibxml-for-activeperl/1391214#1391214 Comment by Jamey McElveen on How do I install XML::LibXML for ActivePerl? Jamey McElveen 2009-09-08T00:13:41Z 2009-09-08T00:13:41Z Nope nothing is coming up... I added some more details to the question. thanks! http://stackoverflow.com/questions/1391151/how-do-i-install-xmllibxml-for-activeperl Comment by Jamey McElveen on How do I install XML::LibXML for ActivePerl? Jamey McElveen 2009-09-08T00:12:26Z 2009-09-08T00:12:26Z I added some more details above. I have added the packabe libxml using the activeperl package manager http://stackoverflow.com/questions/1391151/how-do-i-install-xmllibxml-for-activeperl/1391214#1391214 Comment by Jamey McElveen on How do I install XML::LibXML for ActivePerl? Jamey McElveen 2009-09-07T23:45:02Z 2009-09-07T23:45:02Z Thanks, But I installed &quot;libxml-perl&quot; from the &quot;ActivePerl Package Manager&quot; and I still get the same error. I checked the details and that package does not install LibXML.pm Here is a screen shot <a href="http://bit.ly/cf3av" rel="nofollow">bit.ly/cf3av</a> http://stackoverflow.com/questions/1358390/how-can-i-perform-application-restart-in-windows-mobile-6 Comment by Jamey McElveen on How can I perform Application.Restart() in Windows Mobile 6? Jamey McElveen 2009-08-31T23:27:42Z 2009-08-31T23:27:42Z Thanks that helps! http://stackoverflow.com/questions/1093919/what-is-the-most-hated-error-you-have-encounter-when-developing-for-the-iphone Comment by Jamey McElveen on What is the most hated error you have encounter when developing for the iPhone? Jamey McElveen 2009-07-07T18:30:43Z 2009-07-07T18:30:43Z It would be nice if we had a separate place on stackoverflow.com to connect with the community. http://stackoverflow.com/questions/1093919/what-is-the-most-hated-error-you-have-encounter-when-developing-for-the-iphone Comment by Jamey McElveen on What is the most hated error you have encounter when developing for the iPhone? Jamey McElveen 2009-07-07T18:26:56Z 2009-07-07T18:26:56Z I like real questions too. However after struggling for hours it is nice to connect with a community that shares your pain and pleasure. http://stackoverflow.com/questions/1039481/where-can-i-find-an-iphone-opengl-es-example-that-responds-to-touch/1071516#1071516 Comment by Jamey McElveen on Where can I find an iPhone OpenGL ES Example that responds to touch? Jamey McElveen 2009-07-02T18:45:25Z 2009-07-02T18:45:25Z Good stuff I about have the example working. http://stackoverflow.com/questions/1039481/where-can-i-find-an-iphone-opengl-es-example-that-responds-to-touch/1040105#1040105 Comment by Jamey McElveen on Where can I find an iPhone OpenGL ES Example that responds to touch? Jamey McElveen 2009-07-02T18:44:52Z 2009-07-02T18:44:52Z Thanks will try that http://stackoverflow.com/questions/1039481/where-can-i-find-an-iphone-opengl-es-example-that-responds-to-touch/1040105#1040105 Comment by Jamey McElveen on Where can I find an iPhone OpenGL ES Example that responds to touch? Jamey McElveen 2009-07-01T03:16:56Z 2009-07-01T03:16:56Z I will have to keep trying but currently I cannot get the molecules download to compile. I was hoping to get it to work in 3.0 but I cannot get 3.0 or 2.0 to compile. Thanks, http://stackoverflow.com/questions/1032981/why-would-i-get-this-error-intermittently-the-server-was-not-found-or-was-not-a Comment by Jamey McElveen on Why would I get this error intermittently? "The server was not found or was not accessible" Jamey McElveen 2009-06-23T15:26:21Z 2009-06-23T15:26:21Z Thanks for all the comments and suggestions we are going to try/test to see if they solve/find the issue in an upcoming maintenance window. http://stackoverflow.com/questions/986180/how-can-i-determine-which-exceptions-can-be-thrown-by-a-given-method/997694#997694 Comment by Jamey McElveen on How can I determine which exceptions can be thrown by a given method? Jamey McElveen 2009-06-18T18:56:08Z 2009-06-18T18:56:08Z Thanks for all your effort it is hard to have to pick just one answer sometimes.