mson

3,462
reputation
529 views

Registered User

name mson
member for 1 year
seen yesterday
website
location southpark, co
age 19
x
Dec
10
comment C# share code between classes
the post states that there already is a utility printer class... the code used to call the method is repeated across all the client classes - this is what i want to not copy and paste. btw - the calling client code has the object look at itself and determine the request to the print utility based on the state of the object and credentials. your suggestion is rudimentary and indicative that you did not read the post.
Dec
10
comment C# share code between classes
thanks dtb - those are the closest to what i've been looking for. the problem is that the calling method looks at some internal object values prior to calling, but i may be able to work around this. please post an answer so i can mark it.
Dec
10
comment C# share code between classes
i'm not sure what a mix-in is
Dec
10
comment C# share code between classes
can you explain how to do it with delegates or lambdas
Dec
10
revised C# share code between classes
added 650 characters in body
Dec
10
comment C# share code between classes
what base class would you use when your classes are invoice, employee, registration, patient, car, office, room, and 300 other classes?
Dec
10
comment C# share code between classes
let's say i've got print method A and print method B. on some pages i want print method A on other pages i want print method B. It is helpful for the methods to be static as the method is dependent on the code in the object. right now, i'd have to copy paste the correct method on the appropriate pages... there must be a better way.
Dec
10
asked C# share code between classes
Dec
9
comment null test versus try catch
when the hell did the ?? come about?
Dec
9
comment null test versus try catch
in the regular course of events the object should not be null. in this case, null only occurs if the session has timed out
Dec
9
comment null test versus try catch
null is always a possible value...
Dec
9
asked null test versus try catch
Dec
6
awarded  Mortarboard
Nov
25
awarded  Popular Question
Nov
13
awarded  Yearling
Nov
3
answered MS Access SELECT and WHERE
Nov
2
awarded  Nice Answer
Sep
17
revised How to add 2 rows in Gridview footer
added 171 characters in body
Sep
17
comment How to add 2 rows in Gridview footer
and you can put anything in the <td></td>
Sep
17
comment How to add 2 rows in Gridview footer
just switch headertemplate to footertemplate
Sep
17
answered How to add 2 rows in Gridview footer
Sep
15
comment sql trigger disappears
DDL triggers will help me find the culprit!
Sep
15
comment sql trigger disappears
Someone recently purchased the sqlcompare from redgate. I wonder if it is the culprit...
Sep
15
comment sql trigger disappears
table was not recreated. trigger was gone, not disabled.
Sep
14
asked trademark search tool
Sep
14
asked create pdf files in sql server
Sep
14
asked sql trigger disappears
Sep
11
accepted How to connect to SQL server through IP
Sep
10
comment 4 table join so that only 1 response is given for each company instead of a result for each campaign
+1 for using initech, but this looks like a simple group by solution
Sep
10
answered SQL Hurdle - SQL Server 2008
Sep
10
answered SQL Server: How to change name in a view?
Sep
9
answered Why is subtraction faster than addition in Python?
Sep
9
comment ASP.NET webforms versus ASP.NET MVC revisited Q3 2009
So, it looks like ASP.NET MVC has not matured at all in a year? There are no new plugins? There is no new tool for the generation of gridviews, etc?
Sep
8
comment ASP.NET webforms versus ASP.NET MVC revisited Q3 2009
@presleyster - I think MVC is lighter than WebForms in the artifacts that are generated during execution and page presentation.
Sep
8
comment ASP.NET webforms versus ASP.NET MVC revisited Q3 2009
the points made in the past question reflect the best knowledge at the time. mixing two time frames in a single question sounds like a bad idea to me.
Sep
8
asked ASP.NET webforms versus ASP.NET MVC revisited Q3 2009
Sep
8
comment Free reports for c#
In what way is Crystal Reports free? The server license is well over 5k and they nickle and dime you to death as well. Also, consultants that configure server and reports for Crystal are very expensive because the tool is arcane and the training is expensive. We have to pay our CR writere $1500/day...
Sep
8
answered Free reports for c#
Sep
8
comment Free reports for c#
Crystal Reports is an awful beast. DO NOT USE IT. It's one of those products that should have died a long time ago, but lingers because as P.T. Barnum says... there is a sucker born every minute - too bad they often are in deciding role...
Sep
8
comment Free reports for c#
Doesn't matter if he is using SQLite, he can still download and use SQL Server Reporting.
Sep
6
comment Calculating vs. lookup tables for sine value performance?
also dude - i don't know if you're answer is right or wrong, but i'm sending you a gift card (it will be anonymous and will take a while because i'm up to my eyeballs in work...)
Sep
6
comment Calculating vs. lookup tables for sine value performance?
holy cow dude! thanks for all the work you've put in.
Sep
6
comment Calculating vs. lookup tables for sine value performance?
@henk lol - so the reason i asked the question is to get responses from people who've run into this issue, not to get conjecture... the answer of 'go measure it' i interpret as - i have little idea or experience in the matter. the helpful part of robert's response is he's done this type of calculation before and that it could potentially go either way.
Sep
5
comment Calculating vs. lookup tables for sine value performance?
lol - that's what you get a wife for... either she'll do it for you or she'll nag you into doing it...
Sep
5
comment Calculating vs. lookup tables for sine value performance?
the application is non-trivial math... we need to implement fourier transorm of spectral signals - e.g. nuclear magnetic resonance. there could be 10^5-10^8 measurements... it seemed to be wasteful to recalculate the same value multiple times...
Sep
5
comment Calculating vs. lookup tables for sine value performance?
here is a link about significant digits... en.wikipedia.org/wiki/Significant_figures
Sep
5
comment realtime system database use
the feed needs to be used for realtime display. the data storage can happen later for the sake of posterity/reproducibility and should not interfere with the realtime performance of the device.
Sep
5
comment Calculating vs. lookup tables for sine value performance?
c'mon quit being lazy... i'm trying to be lazy here...
Sep
5
comment Calculating vs. lookup tables for sine value performance?
i would guess that a lookup takes much less processing than actually calculating a sin value. are you certain that calculating the sin(90.00001) is faster than reading sin(90.0) as 0 from a small array? a priori - it seems like baloney...
Sep
5
asked realtime system database use