Click here to Skip to main content
15,885,546 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to spliting a string Pin
mrkeivan18-Apr-10 4:27
mrkeivan18-Apr-10 4:27 
QuestionStorage Card in csharp smart device Pin
Tunisien8616-Apr-10 0:36
Tunisien8616-Apr-10 0:36 
AnswerRe: Storage Card in csharp smart device Pin
Eddy Vluggen16-Apr-10 3:17
professionalEddy Vluggen16-Apr-10 3:17 
GeneralRe: Storage Card in csharp smart device Pin
Tunisien8616-Apr-10 6:44
Tunisien8616-Apr-10 6:44 
GeneralRe: Storage Card in csharp smart device Pin
Eddy Vluggen16-Apr-10 8:08
professionalEddy Vluggen16-Apr-10 8:08 
AnswerRe: Storage Card in csharp smart device Pin
Tunisien8619-Apr-10 5:12
Tunisien8619-Apr-10 5:12 
QuestionHow to create an empty tableAdapter or deliver a tableAdapter to extern function Pin
Robert König16-Apr-10 0:13
Robert König16-Apr-10 0:13 
AnswerRe: How to create an empty tableAdapter or deliver a tableAdapter to extern function Pin
Morgs Morgan16-Apr-10 10:06
Morgs Morgan16-Apr-10 10:06 
If you say:
public DataSet GetUsers()
{
   SqlDataAdapter adapter = new SqlDataAdapter("SELECT * FROM Users", connectionstring);
   DataSet dataset = new DataSet();
   adapter.Fill(dataset, "Users");
   return dataset;
}

Here you would rather want to pass the dataset to extern function and make sure the
receiving function is requesting for a dataset to be returned e.g
DateSet datasetfromfrontend = NameOfClass.GetUsers();//calling the method above

This will return a dataset and you can check for tables e.g
DataTable table = datasetfromfrontend.Tables[0];


Good luck
GeneralRe: How to create an empty tableAdapter or deliver a tableAdapter to extern function Pin
Robert König19-Apr-10 2:45
Robert König19-Apr-10 2:45 
Questionload dataGrid C# Pin
toto_201015-Apr-10 23:29
toto_201015-Apr-10 23:29 
AnswerRe: load dataGrid C# Pin
mrkeivan16-Apr-10 1:01
mrkeivan16-Apr-10 1:01 
QuestionRe: load dataGrid C# Pin
toto_201016-Apr-10 1:58
toto_201016-Apr-10 1:58 
AnswerRe: load dataGrid C# Pin
Morgs Morgan16-Apr-10 2:41
Morgs Morgan16-Apr-10 2:41 
GeneralRe: load dataGrid C# Pin
toto_201016-Apr-10 4:20
toto_201016-Apr-10 4:20 
QuestionReguler expression [modified] Pin
bhaskarsgb15-Apr-10 23:23
bhaskarsgb15-Apr-10 23:23 
AnswerRe: Reguler expression Pin
riced16-Apr-10 1:33
riced16-Apr-10 1:33 
GeneralRe: Reguler expression Pin
bhaskarsgb16-Apr-10 1:54
bhaskarsgb16-Apr-10 1:54 
GeneralRe: Reguler expression Pin
Gideon Engelberth16-Apr-10 2:52
Gideon Engelberth16-Apr-10 2:52 
GeneralRe: Reguler expression Pin
JTS16-Apr-10 2:57
JTS16-Apr-10 2:57 
GeneralRe: Reguler expression Pin
OriginalGriff16-Apr-10 4:58
mveOriginalGriff16-Apr-10 4:58 
GeneralRe: Reguler expression Pin
bhaskarsgb16-Apr-10 7:17
bhaskarsgb16-Apr-10 7:17 
AnswerRe: Reguler expression Pin
Morgs Morgan16-Apr-10 2:57
Morgs Morgan16-Apr-10 2:57 
QuestionCreating videos from images Pin
TimSWatson15-Apr-10 23:15
TimSWatson15-Apr-10 23:15 
AnswerRe: Creating videos from images Pin
Luc Pattyn16-Apr-10 0:13
sitebuilderLuc Pattyn16-Apr-10 0:13 
AnswerRe: Creating videos from images Pin
annathor16-Apr-10 1:18
annathor16-Apr-10 1:18 

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.