Description:
Microsoft .NET technology newsgroup.
|
|
|
How to get the max value for each date group
|
| |
I have a typed dataset with several columns but there are only two that are of interest here. They are myDate and myLoopnrdag
I want to find the maximum value of myLoopnrdag for each group of mydate.
In this example I want to find 11 for myDate 2013-05-03 and
9 for myDate 2013-05-05 and
12 for myDate 2013-05-08 and... more »
|
|
how do I sum on Test using LinqToDataset
|
| |
DataTable dt = new DataTable();
dt.Columns.Add("Test", typeof(int));
dt.Rows.Add(10);
dt.Rows.Add(20);
dt.Rows.Add(30);
int linqSum = (from DataRow dr in dt.AsEnumerable()
select dr["Test"]).Sum();... more »
|
|
Why is not the columns aligned
|
| |
Here I add three concatenated strings to a combobox.
As you can see a use PadRight so the columns should be aligned verically.
But this doesn't work the columns is not aligned in vertical.
I can't understand why is not work to use PadRight
datum = "2013-05-06";
prannr = "619".PadRight(8);... more »
|
|
Passing UserControl as Function/Method Parameter
|
| |
Hi All,
I'm populating a tab control with tab pages dynamically and in turn, each tab page that is created has to have a specific user control added to it.
Now I've managed to do this, no problem, but I'm working on a function that I can call from each menu item I click, to do the job, instead of copying and pasting the same code over and over and over again, only to change one line. So this is what I've got so far:... more »
|
|
tablet apps
|
| |
Hi I am still using CS2008 and am happy with it. There are a lot of tablet and iPhones out there and you can download apps for them. Does is Visual Studio able to do these. I beleive Java Script is also involved which is not my favourate language as I know little about it. Just a thought as I have one now and it would bee cool to write my own apps.... more »
|
|
Package & deployment 2nd issue
|
| |
When I install the application using the setup project (c#). The desktop icon targets the application folder not the application within the folder.
This has to be the last problem to this.
SORRY.
|
|
Package and deployment probs.
|
| |
Ok it all works fine BUT.
When I test the setup i get a windowx
Welcome to My Application Setup Setup
How do I remove the first setup. I have selected the setup solution in solution explrer and removed the wording 'Setup' from
Product name and title. I still have 2 setups
Puzeled.... more »
|
|
Converting a Windows CE .NET CF application to run on std Windows?
|
| |
I have an application which runs nicely on Windows CE 5 (uses .NET CF 2.0). Our sales and service teams would like a demo version of this application to run on their laptops running Windows XP / 7. Is there a (relatively) straightforward way to take the latest source of the Windows CE app and... more »
|
|
DataView question
|
| |
I have defined a DataView on a DataTable and set Sort and RowFilter
properties so index is built for the view.
If I add/delete rows from the DataTable, does the DataView index get
rebuilt after each add/delete?
If so, how much does that affect performance?
|
|
|