|
Registered User
|
|
12h |
comment |
Changing UI elements from another thread in .NET This is the right way to do it. Cross-threaded operations are disabled because sharing data between threads is dangerous. This is why you create a delegate to marshal a call to the main thread which owns the control you're attempting to access. If you don't like creating a delegate for each call, you could very well write a generic wrapper of some kind to handle this functionality for you. |
|
Dec 9 |
comment |
Custom .NET ComboBox control The solution above uses tool strip controls to paint the entire combo box. I'm attempting to leverage the existing ComboBox control and not recreate its behavior. Thanks for the link though. |
|
Dec 8 |
asked | Custom .NET ComboBox control |
|
Dec 2 |
comment |
On Design Patterns: When to use the Singleton? How the hell did this incoherent response get accepted as the answer? |
|
Nov 24 |
comment |
Buiding ASP.NET application without Session State? I'm not sure what to say. You asked how to handle data other than putting it into session. I said there is an existing framework that comes bundled with ASP.NET 2.0 that allows you to serialize that data and store it in the database. Isn't that what the other post was about? I guess I'm just not understanding why i got the downvote in the first place. If you don't agree with the suggestion, at least leave a comment when you downvote. Thanks for clarifying later on though. |
|
Nov 23 |
comment |
Buiding ASP.NET application without Session State? odetocode.com/articles/440.aspx |
|
Nov 23 |
comment |
Buiding ASP.NET application without Session State? Care to explain why the downvote? I mean, David Lively suggested the same darn thing after i wrote this and i get a downvote? |
|
Nov 22 |
answered | Learning c++ from a C# background |
|
Nov 22 |
comment |
Buiding ASP.NET application without Session State? You're right. Not sure what i was thinking. |
|
Nov 22 |
revised |
Buiding ASP.NET application without Session State? deleted 94 characters in body |
|
Nov 22 |
answered | Buiding ASP.NET application without Session State? |
|
Nov 22 |
answered | How much should I “stretch the truth” on my resume? |
|
Nov 21 |
comment |
Choosing a source control system: logical next steps after VSS Also a good one. I heard Microsoft used it instead of VSS, which is almost laughable. :) |
|
Nov 20 |
answered | Choosing a source control system: logical next steps after VSS |
|
Nov 14 |
comment |
Alternative to Java CPU-intensive calculations such as the one you're describing is usually done on distributed systems. Selecting a different language is not going to make significant difference. |
|
Nov 10 |
comment |
simple proof that GUID is not unique First time i loled on this site. |
|
Nov 8 |
comment |
Is garbage collection automatic in standard C++? Almost right. Sometimes you have to dispose resources explicitly without waiting for GC to do it for you. |
|
Nov 7 |
comment |
Is it worth getting an MSc in Computer Science? haha, you read this and the first comment and than you wonder why software poopers even have the privilege to call themselves 'software engineers'. The sad reality is that you can be a cake decorator who does programming. I mean, it's ridiculous. |
|
Nov 7 |
comment |
What is an example of user documentation?? I'm assuming this is for a school assignment. Considering the level of complexity of your project, i don't think it's anything formal. Just comment your code and briefly explain how to use your class. |
|
Nov 7 |
comment |
Visual C++ 2008 as frontend for Access I would indicate what problems you're having. Can't help, if you don't tell us what the issue is. |
|
Nov 1 |
answered | Which programming language is manageable by an 11 year old kid? |
|
Oct 31 |
comment |
why Google map marker gets load on first click I think you just broke Google Maps. |
|
Oct 31 |
comment |
C++ class, its base class and circular include includes Better yet, just use '#pragma once' directive |
|
Oct 31 |
accepted | DataContextProvider |
|
Oct 31 |
answered | DataContextProvider |
|
Oct 31 |
comment |
How to access the databound selected item in a datalist after postback? You have to rebind the control. ViewState will not persist your data-bound items. |
|
Oct 31 |
answered | Creating a Catch-All AppToolbox Class - Is this a Bad Practice? |
|
Oct 31 |
comment |
What programming language will enable me to enter a very long number without converting it to floating point? Any language will. If not out of the box, you can always write your own handler. |
|
Oct 31 |
revised |
disconnect visual studio solution from sourcesafe? added 168 characters in body |
|
Oct 31 |
comment |
Can’t see the save data with linq? You won't see an error because you swallowing it in catch. |
|
Oct 31 |
answered | What’s the difference between Render and RenderControl in WebControl creation? |
|
Oct 31 |
answered | disconnect visual studio solution from sourcesafe? |
|
Oct 28 |
comment |
Why are all desktop programming languages and web development languages so different? Jeff Artwood once said "PHP isn't so much a language as a random collection of arbitrary stuff, a virtual explosion at the keyword and function factory" And he is absolutely right. The last thing i would want to see is non-descriptive function names and anything like I_Want_To_Kill_Myself_Now_But_I_Will_Clear_This_Stack_First() :) |
|
Oct 28 |
comment |
How to Ignore SQL Error? - C# I would consider picking an index-friendly format for your ip addresses in the database. If you google you'll find a lot of discussions on this topic. Than index that column and perform checks for existence of that IP prior to inserting. If you do it right, your performance will improve significantly. However, catching and ignoring SQL errors is a terrible thing to do. For one, you may be ignoring the wrong error. |
|
Oct 24 |
comment |
MYSQL, using unique table names VS using ids Honestly, this just sounds bad from development and deployment standpoints. |
|
Oct 24 |
comment |
Others free deployment project for .NET applications +1 I've used this thing since it's conception. Very easy to script. |
|
Oct 24 |
comment |
A simple asp.net feature The whole point of asp.net is not to do that. OnClick is an event that encapsulates your logic. Why would you slap that logic in one line of code in your page markup? |
|
Oct 24 |
comment |
MYSQL, using unique table names VS using ids Create a structure to handle multiple users. If you index your tables appropriately you will see great performance. Any DBA who would actually design something the way your boss wants it done should be fired instantly. That is a terrible practice. |
|
Oct 24 |
comment |
Linking a .NET Expression Tree into a new assembly There is a really good book out there called 'Expert .NET 2.0 IL Assembler' by Serge Lidin, that will give you an understanding about the structure of assemblies in MSIL. It's very easy to read as long as you understand basic assembler concepts. I would also suggest using Mono.Cecil as the library to Emit your IL. I think you'll find it much easier to work with then than the library under Emit namespace. Otherwise, i agree with the above poster. If you have the AST built, you should be walking through each statement and emit your IL. |
|
Oct 24 |
comment |
.NET: Scalability of generic Dictionary The first red flag is why do you store so much data in memory. What are you trying to achieve? The larger you hash gets, the better you hash functions needs to be to accommodate unique key for every item. |
|
Oct 24 |
revised |
Partially encapsulate a field C# added 564 characters in body |
|
Oct 24 |
answered | Partially encapsulate a field C# |
|
Oct 17 |
answered | Removing elements from a generic list while iterating around it |
|
Oct 14 |
comment |
Change @prmMax from asp.net into SQL-server Query? add Declare @prmMax datetime Set @prmMax = '01/01/1800' -- your date before the query |
|
Oct 11 |
comment |
Valid XML, Valid schema. Where have I gone wrong? Have you tried reducing your XML to a single element and testing it against your schema? |
|
Oct 9 |
revised |
What does it mean that Linq To SQL is not scalable? deleted 1 characters in body |
|
Oct 9 |
revised |
What does it mean that Linq To SQL is not scalable? added 42 characters in body; deleted 5 characters in body |
|
Oct 9 |
comment |
What does it mean that Linq To SQL is not scalable? This is not an issue, for most projects. Not everyone designs like this. I'm just a purist :) |
|
Oct 8 |
answered | What does it mean that Linq To SQL is not scalable? |
|
Oct 4 |
answered | What surprised you the most about the software industry? |
