Click here to Skip to main content
15,923,087 members
Home / Discussions / C#
   

C#

 
Questionknow program installed in computer offline Pin
gpsushil21-Feb-10 18:14
gpsushil21-Feb-10 18:14 
QuestionMake Application Uninstall Available In Programs List Using Windows Installer Pin
BlitzPackage21-Feb-10 13:11
BlitzPackage21-Feb-10 13:11 
AnswerRe: Make Application Uninstall Available In Programs List Using Windows Installer Pin
Anubhava Dimri21-Feb-10 23:24
Anubhava Dimri21-Feb-10 23:24 
QuestionCant see TextBox1 in codeView [modified] Pin
It_tech21-Feb-10 7:19
It_tech21-Feb-10 7:19 
AnswerRe: Cant see TextBox1 in codeView Pin
Pete O'Hanlon21-Feb-10 9:22
mvePete O'Hanlon21-Feb-10 9:22 
QuestionQuestion on lifetime of context existance Pin
Michael J. Eber21-Feb-10 6:53
Michael J. Eber21-Feb-10 6:53 
AnswerRe: Question on lifetime of context existance Pin
Not Active21-Feb-10 7:14
mentorNot Active21-Feb-10 7:14 
GeneralRe: Question on lifetime of context existance Pin
Michael J. Eber21-Feb-10 8:47
Michael J. Eber21-Feb-10 8:47 
GeneralRe: Question on lifetime of context existance Pin
Not Active21-Feb-10 9:47
mentorNot Active21-Feb-10 9:47 
GeneralRe: Question on lifetime of context existance Pin
Michael J. Eber21-Feb-10 18:09
Michael J. Eber21-Feb-10 18:09 
GeneralRe: Question on lifetime of context existance Pin
Michael Eber23-Feb-10 10:19
Michael Eber23-Feb-10 10:19 
QuestionRetrieve database by using web service Pin
dalila y21-Feb-10 3:48
dalila y21-Feb-10 3:48 
AnswerRe: Retrieve database by using web service Pin
Not Active21-Feb-10 4:23
mentorNot Active21-Feb-10 4:23 
AnswerRe: Retrieve database by using web service Pin
Eddy Vluggen21-Feb-10 4:58
professionalEddy Vluggen21-Feb-10 4:58 
QuestionLooking for Generics Labs Pin
jakehn21-Feb-10 3:03
jakehn21-Feb-10 3:03 
AnswerRe: Looking for Generics Labs Pin
Not Active21-Feb-10 3:15
mentorNot Active21-Feb-10 3:15 
QuestionClosing application when windows shuts down Pin
davearias21-Feb-10 1:25
davearias21-Feb-10 1:25 
AnswerRe: Closing application when windows shuts down Pin
davearias21-Feb-10 1:43
davearias21-Feb-10 1:43 
GeneralRe: Closing application when windows shuts down Pin
Geoff Williams21-Feb-10 2:40
Geoff Williams21-Feb-10 2:40 
GeneralRe: Closing application when windows shuts down Pin
davearias21-Feb-10 10:33
davearias21-Feb-10 10:33 
AnswerRe: Closing application when windows shuts down Pin
Luc Pattyn21-Feb-10 2:44
sitebuilderLuc Pattyn21-Feb-10 2:44 
GeneralRe: Closing application when windows shuts down Pin
davearias21-Feb-10 10:36
davearias21-Feb-10 10:36 
AnswerRe: Closing application when windows shuts down Pin
Luc Pattyn21-Feb-10 10:44
sitebuilderLuc Pattyn21-Feb-10 10:44 
QuestionMagic Numbers File Type checking Pin
Joezer BH20-Feb-10 22:09
professionalJoezer BH20-Feb-10 22:09 
QuestionReturn Dataset to Business Layer & SHOW in datagrid in Presentation Layer Pin
shahramkeyboard20-Feb-10 20:58
shahramkeyboard20-Feb-10 20:58 
hi
how i can return dataset to datagriedview
My business layer is memberBL Class
My Data Access Layer Is memberDA Class
My view Dataset Code in memberDL Class is:
public DataSet View(memberBL member)
        {
            DataSet ds = null;

            try
            {
                OpenCnn();
                
                String selectStr = "select * from " + thisTable + "'";
                
                OleDbDataAdapter da =new OleDbDataAdapter(selectStr, cnn);
                
                ds = new DataSet();
                
                da.Fill(ds, thisTable);
                
                CloseCnn();
            }
            catch (Exception e)
            {
                String Str = e.Message;
            }

            return ds;
        }

How I Can return Dataset in GriedView in Form?
hoW i can use in ds IN windows FORM?

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.