User toast - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:12:15Z http://stackoverflow.com/feeds/user/3824 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1751920/linq-query-returns-incorrect-result-set/1751976#1751976 0 Answer by toast for Linq Query Returns Incorrect Result Set toast 2009-11-17T21:33:48Z 2009-11-17T21:33:48Z <p>I would begin by looking at your DataContext. If your DataContext isn't being updated from the SQL Server, then you may be returning an older version of the table.</p> <p>DataContext maintains a state of the database when it was created. You want to be using a fresh context for each set of operations.</p> http://stackoverflow.com/questions/429580/click-once-setup-exe-returns-404-with-iis 0 Click Once Setup.exe returns 404 with IIS toast 2009-01-09T20:24:42Z 2009-10-21T20:40:50Z <p>Whenever I try to install a Click Once application, I always get a 404 error from the setup.exe file. I've checked the physical folder the web server points to and confirmed that setup.exe exists at the correct location.</p> <p>The CO deployment also works fine if I open the web page using file://path/to/index.html</p> http://stackoverflow.com/questions/1594899/how-can-i-prevent-a-checkbox-state-switch-when-the-user-clicks-on-the-text/1594911#1594911 0 Answer by toast for How can I prevent a Checkbox state switch when the user clicks on the text? toast 2009-10-20T14:15:14Z 2009-10-20T14:15:14Z <p>You could always not fill in the Text property of the Checkbox and make a completely separate Label control.<br /> Otherwise, you will probably have to do explicit hit testing within the control to see if they hit the box or text. And then you will have to worry about checking the margins, which side the box is on, and other things that can change the position of the box.</p> http://stackoverflow.com/questions/92082/add-column-with-default-value-to-existing-table-in-sql-server/92092#92092 0 Answer by toast for Add column, with default value, to existing table in SQL Server toast 2008-09-18T12:31:01Z 2009-07-31T03:45:27Z <pre><code>ALTER TABLE ADD ColumnName Options </code></pre> <p>Here is a link that has all of the alter table syntax: <a href="http://doc.ddart.net/mssql/sql70/aa-az_5.htm" rel="nofollow">http://doc.ddart.net/mssql/sql70/aa-az_5.htm</a></p> <p>EDIT: Accidentally hit submit. And markdown ate my brackets.</p> http://stackoverflow.com/questions/1156775/how-do-you-remove-an-object-from-an-array/1156803#1156803 1 Answer by toast for How do you remove an object from an array ? toast 2009-07-21T01:03:27Z 2009-07-21T01:03:27Z <p><code>NSMutableArray</code> contains a <code>removeObjectAtIndex</code> message.<br /> <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/nsmutablearray%5FClass/Reference/Reference.html" rel="nofollow">NSMutableArray documentation</a></p> http://stackoverflow.com/questions/1100366/get-vs-post-does-it-really-really-matter/1100404#1100404 0 Answer by toast for GET vs. POST does it really really matter? toast 2009-07-08T20:32:52Z 2009-07-08T20:32:52Z <p>The server technically couldn't care one way or the other about what kind of request it receives. It will blindly execute any request coming across the wire.</p> <p>Which is the problem. If you have an action that destroys or modifies data in a <code>GET</code> action, Google will tear your site up as it crawls through indexing.</p> http://stackoverflow.com/questions/1088884/linq-to-sql-how-to-extend-an-entity-class-with-a-column-alias/1090367#1090367 1 Answer by toast for LINQ to SQL: How To Extend An Entity Class With A Column Alias toast 2009-07-07T04:33:16Z 2009-07-07T04:33:16Z <p>LINQ doesn't know to translate <code>Id</code> to <code>WidgetId</code>.</p> <p>In the O/R designer you can rename the columns to whatever you need them to be. When you do this, LINQ will be able to properly translate the column names. Renaming them in the O/R designer doesn't affect the database at all, so it is a perfectly safe operation. You can open the <code>.designer.cs</code> file and see how the Attributes are used to map column names to class properties.</p> http://stackoverflow.com/questions/1008045/linq-to-sql-and-attaching-child-objects/1090347#1090347 1 Answer by toast for LINQ to SQL and Attaching Child Objects toast 2009-07-07T04:20:45Z 2009-07-07T04:20:45Z <p>Could you possibly attach the child entities before you attach the parent entity? Would that prevent the attach issue?</p> <p>Just use reflection to get all of the <code>EntityRef</code> objects, and attach the <code>Entity</code> property of each to the appropriate table.</p> http://stackoverflow.com/questions/1011651/updating-linq-data/1081364#1081364 0 Answer by toast for Updating Linq data toast 2009-07-04T02:35:10Z 2009-07-04T02:35:10Z <p>What it sounds like is that the web application is using the same data context between calls.<br /> Restarting the web server or recycling the associated Application Pool in IIS should have the same effect as redeployment if I'm right.</p> <p>If this is the case, then you need to rework your data retrieval methods to use a new data context every time.</p> <p>Roughly: </p> <pre><code>public List&lt;MyData&gt; GetData() { MyDataContext context = new MyDataContext(); return context.MyData.ToList(); } </code></pre> http://stackoverflow.com/questions/1079556/why-isnt-this-short-circuit-in-lambda-working/1081347#1081347 5 Answer by toast for Why isn't this short circuit in lambda working? toast 2009-07-04T02:25:59Z 2009-07-04T02:25:59Z <p>Is the <code>.Where</code> being used on a <code>Table&lt;&gt;</code>? </p> <p>If so, then before any data can be grabbed, it must convert the LINQ to SQL and to do that it must convert the <code>string</code> into a <code>decimal</code>. It's not trying to actually perform the comparisons yet, it's trying to build the constructs necessary to retrieve data.</p> http://stackoverflow.com/questions/1081026/wheres-the-memory-leak-here/1081041#1081041 0 Answer by toast for Where's the memory leak here? toast 2009-07-03T22:32:42Z 2009-07-04T00:11:04Z <p><strike> I would say: [NSNumber numberWithFloat]</p> <p>It will allocate an autoreleased object for you. The iPhone isn't garbage collected, just reference collected. And since you aren't releasing the memory you are allocating before you leave the method, Instruments is reporting it as a leak.</strike></p> <p>Since this is currently accepted, I'll kind of change my answer.</p> <p>Instruments isn't a divine edict. It could be wrong. Use it as a strong guideline of what you should be looking at, but if you honestly cannot find anything wrong or leaky with the code, just move on.</p> http://stackoverflow.com/questions/1003177/how-to-disable-highlighting-of-the-app-icon/1003228#1003228 3 Answer by toast for How to disable highlighting of the app icon? toast 2009-06-16T18:37:54Z 2009-06-16T18:37:54Z <p><a href="http://developer.apple.com/documentation/MacOSX/Conceptual/BPRuntimeConfig/Articles/PListKeys.html#//apple%5Fref/doc/uid/20001431-SW16" rel="nofollow">UIPrerenderedIcon</a> is the setting that you want to set.</p> <p>Actually, it is probably a good idea to read through all of the Info.plist options you can set. It may save you from trying to replicate some functionality that is provided by default.</p> http://stackoverflow.com/questions/922052/testing-whether-a-font-is-monospaced-in-java/922195#922195 1 Answer by toast for Testing whether a Font is monospaced in Java toast 2009-05-28T17:34:41Z 2009-05-28T17:34:41Z <p>Compare the drawn lengths of several characters (m, i, 1, . should be a good set).</p> <p>For monospaced fonts they will all be equal, for variable width fonts they won't.</p> http://stackoverflow.com/questions/922001/what-does-it-mean-for-an-application-to-be-bloated/922107#922107 0 Answer by toast for What does it mean for an application to be bloated? toast 2009-05-28T17:16:13Z 2009-05-28T17:16:13Z <p>An application that is bloated is one that seems to consume more resources than you would intuitively assume.</p> <p>For instance, World of Warcraft takes up around 10GB on a clean install (if you get all the way to Wrath of the Lich King). Considering what WoW is and what it does, some may consider it to have a bloated install. Especially since patches wind up being duplicated two or three times in the install folder.</p> <p>Other people see Firefox as being bloated because it has developed a larger memory footprint than people think is necessary.</p> <p>Some people see applications as bloated when they provide features that seem useless or redundant. See Saving as HTML in Word.</p> http://stackoverflow.com/questions/921710/ms-access-checkbox-validation/921734#921734 1 Answer by toast for MS Access checkbox validation toast 2009-05-28T16:09:32Z 2009-05-28T16:09:32Z <p>You can handle the OnClick event of the checkbox and not allow a change if the textbox doesn't have the correct password.</p> http://stackoverflow.com/questions/921543/free-vb6-vba-profiler-and-best-excel-practices/921642#921642 1 Answer by toast for Free VB6/VBA profiler and best Excel practices toast 2009-05-28T15:52:47Z 2009-05-28T15:57:51Z <p>Have you thought about using an actual reporting solution? What's your backend db? If you are using MSSQL 2000 or higher there is a fairly decent reporting solution you can use free of charge. <a href="http://msdn.microsoft.com/en-us/library/ms159106.aspx" rel="nofollow">SQL Server Reporting Services</a>. </p> <p>It sounds as if the reports are spending most of their time formatting cells. This could be why the reports seem so slow and the desktop app doesn't.</p> <p>Alternatively, if you know the formatting before hand and it is fairly static, you could pre-format the sheets to cut down on some of the work.</p> <p>I will throw this in there as well. Most reporting solutions will allow for conditional formatting and such, but since they are designed to work as such performance will be much better than having Excel do it.</p> http://stackoverflow.com/questions/807920/net-class-hierarchy-poster/807964#807964 0 Answer by toast for .NET Class Hierarchy Poster? toast 2009-04-30T16:51:20Z 2009-04-30T16:51:20Z <p>I found this one for .NET 2.0</p> <p><a href="http://blogs.msdn.com/photos/brada/images/524537/original.aspx" rel="nofollow">http://blogs.msdn.com/photos/brada/images/524537/original.aspx</a></p> http://stackoverflow.com/questions/760668/can-somebody-explain-this-c-function/760695#760695 0 Answer by toast for Can somebody explain this C function? toast 2009-04-17T14:48:34Z 2009-04-17T15:20:23Z <p><strike>Looks like a hashing function.</strike> On second thought this would make a pretty poor hash function.</p> <p>They are shifting every frame by the remainder of the size and then ORing that with a static value. This value is then returned.</p> http://stackoverflow.com/questions/758916/how-to-make-subversion-or-any-program-perform-periodic-commits/758935#758935 3 Answer by toast for How to make Subversion (or any program) perform periodic commits? toast 2009-04-17T03:45:12Z 2009-04-17T04:05:13Z <p>I don't think setting commits on a timed schedule is a particularly good idea. Especially if you start getting into testing and continuous integration. Committing at set intervals will break the build because there is no guarantee that you will have completed the changeset in the time frame.</p> <p>A better way, if you want to auto-commit is to make the commit part of the build process itself. Just make the last step of the build process a commit to the repository. That way, if the build fails, you won't commit garbage.</p> <p>Totally possible with all flavors of make and I know Visual Studio has pre and post build events that can be set to do something like this. So I'm pretty sure that most modern IDEs can handle this.</p> <p>As a special consideration for this problem in particular:<br /> Move the commit hook to the beginning of the process so you can track when you mess up royally as well and how you come to fix the errors.</p> http://stackoverflow.com/questions/751640/iphone-accessing-sqlite3-database/751695#751695 1 Answer by toast for iphone: accessing sqlite3 database toast 2009-04-15T13:30:07Z 2009-04-15T13:30:07Z <p>Are you leaving the database in the base app path?<br /> Because if you are, the actual hardware won't allow you to write to files in that directory, just read. To write to the database, you will first have to copy it to an accessible directory.</p> <p>I'm doing something similar to this (where filename is an NSString containing the name of the database file):</p> <pre><code>NSArray *docPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *docPath = [docPaths objectAtIndex:0]; NSString *fullName = [docPath stringByAppendingPathComponent:fileName]; NSFileManager *fm = [NSFileManager defaultManager]; if (![fm fileExistsAtPath:fullName]) { NSString *path = [[NSBundle mainBundle] bundlePath]; NSString *defaultName = [path stringByAppendingPathComponent:fileName]; [fm copyItemAtPath:defaultName toPath:fullName error:NULL]; } </code></pre> <p>Basically, check if the file already exists and copy it from the base bundlePath if it doesn't.</p> http://stackoverflow.com/questions/735412/how-to-make-an-html-page-open-automatically-on-a-cd-dvd/735442#735442 2 Answer by toast for How to make an html page open automatically on a CD/DVD toast 2009-04-09T18:44:19Z 2009-04-09T18:44:19Z <p>If you don't want to trust to third party programs, or skip over them entirely you can read the <a href="http://msdn.microsoft.com/en-us/library/cc136610%28VS.85%29.aspx" rel="nofollow">MSDN AutoRun Reference</a>. It's not too bad.</p> http://stackoverflow.com/questions/715564/paste-from-sql-to-excel-excel-wants-to-think-for-me/715585#715585 0 Answer by toast for Paste from SQL to Excel... Excel wants to think for me toast 2009-04-03T20:20:29Z 2009-04-03T20:20:29Z <p>Highlight the affected row, right click, choose <code>Format Cells...</code>, select <code>Text</code> before you paste the data.</p> http://stackoverflow.com/questions/668066/iphone-nsconcretemutabledata-fastestencoding-unrecognized-selector/668081#668081 1 Answer by toast for iPhone: -[NSConcreteMutableData fastestEncoding]: unrecognized selector toast 2009-03-20T21:31:29Z 2009-03-20T21:49:00Z <p><strike><code>@"Some String"</code> isn't an object, it's a string literal. You can't send messages to it. You are going to need to do something else to join those strings.</p> <p>Something like: </p> <pre><code> [NSString stringWithFormat:@"%@%@", @"String 1", @"String 2"]; </code></pre> <p></strike> Apparently, this isn't correct. String literals are treated as objects.</p> <p>As mentioned in the comments, you may also have a problem with <code>self.somestring</code> as well. If you haven't declared a property or synthesized <code>somestring</code> then accessing it through <code>self.</code> is incorrect. You should just use </p> <pre><code>somestring = [NSString stringWithFormat:@"%@%@", @"String 1", @"String 2"]; </code></pre> <p>If you've done:</p> <pre><code>@interface myClass { NSString *somestring; } @property(nonatomic, retain) NSString *somestring; @end </code></pre> <p>And:</p> <pre><code>@implementation myClass @synthesize somestring; @end </code></pre> <p>Then you can access the variable using <code>self.somestring</code>, which is really just syntactic sugar for <code>[self somestring]</code>.</p> <p>It is important to note also that <code>@property</code> and <code>@synthesize</code> are actually syntactic sugar bits themselves. They wind up doing something similar to this.</p> <pre><code>@interface myClass { NSString *somestring; } -(NSString *)somestring; -(void)setSomestring:(NSString *)value; @end </code></pre> <p>And:</p> <pre><code>@implentation myClass -(NSString *)somestring { return somestring; } -(void)setSomestring:(NSString *)value { somestring = value; } @end </code></pre> <p>So if you haven't declared <code>somestring</code> as a property and synthesized it, then you don't have those methods to answer the message being passed.</p> http://stackoverflow.com/questions/655792/how-to-convert-nsinteger-to-a-binary-string-value/655848#655848 0 Answer by toast for How to Convert NSInteger to a binary (string) value toast 2009-03-17T20:13:51Z 2009-03-17T20:36:21Z <p>Roughly:</p> <pre><code>-(void)someFunction { NSLog([self toBinary:input]); } -(NSString *)toBinary:(NSInteger)input { if (input == 1 || input == 0) return [NSString stringWithFormat:@"%d", input]; [NSString stringWithFormat:@"%@%d", [self toBinary:input / 2], input % 2]; } </code></pre> http://stackoverflow.com/questions/655284/lower-case-the-first-character-of-a-string-using-only-xslt-1-0/655302#655302 0 Answer by toast for lower case the first character of a string using only xslt 1.0 toast 2009-03-17T17:41:12Z 2009-03-17T17:41:12Z <p>XSLT has a substring function, so you could use that pattern with the substring function to get what you want.</p> http://stackoverflow.com/questions/628935/how-to-perform-an-ntlm-challenge-on-the-iphone 1 How to perform an NTLM challenge on the iPhone. toast 2009-03-10T04:26:09Z 2009-03-13T22:23:33Z <p>I'm trying to access some web services in an iPhone application.</p> <p>If I <code>GET</code> to the .asmx page, I authenticate and get the WSDL as expected.</p> <p>However, if I <code>POST</code> to the .asmx page, setting the SOAPAction, Content-Type, Content-Length, and HTTPBody, I just keep getting <code>didReceiveAuthenticationChallenge</code> messages.</p> <p>Additionally, I'm trying to POST to IIS using Integrated Windows Authentication (IWA), which means I'm trying to negotiate an NTLM challenge.</p> http://stackoverflow.com/questions/628935/how-to-perform-an-ntlm-challenge-on-the-iphone/635118#635118 3 Answer by toast for How to perform an NTLM challenge on the iPhone. toast 2009-03-11T15:44:24Z 2009-03-13T22:23:33Z <p>I unfortunately found my answer. NSURLConnection cannot do NTLM authentication. Here's a post about how to do NTLM authentication using the CFNetwork stack.</p> <p><a href="http://jameswilliams.me/developer/blog/2008/08/http-post-via-the-cfnetwork-stack/" rel="nofollow">HTTP Post via the CFNetwork stack</a></p> <p>Found something even better than doing all of that tediousness: Someone who has already done it!<br /> <a href="http://allseeing-i.com/ASIHTTPRequest-CFNetwork-wrapper-for-HTTP-requests" rel="nofollow">ASIHTTPRequest</a></p> http://stackoverflow.com/questions/639174/how-can-i-deploy-my-c-project/639259#639259 2 Answer by toast for How can I deploy my C# project? toast 2009-03-12T15:50:03Z 2009-03-12T15:50:03Z <p>Have you looked into <a href="http://msdn.microsoft.com/en-us/library/t71a733d%28VS.80%29.aspx" rel="nofollow">ClickOnce</a> deployment?<br /> It's far from perfect, but for projects without a huge amount of overhead, it's generally good enough.</p> http://stackoverflow.com/questions/635788/windows-authentication-user-gets-prompted-asp-net/635969#635969 0 Answer by toast for Windows authentication. User gets prompted - ASP.NET toast 2009-03-11T19:21:00Z 2009-03-11T19:21:00Z <p>Correct me if I'm wrong, but wouldn't the aspx page get the IIS user?</p> http://stackoverflow.com/questions/635573/programmatically-print-documents/635620#635620 0 Answer by toast for Programmatically Print Documents toast 2009-03-11T17:49:49Z 2009-03-11T18:02:19Z <p><a href="http://msdn.microsoft.com/en-us/library/system.drawing.printing.aspx" rel="nofollow">System.Drawing.Printing</a> will help you do what you want. No need to hook into the shell, so you could do this as a service. Whenever you detect a new file, just ship it off to the printer.</p> <p>For more involved types (Word documents and such), you can use the Interop libraries to use Word itself to print the document. For example, <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.interop.word.documentclass.printout%28VS.80%29.aspx" rel="nofollow">here</a> is the Interop.Word PrintOut method.</p> http://stackoverflow.com/questions/1751920/linq-query-returns-incorrect-result-set Comment by toast on Linq Query Returns Incorrect Result Set toast 2009-11-18T13:13:30Z 2009-11-18T13:13:30Z I responded to your comment on my answer below. http://stackoverflow.com/questions/1751920/linq-query-returns-incorrect-result-set/1751976#1751976 Comment by toast on Linq Query Returns Incorrect Result Set toast 2009-11-18T13:12:41Z 2009-11-18T13:12:41Z Not the DBML, but the actual DataContext. You should be doing Dim db as context = new MyDbContext() every time you do a new operation. If MyGetDataContextHelper() creates resuses a context between calls, it won't be grabbing the freshest table from the database. http://stackoverflow.com/questions/1717601/extracting-two-numbers-from-a-string/1717634#1717634 Comment by toast on Extracting two numbers from a string toast 2009-11-11T20:00:42Z 2009-11-11T20:00:42Z Wouldn't \D*(\d+)^\D]*(\d+)^\D* be slightly more appropriate? As we explicitly don't want digits and . has the potential to match a digit before we get to \d. http://stackoverflow.com/questions/1687417/parameters-with-no-identifiers-in-c/1687479#1687479 Comment by toast on Parameters with no identifiers in C#? toast 2009-11-06T13:09:04Z 2009-11-06T13:09:04Z int isn't an object so I don't think you can send it null. You would get a compile error. http://stackoverflow.com/questions/1609148/patterns-in-binary-numbers/1609203#1609203 Comment by toast on Patterns in Binary Numbers toast 2009-10-22T19:19:15Z 2009-10-22T19:19:15Z I like this because it says so much and so little at the same time. http://stackoverflow.com/questions/1607797/checking-website-status-in-net Comment by toast on Checking website status in .NET toast 2009-10-22T15:00:23Z 2009-10-22T15:00:23Z Ping isn't the best solution because it only checks to see if the machine is up or not. The status of the web server is still in question. http://stackoverflow.com/questions/1412081/are-do-while-false-loops-common/1412106#1412106 Comment by toast on Are do-while-false loops common? toast 2009-09-11T17:01:31Z 2009-09-11T17:01:31Z Not trying to imply anything bad about you. Just trying to illustrate why we should keep obscure coding tricks to a minimum. http://stackoverflow.com/questions/1412081/are-do-while-false-loops-common/1412106#1412106 Comment by toast on Are do-while-false loops common? toast 2009-09-11T17:00:03Z 2009-09-11T17:00:03Z It's not an infinite loop. That's part of the weird. It's a do while loop that will only execute once. He's using breaks to skip over methods he doesn't want to execute. Of course, the fact that you did miss this subtlety is good reason to not use it. If reasonably experienced developers can miss this, then what hope do less experienced ones have. http://stackoverflow.com/questions/452281/using-idisposable-to-unsubscribe-events/452321#452321 Comment by toast on Using IDisposable to unsubscribe events toast 2009-08-05T15:30:04Z 2009-08-05T15:30:04Z Wouldn't letting go of listeners be considered cleaning up? http://stackoverflow.com/questions/1148633/how-to-write-a-windows-application/1148645#1148645 Comment by toast on How to Write a Windows Application? toast 2009-07-22T20:43:58Z 2009-07-22T20:43:58Z Programming Windows is a great book. http://stackoverflow.com/questions/1110998/get-day-of-week-in-sql-2005-2008 Comment by toast on Get Day of Week in SQL 2005/2008 toast 2009-07-10T17:56:24Z 2009-07-10T17:56:24Z If you have a table containing lookups for date portions, you have generally done something wrong. SQL Server's date functions are many and robust so any data you need to extract from a date can be readily done on a datetime column. http://stackoverflow.com/questions/1107610/keyboard-doesnt-disappear/1107613#1107613 Comment by toast on Keyboard doesn't disappear toast 2009-07-10T15:24:34Z 2009-07-10T15:24:34Z That's probably why everyone gets caught by the keyboard. If both acquiring and resigning were automatic or if both were manual, I don't think it would be an issue. http://stackoverflow.com/questions/1107610/keyboard-doesnt-disappear/1107613#1107613 Comment by toast on Keyboard doesn't disappear toast 2009-07-10T04:23:16Z 2009-07-10T04:23:16Z Classic. I think just about everyone misses this. I know I did when I first started with iPhone development. http://stackoverflow.com/questions/200574/linq-equivalent-of-foreach-for-ienumerable/200597#200597 Comment by toast on Linq equivalent of foreach for IEnumerable toast 2009-07-10T04:19:49Z 2009-07-10T04:19:49Z Why wouldn't <code>DoStuff()</code> return an item? If you have the code for <code>Item</code>, you can make return whatever you want. If you don't, you can create an extension method. http://stackoverflow.com/questions/1105990/is-it-better-to-call-tolist-or-toarray-in-linq-queries Comment by toast on Is it better to call ToList() or ToArray() in LINQ queries? toast 2009-07-09T19:48:56Z 2009-07-09T19:48:56Z @Stan: It will be stored in a List. var is syntatic sugar for whatever type is on the rhs. It's still strongly typed.