User John Dyer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T01:02:28Z http://stackoverflow.com/feeds/user/2862 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1578638/crystal-reports-error-the-maximum-report-processing-jobs-limit/1588988#1588988 0 Answer by John Dyer for Crystal Reports Error: The Maximum Report Processing Jobs Limit... John Dyer 2009-10-19T14:27:28Z 2009-10-19T14:27:28Z <p>See this other stackoverflow post for additional details about Crystal Report errors:</p> <p><a href="http://stackoverflow.com/questions/1184309/crystalreport-load-report-failed">CrystalReport Load Report Failed</a></p> http://stackoverflow.com/questions/1184309/crystalreport-load-report-failed/1588972#1588972 0 Answer by John Dyer for CrystalReport Load report failed John Dyer 2009-10-19T14:24:12Z 2009-10-19T14:24:12Z <p>If your application is a standalone executable then this error is generated because you are not properly closing your report object when you are done with it. You might see this error running you application as an ASP.NET app with a lot of users accessing your site simultaneously. </p> <p>You can cause the error to appear sooner by tweaking this registry key:</p> <pre><code>HKEY_LOCAL_MACHINE\SOFTWARE\CRYSTAL DECISIONS\10.0\REPORT APPLICATION SERVER\SERVER\PrintJobLimit </code></pre> <p>It normally is defaulted to 75. For debugging you can set it to a smaller value and cause the error to appear sooner.</p> <p>When you are done using a report object, call the .Close() method which will clean up the unmanaged resources used.</p> <p>There are those that mention to change the setting to -1. This is a mistake, it will only cause other problems for an application that is long running. The process will eventually run out of resources and start to fail in ways that will be even more difficult to troubleshoot.</p> http://stackoverflow.com/questions/1571219/what-should-i-use-instead-of-ping/1573526#1573526 0 Answer by John Dyer for What should I use instead of ping? John Dyer 2009-10-15T16:29:51Z 2009-10-15T16:29:51Z <p>Be very careful to keep this as start-up logic. I have see things like this degenerate to heart beat logic which has a lot of other fun issues. One of which is, if you app will have many running instances. If your app is used in a large environment and there might be thousands of instances running, then heartbeat logic can add to network and server loads. Or sometimes the heartbeat interval is configurable and someone sets it to zero or some other crazy value.</p> <p>One other point, I have seen this combined where the question ask of the DB server is what time is it on the server. i.e. select GetDate() </p> <p>This does two things, first you know the server and network are working if you get an answer. Second if you have some time critical operations you can measure the clock skew between the client machine and the DB server. Sometimes this is important to know.</p> http://stackoverflow.com/questions/147053/outlook-attachments-add-is-not-showing-in-mail-body 1 Outlook attachments.Add() is not showing in mail body John Dyer 2008-09-29T00:15:01Z 2009-08-24T12:50:26Z <p>I'm creating a new mail item, in C# VS-2008 outlook 2007, and attaching a file. The first issue is that I don't see an attachment area under the subject line showing the attachment. If I send the e-mail its properties show that there is an attachment and the e-mail size has grown by the attachment amount. I just cannot see it or extract the attachment.</p> <p>Here is the code I'm using:</p> <pre><code>Outlook.MailItem mailItem = (Outlook.MailItem)this.Application.CreateItem(Outlook.OlItemType.olMailItem); attachments.Add(ReleaseForm.ZipFile, Outlook.OlAttachmentType.olByValue, 0, "DisplayName"); </code></pre> <p>I am expecting the part "DisplayName" would show as the attachment name and I should be using the filename.</p> <p>I don't call .Send() on the e-mail programmatically, I call mailItem.Display(true) to show the e-mail to the user for any final edits. At this point I can look at the properties and see that there is an attachment there.</p> <p>If I press send (sending to myself) I see the same thing, the attachment appears to be there but not accessible.</p> http://stackoverflow.com/questions/33793/how-to-retreive-data-from-trs-80-floppy-disks 5 How to retreive data from TRS-80 floppy disks John Dyer 2008-08-29T01:49:50Z 2009-06-22T00:16:22Z <p>I have a program that was written in TRS-DOS BASIC on a TRS-80 model 1. There is the program and more importantly the data files. Does anyone know of a service that I can sent the disks to that will read the data (for a reasonable price)? The original computer is long dead and it was a cool program that a couple of friends and I put together.</p> http://stackoverflow.com/questions/34664/designmode-with-controls 9 DesignMode with Controls John Dyer 2008-08-29T16:37:10Z 2009-05-22T14:31:55Z <p>Has anyone found a useful solution to the DesignMode problem when developing controls?</p> <p>The issue is that if you nest controls then DesignMode only works for the first level. The second and lower levels DesignMode will always return FALSE.</p> <p>The standard hack has been to look at the name of the process that is running and if it is "DevEnv.EXE" then it must be studio thus DesignMode is really TRUE.</p> <p>The problem with that is looking for the ProcessName works its way around through the registry and other strange parts with the end result that the user might not have the required rights to see the process name. In addition this strange route is very slow. So we have had to pile additional hacks to use a singleton and if an error is thrown when asking for the process name then assume that DesignMode is FALSE.</p> <p>A nice clean way to determine DesignMode is in order. Acually getting Microsoft to fix it internally to the framework would be even better!</p> http://stackoverflow.com/questions/322766/is-there-a-difference-in-the-underlying-protocol-for-odbc-oledb-ado-net 3 Is there a difference in the underlying protocol for ODBC, OLEDB & ADO.NET John Dyer 2008-11-27T02:04:28Z 2008-12-01T18:00:09Z <p>When communicating to a SQL Server database using one of the typical systems, ODBC, OLEDB or ADO.NET, is the underlying basic protocol the same? Are all the differences between these systems basically just client side issues?</p> <p>Is this all just different flavors of TDS (Tabular Data Stream) transfer?</p> <p><a href="http://msdn.microsoft.com/en-us/library/cc448435.aspx" rel="nofollow">[MS-TDS]: Tabular Data Stream Protocol Specification</a></p> <p>Or there actual different ways to talk to the database server and there are fundamental difference between these protocols?</p> http://stackoverflow.com/questions/285614/how-to-delete-all-but-the-latest-20-000-records-in-ms-sql-2005/285968#285968 0 Answer by John Dyer for How to delete all but the latest 20,000 records in MS SQL 2005? John Dyer 2008-11-13T00:55:54Z 2008-11-13T00:55:54Z <p>You question implies that you are trimming to get better daytime performance from the table. Are you getting table scans on the daytime queries? Wouldn't better indexes be the answer? Or are you in a situation where you are stuck with a "crappy schema"?</p> <p>Or do have some really strange situation where you indeed need to purge old records? Is 20,000 a hard and fast number? Or could a datetime work? Then and index on the datetime column would make trimming a bit easier.</p> http://stackoverflow.com/questions/220828/only-allow-one-server-to-access-a-file-on-a-network-drive/245562#245562 0 Answer by John Dyer for Only allow one server to access a file on a network drive John Dyer 2008-10-29T01:58:36Z 2008-10-29T01:58:36Z <p>Another option instead of the lock is to rename the file into a directory. Make a sub-directory for each server and then have a server try and re-name the file into its directory (rename is an atomic operation). The one to succed gets to parse the file.</p> <p>The lock issue will be tricky as the file will still be visible to each server and they might try and open the file and then repeatly error. The rename will be absolute as to the owner of the file.</p> <p>Also keep in mind whatever solution you use that there will be the possibility of a "lost file". If a server stops processing a file (error, exception, reboot...) it might be abandoned. The typical solution to these types of problems is in addition to things like the file watcher you have servers poll every now and then as well. </p> <p>Copying the file to a server dir will help a bit with this. One downside would be if a server goes completely off-line, then its file will sit in a dir until the server comes back on-line.</p> http://stackoverflow.com/questions/243244/application-shutdown-and-windows-error-reporting/243435#243435 -1 Answer by John Dyer for Application Shutdown and Windows Error Reporting John Dyer 2008-10-28T13:59:54Z 2008-10-28T13:59:54Z <p>Yea, as Marc states, just use THROW and the original exception will be re-thrown with the stack trace information preserved.</p> <p>A THROW E will start the whole exception stack over again with the original stack information lost. Typically this is not what you want.</p> <p>Alternative you can throw a new exception and add the original exception as an inner exception. Then your new exception could add additional bits of information.</p> http://stackoverflow.com/questions/241925/is-it-possible-to-execute-a-text-file-from-sql-query/241985#241985 1 Answer by John Dyer for Is it possible to execute a text file from SQL query? John Dyer 2008-10-28T01:36:20Z 2008-10-28T01:36:20Z <p>Take a look at OSQL. This utility lets you run SQL from the command prompt. It's easy to get installed on a system, I think it comes with the free SQL Server Express.</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa213090(SQL.80).aspx" rel="nofollow">Using the osql Utility </a></p> <p>A qick search of "OSQL" on stack overflow shows a lot of stuff is available.</p> <p>The main thing to handle properly is the user and password account parameters that get passed in on the command line. I have seen batch files that use NT file access permissions to control the file with the password and then using this file's contents to get the script started. You could also write a quick C# or VB program to run it using the Process class.</p> http://stackoverflow.com/questions/236481/why-do-software-engineers-hate-writing-documentation/236991#236991 0 Answer by John Dyer for Why do software engineers hate writing documentation? John Dyer 2008-10-25T20:46:45Z 2008-10-25T20:46:45Z <p>One key point I keep in mind is that bad code with good documentation is infinitely better that good code with bad documentation.</p> <p>If you have ever worked with MFC you will know what I mean. It was a strange code base to work from but there was documentation everywhere. MSDN, books, articles. This was all before the net really took off. With all that documentation it worked well.</p> <p>There are many examples of code whose quality is debatable but has good documentation. There is even more examples of good code with poor or nonexistent documentation that is all but useless.</p> http://stackoverflow.com/questions/236533/how-do-you-automate-copying-file-with-path-too-deep-issues-in-windows/236759#236759 1 Answer by John Dyer for How do you automate copying file with path too deep issues in Windows? John Dyer 2008-10-25T17:56:39Z 2008-10-25T17:56:39Z <p>A hack from the old days is to assign a drive letter to part of the directory. </p> <p>One option is the SUBST command. That will allow you to substitute a drive letter for a drive letter and path combination. I have seen this done in install packages to get a shorter version of the directory.</p> <p>Alternativly you can use a shared folder and map it to a drive letter. Or you can use the an administrative share.</p> <p>But really if you have code that you can run, then handling it there is much better that these hacks.</p> http://stackoverflow.com/questions/214017/best-table-enum-driven-method-calling-system 2 Best table / enum driven method calling system John Dyer 2008-10-17T22:13:13Z 2008-10-25T12:41:32Z <p>Consider I'm interfacing with an external system that will send a message (DB table, message queue, web service) in some format. In the "message header" there is the "MessageType" that is a number from 1 to 20. The MessageType defines what to do with the rest of the message. There are things like new, modified, deleted, canceled...</p> <p>My first inclination was to setup an enumeration and define all the types. Then parse the number into an enum type. With it as an enum I would setup the typical switch case system and call a particular method for each of the message types.</p> <p>One big concern is maintenance.<br /> A switch / case system is bulky and teadious but, it's really simple.<br /> Various table / configuration systems can be difficult for someone else to grok and add new messages or tweak existing messages.</p> <p>For 12 or so MessageTypes the switch/case system seems quite reasonable. What would be a reasonable cut-off point to switch to a table driven system?</p> <p>What kinds of systems are considered best for handling these types of problems?</p> <p>I'm setting a tag for both C# and Java here because it's definitly a common problem. There are many other languages with the same issue.</p> http://stackoverflow.com/questions/227628/how-smoothly-does-a-website-launch-usually-go-for-you/227694#227694 0 Answer by John Dyer for How smoothly does a website launch usually go for you? John Dyer 2008-10-22T21:59:49Z 2008-10-22T21:59:49Z <p>I wouldn't limit your statement to just web sites. I have worked on a lot of projects over the years and there are always details that get "discovered" when going live. No amount of testing removes all the fun things that can happen.</p> <p>One thing I will say is what you learn in the first couple of hours of a new system going "on-line" is way move valuable that all the stuff learned during development. It's show time when the real cool problems and scenarios appear. Learn to love them and use these times as a learning point for the next time. Then each time it will be just at fun!</p> http://stackoverflow.com/questions/223982/business-logic-invading-ui-in-a-large-winforms-app/224048#224048 3 Answer by John Dyer for Business logic invading UI in a large winforms app John Dyer 2008-10-22T00:21:25Z 2008-10-22T13:57:10Z <p>How profitable is the product? How large is the team?</p> <p>These questions will be your starting point for a solution. The more profitable and larger the team the faster you will be able to refactor code to a newer form.</p> <p>But with large projects there is typically a lot at risk with changes to the code. There must be areas that "just work" that haven't been looked at in years. Getting bugs in these areas will be a big challenge. It will take awhile to get your gears spinning to even debug these areas.</p> <p>My though is to study the code in detail. When you are really sure you know it cold, give a presentation to others that are knowledgable in the code base. This will point out the next batch of code that you thought you knew but didn't. As the code starts to get into your head a clearer and clearer picture of what is needed will just emerge in your mind. Then you are ready to work out a plan for the first step. Make it something reasonable and don't bite off too much.</p> <p>Above all, learn and have fun. Re-working a large project can be quite fun as long as you have the right attitude.</p> http://stackoverflow.com/questions/224043/timer-in-a-win32-service/224083#224083 0 Answer by John Dyer for Timer in a win32 service John Dyer 2008-10-22T00:41:51Z 2008-10-22T00:41:51Z <p>Are you just trying to "wake up" every now and then to do some work? You can always use Sleep().</p> <p>Additionally, I typically have a thread that is in a while(1 == 1) loop with a sleep inside. There I can check for the shutdown request and other misc housekeeping. You could use that system to tickle an event or mutex for the worker thread in the app.</p> http://stackoverflow.com/questions/216664/creating-an-mjpeg-video-stream-in-c/219597#219597 0 Answer by John Dyer for Creating an MJPEG video stream in c# John Dyer 2008-10-20T19:36:57Z 2008-10-20T19:36:57Z <p>Have you looked at various web cam setups that exist on the net? A lot of them do some sort of low res update without flicker. You should be able to reverse engineer these types of sites for additional clues to your problem.</p> <p>Some sites create a GIF animation, maybe that is an option so that the user can see the past minute or so.</p> http://stackoverflow.com/questions/219411/what-are-the-basics-one-needs-to-know-when-porting-an-application-to-citrix/219466#219466 1 Answer by John Dyer for What are the basics one needs to know when porting an application to Citrix? John Dyer 2008-10-20T18:52:43Z 2008-10-20T18:52:43Z <p>For fairly straight forward app things just run. </p> <p>Does you app need use localization configuration? i.e. time / date or currency formatting? There are Citrix settings that can do many things in this area. The users computer settings can be "projected" into Citrix or they could be overridden in Citrix.</p> <p>Also do you use the machine name for anything? That will be the server name and not the users local machine name.</p> <p>You can get a bit of a simulation in a Windows Server environment by getting a couple of remote desktop sessions running your app.</p> http://stackoverflow.com/questions/218447/best-way-to-determine-if-a-net-windows-service-has-not-hung/218498#218498 0 Answer by John Dyer for Best way to determine if a .NET Windows service has not hung? John Dyer 2008-10-20T13:50:57Z 2008-10-20T13:50:57Z <p>You could created a named event or mutex and then toggle it as your code is executing. Then an external program can see this pulsing as an indication that the program is running.</p> <p>I have also used an internal watchdog system running in another thread. That thread looks at the main thread for activity like log output or a toggling event. If the activity is not seen then the service is considered hung and I shutdown the service. In this case you can configure windows to auto-restart a stopped service and that might clear the problem (as long as it's not an internal logic bug).</p> <p>Also services I work with have text logs that are written to a log. In addition for services that are about to "sleep for a bit", I log the time for the next wake up. I use <a href="http://ophilipp.free.fr/op_tail.htm" rel="nofollow">MTAIL</a> to watch a log for output.</p> http://stackoverflow.com/questions/218335/is-is-possible-to-write-ms-sql-server-add-in/218478#218478 1 Answer by John Dyer for Is is possible to write MS SQL Server add-in? John Dyer 2008-10-20T13:44:04Z 2008-10-20T13:44:04Z <p>You might consider researching extended stored procedures. They are a way to integrated C++ logic into SQLServer. It appears that they are being phased out in favor of CLR integration but there might be some really good ideas to be found is seeing what people have done with them. </p> <p>The one thing that always scared me off of extended stored procedures is that if your code crashed the entire database goes down. They run in the SQL Server process and there is limited protection.</p> <p>MSDN link: <a href="http://msdn.microsoft.com/en-us/library/ms164716.aspx" rel="nofollow">Database Engine Extended Stored Procedure Programming</a></p> http://stackoverflow.com/questions/213118/how-to-receive-timer-events-in-cwinapp-with-mfc/213789#213789 0 Answer by John Dyer for How to receive timer events in CWinApp with MFC? John Dyer 2008-10-17T20:45:31Z 2008-10-17T20:45:31Z <p>Check out this post by Eric Raymond. There are some interesting nuggets for what your working on that might keep you out of trouble.</p> <p><a href="http://blogs.msdn.com/oldnewthing/archive/2008/10/16/9001218.aspx" rel="nofollow">Why your thread is spending all its time processing meaningless thread timers</a></p> http://stackoverflow.com/questions/210832/how-do-i-secure-a-sql-server-2005-database/210862#210862 0 Answer by John Dyer for How do I secure a SQL Server 2005 database? John Dyer 2008-10-17T01:38:10Z 2008-10-17T01:38:10Z <p>You need to pratice standard security for a windows server. A good place to start is to use integrated logins rather that SQL logins.</p> <p>You will need to study the books on-line. You can give some users read-only access. Others can be denied access to sensitive tables.</p> http://stackoverflow.com/questions/199679/whats-the-best-beginner-book-for-assembly-language/199743#199743 1 Answer by John Dyer for What's the best "beginner" book for Assembly Language? John Dyer 2008-10-14T01:46:09Z 2008-10-14T01:46:09Z <p>If you're really serious about learning assembler, then consider getting something like an old KIM-1 system. That had a 6502 processor and a nice simple instruction set. Although a quick look on e-bay and I have to say, that one is not worth 350 bucks: )</p> <p>But there were a bunch of systems made "back in the day". A Z-80 system, one of the old 6800 <a href="http://www.vintage-computer.com/heathkit3400.shtml" rel="nofollow">Heathkit ET-3400 trainer</a> might be nice. I see one for a couple of bucks on e-bay.</p> <p>These old systems are real simple but have a nice LED display, a monitor ROM and some I/O to get you started with a couple of simple projects.</p> http://stackoverflow.com/questions/183086/how-to-determine-if-the-application-is-an-mfc-program/183285#183285 1 Answer by John Dyer for How to determine if the application is an MFC program? John Dyer 2008-10-08T15:07:45Z 2008-10-08T15:07:45Z <p>If you can run the application, get it running and then use the Sysinternals tool <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">ProcessExplorer</a> to view the loaded DLL's.</p> <p>Or do you need a programatic way of determining if the app is using MFC? Also, I'm a bit suprised that Depends is not showing what you expect. Compare the Depends output with ProcessExplorer and see what you can learn.</p> http://stackoverflow.com/questions/164492/what-is-the-reporting-tool-that-you-would-use/165377#165377 1 Answer by John Dyer for What is the reporting tool that you would use? John Dyer 2008-10-03T01:54:35Z 2008-10-03T01:54:35Z <p>Check out the Report Viewer stuff in studio 2008 / .NET 3.5</p> <p>This amazing site has the full scoop: <a href="http://www.gotreportviewer.com/" rel="nofollow">GotReportViewer</a></p> <p>It's a nice build in reporting system that will show a report and print. It's not full blown like Crystal or SQL Reporting Services. If all you need is some lightweight reporting you can't beat the price.</p> http://stackoverflow.com/questions/152337/getprocessesbyname-and-windows-server-2003-scheduled-task/152458#152458 0 Answer by John Dyer for GetProcessesByName() and Windows Server 2003 scheduled task John Dyer 2008-09-30T10:04:20Z 2008-09-30T10:04:20Z <p>One issue that I have seen with reading the process name is that access to the performance counters can get disabled.</p> <p>Crack open your registry and see if this key is there: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PerfProc\Performance] "Disable Performance Counters"=dword:00000001</p> <p>You can either set it to zero or deleted it.</p> http://stackoverflow.com/questions/147053/outlook-attachments-add-is-not-showing-in-mail-body/147188#147188 4 Answer by John Dyer for Outlook attachments.Add() is not showing in mail body John Dyer 2008-09-29T01:25:53Z 2008-09-29T01:25:53Z <p>I have found the issue. I change the code to use the following:</p> <pre><code>attachments.Add(ReleaseForm.ZipFile, Outlook.OlAttachmentType.olByValue, Type.Missing, Type.Missing); </code></pre> <p>It appears that the Position and DisplayName parameters control what happens with an olByValue. Using Type.Missing and now I see the attachments correctly in the e-mail.</p> http://stackoverflow.com/questions/145236/how-do-small-software-patches-correct-big-software/145742#145742 2 Answer by John Dyer for How do small software patches correct big software? John Dyer 2008-09-28T12:03:17Z 2008-09-28T12:03:17Z <p>If you are talking about patching windows applications then what you want to look at are .MSP files. These are similar to an .MSI but just patch and application.</p> <p>Take a look at <a href="http://msdn.microsoft.com/en-us/library/aa370579(VS.85).aspx" rel="nofollow">Patching and Upgrading</a> in the MSDN documents.</p> <p>What an .MSP files does is load updated files to an application install. This typically is updated dll's and resource files, but could include any file.</p> <p>In addition to patching the installed application, the repair files located in C:\WINDOWS\Installer are updated as well. Then if the user selects "Repair" from Add / Remove programs the updated patch files are used as well.</p> <p>I'm thinking that the binary diff method discussed by John Millikin must be used in other operating systems. Although you could make it work in windows it would be somewhat alien.</p> http://stackoverflow.com/questions/127654/change-the-catalog-property-of-a-crystal-report-in-vs-2005 0 Change the Catalog property of a Crystal Report in VS 2005 John Dyer 2008-09-24T14:54:46Z 2008-09-25T19:22:38Z <p>I'm working on an existing report and I would like to test it with the database. The problem is that the catalog set during the initial report creation no longer exists. I just need to change the catalog parameter to a new database. The report is using a stored proc for its data. It looks like if try and remove the proc to re-add it all the fields on the report will disapear and I'll have to start over.</p> <p>I'm working in the designer in Studio and just need to tweak the catalog property to get a preview. I have code working to handle things properly from the program.</p>