Tagged Questions
0
votes
0answers
21 views
Closest Image Size
I have a list of files in a directory, named according to size. Eg:
Icon1_32.png
Icon1_96.png
Icon1_128.png
Icon2_32.png
Icon2_96.png
Icon2_128.png
Icon3.png
Icon4.png
etc.
I want to be able to ...
3
votes
5answers
82 views
Why the ternary operator is not working this way?
Why does it not compile? What is wrong in the following code?
(_DbContext == null) ? return _DbContext = new ProductAndCategoryEntities() : return _DbContext;
If I restate it in terms of if it ...
0
votes
1answer
44 views
Does this logic make sense? Property1 = Property1
My ASP.NET page has a lot of HTML elements that are visible/enabled based on conditions, for example:
Element1
Element3
Element5
visibility depends on let's say
Checkbox1
DateTime.Now
Does it ...
1
vote
1answer
111 views
Business layer implementations
During my recent curious and often frustrating excursions into the field of Business layer development, I have found many a discussion comparing apples(CSLA.NET) with oranges(Nhibernate) but very few ...
1
vote
1answer
98 views
Request-Response logic to allow non-response messages to be processed
I have a socket application that allows thousands of clients to connect. It stores them in a ConcurrentDictionary<int, Socket> and operates solely for request-response situations:
When I need ...
-1
votes
3answers
100 views
Can you Make a Boolean value turn off/on automatically?
Okay I have declared a Key CellX to boolean value True. In a sense as long as this value remains true my data will keep inserting in and If I turn it false it will stop at what ever count it was on. ...
5
votes
7answers
587 views
C# & operator clarification
I saw a couple of questions here about the diference between && and & operators in C#, but I am still confused how it is used, and what outcome results in different situations. For example ...
3
votes
3answers
119 views
Function to determine if two tables are related
Suppose I have 5 table schemas in memory as DataTables and one other DataTable that is a schema of the referential constraints between the other 5 tables.
The 5 schema tables are related such that ...
1
vote
2answers
81 views
More elegant way of handling this logic
private bool SearchFilter(object sender)
{
CommDGDataSource item = sender as CommDGDataSource;
if (FilterPropertyList.IsErrorFilter)
{
if (!item.Error)
return false;
...
1
vote
2answers
93 views
Finding out folder cyclic references
Suppose I have an app that transfers files placed inside a main folder to some other location.
For example, user can configure the app as below:
If placed in C:\X\A Transfer to C:\Z\A
If placed in ...
1
vote
3answers
378 views
How to properly document logic flow of an application?
I've been asked to go through an exsisting ASP.NET application and "Document the logic flow" of the application. Being a student, and having never done this before, I am wondering what sort of ...
0
votes
3answers
119 views
what is the best way to know if it is the first time that the application is open in the day?
I'm looking for an example code how to know if it is the first time that the application is open in the day?
I tried saving the current date in a .ini file and an key named open defined with boolean ...
3
votes
8answers
2k views
Multi-variable switch statement in c#
I would like use a switch statement which takes several variables and looks like this:
switch (intVal1, strVal2, boolVal3)
{
case 1, "hello", false:
break;
case 2, "world", false:
...
0
votes
1answer
774 views
C# Using Multiple Database Results with Listboxes that (when item is selected) Display Info in Textboxes
I am working on a Cook Book using a database. I have been working with tutorials to build my project since I'm still just a novice.
I have asked before how to search a database using a button, and ...
-1
votes
1answer
433 views
Business rule engine which you recommend for .net? [closed]
Hi i know there are drools.net, but maybe there are better solutions? what do you use?
People also recommend windows workflow foundation.
Maybe you know articles of comparison of business rules ...
0
votes
2answers
3k views
Using mod operator in C#
Items:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Repeater control I want to place class on highlighted item number.
so ... I have done following code.
if ((DL_NewProducts.Items.Count) % 3 == ...
27
votes
9answers
679 views
Elegant way of reading a child property of an object
Say you are trying to read this property
var town = Staff.HomeAddress.Postcode.Town;
Somewhere along the chain a null could exist.
What would be the best way of reading Town?
I have been ...
1
vote
5answers
72 views
Debug Assert condition logic and language peculiarities
I am not native English speaker, so for me is a little strange the Debug.Assert method, that, for me, verifies a condition, in fact, verifies the opposite of this condition.
Assert = advance, ...
2
votes
4answers
167 views
Comparing Logical Conditions
There are two logical conditions :
A. ( Ls != Ec && Ls != Uc && Ls != Rfc )
B. (!(Ls==Ec || Ls == Uc || Ls == Rfc))
Variables are Ls, Ec, Uc, Rfc ( integers )
I found that both ...
0
votes
2answers
281 views
C# 4.0 - 3 value pairs (possibly more). Sort based on values
This is a tough one to phrase as a search query and I'm having no luck. And the more I think about it, it is more a logic question than a syntax one. However I am a newby to C# (8 years php) and I am ...
1
vote
4answers
508 views
How to solve this bit operation?
I have one byte in with I need to replace last (least important) bits.
Example below.
Original byte: xxxx0110
Replacement byte: 1111
What I want to get: xxxx1111
Original byte: ...
2
votes
3answers
286 views
C# Stroboscope, Thread.Sleep
I'm making simple stroboscope attached to computer.
I have Loop Like that:
double SleepTime = 1000 / Hz;
while ()
{
BlinkAll();
Thread.Sleep((int)SleepTime);
}
But this is very inaccurate.
...
2
votes
1answer
184 views
Operations on bytes in C#
I'm writing application to control LEDS on LPT.
I have everything working except this.
This is one small function.
I have sth like that:
I want to build function that will take two argument and ...
1
vote
3answers
281 views
how to detect application crashes?
if i am running a .net application and that application crashes frequently. i want to offer a crash recovery process such that after the crash, a message will be displayed to the user offering to ...
3
votes
1answer
249 views
Help with Google Contacts
List<string> ls = new List<string>();
Feed<Contact> f = cr.GetContacts();
foreach (Contact e in f.Entries)
foreach (EMail el in e.Emails)
if ...
0
votes
1answer
363 views
I need to move from One Series to Two Series
We are using the dotNETCHARTING to portray our charts, they accepts Series for their SeriesCollection. This is a new chart I'm working on, all the previous ones have a 1:1 relation between value shown ...
0
votes
3answers
184 views
ASP.NET C# problem with Table and SQL logic
Hey I have 3 tables called STUDENT, COURSE and ENROLLMENT. STUDENT has a PK of S_ID(student ID) and COURSE has PK of C_ID(course ID). In enrollment it only has S_ID and C_ID. I have an object data ...
2
votes
3answers
148 views
Blacklist Shipping Address Logic
I need some ideas for the logic behind a project I want to implement. Basically we have been having a problem with a few (under 10) "customers" using fraudulent credit cards. What happens is they ...
1
vote
5answers
527 views
How to use tricks in combination of “IF” conditions?(C# ASP.NET)
I have four checkboxes in my form. I have string variable called "CheckedString". If i check the first checkbox "A" must be assigned to "CheckedString". If i select both first and second checkbox at a ...
0
votes
2answers
75 views
Logic to skip repeating values in a variable
i have a loop where a variable value will change in each loop and display those values in each loop. i need to skip the display of the value if the same value repeats from second time
7
votes
3answers
514 views
Logic variables support for .NET
I am looking for a library/assembly that allows me to work with logical variables in F#. I want to avoid reinventing the wheel in implementing the required union-find datastructure, unification code ...
18
votes
9answers
1k views
Why does IQueryable.All() return true on an empty collection?
So I ran into a situation today where some production code was failing precisely because a method performed exactly as documented in MSDN. Shame on me for not reading the documentation. However, I'm ...
5
votes
4answers
4k views
How to automatically generate a sports league schedule
I'll start of by saying that I understand that this topic is complicated and that there probably isn't an easy answer. If it were easy then everybody would be doing it. That being said...
I've been ...
9
votes
9answers
4k views
End of month calculations
Just wondering if any know of an elegant solution for the following.
If I have 30 June 2009 and I add a month I want it to go to 31 July 2009, not the 30 July 2009.
This logic is based on the fact ...
3
votes
9answers
1k views
How to convert an equation into formulas for individual variables?
How to convert an equation into formulas for individual variables? I am thinking about a math equations like:
c^2 = a^2 + b^2
I would like to have a function that could process any formula, and ...
1
vote
3answers
294 views
What is the best way to specify execution time of recurring jobs or tasks?
I am looking for a way of efficiently specifying a recurring job execution time without having to write an explicit execution time to a datastore. In other words, rather than saying 'job x next runs ...
0
votes
7answers
521 views
Why is this a “so close yet so far” if statement?
I am working on an If statement and I want to satisfy two conditions to ignore the loop. This seemed easy at first, but now... I don't know. this is my dilemma...
if((radButton1.checked == ...
44
votes
16answers
25k views
Looking for simple rules-engine library in .NET [closed]
Does anyone know of a good .NET library rules library (ideally open-source)? I need something that can do nested logic expressions, e.g., (A AND B) AND (B OR C OR D). I need to do comparisons of ...
