User CindyH - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:05:18Z http://stackoverflow.com/feeds/user/12897 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1302803/when-should-i-use-getelementbyid 0 When should I use getElementById? CindyH 2009-08-19T21:47:03Z 2009-08-19T22:51:10Z <p>I'm an experienced developer, but new to javascript. I can't figure out when I should use the whole "document.getElementById(e.id).value" and when I can just use "e". I'm looking at a tiny existing function in a common functions script that uses both.</p> <blockquote> <p>function RemoveFormat(e) {<br /> document.getElementById(e.id).value = cleanNumber(document.getElementById(e.id).value); e.select(); }</p> </blockquote> <p>(where cleanNumber is another common function)</p> <p>Presumably there are circumstances that make the extra typing necessary, but what are they?</p> <p>Thanks!</p> http://stackoverflow.com/questions/300405/how-do-i-build-deployment-project-without-un-signing-my-assemblies 0 How do I build deployment project without un-signing my assemblies? CindyH 2008-11-18T22:39:11Z 2009-07-16T19:05:29Z <p>I'm not very experienced with builds - this may be really easy! I have a simple application with a simple deployment project. I went to the directory where the release-compiled versions of the DLLs are, signed all of them (verisign), and then went to the deployment project, chose Build (not REbuild), and it recompiled all my assemblies and now they aren't signed any more. Can I keep the nice easy deployment project and still have signed assemblies, or do I have to create the MSI a different way? Thanks!</p> http://stackoverflow.com/questions/984049/can-linq-to-sql-coexist-with-ado-in-sql-server-express 0 Can Linq to SQL coexist with ADO in SQL Server Express? CindyH 2009-06-11T22:15:13Z 2009-06-12T14:26:06Z <p>I have a single-user Win Forms application that uses an SQL Server Express database via ADO.NET. I want to add more to my app, but by using Linq to Sql (while I learn Linq to Sql). I am unable to see the database in two places simultaneously. Either I can see it in the original code using ADO, or I can see it with the new code using Linq to SQL. Using the data with one method makes the other refuse to see it. Previously, I enabled the new Linq to SQL code to see it by copying the database's containing directory, with the database as well, to another directory name and getting at it with L2S before getting it with ADO. This allowed me to see that my Linq to SQL code worked (hooray!). However, now I can't use that new database with the original code with ADO because "Access is denied(5).". What am I doing wrong? How do I make it share? </p> <p>EDIT: Removed the part of the question asking about attaching in SQL Server; that part of the problem is that I need to run SQL Server <em>as an admin</em> (Vista) and now it attaches. /EDIT</p> <p>Now that I am using L2S, when I try to open the connection in ADO.NET, I get "Unable to open the physical file "C:\PRICINGtests\PRICING.MDF". Operating system error 5: "5(Access is denied.)". An attempt to attach an auto-named database for file C:\PRICINGtests\PRICING.MDF failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share."</p> http://stackoverflow.com/questions/783783/how-to-tell-if-an-agile-team-is-doing-it-right 9 How to tell if an Agile team is doing it right CindyH 2009-04-23T22:22:24Z 2009-05-11T15:56:07Z <p>I just applied for a job doing Agile development. I've never done it before, though I'm aware of the basics. I'm otherwise well-qualified, and they didn't even mention Agile experience in the requirements, so I'm likely to get an interview. I'm afraid that they are doing it all wrong - not "Agile development" but instead "too overworked and stressed to bother doing it right so being sloppy and pretending". </p> <p>What questions should I ask in the interview?</p> <p>Edit: One of my red flags was that they say that they work 40 - 60 hours depending on the project. Another was that it's a team of 16 people, which seems too large to be agile in any sense of the word, and another was that they said they hold daily scrums remotely "when needed".</p> http://stackoverflow.com/questions/95380/is-repairing-bugs-created-by-other-people-in-the-company-a-good-way-for-software/95941#95941 5 Answer by CindyH for Is repairing bugs created by other people in the company a good way for software development? CindyH 2008-09-18T19:18:37Z 2008-12-30T15:33:49Z <p>Fixing other people's bugs is a reasonable place for a junior developer. It is also a reasonable place for a senior developer who likes that kind of thing (such people do exist). However, it seems like this isn't your only problem with the company and you've tried to improve things. </p> <p>Is it time to move on to another department (perhaps the one that gets to create the bugs) or another job? It's best to find another job before leaving the current one! It's also best not to gripe so much to your interviewers as you want to. Good luck.</p> http://stackoverflow.com/questions/365898/is-linq-a-cursor 1 Is linq a cursor? CindyH 2008-12-13T23:02:04Z 2008-12-13T23:41:25Z <p>I'm familiar with .NET and with SQL. Now I'm looking at the new LINQ and it looks to me just like a cursor. I understand the ease of use, etc., but if I do a LINQ-to-SQL query with a foreach loop, am I just using a DB cursor? Or is there some sort of magic behind the scenes where LINQ collects all the data at once and feeds it to my program one row at a time?</p> http://stackoverflow.com/questions/319482/how-do-i-release-sql-express-database 0 How do I release sql express database? CindyH 2008-11-26T01:26:18Z 2008-11-26T03:38:44Z <p>I have a simple app that uses an SQL Express 2005 database. When the user closes the app, I want to give the option to back up the database by making a copy in another directory. However, when I try to do it, I get "The process cannot access the file '...\Pricing.MDF' because it is being used by another process." I closed the connection, disposed the connection, set it to nothing, and GC.Collect(), but it makes no difference. My connection string is "Data Source=.\SQLEXPRESS2005;AttachDbFilename=|DataDirectory|\Pricing.mdf;Integrated Security=True; User Instance=True" and I just keep using the same connection throughout. I didn't see where I could detach the database to counter the attach in the connection string.</p> <p>1 - How do I RELEASE the thing? 2 - Is there a better way than just copying the database? The app is for my husband only, so I will be able to handle it if he actually does need to restore from backup.</p> <p>Thanks!</p> http://stackoverflow.com/questions/299608/what-should-go-in-a-robust-error-message-for-debugging 2 What should go in a robust error message for debugging? CindyH 2008-11-18T18:08:25Z 2008-11-18T22:08:38Z <p>In addition to informing the user, we want to collect information for our debugging purposes. Our system is a niche system for only about 1400 customers, and therefore we are not as well-financed as we would hope, so bugs are more common than we would like. We currently have a window that shows the first line of the error message in larger print with a yellow background to draw the user's eye, with the scary part in a textbox below it with a gray background. There is also a button that will put all of it in the copy buffer for sending to customer support. The message that we're trying to go to consists of the exception.Message, the last five parts of the stack trace, and the name of the method that caused the error (Reflection.MethodBase). We are planning to add the ability for the user to say what he was doing at the time, and maybe a radio button indicating how often this happens, and write it to a log file. What other other useful information should we include? </p> <p>We are also considering emailing it to customer support but not stressing if the email fails. There are other considerations with the email - customer support might drown in it, users might object because we'd be sending system info as well, etc.</p> <p>I found two similar questions on SO, but they aren't really focussed on what I'm interested in. <a href="http://stackoverflow.com/questions/117083/error-message-text-best-practices">http://stackoverflow.com/questions/117083/error-message-text-best-practices</a> deals with how to make useful messages for the user, and <a href="http://stackoverflow.com/questions/116542/best-way-to-handle-error-messages">http://stackoverflow.com/questions/116542/best-way-to-handle-error-messages</a> deals with where to keep error IDs vs error text. I'm more interested in debugging (because unfortunately our system DOES have lots of errors).</p> http://stackoverflow.com/questions/2307/are-there-any-powerbuilder-devs-around/300025#300025 0 Answer by CindyH for Are there any Powerbuilder devs around? CindyH 2008-11-18T20:27:57Z 2008-11-18T20:27:57Z <p>Nope, but I did for several years. Now I'm in .NET (hooray - more marketable) but there are still things I like about PB better. The datawindow is way better. And STILL, after two and a half years in .NET, I double-click to get control properties and end up looking bewilderedly at a function definition. Marketability is a big thing for me, because I spent 2002 - 2006 as an unwilling consultant.</p> http://stackoverflow.com/questions/196603/how-to-navigate-between-fields-with-enter-key 1 How to navigate between fields with Enter Key CindyH 2008-10-13T03:00:00Z 2008-11-18T19:58:22Z <p>My company has a large application written in VB6, and for historical reasons, the application is navigated with the Enter key instead of with the Tab key. I don't know VB6, but I know that they currently set the focus for each control in a big select statement in the Form's KeyUp event if it's an EnterKey. Now we are starting to convert to .NET, and have to keep things consistent so the users won't have to TAB on some forms and ENTER on others. I want to write ancestor forms that will automatically ENTER from field to field instead of tabbing. A coworker told me that the way it's done in VB6 is to process buttons not on the CLICK event but on the KEYUP event. I need to continue doing this so I won't have leftover KeyUp events to pass back to VB6 after my form is finished. The order of events for buttons is</p> <ol> <li>button_PreviewKeyDown </li> <li>button_Click (apparently replacing the KeyPress event)</li> <li>form_KeyUp </li> <li>button_KeyUp</li> </ol> <p>I created forms as follows:</p> <ul> <li>On the ANCESTOR form's KeyUp event, checks to see if it's an enter key. If it is an enter key, and the active control is not a button, it moves to the next field in tab order. Otherwise it ignores the key and lets the control handle it. If it is a button, the ancestor doesn't presume to know where the button wants control to go, because it will depend on what the button wants to do when it is "clicked".</li> <li>On the CHILD form's buttons, the click event does nothing, and the processing is duplicated in the KeyUp event and the MouseClick event. </li> <li>The ANCESTOR form has a protected Boolean, EatKeyUp, that can be set to True by the CHILD. This is used when the child form needs to send a MessageBox, because if the user enters through the OK button on the MessageBox, there is still a leftover KeyUp event that will be consumed by the ancestor form.</li> </ul> <p>Although klugey, this actually seems to work. What I want to know is, is there a better way? Perhaps some setting somewhere that I can tell my application "Enter through forms instead of tabbing"? Are the events that I'm using instead of the click events the best ones?</p> http://stackoverflow.com/questions/299485/cs-information-systems-degree-or-cs-math-science-degree/299634#299634 0 Answer by CindyH for CS Information Systems Degree or CS Math/Science Degree CindyH 2008-11-18T18:16:30Z 2008-11-18T18:16:30Z <p>Get the Math/CS degree. Both of those will be the more analytical technical stuff, which will be of more value in the long run (in my never humble opinion). They prepare you for more of the things you will experience in programming. It seems it would be easier to get an MBA with a CS/math background than to get INTO a CS grad program with a CIS degree. Free advice worth every penny you paid for it.</p> http://stackoverflow.com/questions/236294/what-is-the-most-questionable-bug-report-you-ever-received-from-qa/295894#295894 1 Answer by CindyH for What is the most questionable bug report you ever received from QA? CindyH 2008-11-17T15:35:39Z 2008-11-17T15:35:39Z <p>The QA person called me with a bug in a coworker's code (the programmer-coworker was sick that day). She complained that some of the fields in the web-based login screen were a light yellow (name, etc.) and others weren't. It was easy to explain - I had just explained it to the programmer before he got sick the day before - it was the Google Toolbar's Autofill trying to be helpful.</p> http://stackoverflow.com/questions/281534/does-vb-net-trash-access-databases 1 Does VB.NET trash Access databases? CindyH 2008-11-11T17:18:10Z 2008-11-15T04:42:25Z <p>Grasping at straws here... I work with a VB6 desktop system using several 2003-style Access databases (.MDB). Recently, I changed the first function from VB6 to VB.NET, still using an Access database. This is more than a conversion, but a rewrite with additional functionality. It is still fairly simple functionality, with a low-volume database. We have 1400 customers, small businesses with varying machine qualities. Most customers are happy with the new screen and functionality. A very few of those customers have experienced EXTREME slowness loading the datagridview. Customer Service tells us that 1) the machines have at least 1 GB of RAM, and 2) rebooting always solves the problem. </p> <p>I wrote an app to severely slow down my machine, and it STILL runs better for me than it does for those few customers. Also, my Access database has never been trashed by this application. </p> <p>Any suggestions?</p> <p>Thanks!!</p> http://stackoverflow.com/questions/222217/how-do-i-determine-if-a-column-is-in-the-primary-key-of-its-table-sql-server/222256#222256 2 Answer by CindyH for How do I determine if a column is in the primary key of its table? (SQL Server) CindyH 2008-10-21T15:17:22Z 2008-10-21T15:28:38Z <p>Similarly, the following will give you information about all the tables and their keys, instead of information about specific columns. This way, you make sure you have all the columns of interest and know what they participate in. In order to see all keys (primary, foreign, unique), comment the WHERE clause.</p> <pre><code>SELECT K.TABLE_NAME, C.CONSTRAINT_TYPE, K.COLUMN_NAME, K.CONSTRAINT_NAME FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS AS C JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE AS K ON C.TABLE_NAME = K.TABLE_NAME AND C.CONSTRAINT_CATALOG = K.CONSTRAINT_CATALOG AND C.CONSTRAINT_SCHEMA = K.CONSTRAINT_SCHEMA AND C.CONSTRAINT_NAME = K.CONSTRAINT_NAME WHERE C.CONSTRAINT_TYPE = 'PRIMARY KEY' ORDER BY K.TABLE_NAME, C.CONSTRAINT_TYPE, K.CONSTRAINT_NAME </code></pre> http://stackoverflow.com/questions/202645/effective-sayings-that-relate-something-complex-to-a-layperson/202673#202673 1 Answer by CindyH for Effective sayings that relate something complex to a layperson? CindyH 2008-10-14T20:29:18Z 2008-10-14T20:29:18Z <p>Object Oriented programming allows you to do something once and have it done automatically in the future. For example, you have to wash the dishes every time you cook. Wouldn't it be nice if you could wash every dish you own and put them all away, and then every time you cook in the future you wouldn't have to bother because you would have taught the dishes to wash themselves? </p> <p>(While explaining to mgmt why we need to take the time to build a framework before we start converting our system from VB6 to .NET.) </p> <p>Yes, I know it would be better to tell them I'm teaching future dishes to wash themselves, but I figured it was complicated enough!</p> http://stackoverflow.com/questions/180929/how-do-i-create-a-decimal-field-in-access-with-alter-table 0 How do I create a decimal field in Access with Alter Table? CindyH 2008-10-08T00:18:25Z 2008-10-11T23:02:01Z <p>I want to programmatically create a new column in an Access table. I've tried many permutations of "ALTER TABLE MyTable Add MyField DECIMAL (9,4) NULL;" and gotten "Syntax Error in Field Definition". I can easily create a number field that goes to a Double type, but I want decimal. I would very strongly prefer to do this in a single ALTER TABLE statement and not have to create a field and then alter it. Thanks! I am using Access 2003.</p> http://stackoverflow.com/questions/140205/combining-split-date-ranges-in-a-sql-query/140504#140504 0 Answer by CindyH for Combining split date ranges in a SQL query CindyH 2008-09-26T16:19:38Z 2008-09-26T16:50:03Z <p>EDIT: Make another set of SQL for Access. I tested all of this, but piece by piece because I don't know how to make several statements at one time in Access. Since I also don't know how to do comments, you can see the comments in the SQL version, below.</p> <pre><code>select studentid, min(startdate) as Starter, max(enddate) as Ender, field1, field2, max(startDate) - Min(endDate) as MaxGap into tempIDs from student group by studentid, field1, field2 ; delete from tempIDs where MaxGap &gt; 1; UPDATE student INNER JOIN TempIDs ON Student.studentID = TempIDS.StudentID SET Student.StartDate = [TempIDs].[Starter], Student.EndDate = [TempIDs].[Ender]; </code></pre> <p>I think this is it, in SQL Server - I didn't do it in Access. I haven't tested it for fancy conditions such as overlapping several records, etc., but this should get you started. It updates all the duplicate, small-gap records, leaving extras in the database. MSDN has a page on eliminating duplicates: <a href="http://support.microsoft.com/kb/139444" rel="nofollow">http://support.microsoft.com/kb/139444</a></p> <pre><code>select studentid, min(startdate) as StartDate, max(enddate) as EndDate, field1, field2, datediff(dd, Min(endDate),max(startDate)) as MaxGap into #tempIDs from #student group by studentid, field1, field2 -- Update the relevant records. Keeps two copies of the massaged record -- - extra will need to be deleted. update #student set startdate = #TempIDS.startdate, enddate = #tempIDS.EndDate from #tempIDS where #student.studentid = #TempIDs.StudentID and MaxGap &lt; 2 </code></pre> http://stackoverflow.com/questions/108281/can-i-refactor-my-mysql-queries-into-one-query-based-on-number-of-results/108607#108607 0 Answer by CindyH for Can I refactor my MySql queries into one query based on number of results? CindyH 2008-09-20T16:18:11Z 2008-09-25T20:46:40Z <p>I don't know why this was marked down - please educate me. It is a valid, tested stored procedure, and I answered the question. The OP didn't require that the answer be in php. ??</p> <p>Here's a stored proc to do what you want that works in SQL Server. I'm not sure about MySQL.</p> <pre><code>create proc GetRealElseGetDefault (@key as int) as begin -- Use this default if the correct data is not found declare @default int select @default = 0 -- See if the desired data exists, and if so, get it. -- Otherwise, get defaults. if exists (select * from TableY where a = @key) select b from TableY where a = @key else select b from TableY where a = @default end -- GetRealElseGetDefault </code></pre> <p>You would run this (in sql server) with </p> <p>GetRealElseGetDefault 1</p> <p>Based on a quick google search, exists is fast in MySQL. It would be especially fast is column A is indexed. If your table is large enough for you to be worried about performance, it is probably large enough to index.</p> http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/106295#106295 0 Answer by CindyH for What was your first home computer? CindyH 2008-09-19T23:06:01Z 2008-09-19T23:11:51Z <p>I had a TI-99 in college, but I never did anything useful with it. My first home computer I had for real was a HP 150 in approximately 1984. I was one of the very few people to have a computer in college. It had a touchscreen monitor!! My mother worked for HP as a programmer, so she got a discount on it - it was only about $5K. I used it all through college and for at least four years afterwards.</p> <p>But what made me fall in love with programming was taking a programming class in high school in about 1980. <img src="http://www.hp.com/hpinfo/abouthp/histnfacts/museum/personalsystems/0031/images/0031threeqtr.jpg" alt="alt text" title="HP 150" /></p> http://stackoverflow.com/questions/104330/sql-query-help-transforming-dates-in-a-non-trivial-way/105029#105029 0 Answer by CindyH for SQL Query Help: Transforming Dates In A Non-Trivial Way CindyH 2008-09-19T20:00:03Z 2008-09-19T20:00:03Z <p>This is mostly like Brian's except it didn't compile due to mismatched parens and I changed the IF to not have the select in it. It is important to note that we use DateNAME here rather than datePART because datePART is dependent on the value set by SET DATEFIRST, which sets the first day of the week.</p> <pre><code>CREATE FUNCTION dbo.GetNextWDay(@Day datetime) RETURNS DATETIME AS BEGIN DECLARE @ReturnDate DateTime set @ReturnDate = dateadd(dd, 1, @Day) if datename(dw, @ReturnDate) = 'Saturday' set @ReturnDate = dateadd(dd, 2, @ReturnDate) if datename(dw, @ReturnDate) = 'Sunday' set @ReturnDate = dateadd(dd, 1, @ReturnDate) RETURN @ReturnDate END </code></pre> http://stackoverflow.com/questions/97270/how-do-i-capture-an-asterisk-on-the-forms-keyup-event-or-how-do-i-get-a-keych 0 How do I capture an asterisk on the form's KeyUp event? OR, How do I get a KeyChar on the KeyUp event? CindyH 2008-09-18T21:38:48Z 2008-09-18T21:40:31Z <p>I'm trying to hijack an asterisk with the form's KeyUp event. I can get the SHIFT key and the D8 key on the KeyUp event, but I can't get the * out of it. I can find it easily in the KeyPress event (e.KeyChar = "*"c), but company standards say that we have to use the KeyUp event for all such occasions. Thanks!</p> http://stackoverflow.com/questions/395/how-do-you-migrate-a-large-app-from-vb6-to-vb-net/96195#96195 1 Answer by CindyH for How do you migrate a large app from VB6 to VB .net ? CindyH 2008-09-18T19:46:02Z 2008-09-18T19:46:02Z <p>We are in exactly the same position. Our monolithic system is in one project because years ago, developers had trouble working with multiple DLLs. We only have three programmers (we should have 4 or 5 but there are no plans for this) and no money for a redevelopment team.</p> <p>The way we are moving is to move small bits of less-critical functionality at a time, with the intention that we can build on successes with more conversions. Management is unhappy with the speed of moving to .NET. The slowness is caused primarily by 1) my need to recreate so much of the framework that was developed into the VB6 system over the last decade, and 2) my need to create some minimal OO framework for future development.</p> <p>My suggestions would be to 1) realize the business costs of what you want to do. It is huge - I'm guessing that your customer base is mostly satisfied, but is used to occasional updates. If you were to stop with the updates, they would get restless. Your company is probably charging all the market will bear for your product and while it is enough to make your customers choke, it still isn't enough to keep your company happy. 2) be patient but persistent. 3) read the books linked to - I certainly intend to!</p> http://stackoverflow.com/questions/20922/do-you-comment-your-code/88022#88022 3 Answer by CindyH for Do you comment your code? CindyH 2008-09-17T21:47:20Z 2008-09-17T21:47:20Z <p>In my current job I do comments that I have not done before - we are converting VB6 to VB .NET, and the other two programmers in the company have little or no experience with a true OO language. I do a lot of comments as an in-place tutorial type thing. Yes, that info could be in an outer document, or even in a book or on-line tutorial, but SO MUCH information exists! I give it in small relevant doses.</p> http://stackoverflow.com/questions/76967/mending-bad-bad-database-design-once-data-is-in-the-system/78130#78130 0 Answer by CindyH for Mending bad BAD database design once data is in the system. CindyH 2008-09-16T22:51:27Z 2008-09-16T22:51:27Z <p>@<a href="#77633" rel="nofollow">stomp</a>:</p> <p>Above the box where you type the answer, there are several buttons. The one that is 101010 is a code sample. You select all your text that is code, and then click that button. Then it doesn't get messed with much.</p> <pre><code>cout&gt;&gt;"I don't know C" cout&gt;&gt;"Hello World" </code></pre> http://stackoverflow.com/questions/58640/great-programming-quotes/77251#77251 2 Answer by CindyH for Great programming quotes CindyH 2008-09-16T21:20:02Z 2008-09-16T21:20:02Z <p>C trades a slap on the wrist at compile time for a knife in the back at run time. -- as far as I know, my C teacher in college (can't find in google)</p> http://stackoverflow.com/questions/58640/great-programming-quotes/77124#77124 1 Answer by CindyH for Great programming quotes CindyH 2008-09-16T21:08:44Z 2008-09-16T21:08:44Z <p>In computer science, we stand on each other's feet. -- Brian K. Reid -- Holton, Gerald</p> http://stackoverflow.com/questions/75565/what-does-a-company-have-to-offer-you-for-getting-you-employed/76567#76567 0 Answer by CindyH for What does a company have to offer you for getting you employed? CindyH 2008-09-16T20:24:04Z 2008-09-16T20:24:04Z <ul> <li>Management that will 1) have a corporate/departmental direction/clue, 2) appreciate me, 3) build learning time in projects, 4) allow me to do my job without too much interference.</li> <li>Very smart coworkers who will 1) appreciate my knowledge when I know more, 2) share their knowledge when they know more.</li> <li>Good compensation, both salary and financial benes such as 401K.</li> <li>Good work/life balance (reasonable hours and flextime).</li> <li>My current office with a door, lots of windows, and a view of the mountains doesn't hurt either!</li> </ul> http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/76075#76075 2 Answer by CindyH for Confessions of your worst WTF Moment. (What not to do.) CindyH 2008-09-16T19:36:48Z 2008-09-16T19:36:48Z <p>I was young. My manager didn't like the numbering scheme of the backup tapes and told me to recreate the backup tapes with better numbers. He told me to use [some specific command syntax I've forgotten] and I used that verbatim, as instructed. It released the backup tapes for reuse instead of renumbering them. We caught some of them, but some were overwritten. For the next eight years I was afraid that this major metropolitan hospital would be audited and have no financial data. I think most of my major mistakes have come from trusting someone who said "do it this way" and not researching the method myself.</p> http://stackoverflow.com/questions/57567/handles-vs-addhandler/74599#74599 1 Answer by CindyH for Handles vs. AddHandler CindyH 2008-09-16T17:06:02Z 2008-09-16T17:06:02Z <p>I manually attach handlers when I manually create controls (for example, dynamically creating a TextBox for each database record). I manually detach handlers when they are handling things I'm not quite ready to handle yet (possibly because I'm using the wrong events? :) )</p> http://stackoverflow.com/questions/57449/upgrading-from-net-1-1-to-net-2-0-what-to-expect/74534#74534 1 Answer by CindyH for Upgrading from .NET 1.1 to .NET 2.0, what to expect? CindyH 2008-09-16T16:58:34Z 2008-09-16T16:58:34Z <p>The way we were doing email had to change. The 1.1 version used system.WEB.mail, with</p> <pre><code> Imports System.Web.Mail ' Dim message As New MailMessage' this is a web.mail msg, not a net.mail msg Dim objConn As SmtpMail Dim objAttach As MailAttachment ' message .From = "From@us.com" ' more properties assigned to objMail objAttach = New MailAttachment(ExportName) message.Attachments.Add(objAttach) ' Here's where we actually send the thing SmtpMail.SmtpServer.Insert(0, "127.0.0.1") objConn.Send(objMail) </code></pre> <p>and the new one has system.NET.mail</p> <pre><code> Imports System.Net.Mail ' Dim message as MailMessage ' this is a net.mail msg, not a web.mail msg Dim data As Attachment Dim client As New SmtpClient("127.0.0.1") ' data = New Attachment(ExportName) ' Create the message and add the attachment message = New MailMessage(EmailFrom, EmailTo, reportDescription) message.Attachments.Add(data) ' Send the message client.Send(message) </code></pre> http://stackoverflow.com/questions/1302803/when-should-i-use-getelementbyid/1302816#1302816 Comment by CindyH on When should I use getElementById? CindyH 2009-08-20T14:42:35Z 2009-08-20T14:42:35Z Thank you for the clarification! http://stackoverflow.com/questions/1302803/when-should-i-use-getelementbyid/1302903#1302903 Comment by CindyH on When should I use getElementById? CindyH 2009-08-20T14:41:46Z 2009-08-20T14:41:46Z Thanks - I appreciate the clarification. http://stackoverflow.com/questions/1302803/when-should-i-use-getelementbyid/1302860#1302860 Comment by CindyH on When should I use getElementById? CindyH 2009-08-20T14:41:12Z 2009-08-20T14:41:12Z Thank you very much, not only for the answer but for educating me for the more-to-come. http://stackoverflow.com/questions/1302803/when-should-i-use-getelementbyid/1302812#1302812 Comment by CindyH on When should I use getElementById? CindyH 2009-08-20T14:40:37Z 2009-08-20T14:40:37Z Thank you very much. http://stackoverflow.com/questions/1302803/when-should-i-use-getelementbyid/1302830#1302830 Comment by CindyH on When should I use getElementById? CindyH 2009-08-20T14:40:00Z 2009-08-20T14:40:00Z Thank you very much for your detailed answer. http://stackoverflow.com/questions/1302803/when-should-i-use-getelementbyid/1302811#1302811 Comment by CindyH on When should I use getElementById? CindyH 2009-08-20T14:39:17Z 2009-08-20T14:39:17Z Thank you very much. http://stackoverflow.com/questions/984049/can-linq-to-sql-coexist-with-ado-in-sql-server-express/986016#986016 Comment by CindyH on Can Linq to SQL coexist with ADO in SQL Server Express? CindyH 2009-06-12T14:29:06Z 2009-06-12T14:29:06Z Thanks, Chris. I don't know how to get at the full connection string with Linq, just with the &quot;DataContext db = new DataContext (@&quot;C:\PRICINGtests\PRICING.MDF&quot;);&quot;, and I lifted that string directly out of the app config file to make sure there were no typos. In any case, this is a small program, and I am turning off entire sections of it at a time; during a single execution I am only attempting to run with one data connection method. Running the database the first time using Linq only made it so that I couldn't later run it using ADO only. http://stackoverflow.com/questions/130431/auto-organize-visual-studio-tabs/284157#284157 Comment by CindyH on Auto-organize Visual Studio Tabs? CindyH 2009-05-26T13:05:31Z 2009-05-26T13:05:31Z It has worked beautifully for me. I bumbled into this many months ago, and was trying to re-find it for my new computer. Thanks so much! http://stackoverflow.com/questions/783783/how-to-tell-if-an-agile-team-is-doing-it-right/783801#783801 Comment by CindyH on How to tell if an Agile team is doing it right CindyH 2009-04-23T22:29:33Z 2009-04-23T22:29:33Z Thanks - they say that they work 40 - 60 hours depending on the project. That was one of my red flags, in fact. http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/64109#64109 Comment by CindyH on Confessions of your worst WTF Moment. (What not to do.) CindyH 2009-03-20T16:13:16Z 2009-03-20T16:13:16Z I tried to do that and got lucky with the &quot;are you SURE you want to shut down the REMOTE MACHINE?&quot; prompt. http://stackoverflow.com/questions/236294/what-is-the-most-questionable-bug-report-you-ever-received-from-qa/441749#441749 Comment by CindyH on What is the most questionable bug report you ever received from QA? CindyH 2009-02-26T15:23:32Z 2009-02-26T15:23:32Z Either that, or answer &quot;It was designed that way&quot;. http://stackoverflow.com/questions/236294/what-is-the-most-questionable-bug-report-you-ever-received-from-qa/441693#441693 Comment by CindyH on What is the most questionable bug report you ever received from QA? CindyH 2009-02-26T15:22:07Z 2009-02-26T15:22:07Z giggle snort. snicker. http://stackoverflow.com/questions/188580/what-are-the-advantages-of-reaching-microsoft-gold-certified-partner-status/188587#188587 Comment by CindyH on What are the advantages of reaching Microsoft Gold Certified Partner status? CindyH 2009-01-23T21:09:42Z 2009-01-23T21:09:42Z Both rude AND unhelpful. That doesn't say what the advantage to Gold over regular Certified partner is. http://stackoverflow.com/questions/319482/how-do-i-release-sql-express-database/319652#319652 Comment by CindyH on How do I release sql express database? CindyH 2009-01-23T21:03:46Z 2009-01-23T21:03:46Z This won't quite work, because I love my stored procedures. But it's a very interesting option - thanks! http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424433#424433 Comment by CindyH on What's your favorite "programmer ignorance" pet peeve? CindyH 2009-01-08T15:35:29Z 2009-01-08T15:35:29Z I've been programming for over 20 years, and though I've usually been in the minority, it's not a large difference in numbers, and I've NEVER felt discriminated against for being female, and have often been recognized as the best. Maybe because I'm not pretty.