overslacked
|
Registered User
|
|
Dec 11 |
accepted | Derived System.Data classes |
|
Dec 10 |
comment |
Algorithm to swim like a fish in c# @Mark, I believe recursive's point is that unless this is a major feature of your application, it's probably best to fake it - especially if a sin calculation is inefficient for your purposes. |
|
Dec 10 |
comment |
I’m trying to do Ackermann’s Function on IBasic I saw that too; but I'm really curious as to how it got to 13 but couldn't continue if that's the cause of the error. |
|
Dec 9 |
comment |
Triple DES interoperability between .Net and iPhone? Zaph - for the purposes of this question the salts and IVs are the same thing. The link in G Mauri's original question points to a Stack Overflow question in which this problem and solution is explained very well: stackoverflow.com/questions/538435/… |
|
Dec 8 |
comment |
Triple DES interoperability between .Net and iPhone? G Mauri - check your salts. |
|
Dec 8 |
comment |
Triple DES interoperability between .Net and iPhone? AES and TripleDES are completely different algorithms. |
|
Dec 7 |
comment |
Is it possible to make a node invisible in a Winforms TreeView? NormD - certainly. However, I would make the argument that what you're looking for probably isn't a TreeView. I've done a lot with owner-drawn list views, perhaps something like that is what you're after. |
|
Dec 4 |
answered | Is it possible to make a node invisible in a Winforms TreeView? |
|
Dec 3 |
comment |
C# .NET form.Show() is very slow "I don't know why." It's because 800 is a huge number of controls to initialize! |
|
Dec 2 |
comment |
.NET document management system design - performance questions Oops - that should read "object instance in XML" - not object class. |
|
Dec 2 |
comment |
.NET document management system design - performance questions Serializing tends to mean representing a constructed object in another format, such as storing an object class in XML. What you're doing is enveloping one file within another. |
|
Dec 2 |
comment |
SQLServerCE Problem with parameterized queries from .NET Are the @nom and @nome differences present in your production code? Or just in this example? |
|
Dec 2 |
answered | Would you bring up morally gray projects during an interview? [e.g. porn or torrents] |
|
Dec 1 |
comment |
Using multiple platforms in a single project Josh - you haven't talked about what you're specifically trying to accomplish, so we can't be specific about the problems you'll face, other than saying "this is very likely a very poor decision". |
|
Dec 1 |
comment |
Abstracting from Stateful object navigation (1-1) - the challenge You say above that you're challenging yourself; so, please show us what you've tried and we can try to put you onto the right paths if you've become stuck somewhere. Otherwise you're challenging the community. |
|
Dec 1 |
comment |
Quick and dirty reflection based XML Serializer I agree. If you're at all concerned with execution speed, using reflection seems like a poor path to take. |
|
Nov 26 |
answered | What language and (possible) web application framework should I use to develop a high traffic web application? |
|
Nov 24 |
comment |
Can’t instantiate COM component in C# - error 80070002 Thanks very much for the update! I've been up and down a server we're having this same error on ... I'll take any details, no matter how abstract or useless seeming they are. |
|
Nov 24 |
revised |
Custom table component in .net edited tags |
|
Nov 24 |
comment |
Best way to ship 1GB of structured textual data used in my software? +1. Yes it's a joke answer but come on, those anti-reverse-engineering laws are also jokes. |
|
Nov 24 |
comment |
Can’t instantiate COM component in C# - error 80070002 I wish you'd posted what the problem was, to help others who arrive here later.... |
|
Nov 19 |
comment |
how do I tell .NET to how much memory it should use? & how much memory it should allocate for a process? Could you post the contents (or applicable section) of the Laws.Apply(Bitmap) method? |
|
Nov 17 |
comment |
vb.net dataTable/DataGridView search/sort Are you using any kind of database server, or is this coming from an XML file, or...? |
|
Nov 17 |
comment |
vb.net dataTable/DataGridView search/sort What is the maximum number of rows contained in the datatable? |
|
Nov 13 |
comment |
What are some questions to ask when choosing between two equal programmers? Personality goes a long way. |
|
Nov 13 |
comment |
Question about the garbage collector in .NET (memory leak) @Procule - I added a new answer with links; good luck! |
|
Nov 13 |
answered | Question about the garbage collector in .NET (memory leak) |
|
Nov 13 |
comment |
Question about the garbage collector in .NET (memory leak) (I spent a lot of time on this kind of thing at first too) |
|
Nov 13 |
comment |
Question about the garbage collector in .NET (memory leak) @Procule - You'll get over worrying whether the CLR GC works. It does. A lot of C/C++ coders use it and are really happy with it. However, you should learn about the using/IDisposable pattern, and to check the docs and see whether an object implements IDisposable. But the big advantage of .NET is not micromanaging this kind of thing. |
|
Nov 13 |
comment |
What’s the best SQL Server setup for a development environment? Although I do like that gbn points out the problems that can crop up with local superuser accounts, we also have not had any serious problems. |
|
Nov 9 |
comment |
Reliable/easy way to replace Windows.Forms control with a derived control? +1, this has always worked for me. |
|
Nov 6 |
answered | Where do I find the schema for .NET v2.0.50727 (SP2) machine.config file on XP? |
|
Oct 30 |
comment |
Simple Database Handling Although I like SQLite and Sql Server Compact Edition a lot, I still think straight object serialization best suits the OP's needs. |
|
Oct 16 |
comment |
In what order do .NET Windows forms events fire? +1 for mentioning "lifecycle" - knowing the magic keyword is a huge help when searching |
|
Oct 16 |
comment |
Denormalizing for sanity or performance? I used to be a huge fan of the elegance, logic and clarity of natural foreign keys, but they just aren't worth the constant maintenance hassle. So instead I created elegant tools to manage the artificial keys, and everyone's home in time for dinner. |
|
Oct 16 |
comment |
Denormalizing for sanity or performance? The idea of small, simple, reusable functions should apply to all the code we right, when possible. I get a lot of mileage out of table-valued functions and views for things like this. And as a bonus, reporting becomes a lot easier as well. |
|
Oct 14 |
comment |
hiring software developer for testing position I disagree because writing code and testing applications are two completely different skill sets, as described quite well in David Stratton's answer. And you still haven't given an example as to why your initial statement is, or should be, true. It sounds like it could be true, and I think a lot of developers would like to believe that it's true, but the opposite has been proved to me over the years. |
|
Oct 5 |
answered | Drawing vertically stacked text in WinForms |
|
Sep 30 |
accepted | Rendering of a form in winforms and asp.net dynamically |
|
Sep 28 |
accepted | Can I suspend redrawing of a form until I have performed all updates? |
|
Sep 26 |
answered | Printing text with different font sizes on the same page |
|
Sep 19 |
answered | Is Resharper’s recommendation to make my private method static a good recommendation? |
|
Sep 16 |
answered | What do you do in SQL Server to CREATE OR ALTER? |
|
Sep 14 |
answered | Looping Rows in SQL Server |
|
Sep 2 |
answered | How to determine which classes are referenced in a compiled .Net or Java application? |
|
Aug 30 |
awarded | ● Nice Answer |
|
Aug 17 |
answered | Rendering of a form in winforms and asp.net dynamically |
|
Aug 13 |
answered | best way to store 2/3 records [Windows Application] |
|
Jul 30 |
answered | Noticeable increase in programming ability or understanding |
|
Jul 28 |
answered | What RAD environment or tool would you use for a small database-driven app? |
