User toast - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T13:12:15Zhttp://stackoverflow.com/feeds/user/3824http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1751920/linq-query-returns-incorrect-result-set/1751976#17519760Answer by toast for Linq Query Returns Incorrect Result Settoast2009-11-17T21:33:48Z2009-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-iis0Click Once Setup.exe returns 404 with IIStoast2009-01-09T20:24:42Z2009-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#15949110Answer by toast for How can I prevent a Checkbox state switch when the user clicks on the text?toast2009-10-20T14:15:14Z2009-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#920920Answer by toast for Add column, with default value, to existing table in SQL Servertoast2008-09-18T12:31:01Z2009-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#11568031Answer by toast for How do you remove an object from an array ?toast2009-07-21T01:03:27Z2009-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#11004040Answer by toast for GET vs. POST does it really really matter?toast2009-07-08T20:32:52Z2009-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#10903671Answer by toast for LINQ to SQL: How To Extend An Entity Class With A Column Aliastoast2009-07-07T04:33:16Z2009-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#10903471Answer by toast for LINQ to SQL and Attaching Child Objectstoast2009-07-07T04:20:45Z2009-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#10813640Answer by toast for Updating Linq data toast2009-07-04T02:35:10Z2009-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<MyData> 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#10813475Answer by toast for Why isn't this short circuit in lambda working?toast2009-07-04T02:25:59Z2009-07-04T02:25:59Z<p>Is the <code>.Where</code> being used on a <code>Table<></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#10810410Answer by toast for Where's the memory leak here?toast2009-07-03T22:32:42Z2009-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#10032283Answer by toast for How to disable highlighting of the app icon?toast2009-06-16T18:37:54Z2009-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#9221951Answer by toast for Testing whether a Font is monospaced in Javatoast2009-05-28T17:34:41Z2009-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#9221070Answer by toast for What does it mean for an application to be bloated?toast2009-05-28T17:16:13Z2009-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#9217341Answer by toast for MS Access checkbox validationtoast2009-05-28T16:09:32Z2009-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#9216421Answer by toast for Free VB6/VBA profiler and best Excel practicestoast2009-05-28T15:52:47Z2009-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#8079640Answer by toast for .NET Class Hierarchy Poster?toast2009-04-30T16:51:20Z2009-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#7606950Answer by toast for Can somebody explain this C function?toast2009-04-17T14:48:34Z2009-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#7589353Answer by toast for How to make Subversion (or any program) perform periodic commits?toast2009-04-17T03:45:12Z2009-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#7516951Answer by toast for iphone: accessing sqlite3 databasetoast2009-04-15T13:30:07Z2009-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#7354422Answer by toast for How to make an html page open automatically on a CD/DVDtoast2009-04-09T18:44:19Z2009-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#7155850Answer by toast for Paste from SQL to Excel... Excel wants to think for metoast2009-04-03T20:20:29Z2009-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#6680811Answer by toast for iPhone: -[NSConcreteMutableData fastestEncoding]: unrecognized selectortoast2009-03-20T21:31:29Z2009-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#6558480Answer by toast for How to Convert NSInteger to a binary (string) value toast2009-03-17T20:13:51Z2009-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#6553020Answer by toast for lower case the first character of a string using only xslt 1.0toast2009-03-17T17:41:12Z2009-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-iphone1How to perform an NTLM challenge on the iPhone.toast2009-03-10T04:26:09Z2009-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#6351183Answer by toast for How to perform an NTLM challenge on the iPhone.toast2009-03-11T15:44:24Z2009-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#6392592Answer by toast for How can I deploy my C# project?toast2009-03-12T15:50:03Z2009-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#6359690Answer by toast for Windows authentication. User gets prompted - ASP.NETtoast2009-03-11T19:21:00Z2009-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#6356200Answer by toast for Programmatically Print Documentstoast2009-03-11T17:49:49Z2009-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-setComment by toast on Linq Query Returns Incorrect Result Settoast2009-11-18T13:13:30Z2009-11-18T13:13:30ZI responded to your comment on my answer below.http://stackoverflow.com/questions/1751920/linq-query-returns-incorrect-result-set/1751976#1751976Comment by toast on Linq Query Returns Incorrect Result Settoast2009-11-18T13:12:41Z2009-11-18T13:12:41ZNot 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#1717634Comment by toast on Extracting two numbers from a stringtoast2009-11-11T20:00:42Z2009-11-11T20:00:42ZWouldn'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#1687479Comment by toast on Parameters with no identifiers in C#?toast2009-11-06T13:09:04Z2009-11-06T13:09:04Zint 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#1609203Comment by toast on Patterns in Binary Numberstoast2009-10-22T19:19:15Z2009-10-22T19:19:15ZI like this because it says so much and so little at the same time.http://stackoverflow.com/questions/1607797/checking-website-status-in-netComment by toast on Checking website status in .NETtoast2009-10-22T15:00:23Z2009-10-22T15:00:23ZPing 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#1412106Comment by toast on Are do-while-false loops common?toast2009-09-11T17:01:31Z2009-09-11T17:01:31ZNot 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#1412106Comment by toast on Are do-while-false loops common?toast2009-09-11T17:00:03Z2009-09-11T17:00:03ZIt'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#452321Comment by toast on Using IDisposable to unsubscribe eventstoast2009-08-05T15:30:04Z2009-08-05T15:30:04ZWouldn't letting go of listeners be considered cleaning up?http://stackoverflow.com/questions/1148633/how-to-write-a-windows-application/1148645#1148645Comment by toast on How to Write a Windows Application?toast2009-07-22T20:43:58Z2009-07-22T20:43:58ZProgramming Windows is a great book.http://stackoverflow.com/questions/1110998/get-day-of-week-in-sql-2005-2008Comment by toast on Get Day of Week in SQL 2005/2008toast2009-07-10T17:56:24Z2009-07-10T17:56:24ZIf 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#1107613Comment by toast on Keyboard doesn't disappeartoast2009-07-10T15:24:34Z2009-07-10T15:24:34ZThat'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#1107613Comment by toast on Keyboard doesn't disappeartoast2009-07-10T04:23:16Z2009-07-10T04:23:16ZClassic. 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#200597Comment by toast on Linq equivalent of foreach for IEnumerabletoast2009-07-10T04:19:49Z2009-07-10T04:19:49ZWhy 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-queriesComment by toast on Is it better to call ToList() or ToArray() in LINQ queries?toast2009-07-09T19:48:56Z2009-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.