active questions tagged troubleshooting - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T20:12:56Z http://stackoverflow.com/feeds/tag/troubleshooting http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/861894/troubleshooting-with-a-net-application-that-doesnt-start 2 Troubleshooting with a .NET application that doesn't start TigrouMeow 2009-05-14T06:49:42Z 2009-12-21T17:20:43Z <p>I have a recurrent issue with .NET applications that don't start (on others systems than mine). The fact is that I cannot, unfortunately, always create a smoothly running package. Therefore I often have to send a ZIP file of my Debug or Release folder.</p> <p>My real problem is that these applications doesn't tell WHY they're not starting. I just get no exception at all if I start them from the command line, neither in the EventLog, or even if I try to print on the output the result of a Try Catch block on all my application... am I missing something?</p> <p>Most of the time, it's missing libraries, or security related issues. But it would be nice to find what exactly is going on painlessly :D</p> http://stackoverflow.com/questions/1933956/wcf-tracing-how-i-can-get-the-exact-reason-for-closing-connection 1 WCF Tracing. How I can get the exact reason for closing connection? rem 2009-12-19T19:49:34Z 2009-12-20T08:48:33Z <p>In my WCF service, when trying transfer large data I constantly get an error: <strong><em>The underlying connection was closed: The connection was closed unexpectedly</em></strong></p> <p>I want to know what particular reason invokes this error, so I set up <strong>WCF Tracing</strong> and can read <em>traces.svclog</em> file.</p> <p>The problem is, that I can see in this file a lot of information about flow of processes, I can see exact time when exception is appeared, but I can't see the exact reason for that. Is it due to <strong><em>MaxReceivedMessageSize</em></strong> or something like that. </p> <p>Is it so that <em>traces.svclog</em> can not contain such information or am I doing something wrong? </p> <p>How such information could be obtained?</p> <p><strong>Edited (added):</strong></p> <p>From my server-side app.config:</p> <pre><code> &lt;system.serviceModel&gt; &lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;binding name="NAVBinding_ICustomer_Service" closeTimeout="01:50:00" openTimeout="01:50:00" receiveTimeout="01:50:00" sendTimeout="01:50:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true"&gt; &lt;readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /&gt; &lt;security mode="None"&gt; &lt;transport clientCredentialType="None" proxyCredentialType="None" realm="" /&gt; &lt;message clientCredentialType="UserName" algorithmSuite="Default" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; &lt;services&gt; &lt;service name = "Customer_Service" behaviorConfiguration="returnFaults"&gt; &lt;endpoint name="NAVBinding_ICustomer_Service" address = "http://localhost:8000/nav/customer" binding = "basicHttpBinding" bindingConfiguration= "NAVBinding_ICustomer_Service" contract = "NAVServiceReference.ICustomer_Service"/&gt; &lt;/service&gt; &lt;/services&gt; &lt;behaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name="returnFaults" &gt; &lt;serviceDebug includeExceptionDetailInFaults="true" /&gt; &lt;serviceMetadata httpGetEnabled="true" /&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; &lt;/system.serviceModel&gt; </code></pre> http://stackoverflow.com/questions/1546447/wincrypt-unable-to-decrypt-file-which-was-encrypted-in-c-ntebaddata-at-cryp 0 Wincrypt: Unable to decrypt file which was encrypted in C#. NTE_BAD_DATA at CryptDecrypt Chris 2009-10-09T22:57:13Z 2009-12-19T12:28:54Z <p>I am trying to decrypt a piece of a file with wincrypt and I cannot seem to make this function decrypt correctly. The bytes are encrypted with the RC2 implementation in C# and I am supplying the same password and IV to both the encryption and decryption process (encrypted in C#, decrypted in c++).</p> <p>All of my functions along the way are returning true until the final "CryptDecrypt" function. Instead of me typing out any more, here is the function:</p> <pre><code>static char* DecryptMyFile(char *input, char *password, int size) { HCRYPTPROV provider = NULL; if(CryptAcquireContext(&amp;provider, NULL, MS_ENHANCED_PROV, PROV_RSA_FULL, 0)) {printf("Context acquired.");} else { if (GetLastError() == NTE_BAD_KEYSET) { if(CryptAcquireContext(&amp;provider, 0, NULL, PROV_RSA_FULL, CRYPT_NEWKEYSET)) {printf("new key made.");} else { printf("Could not acquire context."); } } else {printf("Could not acquire context.");} } HCRYPTKEY key = NULL; HCRYPTHASH hash = NULL; if(CryptCreateHash(provider, CALG_MD5, 0, 0, &amp;hash)) {printf("empty hash created.");} else {printf("could not create hash.");} if(CryptHashData(hash, (BYTE *)password, strlen(password), 0)) {printf("data buffer is added to hash.");} else {printf("error. could not add data buffer to hash.");} if(CryptDeriveKey(provider, CALG_RC2, hash, 0, &amp;key)) {printf("key derived.");} else {printf("Could not derive key.");} DWORD dwKeyLength = 128; if(CryptSetKeyParam(key, KP_EFFECTIVE_KEYLEN, reinterpret_cast&lt;BYTE*&gt;(&amp;dwKeyLength), 0)) {printf("success");} else {printf("failed.");} BYTE IV[8] = {0,0,0,0,0,0,0,0}; if(CryptSetKeyParam(key, KP_IV, IV, 0)) {printf("worked");} else {printf("faileD");} DWORD dwCount = size; BYTE *decrypted = new BYTE[dwCount + 1]; memcpy(decrypted, input, dwCount); decrypted[dwCount] = 0; if(CryptDecrypt(key,0, true, 0, decrypted, &amp;dwCount)) {printf("succeeded");} else {printf("failed");} return (char *)decrypted; } </code></pre> <p>input is the data passed to the function, encrypted. password is the same password used to encrypt the data in C#. size is the size of the data while encrypted.<br /> All of the above functions return true until CryptDecrypt, which I cannot seem to figure out why. At the same time, I'm not sure how the CryptDecrypt function would possibly edit my "decrypted" variable, since I am not passing a reference of it.</p> <p>Any help or advice onto why this is not working would be greatly appreciated. This is my first endeavour with wincrypt and first time using C++ in years.</p> <p>If it is of any more help, as well, this is my encryption (in C#):</p> <pre><code> public static byte[] EncryptString(byte[] input, string password) { PasswordDeriveBytes pderiver = new PasswordDeriveBytes(password, null); byte[] ivZeros = new byte[8]; byte[] pbeKey = pderiver.CryptDeriveKey("RC2", "MD5", 128, ivZeros); RC2CryptoServiceProvider RC2 = new RC2CryptoServiceProvider(); //using an empty initialization vector for convenience. byte[] IV = new byte[8]; ICryptoTransform encryptor = RC2.CreateEncryptor(pbeKey, IV); MemoryStream msEncrypt = new MemoryStream(); CryptoStream csEncrypt = new CryptoStream(msEncrypt, encryptor, CryptoStreamMode.Write); csEncrypt.Write(input, 0, input.Length); csEncrypt.FlushFinalBlock(); return msEncrypt.ToArray(); } </code></pre> <p>I have confirmed that my hash value in C++ is identical to my key in C#, created by PasswordDeriveBytes.CryptDeriveKey</p> http://stackoverflow.com/questions/1498056/powerbuilder-10-5-sample-web-services-client-application 2 PowerBuilder 10.5 sample web services client application Bernard Dy 2009-09-30T13:17:20Z 2009-12-17T19:49:24Z <p>I am trying to get the PowerBuilder 10.5.2 sample web services application running. I can open the workspace just fine, and I can see the objects and even run the app but I get a "bad runtime function reference" error when I try to invoke the service.</p> <p>I believe I have installed all the requisite parts:</p> <ul> <li>PB 10.5.2</li> <li>.Net 2.0 SDK</li> </ul> <p>Web searches reveal that some of the example web servies used by the sample app are defunct, but I can't imagine all of them are, so the error seems to indicate a problem with the setup or objects, not the third party services. </p> <p>I can see pbwsclient105.pbd in the workspace list and in the Sybase shared objects directory. However, as a test, I tried to use the alternative method the documentation listed for setting up the PB proxy to the .Net web service objects (by importing PB extensions from pbwsclient105.pbx) and got a "invalid dll error" so perhaps my web service libraries are corrupted? </p> <p>What else could be missing? Path settings? Incorrect .Net 2.0 SDK installation?</p> http://stackoverflow.com/questions/1129405/cant-install-a-single-plugin-on-eclipse-3-5 0 Can't install a single plugin on Eclipse 3.5 rexzilla 2009-07-15T04:24:39Z 2009-12-17T14:10:31Z <p>I'm trying to install the Subversion team provider on Eclipse 3.5, and it fails with the following message:</p> <pre><code>An error occurred while collecting items to be installed session context was:(profile=SDKProfile,phase=org.eclipse.equinox.internal.provisional.p2.engine.phases.Collect, operand=, action=). Result of processing steps. Unpack facility not configured OK OK Result of processing steps. Unpack facility not configured OK OK </code></pre> <p>Not just SVN, try installing any plugin, and it fails to install. Isn't this a serious bug? Has anyone else seen it or is there a workaround? Changing to a brand new workspace doesn't help either.</p> http://stackoverflow.com/questions/1918765/if-an-asp-net-controls-events-arent-binding-what-are-the-things-i-should-chec 1 If an asp.net control's event's aren't binding, what are the things I should check, in order of likly cause? Glenn Slaven 2009-12-17T00:32:28Z 2009-12-17T05:16:51Z <p>So I've got an ASP.NET control with a server form with a bunch of <code>runat="server"</code> with events defined in the markup. However none of the events are fireing when I click the buttons. The postback occurs and in the <code>Page_Load</code> event <code>IsPostback</code> is true.</p> <p>What should I be checking to see why the events don't fire? What are the most likely reasons as to why they're not being bound?</p> <p>UPDATE: I've abandoned this code. When I got to the point of having checked everything mentioned here, still haing postbacks occur but no events firing, I've rolled back to a previous stable state and I'm starting again</p> http://stackoverflow.com/questions/1916329/opengl-texture-loading-issue 0 OpenGL texture loading issue Andrei Krotkov 2009-12-16T17:37:19Z 2009-12-16T22:44:46Z <p>This is a very vague problem, so please feel free to clarify anything about this project.</p> <p>I'm working on a very large application, and recently a very perplexing bug has cropped up regarding the texturing. Some of the textures that we are loading are being loaded - I've stepped through the code, and it runs - but all OpenGL renders for those textures is a weird Pink/White striped texture. </p> <p>What would you suggest to even begin debugging this situation? </p> <ul> <li>The project is multithreaded, but a mutex makes sure all OpenGL calls are not interrupted by anything else. </li> <li>Some textures are being loaded, some are not. They're all loaded in the exact same way.</li> <li>I've made sure that all textures exist</li> <li>The "pink/white" textures are definitely loaded in memory - they become visible shortly after I load any other texture into OpenGL.</li> </ul> <p>I'm perplexed, and have no idea what else can be wrong. Is there an OpenGL command that can be called after glTexImage that would force the texture to become useable?</p> <p>Edit: It's not about the commands failing, it's mainly a timing issue. The pink/white textures show up for a while, until more textures are loaded. It's almost as if the textures are queued up, and the queue just pauses at some time.</p> <p>Next Edit: I got the glIntercept log working correctly, and this is what it outputted (before the entire program crashed)</p> <p><a href="http://freetexthost.com/1kdkksabdg" rel="nofollow">http://freetexthost.com/1kdkksabdg</a></p> <p>Next Edit: I know for a fact the textures are loaded in OpenGL memory, but for some reason they're not rendering in the program themselves. </p> http://stackoverflow.com/questions/1905172/ssrs-unable-to-determine-if-the-owner-of-job-has-server-access-sqlstate-42000 1 SSRS - Unable to determine if the owner of job has server access [SQLSTATE 42000] (Error 15404)) John DaCosta 2009-12-15T04:28:52Z 2009-12-16T15:26:31Z <p>SQL Server Reporting Services, in SSRS it seems like Schedules never fire, however a look at the SQL Agent reveals a permission issue related to not being able to resolve a user account.</p> <p>Seems SQL Agent does not rely on caching or whatever voodoo Windows magically works.</p> <p><a href="http://wp.me/pl9kG-3e" rel="nofollow">link text</a> Fix is listed here... edit -- </p> <p>Above is the fix I used to workaround this issue, has any one found any other work arounds or resolutions to this issue?</p> <p>It seems that by default the SSRS Generated Schedules are run as this phantom user account. How do I change this default? Is SSRS creating the jobs as the user the service runs as?</p> <p>Thanks <a href="http://stackoverflow.com/questions/1905172/ssrs-unable-to-determine-if-the-owner-of-job-has-server-access-sqlstate-42000/1905303#1905303">Remus</a> </p> http://stackoverflow.com/questions/104224/how-do-you-troubleshoot-wpf-ui-problems 4 How do you troubleshoot WPF UI problems? palehorse 2008-09-19T18:17:20Z 2009-12-15T15:41:06Z <p>I'm working on a WPF application that sometimes exhibits odd problems and appears to <em>hang</em> in the UI. It is inconsistent, it happens in different pages, but it happens often enough that it is a big problem. I should mention that it is not a true hang as described below.</p> <p>My first thought was that the animations of some buttons was the problem since they are used on most pages, but after removing them the hangs still occur, although seemingly a bit less often. I have tried to break into the debugger when the hang occurs; however there is never any code to view. No code of mine is running. I have also noticed that the "hang" is not complete. I have code that lets me drag the form around (it has no border or title) which continues to work. I also have my won close button which functions when I click it. Clicking on buttons appears to actually work as my code runs, but the UI simply never updates to show a new page.</p> <p>I'm looking for any advice, tools or techniques to track down this odd problem, so if you have any thoughts at all, I will greatly appreciate it.</p> <p>EDIT: It just happened again, so this time when I tried to break into the debugger I chose to "show disassembly". It brings me to MS.Win32.UnsafeNativeMethods.GetMessageW. The stack trace follows:</p> <pre><code>[Managed to Native Transition] </code></pre> <blockquote> <p>WindowsBase.dll!MS.Win32.UnsafeNativeMethods.GetMessageW(ref System.Windows.Interop.MSG msg, System.Runtime.InteropServices.HandleRef hWnd, int uMsgFilterMin, int uMsgFilterMax) + 0x15 bytes WindowsBase.dll!System.Windows.Threading.Dispatcher.GetMessage(ref System.Windows.Interop.MSG msg, System.IntPtr hwnd, int minMessage, int maxMessage) + 0x48 bytes WindowsBase.dll!System.Windows.Threading.Dispatcher.PushFrameImpl(System.Windows.Threading.DispatcherFrame frame = {System.Windows.Threading.DispatcherFrame}) + 0x8b bytes WindowsBase.dll!System.Windows.Threading.Dispatcher.PushFrame(System.Windows.Threading.DispatcherFrame frame) + 0x49 bytes WindowsBase.dll!System.Windows.Threading.Dispatcher.Run() + 0x4c bytes PresentationFramework.dll!System.Windows.Application.RunDispatcher(object ignore) + 0x1e bytes PresentationFramework.dll!System.Windows.Application.RunInternal(System.Windows.Window window) + 0x6f bytes PresentationFramework.dll!System.Windows.Application.Run(System.Windows.Window window) + 0x26 bytes PresentationFramework.dll!System.Windows.Application.Run() + 0x19 bytes WinterGreen.exe!WinterGreen.App.Main() + 0x5e bytes C# [Native to Managed Transition] [Managed to Native Transition] mscorlib.dll!System.AppDomain.nExecuteAssembly(System.Reflection.Assembly assembly, string[] args) + 0x19 bytes mscorlib.dll!System.Runtime.Hosting.ManifestRunner.Run(bool checkAptModel) + 0x6e bytes mscorlib.dll!System.Runtime.Hosting.ManifestRunner.ExecuteAsAssembly() + 0x84 bytes mscorlib.dll!System.Runtime.Hosting.ApplicationActivator.CreateInstance(System.ActivationContext activationContext, string[] activationCustomData) + 0x65 bytes mscorlib.dll!System.Runtime.Hosting.ApplicationActivator.CreateInstance(System.ActivationContext activationContext) + 0xa bytes mscorlib.dll!System.Activator.CreateInstance(System.ActivationContext activationContext) + 0x3e bytes Microsoft.VisualStudio.HostingProcess.Utilities.dll!Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssemblyDebugInZone() + 0x23 bytes mscorlib.dll!System.Threading.ThreadHelper.ThreadStart_Context(object state) + 0x66 bytes mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state) + 0x6f bytes mscorlib.dll!System.Threading.ThreadHelper.ThreadStart() + 0x44 bytes </p> </blockquote> http://stackoverflow.com/questions/1902056/event-interferes-with-subroutines 0 Event interferes with subroutines entens 2009-12-14T16:49:30Z 2009-12-14T17:51:53Z <p>I'm struggling with an event related to my communications class.</p> <p>I'm calling a 'DataChange' function via event handler any time I receive new data over my serial connection. I then proceed to load that data into a DataGridView, perform some formatting, etc for the users. I'm getting a ton of problems due to the frequency at which the DataChange event is called and seems to steal the focus out of othert subroutines and functions mid-process.</p> <p>For example, I'll attempt to transmit data back to the serial device. After I format the data, but before I can actually call the Send function from my library the focus is directed back to DataChange and I never actually transmit my data.</p> <p>Is this a problem best addressed by threading the DataChange related routines, unhooking the DataChange event before a function or routine then rehooking, or is there some basic principle I'm not implementing.</p> http://stackoverflow.com/questions/1810791/why-would-my-as2-swf-stop-loading-into-as3-swf-with-swfbridge-on-mac-running-safa 0 Why would my AS2 swf stop loading into AS3 swf with SWFBridge on Mac running safari and mozilla? undefined 2009-11-27T22:11:43Z 2009-12-09T02:36:16Z <p>I have noticed that my AS2 swf that I load into an AS3 swf with SWFBridge sometimes doesnt load. I have usually loaded the page several times and it works fine then sometimes it does not load. When I quit Safari and restart it it will work again. I havent noticed this happening on a Windows PC but only on Macbook OSX in both Safari and Mozilla. </p> <p>I havent done any real debugging yet but has anyone got any leads?</p> <p>thanks</p> http://stackoverflow.com/questions/776771/how-do-i-solve-405-method-not-allowed-for-our-subversion-setup 0 How do I solve "405 Method Not Allowed" for our subversion setup? macke 2009-04-22T11:34:30Z 2009-12-08T13:03:12Z <p>We're serving our source code using VisualSVN running on Windows Server 2003. Recently, we split a portion of a project into a new project in it's own repository, and then linked it back to the original project using svn:externals. Since then, we've been having issues when we try to commit files with Subclipse.</p> <p>The error we're getting is:</p> <blockquote> <p>svn: Commit failed (details follow):</p> <p>svn: PROPFIND of '/svn': 405 Method Not Allowed (https://svn.ourserver.com)</p> </blockquote> <p>Googling for a while didn't really help, our config seems to be correct. It should also be noted that we've been running this server for a while no without these problems and apart from splitting the project into two repositories, no changes have been made to the server (ie, config files are the same).</p> <p>It should also be noted that these errors only appear when we try to check in multiple files at once. If we check in one file at a time there are no errors. Also, it only appears in Subclipse as far as we know right now, Versions.app (OS X) seems to work fine so that is our current workaround.</p> <p>So, the questions is how do I analyze the error to find the cause and subsequently fix it? I'm by no means a svn guru and right now I'm clueless.</p> <p><hr /></p> <p><strong>EDIT:</strong> It seems we can check in multiple files in the same package, but not files from multiple packages. Also, when I "split" the project into two repositories, I imported the original repository with a new name. I did not do a dump and then import that dump. Could that be the source of our issues, and if so, how would I solve that?</p> <p><hr /></p> <p><strong>EDIT:</strong> After some jerking around it seems as though it is indeed related to when checking in files in different repositories. If I try to do a single commit in both Repo A and Repo B (referenced by svn:externals) at the same time, I get the error. Versions.app handles this correctly, but I guess it might just be doing two commits, not a single one. Subclipse fails miserably. For now, we simply do multiple commits, one for Repo A and one for Repo B, that works just fine. If anyone smarter than me could fill in the details why this is happening, wether or not this kind of setup is stupid etc, please go right ahead.</p> http://stackoverflow.com/questions/1866477/asp-net-webapplication-unavailable-on-live-environment-how-to-troubleshoot 0 ASP.NET Webapplication unavailable on Live Environment - How to troubleshoot Nicholas 2009-12-08T11:51:48Z 2009-12-08T11:56:38Z <p>I have a asp.net 3.5 web application which is deployed on server 2003 and IIS 6. After running fine for a few weeks it goes "Down" and by down I mean that when I try and access it the browser looks like it's loading but never actually serves the page. After an IIS reset it loads quickly again. </p> <p>My question is what are the steps and tools I should use in tracking the root cause? </p> http://stackoverflow.com/questions/1838869/service-cannot-be-started 0 Service cannot be started bdhar 2009-12-03T09:53:04Z 2009-12-03T14:32:20Z <p>I developed a simple windows service in C# as per this article.</p> <p><a href="http://www.codeproject.com/KB/dotnet/simplewindowsservice.aspx" rel="nofollow">http://www.codeproject.com/KB/dotnet/simplewindowsservice.aspx</a></p> <p>I was successfully able to start the service for the first time and stop it. During the following attempts, I was not able to start the service. I got the following information.</p> <blockquote> <p>The MyNewService service on Local Computer started and then stopped. Some services stop automatically if they have no work to do, for example, the Performance Logs and Alerts service.</p> </blockquote> <p>Please help.</p> http://stackoverflow.com/questions/1835026/visual-studio-freezes-when-switching-to-debug-mode 1 Visual Studio freezes when switching to debug mode cvb 2009-12-02T18:54:19Z 2009-12-03T07:39:15Z <p>Strange visual studio (TS 2008) problem: The IDE completely freezes whenever I switch from Release to Debug mode in a specific project. It happens right as I switch, before I try to build or do anything else.</p> <p>The whole thing started out of the blue, without any abnormal change I can think of. I tried to clean the solution, but it didn't help.</p> <p>Anyone ran into this before?</p> http://stackoverflow.com/questions/1521496/new-to-git-git-push-origin-master-sshexchangeidentifiction-connection-clos 0 New to Git: git push origin master = "ssh_exchange_identifiction: Connection closed by remote host. Fatal: The remote end hung up unexpectedly" Chris 2009-10-05T17:59:56Z 2009-12-02T14:37:38Z <p>I'm trying out git for the first time and am trying to follow instructions supplied by github. However, I seem to be failing on the last step. The following steps are provided by github:</p> <pre><code>Global setup: Download and install Git git config --global user.name "Your Name" git config --global user.email Next steps: mkdir SomeFolder cd SomeFolder git init touch README git add README git commit -m 'first commit' git remote add origin git@github.com:username/SomeFolder.git git push origin master </code></pre> <p>However, when running the final command, git push origin master, I get </p> <blockquote> <p>"ssh_exchange_identification: Connection closed by remote host. fatal: The remote end hung up unexpectedly"</p> </blockquote> <p>Why might this be?</p> http://stackoverflow.com/questions/1827078/programmatically-reconnect-to-wifi-network 0 Programmatically reconnect to wifi network ya23 2009-12-01T15:53:33Z 2009-12-01T15:58:07Z <p>Sometimes I work with frequently-dropping wifi connections.</p> <p>I can either reconnect manually or wait some time (varies from few seconds to few minutes) before windows attempts to reconnect. Is there a simple way to trigger reconnect immediately after the connection was dropped?</p> <p>Bonus question: In this particular case I'd blame hardware, but how can I diagnose the reason of dropping connection in general?</p> http://stackoverflow.com/questions/1795040/does-altering-a-session-invalidate-pakage-states-in-oracle-10g 1 Does altering a session invalidate Pakage States in Oracle 10g? martilyo 2009-11-25T06:32:16Z 2009-11-26T04:24:50Z <p>Hi,</p> <p>I have a package that gets invalidated on a regular basis and found this in the code:</p> <pre><code>ALTER SESSION CLOSE DATABASE LINK; </code></pre> <p>Can this invalidate package states? Though I can't seem to replicate it.</p> <pre><code>create or replace package body invalid_package_state_test is procedure test is TEMP VARCHAR2(1) := NULL; begin SELECT 'Y' INTO TEMP FROM dual@dw; DBMS_OUTPUT.PUT_LINE('Testing'); EXECUTE IMMEDIATE 'ALTER SESSION CLOSE DATABASE LINK DW'; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('DBLink Not Open'); end test; end invalid_package_state_test; </code></pre> <p>Also, can someone explain when does one need the <code>ALTER SESSION CLOSE DATABASE LINK;</code>. </p> <p>Thoughts?</p> <p>Thanks! Jonas</p> http://stackoverflow.com/questions/1791629/how-to-get-the-best-technical-feedback-possible-from-a-non-technical-user-when-su 2 How to get the best technical feedback possible from a non-technical user when supporting application issues? Achilles 2009-11-24T17:27:40Z 2009-11-24T17:35:34Z <p>A common problem I find when dealing with non-technical users when supporting technical issues is "translating" what I'm hearing to what actually is causing the problem. In our current application we do things like provide error message details that can be forwarded to our support team, however my question is:</p> <p><strong>1. Is there an approach that any of you have implemented and found successful in helping the user provide quality information about application issues that can help in troubleshooting? If so what is that approach?</strong></p> <p>What I'm hoping for is a clever approach to designing error message displays in such a way that when the user communicates the issue, it is a better primer for quickly resolving the issue. Thanks!</p> http://stackoverflow.com/questions/525185/sql-server-database-locked 1 SQL Server Database Locked codeflunky 2009-02-08T05:14:26Z 2009-11-23T20:05:04Z <p>I am trying to delete an existing database in SQL Server 2005. My first attempt produced the following error:</p> <blockquote> <p>5030: The database could not be exclusively locked to perform the operation.</p> </blockquote> <p>I have since killed all processes that are accessing the database. I have also removed the replication subscription that it had previously been involved in.</p> <p>Any thoughts on what else that could be holding the lock on it besides SQL Server processes and replication?</p> <p><strong>Update</strong>: I restarted the server, and that fixed it. I was trying to avoid that, since this is a production server, but hey what can you do?</p> http://stackoverflow.com/questions/1540003/css-problem-absolutely-positioned-parent-and-floatright-child-stretches 11 css problem: Absolutely positioned parent and float:right child stretches Roatin Marth 2009-10-08T19:44:28Z 2009-11-22T06:12:15Z <p>In IE6, IE7 and FF2 the <code>.outer</code> div below is stretching out to the right edge of the document. Here is a complete test case:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;style&gt; .outer { position:absolute; border:1px solid red; } .outer .floater { float:right; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div class="outer"&gt; &lt;div class="floater"&gt;Lorem ipsum&lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p>As I understand <code>position:absolute</code>, the outer div should be removed from the flow of the document and (without a width specified) <em>should</em> take up the minimal amount of space needed to display its contents. However <code>float:right</code> on any child breaks this.</p> <p>Expected output (IE8, FF3+, Chrome 2+, Safari 4, Opera 9+):</p> <p><img src="http://img195.imageshack.us/img195/5761/expected.gif" alt="Expected output - IE8, FF3+, Chrome 2+, Safari 4, Opera 9+"></p> <p>Actual output (IE6, IE7, FF2):</p> <p><img src="http://img195.imageshack.us/img195/8290/actualj.gif" alt="Actual output - IE6, IE7, FF2"></p> <p><strong>How do I get the outer div to not stretch?</strong> This is only happening in IE6, IE7 and Firefox 2.</p> <p>Requirements:</p> <ul> <li><code>.outer</code> cannot have a <code>width</code> set (it <em>must</em> be left as <code>"auto"</code>)</li> <li><code>.outer</code> must remain absolutely positioned</li> <li><code>.floater</code> must remain floated to the right</li> </ul> <p><hr></p> <p><strong>Update</strong>:</p> <p>I've reproduced the behavior as a "real world" example using jQuery dialog. The characteristics are the same:</p> <ol> <li>There is an absolutely positioned div (i.e. the dialog container, jQuery-UI creates this)</li> <li>The div from 1) has <code>width="auto"</code></li> <li>There is an element inside this dialog that is floated to the right.</li> </ol> <p><a href="http://jsbin.com/iguxe" rel="nofollow"><strong>See it here</strong></a>. Again, IE6, IE7 and FF2 are the only problematic browsers.</p> <p>This replicates the conditions inside my application. I tried boiling down the problem to what you see above this Update, but I'm getting the sense that people could use a real-world example where my requirements make sense. I hope I've done this.</p> http://stackoverflow.com/questions/1740165/installing-trac-with-subversion-1-6 1 Installing Trac with Subversion 1.6 nickf 2009-11-16T05:05:59Z 2009-11-19T06:46:58Z <p>I'm trying to set up Trac on my server and have successfully installed it, compiled the bytecode and run the tracd server. The only problem is that it's not reading my SVN repository.</p> <p>The error I'm receiving is:</p> <blockquote> <p>Warning: Can't synchronize with the repository (Couldn't open Subversion repository /data1/repos: SubversionException: ("Expected FS format '2'; found format '4'", 160043)). Look in the Trac log for more information.</p> </blockquote> <p><sub><em>(Yes, my single repository is in a folder called "repos" - I didn't set that bit up)</em></sub></p> <p>The <code>trac.ini</code> looks like this:</p> <pre><code>repository_dir = /data1/repos repository_type = svn </code></pre> <p>I'm running: Trac 0.11.5, Python 2.4.3, Collabnet SVN 1.6.5, SWIG 1.3.29</p> http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered 3 Apache/Tomcat error - wrong pages being delivered Marcus Downing 2008-10-29T12:03:33Z 2009-11-16T17:49:16Z <p>This error has been driving me nuts. We have a server running Apache and Tomcat, serving multiple different sites. Normally the server runs fine, but sometimes an error happens where people are served the wrong page - <strong>the page that <em>somebody else</em> requested!</strong></p> <p>Clues:</p> <ul> <li>The pages being delivered are those that another user requested recently, and are otherwise delivered correctly. It's been known for two simultaneous requests to be swapped. As far as I can tell, none of the pages being incorrectly delivered are older than a few minutes.</li> <li>It only affects the files that are being served by Tomcat. Static files like images are unaffected.</li> <li>It doesn't happen all the time. When it does happen, it happens for everybody.</li> <li>It seems to happen at times of peak demand. However, the demand is not yet very high - it's certainly well within the bounds of what Apache can cope with.</li> <li>Restarting Tomcat fixed it, but only for a few minutes. Restarting Apache fixed it, but only for a few minutes.</li> <li>The server is running Apache 2 and Tomcat 6, using a Java 6 VM on Gentoo. The connection is with AJP13, and <code>JkMount</code> directives within <code>&lt;VirtualHost&gt;</code> blocks are correct.</li> <li>There's nothing of use in any of the log files.</li> </ul> <p><hr /></p> <p><strong>Further information:</strong></p> <p>Apache does not have any form of caching turned on. All the caching-related entries in httpd.conf and related imports say, for example:</p> <pre><code>&lt;IfDefine CACHE&gt; LoadModule cache_module modules/mod_cache.so &lt;/IfDefine&gt; </code></pre> <p>While the options for Apache don't include that flag:</p> <pre><code>APACHE2_OPTS="-D DEFAULT_VHOST -D INFO -D LANGUAGE -D SSL -D SSL_DEFAULT_VHOST -D PHP5 -D JK" </code></pre> <p>Tomcat likewise has no caching options switched on, that I can find.</p> <p><a href="http://stackoverflow.com/questions/246540/apachetomcat-error-wrong-pages-being-delivered#246566">toolkit's suggestion</a> was good, but not appropriate in this case. What leads me to believe that the error can't be within my own code is that it isn't simply a few values that are being transferred - it's the entire request, including the URL, parameters, session cookies, the whole thing. People are getting pages back saying "You are logged in as John", when they clearly aren't.</p> <p><hr /></p> <p><strong>Update:</strong></p> <p>Based on suggestions from several people, I'm going to add the following HTTP headers to Tomcat-served pages to disable all forms of caching:</p> <pre><code>Cache-Control: no-store Vary: * </code></pre> <p>Hopefully these headers will be respected not just by Apache, but also by any other caches or proxies that may be in the way. Unfortunately I have no way of deliberately reproducing this error, so I'm just going to have to wait and see if it turns up again.</p> <p>I notice that the following headers are being included - could they be related in any way?</p> <pre><code>Connection: Keep-Alive Keep-Alive: timeout=5, max=66 </code></pre> <p><hr /></p> <p><strong>Update:</strong></p> <p>Apparently this happened again while I was asleep, but has stopped happening now I'm awake to see it. Again, there's nothing useful in the logs that I can see, so I have no clues to what was actually happening or how to prevent it.</p> <p>Is there any extra information I can put in Apache or Tomcat's logs to make this easier to diagnose?</p> <p><hr /></p> <p><strong>Update:</strong></p> <p>Since this has happened again a couple of times, we've changed how Apache connects to Tomcat to see if it affects things. We were using <code>mod_jk</code> with a directive like this:</p> <pre><code>JkMount /portal ajp13 </code></pre> <p>We've switched now to using <code>mod_proxy_ajp</code>, like so:</p> <pre><code>ProxyPass /portal ajp://localhost:8009/portal </code></pre> <p>We'll see if it makes any difference. This error was always annoyingly unpredictable, so we can never definitively say if it's worked or not.</p> <p><hr /></p> <p><strong>Update:</strong></p> <p>We just got the error briefly on a site that was left using <code>mod_jk</code>, while a sister site on the same server using <code>mod_proxy_ajp</code> didn't show the error. This doesn't prove anything, but it does provide evidence that swithing to <code>mod_proxy_ajp</code> may have helped.</p> <p><hr /></p> <p><strong>Update:</strong></p> <p>We just got the error again last night on a site using <code>mod_proxy_ajp</code>, so clearly that hasn't solved it - <code>mod_jk</code> wasn't the source of the problem. I'm going to try the anonymous suggestion of turning off persistent connections:</p> <pre><code>KeepAlive Off </code></pre> <p>If that fails as well, I'm going to be desperate enough to start investigating GlassFish.</p> <p><hr /></p> <p><strong>Update:</strong></p> <p>Dammit! The problem just came back. I hadn't seen it in a while, so I was starting to think we'd finally sorted it. I hate heisenbugs.</p> http://stackoverflow.com/questions/1710941/sqlite-and-object-reference-not-set-exception 0 SQLite and `Object reference not set` exception acidzombie24 2009-11-10T20:25:12Z 2009-11-11T20:46:32Z <p>edit2: solution <a href="http://stackoverflow.com/questions/1710941/sqlite-and-object-reference-not-set-exception/1711481#1711481">http://stackoverflow.com/questions/1710941/sqlite-and-object-reference-not-set-exception/1711481#1711481</a></p> <p>I am having a hard time understanding my error.</p> <p>edit1: I set my define to make my code single threaded. The problem went away. So it seems like a race condition.</p> <p>I get the error below. But not always, i notice that if i do not set a break or i step through them quickly i get no exception. When set a breakpoint at <code>var o = command.ExecuteScalar();</code> or the line before it and wait 10+ seconds (i used the system clock to check, not counting) it will ALLWAYS get an exception (i tried it twice however based on what i notice the exception happens only when i break for more then a few seconds).</p> <p>I dont understand WHY i am getting the error. I printed out both the sql statement and the param values i fed it and i can see its correct values. Whats going on!?! and what bothers me is the COUNT(*) works but the insert doesnt.</p> <p>Here is my code</p> <pre><code> else { command.CommandText = "SELECT COUNT(*) FROM link_list;"; var o = command.ExecuteScalar(); int status = (int)r.status; command.CommandText = "UPDATE link_list SET status=@status WHERE id=@id;"; command.Parameters.Add("@status", System.Data.DbType.Byte).Value = status; command.Parameters.Add("@id", System.Data.DbType.Int32).Value = info.linkId; Console.WriteLine("CommandText {0} {1} {2}", command.CommandText, status, info.linkId); command.ExecuteNonQuery(); Console.WriteLine("CommandText no exception"); } </code></pre> <p>elsewhere</p> <pre><code> catch(Exception e) { Console.WriteLine(e.Message); Console.WriteLine(e.StackTrace); </code></pre> <p>My output</p> <pre><code>CommandText UPDATE link_list SET status=@status WHERE id=@id; 5 108 The thread '&lt;No Name&gt;' (0xbc8) has exited with code 0 (0x0). A first chance exception of type 'System.NullReferenceException' occurred in System.Data.SQLite.dll Object reference not set to an instance of an object. at System.Data.SQLite.SQLiteDataReader.NextResult() at System.Data.SQLite.SQLiteDataReader..ctor(SQLiteCommand cmd, CommandBehavior behave) at System.Data.SQLite.SQLiteCommand.ExecuteReader(CommandBehavior behavior) at System.Data.SQLite.SQLiteCommand.ExecuteNonQuery() at WebDLManager.DB.updateStatus(DLInfo info, ReturnVal r) in C:\dev\source\prvTrunk\WebDLManager\WebDLManager\db.cs:line 134 at WebDLManager.SiteBase.threadStart() in C:\dev\source\prvTrunk\WebDLManager\WebDLManager\SiteType.cs:line 241 The program '[1360] WebDLManager.vshost.exe: Managed' has exited with code 0 (0x0). </code></pre> <p>As requested</p> <pre><code> //this is called through form_load connection = new SQLiteConnection("Data Source=mydb.sqlite3;Version=3"); command = new SQLiteCommand(connection); connection.Open(); </code></pre> http://stackoverflow.com/questions/1712383/error-code-3021-either-bof-or-eof-is-true-or-the-current-record-has-been-deleted 1 error code 3021 either bof or eof is true or the current record has been deleted Colin 2009-11-11T01:13:46Z 2009-11-11T03:28:29Z <p>Hi,</p> <p>I have an Access 2003 database with some visual basic code using ADO calls in it. When I do a </p> <pre><code>strsql0 = "SELECT lnk_stockitm.C_C FROM lnk_stockitm WHERE (((lnk_stockitm.C_C) Like 'T*'));" newRS.Open strsql0, cn1, adOpenKeyset, adLockReadOnly newRS.movelast </code></pre> <p>I get a '3021 either bof or eof is true or the current record has been deleted...' error. When I run the exact same query in the same function without the WHERE clause, like this</p> <pre><code>strsql0 = "SELECT lnk_stockitm.C_C FROM lnk_stockitm; </code></pre> <p>I get the correct result of 56,000 records. If I paste the full SQL statement with the WHERE clause into a regular query, like so</p> <pre><code>SELECT lnk_stockitm.C_C FROM lnk_stockitm WHERE (((lnk_stockitm.C_C) Like 'T*')); </code></pre> <p>it returns the correct subset of the results (2800 records).</p> <p>Can anyone tell me what I am doing wrong, or what funny business Microsoft is playing?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1711954/javascript-error -1 Javascript error Jcubed 2009-11-10T23:19:29Z 2009-11-11T01:01:33Z <p>I think i put the anonymous function in there wrong... when it outputs listzonebuffs it includes the function(){... part.</p> <pre><code>function load(zone){ setupzonebuffs(zone); document.getElementById('zonetitle').innerHTML=zone; listzonebuffs=""; if(zonebuffs['B']!=1){listzonebuffs+="&lt;span class=\'"+function(){if(zonebuffs["B"]&gt;1){return "good";}else{return "bad";}}+"\'&gt;Brute Force "+function(){if(zonebuffs['B']&gt;1){return "+";}else{return "-";}}+" "+Math.round(Math.abs((1-zonebuffs['B'])*100))+"%&lt;/span&gt;";} if(zonebuffs['W']!=1){listzonebuffs+="&lt;span class=\'"+function(){if(zonebuffs["W"]&gt;1){return "good";}else{return "bad";}}+"\'&gt;Wind "+function(){if(zonebuffs['W']&gt;1){return "+";}else{return "-";}}+" "+Math.round(Math.abs((1-zonebuffs['W'])*100))+"%&lt;/span&gt;";} if(zonebuffs['I']!=1){listzonebuffs+="&lt;span class=\'"+function(){if(zonebuffs["I"]&gt;1){return "good";}else{return "bad";}}+"\'&gt;Ice "+function(){if(zonebuffs['I']&gt;1){return "+";}else{return "-";}}+" "+Math.round(Math.abs((1-zonebuffs['I'])*100))+"%&lt;/span&gt;";} if(zonebuffs['E']!=1){listzonebuffs+="&lt;span class=\'"+function(){if(zonebuffs["E"]&gt;1){return "good";}else{return "bad";}}+"\'&gt;Energy "+function(){if(zonebuffs['E']&gt;1){return "+";}else{return "-";}}+" "+Math.round(Math.abs((1-zonebuffs['E'])*100))+"%&lt;/span&gt;";} if(zonebuffs['F']!=1){listzonebuffs+="&lt;span class=\'"+function(){if(zonebuffs["F"]&gt;1){return "good";}else{return "bad";}}+"\'&gt;Fire "+function(){if(zonebuffs['F']&gt;1){return "+";}else{return "-";}}+" "+Math.round(Math.abs((1-zonebuffs['F'])*100))+"%&lt;/span&gt;";} if(zonebuffs['R']!=1){listzonebuffs+="&lt;span class=\'"+function(){if(zonebuffs["R"]&gt;1){return "good";}else{return "bad";}}+"\'&gt;Earth "+function(){if(zonebuffs['R']&gt;1){return "+";}else{return "-";}}+" "+Math.round(Math.abs((1-zonebuffs['R'])*100))+"%&lt;/span&gt;";} if(zonebuffs['A']!=1){listzonebuffs+="&lt;span class=\'"+function(){if(zonebuffs["A"]&gt;1){return "good";}else{return "bad";}}+"\'&gt;Astronomical "+function(){if(zonebuffs['A']&gt;1){return "+";}else{return "-";}}+" "+Math.round(Math.abs((1-zonebuffs['A'])*100))+"%&lt;/span&gt;";} if(zonebuffs['S']!=1){listzonebuffs+="&lt;span class=\'"+function(){if(zonebuffs["S"]&gt;1){return "good";}else{return "bad";}}+"\'&gt;Stealth "+function(){if(zonebuffs['S']&gt;1){return "+";}else{return "-";}}+" "+Math.round(Math.abs((1-zonebuffs['S'])*100))+"%&lt;/span&gt;";} document.getElementById('listzonebuffs').innerHTML=listzonebuffs; } var zonebuffs=new Array(); zonebuffs['B']=1;zonebuffs['W']=1;zonebuffs['I']=1;zonebuffs['E']=1;zonebuffs['F']=1;zonebuffs['R']=1;zonebuffs['A']=1;zonebuffs['S']=1; function setupzonebuffs(zone){ switch(zone){ case 'Mist': zonebuffs['S']=1.3;zonebuffs['W']=1.1;zonebuffs['F']=.9; break; } } </code></pre> http://stackoverflow.com/questions/1529493/remove-spket-perspective-from-list-in-eclipse 0 Remove Spket Perspective from List in Eclipse red.october 2009-10-07T04:34:02Z 2009-11-07T20:00:02Z <p>Hi:</p> <p>I uninstalled the Spket plugin from Eclipse, but there is still an <code>"&lt;Spket IDE&gt;"</code> perspective in the Perspective list. How do I get rid of it? I've made sure there are no more Spket directories under <code>eclipse_dir/plugins</code>, <code>eclipse_dir/features</code> and <code>eclipse_dir/dropins</code>. Where does Eclipse keep a list of its perspectives?</p> <p>Cheers</p> http://stackoverflow.com/questions/1516215/iphone-simulator-hangs-after-first-touch 0 iPhone Simulator hangs after first touch Cue 2009-10-04T11:51:26Z 2009-11-04T22:57:39Z <p>The application will stop responding to any touch events after clicking on either button. (Controller#increase / Controller#decrease methods).</p> <p>Here is the output of the console on startup</p> <pre><code>[Session started at 2009-10-04 14:41:20 +0300.] GNU gdb 6.3.50-20050815 (Apple version gdb-1344) (Fri Jul 3 01:19:56 UTC 2009) Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "x86_64-apple-darwin".sharedlibrary apply-load-rules all Attaching to process 1340. Pending breakpoint 1 - ""Controller.m":46" resolved 2009-10-04 14:41:23.339 HelloPoly[1340:207] My polygon: Hello I am a 5-sided polygon (aka a Pentagon) with angles of 108 degrees (1.884956 radians). (gdb) </code></pre> <p>Running the application on debug mode I see that there is indeed a call on the corresponding method as well as updating the UI. So the method does reach to the end of it and returns.</p> <pre><code>2009-10-04 14:42:25.723 HelloPoly[1340:207] sides increased to 6 </code></pre> <p>However removing the call</p> <pre><code>[self updateInterface]; </code></pre> <p>the application behaves normally (e.g. touch events are handled) but of course not according to specification :).</p> <p><strong>Program code follows</strong></p> <pre><code>//Controller extends NSObject #import "Controller.h" @implementation Controller - (void)awakeFromNib { // configure your polygon here polygon.minimumNumberOfSides = 3; polygon.maximumNumberOfSides = 12; polygon.numberOfSides = numberOfSidesLabel.text.integerValue; NSLog (@"My polygon: %@", polygon); } - (void)updateDecreaseButton{ decreaseButton.enabled = [polygon hasMinimumSides]; } - (void)updateIncreaseButton{ increaseButton.enabled = [polygon hasMaximumSides]; } - (void)updateNumberOfSidesLabel{ numberOfSidesLabel.text = [NSString stringWithFormat:@"%i", polygon.numberOfSides]; } - (void)updateInterface { [self updateDecreaseButton]; [self updateIncreaseButton]; [self updateNumberOfSidesLabel]; } - (IBAction)decrease:(id)sender { NSLog(@"sides decreased to %i", [polygon decreaseSides]); [self updateInterface]; } - (IBAction)increase:(id)sender { NSLog(@"sides increased to %i", [polygon increaseSides]); [self updateInterface]; } @end </code></pre> http://stackoverflow.com/questions/1659911/how-to-troubleshoot-long-builds-in-visual-studio 0 How to troubleshoot long builds in Visual Studio? rafek 2009-11-02T07:45:04Z 2009-11-02T07:50:51Z <p>Is it possible in any way to troubleshoot the build process in Visual Studio? I'd like to see which part of the build specifically takes so much time.</p> http://stackoverflow.com/questions/386831/troubleshooting-program-does-not-contain-a-static-main-method-when-it-clearly 3 Troubleshooting "program does not contain a static 'Main' method" when it clearly does...? adeena 2008-12-22T17:36:35Z 2009-10-31T12:36:17Z <p>My MS Visual C# program was compiling and running just fine. I close MS Visual C# to go off and do other things in life.</p> <p>I reopen it and (before doing anything else) go to "Publish" my program and get the following error message:</p> <p>"Program C:\myprogram.exe does not contain a static 'Main' method suitable for an entry point"</p> <p>Huh? Yes it does... and it was all working 15 min earlier. Sure, I can believe that I accidentally hit something or done something before I closed it up... but what? How do I troubleshoot this? </p> <p>My Program.cs file looks like this:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; using System.Threading; namespace SimpleAIMLEditor { static class Program { [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new mainSAEForm()); } } </code></pre> <p>...and there are some comments in there. There are no other errors.</p> <p>Help? </p> <p>-Adeena</p>