Leahn Novash
|
Registered User
|
|
|
Sep 12 |
answered | C++ class dependencies |
|
Sep 12 |
comment |
Coding for cellphones I meant J2ME. I blame the lack of coffee. And my dislike of Java in general. |
|
Sep 12 |
asked | Coding for cellphones |
|
Sep 12 |
awarded | ● Yearling |
|
Aug 21 |
comment |
Is there something like the FileSystemWatcher for Sql Server Tables? I didn't know it was dropped. It is not like I have touched it in a couple of years. However, the OP explicitly states that he is using SQL Server 2005, so it would not be a problem. That said, you are right about marc_s idea being a better one. It seems so much better to not to share the responsability with an external service. |
|
Aug 21 |
answered | Is there something like the FileSystemWatcher for Sql Server Tables? |
|
Aug 18 |
answered | How can I achieve a modulus operation with System.TimeSpan values, without looping? |
|
Aug 18 |
answered | Extending string with Extension Methods (C# 3.0)? |
|
Aug 18 |
comment |
simple string runtime error in C? I need to add that C doesn't have namespaces. Totally irrelevant to the error in question, but a ANSI C compiler wouldn't even compile that code. |
|
Aug 12 |
comment |
How do I set a background sound on a Web page? This question should belong to some web technology tag, lest it be forgotten totaly and never answered. While I agree that it is a bad idea, do you still want to know the answer? In which technology are you coding your webpage on? ASP.Net? |
|
Aug 12 |
comment |
Is there a generally accepted idiom for indicating C++ code can throw exceptions? @Jalf: I am accepting suggestions. If they no longer dream of doing it that way, how do they do it? I mean, I find it to be a pretty good idea to catch all unhandled exceptions and log them before crashing the program. Trying to recover IS a bad idea, but logging for later debugging isn't. At least I think so. But you seem to imply that it is, so how do you deal with unhandled exceptions? |
|
Aug 12 |
comment |
I need the sum of two fields that are in different DataTables Then I suggest you to create a function that will take two objects, check if both are integers, and return the difference, or throw an exception otherwise. |
|
Aug 11 |
answered | I need the sum of two fields that are in different DataTables |
|
Aug 11 |
comment |
Is there a generally accepted idiom for indicating C++ code can throw exceptions? @Neil: No, I really meant C#, although the question is about C++. I never really worked with C++, but I exemplified C# because it is a newer language which reflects the newest concepts so it may mean something that it is acceptable to do it in a newer language. |
|
Aug 11 |
comment |
Is there a generally accepted idiom for indicating C++ code can throw exceptions? Though I do follow RAII, you can never create a code that is exception proof. There are always risks of bugs in third party libraries, OS API, or even changes in project details that are not accounted for. |
|
Aug 11 |
answered | Is there a generally accepted idiom for indicating C++ code can throw exceptions? |
|
Aug 11 |
answered | Switch input language on remote application |
|
Aug 11 |
answered | C# Threading Mechanism |
|
Aug 11 |
answered | SQL Error: The multi-part identifier “tableName.ColumnName” could not be bound. |
|
Aug 11 |
comment |
C# - Programmer Challenge for Interviews - Programming to an Interface & Patterns @Tyndall: I currently work at testing on my new job. Once my experience period is over, I may be moved to code in Java. I recently left a jobwhere I coded in C# 3.5. I wrote an application to control Automatic Ticketing on Highways. I don't know how to explain better in English (I'm Brazilian), so yes, I write Business Applications. The ACM problems are used for the ACM Olympics, and I was a member of the team of my College during the 3 years that the rules allow you to, but back them, I coded in C. |
|
Aug 11 |
answered | C# - Programmer Challenge for Interviews - Programming to an Interface & Patterns |
|
Aug 11 |
comment |
Is there a difference between the following ways to register to event The latter is an old sintax that was required on 1.1, if my memory serves. Or maybe it was 2.0. But now the compiler does the trick by itself. |
|
Aug 11 |
answered | Unit testing a communications protocol |
|
Aug 11 |
comment |
int[] arr={0}; int value = arr[arr[0]++]; Value = 1? @Jon Skeet: I blame Microsoft. :) However, as I said in another post, I stand corrected. I misunderstood what I read. The correct resolution orders is: i = 1, find the address of data[1], add 1 to i, find the address of data[2], add 5 to value of data[2], assign result to data[1] |
|
Aug 11 |
comment |
int[] arr={0}; int value = arr[arr[0]++]; Value = 1? I've read the specifications again more carefully. I stand corrected. |
|
Aug 11 |
comment |
int[] arr={0}; int value = arr[arr[0]++]; Value = 1? @jpbochi It is considered right associative when it is stacked. |
|
Aug 11 |
comment |
int[] arr={0}; int value = arr[arr[0]++]; Value = 1? Section 7.16.1 deals with boolean types. Didn't you mean 7.13.1, that deals with assignment? Also, section 7.5.9 that deals with post ++ specifies that the value is only changed after the set call occurs. |
|
Aug 11 |
comment |
int[] arr={0}; int value = arr[arr[0]++]; Value = 1? @LBushkin Wrong. Microsoft explicitly says that both the assignment (=) and the ternary (?:) operators are resolved from right to left. |
|
Aug 11 |
comment |
int[] arr={0}; int value = arr[arr[0]++]; Value = 1? I disagree with you. The implementation says the assignment operator is lowest priority and resolved from right to left. The guy is correct on his assumptions, according to the language specs. msdn.microsoft.com/en-us/library/… |
|
Aug 11 |
answered | int[] arr={0}; int value = arr[arr[0]++]; Value = 1? |
|
Aug 11 |
comment |
.NET Multithreading - Do I need to synchronise access to a variable of primitive type? @Imagist: KISS rule. I am always amazed at how many people do not follow it. |
|
Aug 10 |
answered | How to do internet card game using .net |
|
Jul 4 |
accepted | Using a code for an exception. Useful? |
|
Jul 3 |
answered | my vs2008 addin for textformatting is awfully slow |
|
Jul 3 |
comment |
Tool for finding ways to get an object instance inside the debugger? You can modify objects on VS' Watch Window. Also, you seem to have a doubt on Reflection. You can grab pretty much everything with Reflection. |
|
Jul 3 |
answered | Prevent default behavior in text input while pressing arrow up |
|
Jul 3 |
answered | Pattern for objects initialization at startup |
|
Jul 3 |
answered | Using a code for an exception. Useful? |
|
Jul 3 |
comment |
Creating a function dynamically at run-time It seems to take about the same ammount of code to get done than simply using DynamicMethod. Is there any reason to use it over DynamicMethod? If Will is right, DynamicMethods are almost as fast as compiled code (even though 20ms is an eternity in computer time). |
|
Jul 3 |
comment |
Creating a function dynamically at run-time No, it isn't. What I want is to be able to modify a method of a class during runtime to something I will be typing in runtime. Pretty much similar to an eval, except that I don't simply want it to eval and die. I want it to remain attached to a delegate until I need to change it again. |
|
Jul 3 |
comment |
Creating a function dynamically at run-time I tend to avoid using Third-Party libraries in my code. That's to avoid vendor lock-in problem. I've had serious problems with that previously when I coded in Delphi. In example, I have just switched from using SQLite - even though I like it very much - to SQLServer CE just to stay fully within the Framework. |
|
Jul 3 |
comment |
Creating a function dynamically at run-time I wish I could pick both answers as the right one. Both provide me with very good solutions. And here I thought it would be impossible. Now, Strategy Pattern is not what I was looking for. To use Strategy, I'd have to implement the methods so I would be able to swap them. |
|
Jul 3 |
comment |
Creating a function dynamically at run-time WoW, and here I thought I knew something about .NET. And I never heard of it. I am afraid of asking how did you ever manage to stumble upon such feature. |
|
Jul 3 |
comment |
How many parameters are too many? I will bundle it with a data-only class if it is used in more than one place, but even then I usually create both constructors. |
|
Jul 3 |
comment |
How many parameters are too many? You crazy, man? A xml structure? For parameter passing? What do you have so much against using arrays that you must go through the whole overhead of writing the xml, and then parsing it 5 cpu cycles after? |
|
Jul 3 |
asked | Creating a function dynamically at run-time |
