8,116 reputation
22245
bio website ccrfcd.org
location Las Vegas, NV
age 44
visits member for 4 years, 8 months
seen 5 hours ago
stats profile views 1,316

Interests/skills:

C#
ASP.Net
PHP
T-SQL
Flash
Flex
Silverlight
ArcGIS Engine
ArcGIS Server


5h
comment If-else not working in JavaScript
@RajPatel No difference in data type? Then what does G + T equal? Of course there's a difference in data type. Automatic type conversion does not mean that there's no such thing as a data type.
5h
comment If-else not working in JavaScript
@TreyE Either way works. + is shorter.
2d
comment Tips for picking a computer science masters program
None, that I know of. I think that the important thing to remember is that college is not a good place to learn to program. It's a good place to learn CS theory and learn how to learn.
May
17
comment Is it possible to use another web-site search results in mine?
Both legal and technical.
May
16
comment What is maximum number of elements in “in” keyword for the query having “Where”
"Parameters per user-defined function"? That's not what the user is trying to do.
May
14
revised Can SQL query do this?
formatting
May
14
comment How to use List<int> as SQL parameter in C#
@hvd Just wanted to make sure I wasn't missing something. There's always a new hack or exploit; I'll never catch up without asking.
May
14
comment How to use List<int> as SQL parameter in C#
@hvd I'm aware of SQL injection, but I'm unclear how this particular use of dynamic SQL could be unsafe. What trivial modification would allow a list of ints to alter the SQL sufficiently to become a problem? (If you mean that, at some later time, the list is turned into strings, then YES, of course it would be a problem.)
May
14
comment How to use List<int> as SQL parameter in C#
Why was this downvoted? Seems reasonable given the problem.
May
9
comment Copy a column from one table into another table
"each subsequent column starts after the previous column has ended": what does that mean exactly? I'm having problems envisioning what it's doing based on your description. Is it that new rows are getting added and you want to update the available rows instead?
May
2
revised Odd behavior of Static Variable of JavaScript closure programming
tag
May
1
comment how to capture that a value has changed in the database using C#
@Mike Put a timer in your application that calls a method every n seconds or minutes. The method will load the new copy of the values in the column you want to check, then compare them to the values stored previously. Any values that are different are the ones you need to do something with.
May
1
comment how to capture that a value has changed in the database using C#
@Mike I may be wrong but it sounds like the OP is writing a program to consume Access data rather than working directly from Access. I agree that the solution that the OP is looking for is going to require some Access-side programming, but I don't know that that is a possibility in this case. And if it is possible they're still going to be stuck with polling instead of an event-driven model.
May
1
comment how to capture that a value has changed in the database using C#
Are the changes occurring outside of your program's control?
Apr
30
reviewed Approve suggested edit on Insert data on SQL Table… cannot find the data
Apr
30
awarded  Enlightened
Apr
30
awarded  Nice Answer
Apr
29
comment Clone window across all screens
A Window has a handle. Duplicating that handle (and all handles it contains) would be problematic. How about, instead, create a "meta" list of windows that is displayed on your primary screen with a link to the form that's on the unseen screen. That way you can control it by sending it commands via your meta application.
Apr
29
comment Downloading a Javascript Library as an image?
Perhaps they assumed that they could "cheat" and get another stream by loading a script as an image. Won't work, as far as I know. Servers and browsers don't differentiate between content, to my knowledge, so a download is a download.
Apr
29
comment Downloading a Javascript Library as an image?
@DavorMlinaric But they're obviously not loading an image here. They're loading jQuery. Click-tracking? Maybe.