Daniel Magliola
|
Registered User
|
Founder of Crystal Gears
Portfolio: - www.movertrends.com - www.friendshopper.com - www.digitalshow.com - www.translatorscorner.com - www.gigpay.com |
|
Dec 3 |
revised |
MySQL.Data: “Object reference not set to an instance of an object” when trying to Connect. deleted 44 characters in body |
|
Dec 3 |
comment |
MySQL.Data: “Object reference not set to an instance of an object” when trying to Connect. Update: It dies 11 hours after the last death. Any ideas here? |
|
Nov 29 |
comment |
How can I write an Exif header without recompressing the JPEG, in .NET? That has no valid answers whatsoever... |
|
Nov 28 |
asked | How can I write an Exif header without recompressing the JPEG, in .NET? |
|
Nov 27 |
awarded | ● Popular Question |
|
Nov 25 |
revised |
MySQL.Data: “Object reference not set to an instance of an object” when trying to Connect. added 753 characters in body |
|
Nov 25 |
comment |
MySQL.Data: “Object reference not set to an instance of an object” when trying to Connect. Since it started doing this, it has always died, eventually. I don't have a clear statistic yet of how fast it does so (ie. how long it lives before dying). But I started it again yesterday (when I posted this question), and today it's dead again, about 16 hours later. |
|
Nov 24 |
comment |
MySQL.Data: “Object reference not set to an instance of an object” when trying to Connect. Yes. There is nothing there, aside from the error report that my own application emitted (the details are what I posted above), and an entry in the "Application" log saying that my process threw an unhandled exception and died. |
|
Nov 24 |
asked | MySQL.Data: “Object reference not set to an instance of an object” when trying to Connect. |
|
Nov 23 |
comment |
Good video cards for programming (2D)? I have too many pixels in my screen and it’s sloooow @Elzo: I'm assuming this would be perfect for superuser.com if I wanted the best card for 3D stuff and whatnot. I'm particularly interested in the opinions and experience of obsessive programmers, since that's what i'm doing. @JeeBee: Any ideas what it could be? I'm completely stumped by this one too @Ben: I wish it were as good as you think. This is really not running as it should be, and i'm not sure what to blame here (Hardware/Software/Video Card, etc) |
|
Nov 23 |
asked | Good video cards for programming (2D)? I have too many pixels in my screen and it’s sloooow |
|
Nov 15 |
comment |
LINQ2SQL: Update an entity field that has a reference to another entity OK, but let's assume it's not necessarily an Enum. Let's say I, for whatever reason (like the user chose it from a dropdown) already have the ID of another related record and I want to set it. For example, Posts have an Author, we have an Authors table, and I have the ID of the Author and I want to set it to the Post record. Is there a better way than this to do it? |
|
Nov 14 |
asked | LINQ2SQL: Update an entity field that has a reference to another entity |
|
Nov 13 |
comment |
LINQ2SQL: Cannot convert IQueryable<> to IOrderedQueryable error Aaaaah, that final explanation is SUPER clear, gotcha. Thank you!! |
|
Nov 13 |
comment |
LINQ2SQL: Cannot convert IQueryable<> to IOrderedQueryable error Both worked like a charm, thank you! What do you mean we order at the end rather than in the middle? Isn't the actual SQL generated and executed after all this, once the query is enumerated? I assumed LINQ would be smart enough to "combine" the WHEREs... |
|
Nov 13 |
comment |
LINQ2SQL: Cannot convert IQueryable<> to IOrderedQueryable error Hmmmmm, but wouldn't that first execute a query that'll bring all records from the database, and then filter them by status in ASP.Net? I'd rather have the DB process all the WHEREs, which is what I thought happened if I just added the .Where clause, since the SQL would be generated and executed later, when the results is enumerated. In your case, doesn't ToList() cause it to be executed too? |
|
Nov 13 |
asked | LINQ2SQL: Cannot convert IQueryable<> to IOrderedQueryable error |
|
Nov 3 |
awarded | ● Popular Question |
|
Nov 2 |
comment |
Can I force a page jump in HTML printing? I actually like the other one better, since it gives me more control. I can always assign the class "pagebreak" only to the H1's that should make the page jump. But it's still a good solution. +1 for @media, although screen should ignore page-break-before, I guess. Thanks! |
|
Nov 2 |
asked | Can I force a page jump in HTML printing? |
|
Oct 28 |
comment |
.Net 2.0: Help troubleshooting a System.AccessViolationException. 100% managed code. I don't have an antivirus in this machine. And I surely hope I don't have a virus either! |
|
Oct 28 |
comment |
How to get the greatest of two columns values in MySQL? Thank you! I did try "largest", and "maximum" and they didn't work. Thanks! |
|
Oct 27 |
asked | How to get the greatest of two columns values in MySQL? |
|
Oct 22 |
accepted | How can I compile changes in only 1 document but keep the original build of the others? (C#, Asp.Net MVC) |
|
Oct 22 |
comment |
How can I compile changes in only 1 document but keep the original build of the others? (C#, Asp.Net MVC) Yes, that's what you're supposed to do. Just download the whole copy of the code that is in production, make the little change, and compile it and re-upload. And really, learn Source Control. You will be immensely happier, trust me :-) |
|
Oct 22 |
answered | How can I compile changes in only 1 document but keep the original build of the others? (C#, Asp.Net MVC) |
|
Oct 19 |
revised |
ASP.Net: IE6 making invalid requests added 4 characters in body |
|
Oct 19 |
comment |
ASP.Net: IE6 making invalid requests don't have a server farm, this is a single server. The problem is that IE6 (or some proxy, or something, although if it's a proxy, I wonder why I only get IE6 UA's) is screwing up the content it sends to the server, either the URL or the POST data, it's not the server not being able to "decrypt" it. |
|
Oct 19 |
comment |
ASP.Net: IE6 making invalid requests I don't have a server farm, this is a single server. The problem is that IE6 (or some proxy, or something, although if it's a proxy, I wonder why I only get IE6 UA's) is screwing up the content it sends to the server, either the URL or the POST data, it's not the server not being able to "decrypt" it. |
|
Oct 16 |
awarded | ● Enlightened |
|
Oct 16 |
accepted | Generate random string |
|
Oct 15 |
comment |
ASP.Net: IE6 making invalid requests Nope, it's not always the same URL generating the error. The actual resource changes. What always happens is that & will be converted to & (missing the semicolon), and it's being made lowercase. |
|
Oct 15 |
comment |
Generate random string Careful! This is probably not thread-safe. If you're doing this in a web-app, you can run into weird threading issues (I learned this the hard way) |
|
Oct 15 |
comment |
Generate random string Thank you. I still think he should go with James' suggestion for this particular case, but I believe understanding why this happened would be useful, since Random is a pretty common thing to use in other scenarios. |
|
Oct 15 |
awarded | ● Nice Answer |
|
Oct 15 |
comment |
ASP.Net: IE6 making invalid requests Thanks for your answer! Do you mean the hardcoded CSS values? I've definitely not put anything like that in our stylesheets, and we're not using any "packaged contronl" that outputs this kinds of things (like BasicDatePicker does, for example). If that's not what you meant, sorry if I didn't understand |
|
Oct 15 |
comment |
ASP.Net: IE6 making invalid requests IIS 6, no Adwords |
|
Oct 15 |
comment |
Generate random string Careful! This is not thread-safe. If you're doing this in a web-app, you can run into weird threading issues (I learned this the hard way) |
|
Oct 15 |
answered | Generate random string |
|
Oct 15 |
revised |
ASP.Net: IE6 making invalid requests edited title |
|
Oct 15 |
revised |
.Net 2.0: Help troubleshooting a System.AccessViolationException. 100% managed code. added 238 characters in body |
|
Oct 15 |
comment |
.Net 2.0: Help troubleshooting a System.AccessViolationException. 100% managed code. The thing is that this problem happens about once every few days. It's absolutely non-reproducible. Also, this is the dev machine in which i'm working on this project, so commenting out large pieces of code would make it non-functional, and not let me work :-S |
|
Oct 15 |
comment |
.Net 2.0: Help troubleshooting a System.AccessViolationException. 100% managed code. Hmmm, that's a good idea, but being that this is my dev machine, I can't, since I have to keep working on this code... |
|
Oct 14 |
accepted | Wildcard SSL common name - can it be called anything? |
|
Oct 14 |
answered | Wildcard SSL common name - can it be called anything? |
|
Oct 13 |
revised |
ASP.Net: IE6 making invalid requests added 174 characters in body |
|
Oct 13 |
comment |
What are the advantages of using a single database for EACH client? I didn't have enough reputation at the time, check my response date. |
|
Oct 12 |
revised |
.Net 2.0: Help troubleshooting a System.AccessViolationException. 100% managed code. deleted 18 characters in body |
|
Oct 12 |
revised |
ASP.Net: IE6 making invalid requests added 1 characters in body |
|
Oct 9 |
comment |
Is there a “Browser Control” to host a website inside Flash/Silverlight? This is not what I'm looking for, according to your description. I'm looking for something that'll "host" the "browser" inside the plugin itself. If this adds the IFrame to the page that hosts the plugin, and positions things so that it'll look nice, it won't provide me the isolation from the "window" object that i'm looking for. |
