Click here to Skip to main content
15,891,372 members
Home / Discussions / C#
   

C#

 
GeneralRe: C#.NET Loading database in a TreeView using Multithreading Pin
N a v a n e e t h4-Dec-07 21:32
N a v a n e e t h4-Dec-07 21:32 
GeneralCan't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
MAW304-Dec-07 20:55
MAW304-Dec-07 20:55 
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
dan!sh 4-Dec-07 21:28
professional dan!sh 4-Dec-07 21:28 
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great [modified] Pin
MAW304-Dec-07 21:53
MAW304-Dec-07 21:53 
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
N a v a n e e t h4-Dec-07 21:30
N a v a n e e t h4-Dec-07 21:30 
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
MAW304-Dec-07 21:51
MAW304-Dec-07 21:51 
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
N a v a n e e t h4-Dec-07 22:05
N a v a n e e t h4-Dec-07 22:05 
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
MAW304-Dec-07 22:18
MAW304-Dec-07 22:18 
I did it just as you suggested. See the following:

public class DataSetsCS
{
// DataSets
public DataSet_MI[][] dsMI;

public DataSetsCS()
{
this.dsMI = new DataSet_MI[10][];

// dsMI
for (int i = 0; i <= 10; i++)
{
for (int j = 0; j <= 1; j++)
{
this.dsMI[i][j] = new DataSet_MI[15000];
}
}
}
}
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
Pete O'Hanlon4-Dec-07 22:22
mvePete O'Hanlon4-Dec-07 22:22 
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
MAW304-Dec-07 22:29
MAW304-Dec-07 22:29 
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
dan!sh 4-Dec-07 22:45
professional dan!sh 4-Dec-07 22:45 
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
MAW304-Dec-07 23:02
MAW304-Dec-07 23:02 
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
MAW304-Dec-07 23:21
MAW304-Dec-07 23:21 
GeneralRe: Can't write to multi-dimensional DataSets - specifically to Vikram but if anyone else can help then great Pin
dan!sh 4-Dec-07 23:27
professional dan!sh 4-Dec-07 23:27 
Generalsql database problem Pin
angels7774-Dec-07 20:43
angels7774-Dec-07 20:43 
GeneralRe: sql database problem Pin
Jacky Yiu4-Dec-07 20:53
Jacky Yiu4-Dec-07 20:53 
GeneralRe: sql database problem Pin
angels7774-Dec-07 23:04
angels7774-Dec-07 23:04 
GeneralRe: sql database problem Pin
angels7774-Dec-07 23:11
angels7774-Dec-07 23:11 
GeneralRe: sql database problem Pin
Jacky Yiu4-Dec-07 23:42
Jacky Yiu4-Dec-07 23:42 
GeneralRe: sql database problem Pin
angels7775-Dec-07 16:14
angels7775-Dec-07 16:14 
GeneralRe: sql database problem Pin
Jacky Yiu5-Dec-07 16:40
Jacky Yiu5-Dec-07 16:40 
Questionexport datagridview to excel Pin
Nitin Raj4-Dec-07 20:31
Nitin Raj4-Dec-07 20:31 
GeneralRe: export datagridview to excel Pin
Vasudevan Deepak Kumar4-Dec-07 21:40
Vasudevan Deepak Kumar4-Dec-07 21:40 
GeneralScrolling in form Pin
amit_834-Dec-07 20:23
amit_834-Dec-07 20:23 
GeneralRe: Scrolling in form Pin
Jacky Yiu4-Dec-07 20:33
Jacky Yiu4-Dec-07 20:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.