Archive for July, 2009

PHP: Populating an array with the names of the next 12 months

Read the original question at Recent Questions - Stack Overflow.

Leave a Comment

counting duplicate entries in Data base

Leave a Comment

network monitoring on windows mobile 6

Hi there

I am currently trying to write a network monitoring software for windows mobile 6. I googled a lot and some people say that it is not possible to use a NDIS driver or WinPcap or so for monitoring any network interface. Others say that it is possible. Fact is, that I found no exaples, nor any sourcecode on the net.

Therefore I ask this community: Is it possible to write a packet capturing tool that works on data-link layer for windows mobile in C or C#?

with best regards

Read the original question at Top Questions - Stack Overflow.

Leave a Comment

Data paging in SQL Server CE (Compact Edition)

I am writing a wpf destop application, and would like to use SQL Server CE as a backend. I'm trying to come up with a good way to do efficient data paging. In SQL Server Express, I can do something like this:

Select ID, FirstName, LastName
From (SELECT  ROW_NUMBER() OVER (ORDER BY ID)
 AS Row, ID, FirstName, LastName
 From TestTable                             
) 
WHERE  Row > 1 AND Row <= 10

Is there anything comparable in SQL Server CE? I'm not completely sure what is and is not supported. I want to only return 10 rows at a time from the database, and not have to pull back all the data and then filter it down to display to the user, since that is much slower. Thanks.

Read the original question at Top Questions - Stack Overflow.

Leave a Comment

Advantages of .NET Rx over classic events?

.NET 4.0 beta 2 has introduced the IObservable and IObserver interfaces.

What are the advantages compared to classic .NET events? Doesn't this solve the same problem?

Read the original question at Top Questions - Stack Overflow.

Comments off

How to let AutoComplete in .NET Winforms 2.0 TextBox suggest even if the user input is contained in middle of of the suggestion items.

How to let AutoComplete in .NET Winforms 2.0 TextBox suggest even if the user input is contained in middle of the suggestion items?

Read the original question at Top Questions - Stack Overflow.

Leave a Comment

html display question

Read the original question at Recent Questions - Stack Overflow.

Leave a Comment

User Experience

Any key to become a user experience design and Rich Internet Application design? What should I learn to reach it?

Read the original question at Top Questions - Stack Overflow.

Leave a Comment

Use jQuery to Select Visited Links

Read the original question at Top Questions - Stack Overflow.

Leave a Comment

Silverlight 3 IncreaseQuotaTo fails if I call AvailableFreeSpace first

Read the original question at Recent Questions - Stack Overflow.

Leave a Comment