User Craig - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T15:52:25Z http://stackoverflow.com/feeds/user/2894 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1875390/using-a-variable-from-foreach-loop-container-in-a-sql-task-ssis 0 Using a variable from Foreach Loop Container in a SQL Task [SSIS] Craig 2009-12-09T17:12:55Z 2009-12-09T22:50:27Z <p>Ok, I have a simple process...</p> <ol> <li><p>Read a table and get the rows that have a "StatusID" of 1. Simple.</p> <p>Select ProductID from PreorderStatus where StatusID = 1</p></li> <li><p>Foreach row returned from that query, perform an action. For simplicity sake, let's just modify the original table to set the "StatusID" to 2.</p> <p>Update PreorderStatus set StatusID = 2 where ProductID = @ProductID</p></li> </ol> <p>In order to do this in SSIS, I have created a simple "Execute SQL Task" with the first statement. In the editor I have set the <strong>Result Set</strong> to return a <strong>Full result set</strong> and the <strong>Result Name</strong> of 0 is set to fill an object variable named ReadySet.</p> <p>The output is then routed to a For Each Loop container. The <strong>Enumerator</strong> is set to <strong>Foreach ADO Enumerator</strong> and the object source variable set to the ReadySet variable from above. I have also mapped the variable v_ProductID to index 0.</p> <p>Setting a breakpoint at the begining of the Foreach loop shows the variable being set correctly. GREAT!! Now on to step two....</p> <p>Now I have placed a new SQL task in the foreach container. Now I have a head scratcher. How do I actually use the variable in the SQL statement. Simply using "v___ProductID" or "User::v_ProductID" doesn't seem to work. Mapping a parameter seemed like a good idea (got a @ProductID and everything!) but that didn't seem to work either. </p> <p>I get the feeling that I am missing something pretty simple but can't tell what. Thanks for any help!!</p> http://stackoverflow.com/questions/1876696/when-is-the-mvc-pattern-appropriate/1876884#1876884 1 Answer by Craig for When is the MVC Pattern appropriate? Craig 2009-12-09T21:07:36Z 2009-12-09T21:07:36Z <p>The MVC framework is a good canidate when you want to seperate the UI from the buisness rules from the underlying data. This allows for a very nice modular architecture wherein you can swap out the UI or Data layer without too much hassle.</p> <p>Sounds like you are already thinkning in terms of MVC therefore it should be a good fit. Have fun with it!</p> http://stackoverflow.com/questions/1876185/data-structure-interview-question/1876212#1876212 5 Answer by Craig for Data Structure Interview Question Craig 2009-12-09T19:26:15Z 2009-12-09T19:26:15Z <p>The first question I would ask is about the data. It <strong>appears</strong> to be a simple case of where to break a series of continuous numbers. Given that I would just store the break points. These types of questions are designed to test your ability to ask questions and drill down into the underlying issue.</p> http://stackoverflow.com/questions/1841115/programming-math-based-images-for-use-in-high-resolution-artwork/1841192#1841192 1 Answer by Craig for Programming math-based images for use in high-resolution artwork Craig 2009-12-03T16:42:16Z 2009-12-03T17:06:33Z <p>Well, #2 is going to be kind of a holy war so I'll address #1. :)</p> <p>The key to images of this nature is recursion. Basically they are the same image repeated over and over in a controlled way to get an intersting result. Take the flower of life for example. You repeat the center petal six times (the method to do the petals is up to you). Then you create six more flowers using the petals tip as the center and overlapping one of the petals. You then recursively move outward. After a few "rounds" you stop and draw the containing circle. Basically the recusion simulates the stamp, move and rotate that would be required if you were doing it by hand. </p> <p>When I have played around with these kinds of things I have always found that experimentation is the best way to get cool new things. Of course that could be just my lack of imagination. :)</p> <p>I know I am not very math heavy in this answer but that is up to you and experimentation. Just remember that COS and SIN are your friends and there are 360 degrees in a cricle (or 2pi radians depending on your math package).</p> <p>EDIT: Adding some math for the "Flower"</p> <p>Starting with a center of (Xo, Yo) and a flower radius of r...</p> <p>The tips of the petals (P0, P1, etc) are determined by...</p> <pre><code>X = Xo + (sin((n * pi)/3 + (pi / 6)) * r) Y = Yo - (cos((n * pi)/3 + (pi / 6)) * r) </code></pre> <p>where n is the petal number (0..5)</p> <p>Once you compute a petal tip, just draw the petal and then start a new flower at the tip. You would also set a bounding circle so that any point outside that circle would not be drawn.</p> http://stackoverflow.com/questions/1840928/synchronizing-access-to-common-data/1840988#1840988 0 Answer by Craig for synchronizing access to common data Craig 2009-12-03T16:14:36Z 2009-12-03T16:14:36Z <p>Double buffering is the way to go. It removes the issues of long reload times. Just be sure to have a nice locking mechanism for when you are replacing the existing data with the new one. :)</p> <p>Is the data read only for the compnents? If they are changing the data you need to be careful about writting back and reading at the same time.</p> http://stackoverflow.com/questions/1840450/can-i-use-datatable-selectfilterstring-to-control-the-displayed-rows-in-a-datag/1840821#1840821 1 Answer by Craig for Can I use DataTable.Select(filterString) to control the displayed rows in a DataGridView and also use DataGridView.Sort() to control the order they're displayed in? Craig 2009-12-03T15:52:25Z 2009-12-03T15:52:25Z <p>You are going to have to suffle around your data. Good news is I found this <a href="http://wessamzeidan.net/cs/blog/archive/2006/03/04/371.aspx" rel="nofollow">blog entry</a> by Wessam Zeidan which has the code already written. The problem he is solving is just a bit different but I think it will help you. The main take-away is converting the DataRow[] object back into a DataTable. Be sure to read the comments as well as they may help.</p> <p>Good luck and Good sorting!</p> http://stackoverflow.com/questions/1800119/how-do-you-get-an-ssis-package-to-only-insert-new-records-when-copying-data-betwe 0 How do you get an SSIS package to only insert new records when copying data between servers Craig 2009-11-25T21:34:10Z 2009-11-29T12:27:47Z <p>I am copying some user data from one SqlServer to another. Call them Alpha and Beta. The SSIS package runs on Beta and it gets the rows on Alpha that meet a certain condition. The package then adds the rows to Beta's table. Pretty simple and that works great.</p> <p>The problem is that I only want to add new rows into Beta. Normally I would just do something simple like....</p> <pre><code>INSERT INTO BetaPeople SELECT * From AlphaPeople where ID NOT IN (SELECT ID FROM BetaPeople) </code></pre> <p>But this doesn't work in an SSIS package. At least I don't know how and that is the point of this question. How would one go about doing this across servers?</p> http://stackoverflow.com/questions/1749809/c-server-is-this-good-way-for-timeouting-and-disconnecting/1750129#1750129 0 Answer by Craig for C# server - is this good way for timeouting and disconnecting? Craig 2009-11-17T16:38:09Z 2009-11-17T16:38:09Z <p>I think I see what you are trying to do and I think a better way would be to store new connections in a holding area until they have properly connected.</p> <p>I'm not positive but it looks like your code could drop a valid connection. If a new connection is made after the checking section and the second section takes more than a second all the timers would time out before you could verify the connections. This would put the new connections in both the socket pool AND the ClientsToDisconnect pool. Not good. You would drop a currently active connection and chaos would ensue.</p> <p>To avoid this, I would make the verification of a connection a seperate thread from the using of the connection. That way you won't get bogged down in timing issues (well...you still will but that is what happens when we work with threads and sockets) and you are sure that all the sockets you are using won't get closed by you.</p> http://stackoverflow.com/questions/1749966/c-how-to-determine-whether-a-type-is-a-number/1750019#1750019 0 Answer by Craig for C# - how to determine whether a Type is a number Craig 2009-11-17T16:21:28Z 2009-11-17T16:21:28Z <p>Short answer: No.</p> <p>Longer Answer: Nope.</p> <p>The fact is that many different types in C# can contain numeric data. Unless you know what to expect (Int, Double, etc) you need to use the "long" case statement.</p> http://stackoverflow.com/questions/1702388/localizing-data-in-sql-server-2008-tables-and-sorting/1702457#1702457 1 Answer by Craig for Localizing data in SQL Server 2008 tables and sorting Craig 2009-11-09T17:21:27Z 2009-11-09T17:21:27Z <p>First thing to do is add a column to determine which culture the row belongs to. After that it is a simple matter of filtering on that column. </p> <pre><code>Select * from myTable where Culture=1003 </code></pre> <p>You might also consider adding views to that table. From there you can add indexes and sort to your hearts content.</p> http://stackoverflow.com/questions/1702227/how-can-i-write-this-statement-from-infix-to-postfix/1702302#1702302 4 Answer by Craig for How can I write this statement from infix to postfix? Craig 2009-11-09T16:52:15Z 2009-11-09T16:52:15Z <p>9-3/(1+2)</p> <p>First would be (1+2) since it has the highest order of operation.</p> <pre><code>-&gt; 1 2 + </code></pre> <p>Then 3 divided by the result...</p> <pre><code>-&gt; 3 1 2 + / </code></pre> <p>Then 9 minus the result....</p> <pre><code>-&gt; 9 3 1 2 + / - </code></pre> http://stackoverflow.com/questions/1618050/c-as-first-language-for-windows-game-programming/1618078#1618078 7 Answer by Craig for C++ as first language for Windows game programming? Craig 2009-10-24T13:57:01Z 2009-10-24T13:57:01Z <p>C++ is the main language used for most "serious" gaming titles. If programming for a major gaming studio then he needs to know the dirty little bits of C++.</p> <p>Starting out with C++ might be a bit much for a complete novice. I would recommend C as a great starting point. You get familiar with the concepts of memory management and the other low level stuff before adding the complexity of C++.</p> <p>Since C# is managed code, he would not be gaining the insights of the low level memory management. That will not serve him well when having to deal with C++. In this case, starting closer to the metal will help him in the long run.</p> http://stackoverflow.com/questions/1608091/mysql-using-joins-and-where-statment-what-is-this-difference/1608141#1608141 1 Answer by Craig for Mysql Using JOINs and WHERE statment. What is this difference? Craig 2009-10-22T15:45:20Z 2009-10-22T15:45:20Z <p>I am not exactly sure how MySql handles unqualified joins but I am joining to guess it just did an outer join giving you tons of results for the first one. The second one qualified the join and gave you what you wanted.</p> <p>In SQL Server, you would use an "on" qualifier...</p> <pre><code>Select a.AccountID from Accounts a join Domain d on a.AccountID = d.AccountID </code></pre> <p>This limits the join and makes for a much better query. MySql should have something very similar.</p> http://stackoverflow.com/questions/984191/triggering-multiple-validation-groups-with-a-single-button 0 Triggering multiple validation groups with a single button? Craig 2009-06-11T22:53:42Z 2009-10-22T10:53:38Z <p>Let's say the page TestPage.aspx has two controls. The first control is an address control that has a validation group called "AddressGroup". This group contains several validation controls which are colated in the validation summary on that control. The second control is a credit card control and has a validation group called "CreditCardGroup". It also has several validators and a summary to display the results. To add to the problem, there are some random controls on the page that also have validators which are tied to a third ValidatorSummary control.</p> <p>When the user presses the "Do it all" button, I would like the page to trigger all three validation groups. The button itself can be tied to a single group or an unlabeled group. It can not be tied to multiple groups as far as I can tell.</p> <p>The solution is not to extract the validation from the controls as that would deminish the value of having them in seperate controls. Thanks for your thoughts.</p> http://stackoverflow.com/questions/93668/did-your-masters-degree-help-you-as-a-programmer/93800#93800 3 Answer by Craig for Did your masters degree help you as a programmer? Craig 2008-09-18T15:51:09Z 2009-10-20T17:27:28Z <p>My master's degree was almost completely useless for me. It did, however, allow me to weather a downturn in the tech market and look a bit more attractive to potentional employeers (but that is another story). I also learned a great deal more about AI and networking. Almost all of which I never use.</p> <p>Don't get me wrong, a master's degree is a great thing to have. It does allow for deeper study in some cool fields. It also allows for research options that you just don't get from a simple BS. That is the value of the masters; expanded opportunities. I didn't take those opportunities so it didn't help me.</p> <p>But to answer the question, did it help me as a programmer, the answer is 'no'. I found it gave me an chance to practice my programming but that would have happened if I had gotten a real job. Either way I would have grown as a developer.</p> http://stackoverflow.com/questions/1555668/determining-which-submit-button-was-used-to-post-a-form-in-asp-net-mvc 1 Determining which submit button was used to POST a form in asp.net MVC Craig 2009-10-12T16:46:37Z 2009-10-12T17:18:19Z <p>Hello.</p> <p>I have a view in asp.net MVC that has two submit buttons. I would like to know which button was pressed. The buttons work GREAT so there is no issue there, I just need to do slightly different things depending on which button. I have checked the Request.Form[] collection and that doesn't contain anything.</p> <p>Here is my view code....</p> <pre><code>&lt;%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl&lt;Data.TempPerson&gt;" %&gt; &lt;div class="phonePerson"&gt; &lt;% using (Ajax.BeginForm("Create", new AjaxOptions { UpdateTargetId = "divList", HttpMethod = "Post", OnSuccess = "RedoLayout" })) { %&gt; &lt;label for="Name"&gt; Name:&lt;/label&gt; &lt;%= Html.TextBox("Name")%&gt; &lt;input type="submit" name="Button" id="Save" value="Save" class="btnSave" /&gt; &lt;div id="phoneList" class="phoneList"&gt; &lt;table&gt; &lt;% foreach (var item in Model.Phones) { %&gt; ... Stuff omitted for space .... &lt;% } %&gt; &lt;tr&gt; &lt;td colspan="2"&gt; &lt;input type="submit" id="Add" name="Button" value="Add another phone" class="btn_AddPhone" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;% } %&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/127807/what-does-a-scrum-master-do-all-day/127839#127839 5 Answer by Craig for What does a scrum master do all day? Craig 2008-09-24T15:20:58Z 2009-10-01T17:32:58Z <p>"acts as a buffer between the team and any distracting influences"</p> <p>That is a full time job. There are a bunch of people who would love to get information from the team and it is the SM to handle those questions. To do that job well, it is important to be proactive, not reactive. Therefore they should be keeping all the wheels running smoothly. It is an amazing transformation when the SM is working well.</p> http://stackoverflow.com/questions/140178/getting-the-boss-to-pay-for-training 4 Getting the Boss to pay for training? Craig 2008-09-26T15:21:02Z 2009-09-19T10:00:31Z <p>We all know that keeping your skills fresh and up to date not only benefit us as developers but also the companies we work for. It therefore makes perfect sense to me, and I am willing to bet you as well, that training is a good investment.</p> <p>What is obvious to one person is not always obvious to someone else however. Does anybody have any ideas, metrics, vodoo or whatever to help me (and others) enlighten the companies we work for?</p> http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/28336#28336 0 Answer by Craig for What good technology podcasts are out there? Craig 2008-08-26T15:18:51Z 2009-09-14T09:22:37Z <p>My list includes:</p> <pre><code> .NET Rocks! RunAs Radio TWiT Stack Overflow (but then again, we wouldn't be in Beta if we didn't) Channel 9 Hanselminutes </code></pre> <p>Pretty much the same as everybody else. Just goes to show you why podcasts are important to developing your art. </p> http://stackoverflow.com/questions/41988/how-to-get-kids-into-programming 14 How to get kids into programming Craig 2008-09-03T15:57:56Z 2009-09-07T20:29:27Z <p>I have a seven year old son. He is pretty bright and I want to show him that computers are good for something beyond playing games. My end goal would be to have him use a language (See <a href="http://beta.stackoverflow.com/questions/20059/suggestions-on-starting-a-child-programming" rel="nofollow">Related question</a>) to develop a program he can show his friends or solve a problem.</p> <p>My question is how do I get started? I am fairly certain I will have to use a more visual language such as <a href="http://www.alice.org" rel="nofollow">Alice</a> but how do I go from playing "Mini Clips" to making his own thing? When do you know he is ready to go to more advanced languages? Any advice would be welcome!!</p> <p>UPDATE: The kid has started using Scratch and is enjoying the heck out of it! So far so good.</p> http://stackoverflow.com/questions/33638/testing-and-managing-database-versions-against-code-versions 6 Testing and Managing database versions against code versions Craig 2008-08-28T23:30:16Z 2009-09-04T06:36:28Z <p>As you develop an application database changes inevitably pop up. The trick I find is keeping your database build in step with your code. In the past I have added a build step that executed SQL scripts against the target database but that is dangerous in so much as you could inadvertanly add bogus data or worse. </p> <p>My question is what are the tips and tricks to keep the database in step with the code? What about when you roll back the code? Branching?</p> http://stackoverflow.com/questions/496055/displaying-ssrs-reports-in-sharepoint 1 DIsplaying SSRS reports in SharePoint? Craig 2009-01-30T16:12:43Z 2009-08-31T15:18:15Z <p>I have a series of reports served by SSRS. They are great and the users like them. </p> <p>That being the case, upper management wants to throw a wrench in the works and serve the reports from the Sharepoint server. </p> <p>Is there a realtively painless way to let users access the reports from sharepoint? How would somebody go about doing such a thing? Or do I just need to bite the bullet and try to stop the madness?</p> http://stackoverflow.com/questions/134127/problem-with-datagridview-and-addnew/951718#951718 1 Answer by Craig for Problem with datagridview and AddNew Craig 2009-06-04T16:43:25Z 2009-08-17T00:21:38Z <p>This is definitely an environmental issue. To solve the problem I would need to know which browsers you are using on each machine and some of the settings on each. </p> <p>It <strong>sounds</strong> like the XP machine is refreshing the page after a timeout period and therefore munging the new record. I have seen that happen before and it stinks.</p> <p>You might need to consider saving some more state information in the viewstate to catch that kind of thing.</p> http://stackoverflow.com/questions/167502/updatepanelanimationextender-resize-not-working 1 UpdatePanelAnimationExtender - Resize not working Craig 2008-10-03T15:44:46Z 2009-08-14T15:00:45Z <p>Hi,</p> <p>This is the page that I'm having. But the resize part in the section does not seem to be working. I copied most of the code from the <a href="http://www.asp.net/ajax/ajaxcontroltoolkit/samples/UpdatePanelAnimation/UpdatePanelAnimation.aspx" rel="nofollow">Ajax site</a>. I placed a alert() in the tag (line 108) to find the value of 'b._originalHeight' and it shows up as '44'. I have also tried the code in the above-said tutorial (line 132) and that did not work either. (I'm not sure where it is getting this value from. But I need it to show all the controls on the form.</p> <pre><code>&lt;%@ Control Language="C#" AutoEventWireup="true" CodeBehind="AddEditContest.ascx.cs" Inherits="TMPInternational.Spawn2DotComAdmin.Contest.UserControls.AddEditContest" %&gt; &lt;%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="uc" %&gt; &lt;%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Web.UI" TagPrefix="asp" %&gt; &lt;%@ Register TagPrefix="ew" Assembly="eWorld.UI, Version=1.9.0.0, Culture=neutral, PublicKeyToken=24d65337282035f2" Namespace="eWorld.UI" %&gt; &lt;h1 style="margin-left:8px"&gt;Add/Edit Contest&lt;/h1&gt; &lt;asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true" /&gt; &lt;div style="text-align:left;width:500px; margin-left:8px"&gt; &lt;div id="PanelContainer"&gt; &lt;asp:UpdatePanel ID="AddEditContestUpdatePanel" runat="server" UpdateMode="Always"&gt; &lt;ContentTemplate&gt; &lt;div id="background" style="text-align:left; height: 44px;"&gt; &lt;asp:Panel ID="ContestList" runat="server"&gt; &lt;asp:datagrid AllowSorting="false" id="ContestGrid" GridLines="None" CellPadding="5" Width="100%" AutoGenerateColumns="False" AlternatingItemStyle-BackColor="#cccccc" HeaderStyle-Font-Size="15px" HeaderStyle-Font-Bold="true" HeaderStyle-BackColor="#888f9b" Runat="server" AllowPaging="True" PageSize="10" PagerStyle-NextPageText="Next &gt;&gt;" PagerStyle-PrevPageText="&lt;&lt; Back" &gt; &lt;Columns&gt; &lt;asp:HyperLinkColumn DataNavigateUrlField="ContestID" DataNavigateUrlFormatString="../?Load=AddEditContest&amp;Type=Edit&amp;ContestID={0}" DataTextField="Title" ItemStyle-width="30%" headertext="Contest Title" /&gt; &lt;asp:BoundColumn DataField="StartDate" ItemStyle-Width="35%" HeaderText="Start Date" /&gt; &lt;asp:BoundColumn DataField="EndDate" ItemStyle-Width="35%" HeaderText="End Date" /&gt; &lt;/Columns&gt; &lt;/asp:datagrid&gt; &lt;div style="text-align:right;"&gt; &lt;asp:ImageButton ID="AddContest" runat="server" ImageUrl="~/Contest/Images/Add.png" AlternateText="Add Contest" onclick="AddContest_Click" /&gt; &lt;/div&gt; &lt;/asp:Panel&gt; &lt;asp:Panel ID="FieldsPanel" runat="server"&gt; &lt;p /&gt;&lt;b&gt;Title&lt;/b&gt; &lt;br /&gt; &lt;asp:TextBox Runat="server" id="TitleText" /&gt; &lt;asp:RequiredFieldValidator id="TitleValidator" runat="server" ForeColor="Red" ErrorMessage="Please add a title" ControlToValidate="TitleText"&gt;*&lt;/asp:RequiredFieldValidator&gt; &lt;p /&gt;&lt;b&gt;Contest Description&lt;/b&gt; &lt;br /&gt; Use HTML tags to format this area. Start paragraphs with &amp;lt;p /&amp;gt; tag, bold items with &amp;lt;b&amp;gt;&amp;lt;/b&amp;gt; tags. Create a line-break between lines with one &amp;lt;br /&amp;gt; tag.&lt;br /&gt; &lt;asp:TextBox Runat="server" ID="DescriptionText" TextMode="MultiLine" Width="400" Height="200" /&gt; &lt;asp:RequiredFieldValidator id="DescriptionValidator" runat="server" ErrorMessage="Please add a description" ControlToValidate="DescriptionText" ForeColor="Red"&gt;*&lt;/asp:RequiredFieldValidator&gt; &lt;p /&gt; &lt;b&gt;Contest Start Date&lt;/b&gt; &lt;br /&gt; &lt;ew:CalendarPopup id="StartDate" runat="server" Text="Change Date" Width="75px" MonthYearArrowImageUrl="~/Images/monthchange.gif" CalendarLocation="Left" ControlDisplay="TextBoxImage" ImageUrl="~/Images/calendar.gif" MonthYearPopupApplyText="Select" CalendarWidth="150" UseExternalResource="True" ExternalResourcePath="~/Scripts/CalendarPopup.js" Nullable="False"&gt; &lt;WeekdayStyle Font-Names="Arial" ForeColor="Black" BackColor="White" Font-Size="9pt" /&gt; &lt;MonthHeaderStyle Font-Size="9pt" Font-Names="Arial" Font-Bold="True" ForeColor="White" BackColor="#669AC1" /&gt; &lt;OffMonthStyle ForeColor="Gray" BackColor="White" Font-Size="9pt" /&gt; &lt;GoToTodayStyle Font-Names="Arial" ForeColor="Black" BackColor="White"/&gt; &lt;TodayDayStyle Font-Bold="True" ForeColor="#669AC1" BackColor="White" /&gt; &lt;DayHeaderStyle Font-Size="9pt" Font-Names="Arial" Font-Bold="True" ForeColor="Blue" BackColor="White" /&gt; &lt;WeekendStyle Font-Names="Arial" ForeColor="Blue" BackColor="LightGray" Font-Size="9pt" /&gt; &lt;SelectedDateStyle Font-Bold="True" ForeColor="White" BackColor="#669AC1" Font-Size="9pt"/&gt; &lt;HolidayStyle Font-Names="Arial" ForeColor="Black" BackColor="White" /&gt; &lt;/ew:CalendarPopup&gt; &amp;nbsp; &lt;ew:TimePicker id="StartTime" runat="server" ControlDisplay="TextboxImage" Text="Change Time" ImageUrl="~/Images/clock.gif" NumberOfColumns="4" Scrollable="True" Width="75px"&gt; &lt;TimeStyle ForeColor="Blue" BackColor="White" Font-Size="9pt" /&gt; &lt;SelectedTimeStyle ForeColor="Blue" BackColor="Gray" /&gt; &lt;/ew:TimePicker&gt; &lt;p/&gt;&lt;b&gt;Contest End Date&lt;/b&gt; &lt;br /&gt; &lt;ew:CalendarPopup id="EndDate" runat="server" Text="Change Date" Width="75px" MonthYearArrowImageUrl="~/Images/monthchange.gif" CalendarLocation="Left" ControlDisplay="TextBoxImage" ImageUrl="~/Images/calendar.gif" MonthYearPopupApplyText="Select" CalendarWidth="150" UseExternalResource="True" ExternalResourcePath="~/Scripts/CalendarPopup.js" Nullable="False"&gt; &lt;WeekdayStyle Font-Names="Arial" ForeColor="Black" BackColor="White" Font-Size="9pt" /&gt; &lt;MonthHeaderStyle Font-Size="9pt" Font-Names="Arial" Font-Bold="True" ForeColor="White" BackColor="#669AC1" /&gt; &lt;OffMonthStyle ForeColor="Gray" BackColor="White" Font-Size="9pt" /&gt; &lt;GoToTodayStyle Font-Names="Arial" ForeColor="Black" BackColor="White"/&gt; &lt;TodayDayStyle Font-Bold="True" ForeColor="#669AC1" BackColor="White" /&gt; &lt;DayHeaderStyle Font-Size="9pt" Font-Names="Arial" Font-Bold="True" ForeColor="Blue" BackColor="White" /&gt; &lt;WeekendStyle Font-Names="Arial" ForeColor="Blue" BackColor="LightGray" Font-Size="9pt" /&gt; &lt;SelectedDateStyle Font-Bold="True" ForeColor="White" BackColor="#669AC1" Font-Size="9pt"/&gt; &lt;HolidayStyle Font-Names="Arial" ForeColor="Black" BackColor="White" /&gt; &lt;/ew:CalendarPopup&gt; &amp;nbsp; &lt;ew:TimePicker id="EndTime" runat="server" ControlDisplay="TextboxImage" Text="Change Time" ImageUrl="~/Images/clock.gif" NumberOfColumns="4" Scrollable="True" Width="75px"&gt; &lt;TimeStyle ForeColor="Blue" BackColor="White" Font-Size="9pt" /&gt; &lt;SelectedTimeStyle ForeColor="Blue" BackColor="Gray" /&gt; &lt;/ew:TimePicker&gt; &lt;p /&gt; &lt;asp:ImageButton ID="SaveContestButton" runat="server" AlternateText="Confirm" ImageUrl="~/Contest/Images/Confirm.png" onclick="SaveContestButton_Click" /&gt; &lt;/asp:Panel&gt; &lt;br /&gt; &lt;asp:Label ID="MessageLabel" runat="server" /&gt; &lt;/div&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="SaveContestButton" EventName="Click" /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; &lt;/div&gt; &lt;uc:UpdatePanelAnimationExtender ID="upae" BehaviorID="animation" runat="server" TargetControlID="AddEditContestUpdatePanel"&gt; &lt;Animations&gt; &lt;OnUpdating&gt; &lt;Sequence&gt; &lt;%-- Store the original height of the panel --%&gt; &lt;ScriptAction Script="var b = $find('animation'); b._originalHeight = b._element.offsetHeight;" /&gt; &lt;%-- Disable all the controls --%&gt; &lt;Parallel duration="0"&gt; &lt;EnableAction AnimationTarget="SaveDefaultDescriptionButton" Enabled="false" /&gt; &lt;/Parallel&gt; &lt;StyleAction Attribute="overflow" Value="hidden" /&gt; &lt;%-- Do each of the selected effects --%&gt; &lt;Parallel duration=".25" Fps="30"&gt; &lt;FadeOut AnimationTarget="PanelContainer" minimumOpacity=".2" /&gt; &lt;Resize Height="0px" /&gt; &lt;/Parallel&gt; &lt;/Sequence&gt; &lt;/OnUpdating&gt; &lt;OnUpdated&gt; &lt;Sequence&gt; &lt;%-- Do each of the selected effects --%&gt; &lt;Parallel duration=".25" Fps="30"&gt; &lt;FadeIn AnimationTarget="PanelContainer" minimumOpacity=".2" /&gt; &lt;Length duration="2" fps="40" Property="style" PropertyKey="height" StartValue="10" EndValueScript="$get('animation').offsetHeight" AnimationTarget="animation" /&gt; &lt;%--Also tried the below &lt;Resize HeightScript="$find('animation')._originalHeight" /&gt; --%&gt; &lt;/Parallel&gt; &lt;%-- Enable all the controls --%&gt; &lt;Parallel duration="0"&gt; &lt;EnableAction AnimationTarget="SaveDefaultDescriptionButton" Enabled="true" /&gt; &lt;/Parallel&gt; &lt;/Sequence&gt; &lt;/OnUpdated&gt; &lt;/Animations&gt; &lt;/uc:UpdatePanelAnimationExtender&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1274626/whats-wrong-with-this-c-code/1274688#1274688 0 Answer by Craig for What's wrong with this C code? Craig 2009-08-13T21:25:11Z 2009-08-13T21:25:11Z <p>There are several errors.</p> <ol> <li>You don't allocate a return buffer that can hold the copied string.</li> <li>You don't check to see if src is null before using *src</li> <li>You are both tring to get the answer in a parameter and return the value. Do one or the other.</li> <li>You can easily overrun the dest buffer.</li> </ol> <p>Good luck.</p> http://stackoverflow.com/questions/507751/extracting-files-from-a-zip-archive-programmatically-using-c-and-system-io-packa 3 Extracting files from a Zip archive programmatically using C# and System.IO.Packaging Craig 2009-02-03T16:08:26Z 2009-07-30T16:34:34Z <p>Hello all. I have a bunch of zip files that are in desperate need of some hierarchical reorganization and extraction. What I can do, currently, is create the directory structure and move the zip files to the proper location. The mystic cheese that I am missing is the part that extracts the files from the zip archive.</p> <p>I have seen the MSDN articles on the ZipArchive class and understand them reasonable well. I have also seen the <a href="http://stackoverflow.com/questions/291406/extract-files-from-zip-file-with-vbscript">VBSCript ways to extract</a>. This is not a complex class so extracting stuff should be pretty simple. In fact, it works "mostly". I have included my current code below for reference.</p> <pre><code> using (ZipPackage package = (ZipPackage)Package.Open(@"..\..\test.zip", FileMode.Open, FileAccess.Read)) { PackagePartCollection packageParts = package.GetParts(); foreach (PackageRelationship relation in packageParts) { //Do Stuff but never gets here since packageParts is empty. } } </code></pre> <p>The problem seems to be somewhere in the GetParts (or Get*Anything* for that matter). It seems that the package, while open, is empty. Digging deeper the debugger shows that the private member _zipArchive shows that it actually has parts. Parts with the right names and everything. Why won't the GetParts function retrieve them? I'ver tried casting the open to a ZipArchive and that didn't help. Grrr.</p> http://stackoverflow.com/questions/46047/need-advice-on-getting-a-job-in-a-foreign-country 1 Need advice on getting a job in a foreign country Craig 2008-09-05T15:35:10Z 2009-07-30T09:42:23Z <p>Hello,</p> <p>I am a citizen of the United States of America and I want to get a job in the United Kingdom. Sounds good on the surface but I am looking for some advice on what to expect in the way of taxes (and the salary planning associated with them), legal issues and anything else that might not be that obvious. </p> <p>If you have done the <a href="http://en.wikipedia.org/wiki/Expatriate" rel="nofollow">ExPat</a> thing and have some advice for a poor sucker looking to make the leap, please let me know. If you are in the UK (and I know a bunch of you are) and have some advice from that side of the pond, that would be greatly appriciated as well!!</p> http://stackoverflow.com/questions/175075/subtext-install-gives-error-in-medium-trust-level 0 Subtext install gives error in Medium trust level. Craig 2008-10-06T16:35:39Z 2009-07-27T18:52:53Z <p>I am trying to install <a href="http://subtextproject.com/" rel="nofollow">Subtext</a> in a medium trust level environment (host: <a href="http://www.crystaltech.com/" rel="nofollow">Crystaltech</a>) and am getting the following error (see below). I was able to do the administration setup but when it tries to go to the blog for actual use, boom.</p> <p>I know I could "upgrade" the environment to a full trust level but I want to understand why the error is happening and the ramifications of that moving to fUll trust before I do it.</p> <p>To expand upon this question; what are the "Trust Levels"?</p> <blockquote> <p>Security Exception </p> <p>Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file. </p> <p>Exception Details: System.Security.SecurityException: Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.</p> <p>Source Error: </p> <p>An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. </p> <p>Stack Trace: </p> <p>[SecurityException: Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.]<br /> System.Web.Security.UrlAuthorizationModule.CheckUrlAccessForPrincipal(String virtualPath, IPrincipal user, String verb) +47<br /> Subtext.Framework.UrlManager.UrlReWriteHandlerFactory.GetHandlerForUrl(String url) +66<br /> Subtext.Framework.UrlManager.UrlReWriteHandlerFactory.ProcessHandlerTypePage(HttpHandler item, HttpContext context) +143<br /> Subtext.Framework.UrlManager.UrlReWriteHandlerFactory.GetHandler(HttpContext context, String requestType, String url, String path) +340<br /> System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, VirtualPath path, String pathTranslated, Boolean useAppConfig) +175 System.Web.MapHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +128 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp; completedSynchronously) +161</p> </blockquote> http://stackoverflow.com/questions/1144264/c-member-pointer-initialised/1144329#1144329 1 Answer by Craig for C++: member pointer initialised? Craig 2009-07-17T16:22:17Z 2009-07-17T16:22:17Z <p>I believe this is a artifact from the good old C days when you could not have expectations on what alloc'd memory contains. As the standards progressed to C++ this "convention" was maintained. As the C++ compilers developed the individual authors took it upon themselves to "fix" this problem. Therefore your mileage may vary depending on your compiler of choice.</p> <p>The "0xcdcdcdcd" looks to be a readily identifiable pattern that "helps" in debugging you code. That is why it doesn't show in release mode.</p> <p>I hope this helped in a little way and good luck.</p> http://stackoverflow.com/questions/1123844/nullable-types-in-vb-net/1123868#1123868 1 Answer by Craig for Nullable Types in VB.NET? Craig 2009-07-14T07:03:47Z 2009-07-14T07:03:47Z <p>Nope. You will have to modify the insert or update query to not add (or update) that value to get a null in the database.</p> http://stackoverflow.com/questions/1875390/using-a-variable-from-foreach-loop-container-in-a-sql-task-ssis/1877483#1877483 Comment by Craig on Using a variable from Foreach Loop Container in a SQL Task [SSIS] Craig 2009-12-10T15:29:36Z 2009-12-10T15:29:36Z The trick was the '?'. Apparently I had forgotten all my work with SRS and was relying on my Stored Proc wwork which all use named parameters. Go figure. It is also worth mentioning that the when mapping the ? to a varaible you use the zero based ordinal position (0, 1, etc). http://stackoverflow.com/questions/1876185/data-structure-interview-question/1876212#1876212 Comment by Craig on Data Structure Interview Question Craig 2009-12-09T19:37:57Z 2009-12-09T19:37:57Z That's the point. He (She?) was trying to get a feel for your ASSUMTIONS. Never assume! It is more true of client requirements than anything else. Your assumtions are ALWAYS wrong. :) http://stackoverflow.com/questions/1847763/problem-registering-a-dll-access-denied Comment by Craig on Problem registering a dll - Access Denied Craig 2009-12-04T15:41:08Z 2009-12-04T15:41:08Z Looks like you do not have access to write stuff to the global assembly cache. Are you running as a standard user? How about disk space? Previous install waiting to finish? http://stackoverflow.com/questions/1841435/is-it-possible-to-automate-a-clickonce-deployment Comment by Craig on Is it possible to automate a ClickOnce deployment ? Craig 2009-12-03T17:19:45Z 2009-12-03T17:19:45Z so....a Click Nunce deployment. :) http://stackoverflow.com/questions/1840352/bind-entity-column-to-edittemplate-of-gridview Comment by Craig on Bind entity column to edittemplate of gridview Craig 2009-12-03T15:45:01Z 2009-12-03T15:45:01Z Francis, you really need to rework this question. It takes way too much mental energy to try and figure out what you are saying. http://stackoverflow.com/questions/1749820/convert-session-object-to-iorderedqueryablet Comment by Craig on Convert Session Object to IOrderedQueryable<T> Craig 2009-11-17T16:24:58Z 2009-11-17T16:24:58Z Some sample code would be a nice way to get the heads into the problem. http://stackoverflow.com/questions/1749966/c-how-to-determine-whether-a-type-is-a-number/1749987#1749987 Comment by Craig on C# - how to determine whether a Type is a number Craig 2009-11-17T16:23:29Z 2009-11-17T16:23:29Z I thought IsNumeric only worked for Int based types. http://stackoverflow.com/questions/1729952/creation-of-trigger Comment by Craig on creation of trigger Craig 2009-11-13T16:11:16Z 2009-11-13T16:11:16Z Which SQL engine is this? http://stackoverflow.com/questions/1725294/saving-an-image-to-the-sqlserver Comment by Craig on saving an image to the sqlserver Craig 2009-11-12T20:56:31Z 2009-11-12T20:56:31Z Please see....<a href="http://stackoverflow.com/questions/1348000/saving-an-image-to-sql-server-2008" rel="nofollow" title="saving an image to sql server 2008">stackoverflow.com/questions/1348000/&hellip;</a> http://stackoverflow.com/questions/93668/did-your-masters-degree-help-you-as-a-programmer/93800#93800 Comment by Craig on Did your masters degree help you as a programmer? Craig 2009-10-20T17:25:32Z 2009-10-20T17:25:32Z Doing reasearch in a field that can actually become a job. My thesis was in AI whcich did not become my chosen field. There are also internships and other career-orientated programs. I just had a great time. ;) http://stackoverflow.com/questions/1555668/determining-which-submit-button-was-used-to-post-a-form-in-asp-net-mvc/1555814#1555814 Comment by Craig on Determining which submit button was used to POST a form in asp.net MVC Craig 2009-10-12T18:07:01Z 2009-10-12T18:07:01Z In the worst way imaginable...bad design :) The phone numbers need the user's ID and the phone data is loaded from the user record. When a new phone is added, it appends to the user record and then the control is rerendered. http://stackoverflow.com/questions/1555668/determining-which-submit-button-was-used-to-post-a-form-in-asp-net-mvc/1555814#1555814 Comment by Craig on Determining which submit button was used to POST a form in asp.net MVC Craig 2009-10-12T17:25:45Z 2009-10-12T17:25:45Z Funny you should say that. :) I am migrating this from a solution that had two forms. The problem is that the forms' data in conjoined. The BEST solution would be to try and remove the second submit. :) http://stackoverflow.com/questions/1274626/whats-wrong-with-this-c-code/1274635#1274635 Comment by Craig on What's wrong with this C code? Craig 2009-08-13T21:28:38Z 2009-08-13T21:28:38Z Why in the name of all that compiles are you returning dest2? The calling code doesn't care about a return value and the &quot;input&quot; parameter &quot;d&quot; is left high and dry. http://stackoverflow.com/questions/1274626/whats-wrong-with-this-c-code Comment by Craig on What's wrong with this C code? Craig 2009-08-13T21:22:27Z 2009-08-13T21:22:27Z Man, that was a bunch of quick answers. Welcome to the world of overrun buffers. :) http://stackoverflow.com/questions/46047/need-advice-on-getting-a-job-in-a-foreign-country/1205549#1205549 Comment by Craig on Need advice on getting a job in a foreign country Craig 2009-07-30T16:39:18Z 2009-07-30T16:39:18Z Epic FAIL! This is <i>NOT</i> what you put on Stackoverflow.