User Jeffrey - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T18:53:07Z http://stackoverflow.com/feeds/user/3259 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1492923/how-to-design-a-report-request-from-client-machines-to-be-run-on-an-available-ser 0 How to design a report request from client machines to be run on an available server Jeffrey 2009-09-29T14:30:52Z 2009-09-29T14:37:46Z <p>I have a vb.net 2.0 winforms project that is full of all kinds of business reports (generated with Excel interop calls) that can be run "on-demand". Some of these reports filter through lots of data and take a long time to run - especially on our older machines around the office.</p> <p>I'd like to have a system where a report request can be made from the client machines, some listener sees it, locates a server with low-load, runs the report on that server, and emails the result to the user that requested it.</p> <p>How can I design such a change? All our reports take different parameters, and I can't seem to figure out how to deal with this. Does each generator need to inherit from a "RemoteReport" class that does this work? Do I need to use a service on one of our servers to listen for these requests?</p> http://stackoverflow.com/questions/466540/getting-row-index-from-an-imagebutton-click-in-a-gridview 1 Getting row index from an ImageButton click in a GridView Jeffrey 2009-01-21T19:03:03Z 2009-09-09T12:47:12Z <p>I have a Gridview with ImageButtons added to a column via a templatefield. I've attached a function to the "OnClick" event.</p> <p>Once in this function, how can I get the index of the row that has the button that has been clicked. It appears that all I have is the mouse coordinates on the page.</p> http://stackoverflow.com/questions/31163/forcing-the-solution-explorer-to-select-the-file-in-the-editor-in-visual-studio-2 6 Forcing the Solution Explorer to select the file in the editor in visual studio 2005 Jeffrey 2008-08-27T20:22:53Z 2009-08-18T18:43:25Z <p>In Visual Studio 2005, whenever I would view a file in the main editor, the Solution Explorer would find and highlight that file. Some time ago, this stopped working and the Solution Explorer would do nothing.</p> <p>This has become quite a pain since following a chain of "Go To Definition"s can lead you all over your solution. Where is the setting to turn this back on?</p> http://stackoverflow.com/questions/219581/how-can-tooltips-be-added-to-a-vb-net-winforms-datagrid-rows 0 How can tooltips be added to a vb.net winforms datagrid row(s)? Jeffrey 2008-10-20T19:31:40Z 2009-07-29T08:14:25Z <p>I'm looking to add a tooltip to each row in a bound datagrid in vb.net winforms. How can this be done?</p> http://stackoverflow.com/questions/1012732/how-to-add-image-in-pdf-using-c-and-itextsharp/1012779#1012779 2 Answer by Jeffrey for How to Add image in pdf using C# and iTextSharp? Jeffrey 2009-06-18T13:58:47Z 2009-06-18T13:58:47Z <p>Here is the iTextSharp tutorial on <a href="http://itextsharp.sourceforge.net/tutorial/ch06.html" rel="nofollow">images</a>. Without seeing more of your code, it's tough to judge what piece of code from this you'll need.</p> http://stackoverflow.com/questions/1012732/how-to-add-image-in-pdf-using-c-and-itextsharp/1012745#1012745 1 Answer by Jeffrey for How to Add image in pdf using C# and iTextSharp? Jeffrey 2009-06-18T13:52:39Z 2009-06-18T13:52:39Z <p>You'll need some third-party tool for this.</p> http://stackoverflow.com/questions/1001987/what-are-the-most-useful-hot-key-in-visual-studio/1002049#1002049 2 Answer by Jeffrey for What are the most useful hot key in Visual Studio? Jeffrey 2009-06-16T14:59:22Z 2009-06-16T14:59:22Z <p>Ctrl+M, Ctrl+O - Collapse to Definitions.</p> <p>This is fantastic for quick browsing through a large class.</p> http://stackoverflow.com/questions/996025/asp-net-login-control-without-a-username/996035#996035 4 Answer by Jeffrey for ASP.NET Login control without a Username Jeffrey 2009-06-15T13:13:26Z 2009-06-15T13:13:26Z <p>I'd sure style it with display:none long before rolling my own.</p> http://stackoverflow.com/questions/782992/connect-to-ftp-server-with-net-2-0 0 Connect to FTP Server with .net 2.0 Jeffrey 2009-04-23T18:38:30Z 2009-04-23T18:42:27Z <p>I'm looking to connect to an existing ftp server, upload a file, wait while the server generates a report on it, and download that report back to the local machine in a vb.net 2.0 winforms project.</p> <p>Is there an existing FTP library that would be helpful to me for this? My task seems simple enough that I'd rather not get into the world of active vs. passive, sockets, etc.</p> http://stackoverflow.com/questions/778643/copying-multiple-worksheets-simultaneously-to-preserve-chart-references 1 Copying multiple worksheets simultaneously to preserve chart references Jeffrey 2009-04-22T18:51:43Z 2009-04-22T19:44:29Z <p>I've created a two-worksheet template in Excel - the first sheet is for pretty charts, and the other sheet is for the data that drives those charts. I've written a vb.net 2005 app that can dump in all my data on the second worksheet, and the chart worksheet updates perfectly.</p> <p>I would like to do this report several times over in the same workbook. (So the tabs would read 'Person1 - Chart', 'Person1 - Data', 'Person2 - Chart', 'Person2 - Data', etc.)</p> <p>My solution was to, for every person this report was going to be run for, copy the chart template, and then copy the data template. The problem is that every chart template that is created points to the original data worksheet. How can I set what worksheet each chart worksheet is pointing at?</p> <p>Is there a way to copy worksheets in pairs, maintaining the relationship to themselves, rather than to the parent?</p> http://stackoverflow.com/questions/725625/generating-a-file-then-launching-a-secure-download 1 Generating a file, then launching a secure download Jeffrey 2009-04-07T13:13:26Z 2009-04-07T13:28:12Z <p>Working in an asp.net 2.0 (VB) environment, I already have code that can generate an excel file from a database for a particular "user" of the website. I want to be able to launch this report generator on demand, and then after the file has been generated, allow the user to download this file.</p> <p>How can I do this securely, and not just dumping the files off in some publicly readable directory?</p> <p>Note: Related to <a href="http://stackoverflow.com/questions/643643/how-to-create-and-download-excel-document-using-asp-net">this question</a>, but the part I'm really interested in was never answered.</p> http://stackoverflow.com/questions/651472/what-can-cause-a-form-to-lose-its-link-to-its-parent-form-in-an-mdi-vb-net-projec 0 What can cause a form to lose its link to its parent form in an MDI vb.net project? Jeffrey 2009-03-16T17:52:49Z 2009-03-16T19:09:18Z <p>Very periodically, some of our forms in our MDI vb.net project will return me.parent as nothing. I've never seen this while debugging, but it does cause an un-handled exception on our client machines - and the form that they have open varies from case to case.</p> <p>Is there any sort of event, short of a 'me.parent = nothing', that can cause this link to be broken?</p> http://stackoverflow.com/questions/651472/what-can-cause-a-form-to-lose-its-link-to-its-parent-form-in-an-mdi-vb-net-projec/651754#651754 0 Answer by Jeffrey for What can cause a form to lose its link to its parent form in an MDI vb.net project? Jeffrey 2009-03-16T19:09:18Z 2009-03-16T19:09:18Z <p>Freakin' users.</p> <p>It looks like this is replicated by closing the current form before the new form can be opened. (In my case, while a report is generating) The little hour-glass icon wasn't apparently deterrent enough.</p> http://stackoverflow.com/questions/557192/please-enter-at-least-10-characters/557206#557206 0 Answer by Jeffrey for Please enter at least 10 characters. Jeffrey 2009-02-17T14:57:19Z 2009-02-17T14:57:19Z <p>Bugs Bunny Mickey Mouse Elmer Fudd Charlie Brown Garfield Dilbert Minnie Mouse Foghorn Leghorn Pluto Voltron</p> http://stackoverflow.com/questions/556969/how-can-i-load-a-panel-at-click-time-with-a-modalpopupextender 1 How can I load a panel at click-time with a ModalPopupExtender? Jeffrey 2009-02-17T14:12:26Z 2009-02-17T14:25:09Z <p>I am creating a checklist, where "checklistitems" are added to a "checklist". Each of the items has a button next to it to launch a modal popup that will contain additional information about the item.</p> <p>Because there are so many items, I've put the actual panel that will pop up on the "checklist", so it will only be on the web page once. The ModalPopupExtender seems to handle this cross-class popup just fine.</p> <p>My question is how can I load information into this panel? The "checklistitem" has the data that needs to be passed up into the checklist - and I'd love to accomplish this with an update panel to avoid a full postback.</p> http://stackoverflow.com/questions/544206/is-it-possible-or-ok-to-have-a-stdlist-of-stdlists/544218#544218 9 Answer by Jeffrey for Is it possible (or ok) to have a std::list of std::list's? Jeffrey 2009-02-13T00:33:50Z 2009-02-13T04:22:04Z <p>It sure is. But what you probably want - for expandability purposes later - create a second class - "polygon", that holds a list of points. Then use a list of polygons.</p> <p>EDIT: I'm no C++ programmer, so I'm sure an implementation like <a href="http://stackoverflow.com/questions/544206/is-it-possible-or-ok-to-have-a-stdlist-of-stdlists/544685#544685">j_random_hacker's</a> response is better if you're needing this for a real project. I merely wanted to give a quickie code example of this design.</p> <pre><code>class Point { public: int x, y; Point(int x1, int y1) { x = x1; y = y1; } }; class Polygon { public: std::list &lt;Point&gt; currentPolygon; Polygon(std::list &lt;Point&gt; p1) { currentPolygon = p1 } }; </code></pre> http://stackoverflow.com/questions/520613/well-respected-developer-blogs-written-by-non-famous-people/520626#520626 2 Answer by Jeffrey for Well-respected developer blogs written by non-famous people Jeffrey 2009-02-06T15:10:23Z 2009-02-06T15:10:23Z <p>Jon Skeet!!</p> <p><a href="http://msmvps.com/blogs/jon_skeet/Default.aspx" rel="nofollow">http://msmvps.com/blogs/jon_skeet/Default.aspx</a></p> http://stackoverflow.com/questions/485007/applying-existing-tablestyle-to-a-gridview 0 Applying Existing Tablestyle to a Gridview Jeffrey 2009-01-27T20:07:58Z 2009-02-06T03:46:20Z <p>I'm working on a web-enabled version of our existing winforms project. Gridviews seem to be an ample replacement for the datagrids that we've been using. We have extensive table styles written for the old datagrids. Is it possible to reuse this code to apply a style to a gridview?</p> <p>If a re-write is necessary, what is the best way to style the gridviews?</p> http://stackoverflow.com/questions/447892/changing-multiple-foreign-keys-to-point-to-a-new-table 0 Changing multiple foreign keys to point to a new table Jeffrey 2009-01-15T18:31:23Z 2009-01-15T19:06:44Z <p>On MS SQL Server 2005, I have a table that I want to replace. Many other tables have a Foreign Key reference to this table. Is there a script that I can run to simply roll over all these references from the old table to the new table?</p> <p>Or am I going to have to go through and specifically drop each of these foreign keys, and write a new key for each one?</p> http://stackoverflow.com/questions/439400/does-anyone-have-any-useful-resources-to-share-or-tips-to-offer-for-developing-a/439424#439424 1 Answer by Jeffrey for Does anyone have any useful resources to share or tips to offer for developing a MUD? Jeffrey 2009-01-13T15:40:23Z 2009-01-13T15:40:23Z <p>An active community seems to be around for the Dead Souls MUDlib</p> <p><a href="http://en.wikipedia.org/wiki/Dead_Souls_MUDlib" rel="nofollow">http://en.wikipedia.org/wiki/Dead_Souls_MUDlib</a></p> <p>I was an old player of Nightmare LPMud which sadly disappeared. I'm not much in for the coding of these MUDs, but I have been following this community loosely just due to so many positive MUDding memories.</p> http://stackoverflow.com/questions/437931/how-to-measure-of-lines-of-code-in-project/437940#437940 0 Answer by Jeffrey for How to measure # of lines of code in project? Jeffrey 2009-01-13T04:10:01Z 2009-01-13T04:10:01Z <p>If you are on a linux box, the easiest way is probably directed by this SO question:</p> <p><a href="http://stackoverflow.com/questions/114814/count-non-blank-lines-of-code-in-bash">http://stackoverflow.com/questions/114814/count-non-blank-lines-of-code-in-bash</a></p> http://stackoverflow.com/questions/420500/helpful-math-classes-for-programmers/420520#420520 1 Answer by Jeffrey for Helpful math classes for programmers Jeffrey 2009-01-07T14:40:04Z 2009-01-07T14:40:04Z <p>See if you can find a mathematic-modeling class. Often it's taught as a seminar for math majors, but depending on the projects, it will lie right at the intersection between math and programming.</p> http://stackoverflow.com/questions/417579/when-to-say-when-with-a-startup-company/417585#417585 7 Answer by Jeffrey for When to say when with a startup company? Jeffrey 2009-01-06T18:14:10Z 2009-01-06T18:14:10Z <p>Cry.</p> <p>When it comes down to it, you're deciding between the welfare of your family or your boss' family. It sucks, but there's really only one way to come down on it.</p> http://stackoverflow.com/questions/408554/best-way-to-keep-gui-updated-when-the-underlying-sql-view-data-changes/408574#408574 1 Answer by Jeffrey for Best way to keep GUI updated when the underlying SQL view data changes? Jeffrey 2009-01-03T03:55:23Z 2009-01-03T03:55:23Z <p>In our little internal app, whenever a user makes a change to the data in the database, a UDP broadcast is sent over the network telling everyone what sort of data has been modified. If a user has part of the gui open that matches what has been broadcast, the form they have open is reloaded.</p> <p>Since it is not overly common that users of our system have open the same bits of data, this is not an overly common occurance. We do though send out alerts when someone is viewing the same data that they have open - to let them know what might be causing the data that they are looking at to change.</p> http://stackoverflow.com/questions/381944/how-to-create-a-web-based-email-client-in-net/381994#381994 2 Answer by Jeffrey for How to create a web-based Email Client in .NET? Jeffrey 2008-12-19T19:39:29Z 2008-12-19T19:39:29Z <p>I attempted a similar project last year, but never got very far with it. There were so many solid off-the-shelf solutions to this that I took the advice "Programming is hard. Let's go shopping!"</p> http://stackoverflow.com/questions/379236/database-design-best-table-structure-for-capturing-the-user-friend-relationship/379245#379245 4 Answer by Jeffrey for Database design: Best table structure for capturing the User/Friend relationship? Jeffrey 2008-12-18T20:58:22Z 2008-12-18T20:58:22Z <p>I'd do something similar to what you have, but remove the "IsMutual" flag. Simply add a second row with inverse values when it is mutual. It does add rows, but feels a lot cleaner.</p> http://stackoverflow.com/questions/376375/left-join-vs-multiple-select-statements/376391#376391 4 Answer by Jeffrey for LEFT JOIN vs. multiple SELECT statements Jeffrey 2008-12-17T23:07:19Z 2008-12-17T23:07:19Z <p>I'm no DBA, but this looks suspiciously like code that I wrote when I first started database programming. I'd imagine this is simply the work of a novice.</p> http://stackoverflow.com/questions/31572/broadcast-like-udp-with-the-reliability-of-tcp 5 Broadcast like UDP with the reliability of TCP Jeffrey 2008-08-28T02:55:23Z 2008-12-09T23:55:45Z <p>I'm working on a .net solution that is run completely inside a single network. When users make a change to the system, I want to launch an announcement and have everyone else hear it and act accordingly. Is there a way that we can broadcast out messages like this (like UDP will let you do) while keeping guaranteed delivery (like TCP)?</p> <p>This is on a small network (30ish clients), if that would make a difference.</p> http://stackoverflow.com/questions/298926/how-can-a-hashtable-be-bound-to-a-drop-down-list 1 How can a hashtable be bound to a drop down list? Jeffrey 2008-11-18T14:43:22Z 2008-11-18T15:19:15Z <p>In vb.net / winforms, how can a hashtable be bound to a drop down list or any other datasource-driven control?</p> http://stackoverflow.com/questions/96164/partial-site-ssl-using-asp-net-login-control 3 Partial site SSL using asp.net login control Jeffrey 2008-09-18T19:43:53Z 2008-11-12T01:17:16Z <p>I'm attempting to convert a home-grown login system to the standard asp.net login control included in .net. I want all communication on the website for a user not logged in to be in clear text, but lock everything in SSL once the user logs in - including the transmission of the username and password.</p> <p>I had this working before by loading a second page - "loginaction.aspx" - with a https: prefix, then pulling out the username and password by looking for the proper textbox controls in Request.Form.Keys. Is there a way to do something similar using the .net login controls? I dont want to have a seperate login page, but rather include this control (within a loginview) on every page on the site.</p> http://stackoverflow.com/questions/52103/can-i-use-sql-server-management-studio-2005-for-2008-db/215823#215823 Comment by Jeffrey on Can I use SQL Server Management Studio 2005 for 2008 DB? Jeffrey 2009-11-09T16:14:02Z 2009-11-09T16:14:02Z Thanks for this. I almost went out to upgrade for the IntelliSense, but I guess I won't bother now until we upgrade the db. Thanks! http://stackoverflow.com/questions/1492923/how-to-design-a-report-request-from-client-machines-to-be-run-on-an-available-ser/1492959#1492959 Comment by Jeffrey on How to design a report request from client machines to be run on an available server Jeffrey 2009-09-29T14:44:09Z 2009-09-29T14:44:09Z Awesome. Exactly what I was looking for. http://stackoverflow.com/questions/1492923/how-to-design-a-report-request-from-client-machines-to-be-run-on-an-available-ser/1492959#1492959 Comment by Jeffrey on How to design a report request from client machines to be run on an available server Jeffrey 2009-09-29T14:40:14Z 2009-09-29T14:40:14Z This sounds like the kind of thing I see working for us. The biggest problem I see is that we have all sorts of arguments that get passed into the actual report generators - arraylists included. How can you save that kind of data to a database &quot;argument&quot; column? http://stackoverflow.com/questions/1332270/can-i-add-the-same-datarow-to-a-datatable-multiple-times Comment by Jeffrey on Can I add the same DataRow to a DataTable multiple times? Jeffrey 2009-08-26T14:16:27Z 2009-08-26T14:16:27Z Wow - asked 10 hours ago, and already showed up in google when I went looking for a similar thing. Thanks! http://stackoverflow.com/questions/1040654/how-to-converting-datetime-into-date-only-with-time-set-to-000000-000/1040680#1040680 Comment by Jeffrey on How to converting datetime into date only (with time set to 00:00:00.000) Jeffrey 2009-06-24T20:12:25Z 2009-06-24T20:12:25Z I use the &quot;unsupported way&quot; here all the time. What's with the 112 magic number on the first line? http://stackoverflow.com/questions/1032798/installing-os-x-on-pc-hardware Comment by Jeffrey on Installing OS X on PC Hardware Jeffrey 2009-06-23T14:15:44Z 2009-06-23T14:15:44Z Can't say it's entirely &quot;programming related&quot;, either. http://stackoverflow.com/questions/1012732/how-to-add-image-in-pdf-using-c-and-itextsharp/1012745#1012745 Comment by Jeffrey on How to Add image in pdf using C# and iTextSharp? Jeffrey 2009-06-18T13:56:04Z 2009-06-18T13:56:04Z It would be worth editing your question to include that information - probably even in the question header. http://stackoverflow.com/questions/1001987/what-are-the-most-useful-hot-key-in-visual-studio/1002017#1002017 Comment by Jeffrey on What are the most useful hot key in Visual Studio? Jeffrey 2009-06-16T14:57:23Z 2009-06-16T14:57:23Z I printed this out years ago and have it within easy grasp of my desk. Very handy - especially the entire guide - <a href="http://www.codinghorror.com/blog/files/Visual%20Studio%20.NET%202005%20Keyboard%20Shortcuts.htm" rel="nofollow">codinghorror.com/blog/files/&hellip;</a> http://stackoverflow.com/questions/791293/how-to-switch-row-column-on-an-excel-chart-using-c/820774#820774 Comment by Jeffrey on How to switch row/column on an excel chart using C#? Jeffrey 2009-05-28T12:22:03Z 2009-05-28T12:22:03Z Perfect. Except mine was defaulting to xlRows without the second argument. Passing xlColumns cleared up my issue. Thanks for this! http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/380965#380965 Comment by Jeffrey on Common programming mistakes for .NET developers to avoid? Jeffrey 2009-05-20T16:37:48Z 2009-05-20T16:37:48Z This has caused us some serious issues in the past. Can't upvote it enough. http://stackoverflow.com/questions/374396/open-source-zip-library-for-net/374404#374404 Comment by Jeffrey on Open-source zip library for .NET? Jeffrey 2009-04-29T14:45:20Z 2009-04-29T14:45:20Z I had this exact question, and this solution was very fast to implement. The ZipFast class lets me do most of what I need in a single line of code. Perfect. http://stackoverflow.com/questions/778643/copying-multiple-worksheets-simultaneously-to-preserve-chart-references/778689#778689 Comment by Jeffrey on Copying multiple worksheets simultaneously to preserve chart references Jeffrey 2009-04-22T19:49:33Z 2009-04-22T19:49:33Z Ended up doing a select on the entire workbook - but that array trick will come in handy down the road. http://stackoverflow.com/questions/778643/copying-multiple-worksheets-simultaneously-to-preserve-chart-references/778689#778689 Comment by Jeffrey on Copying multiple worksheets simultaneously to preserve chart references Jeffrey 2009-04-22T19:31:21Z 2009-04-22T19:31:21Z EXACTLY what I was looking for. Thank-you. http://stackoverflow.com/questions/778643/copying-multiple-worksheets-simultaneously-to-preserve-chart-references/778669#778669 Comment by Jeffrey on Copying multiple worksheets simultaneously to preserve chart references Jeffrey 2009-04-22T19:00:56Z 2009-04-22T19:00:56Z Oh that's clever! I'd still like to split up the data (to meet the spec), but if there's no way around it, this is exactly the direction I'll take this. Thank-you! http://stackoverflow.com/questions/725625/generating-a-file-then-launching-a-secure-download/725657#725657 Comment by Jeffrey on Generating a file, then launching a secure download Jeffrey 2009-04-07T19:41:10Z 2009-04-07T19:41:10Z Fantastic! Thanks!