Click here to Skip to main content
15,925,400 members
Home / Discussions / C#
   

C#

 
QuestionHelp with DLL files Pin
swatgodjr25-Aug-07 12:23
swatgodjr25-Aug-07 12:23 
QuestionDatabase Login Pin
Bonsta25-Aug-07 8:41
Bonsta25-Aug-07 8:41 
AnswerRe: Database Login Pin
Giorgi Dalakishvili25-Aug-07 9:01
mentorGiorgi Dalakishvili25-Aug-07 9:01 
AnswerRe: Database Login Pin
Paul Conrad25-Aug-07 9:24
professionalPaul Conrad25-Aug-07 9:24 
AnswerRe: Database Login Pin
Bonsta26-Aug-07 1:15
Bonsta26-Aug-07 1:15 
GeneralRe: Database Login Pin
Paul Conrad26-Aug-07 8:02
professionalPaul Conrad26-Aug-07 8:02 
QuestionSetup project - Custom Action before the installation starts Pin
Yu Homicide25-Aug-07 8:20
Yu Homicide25-Aug-07 8:20 
AnswerRe: Setup project - Custom Action before the installation starts Pin
ekynox26-Aug-07 1:58
ekynox26-Aug-07 1:58 
QuestionScrollBars in Listview Pin
topksharma198225-Aug-07 7:50
topksharma198225-Aug-07 7:50 
QuestionConsole Menu Application Pin
invalidsyntax101025-Aug-07 7:14
invalidsyntax101025-Aug-07 7:14 
AnswerRe: Console Menu Application Pin
Lutosław25-Aug-07 7:53
Lutosław25-Aug-07 7:53 
GeneralRe: Console Menu Application Pin
invalidsyntax101025-Aug-07 8:52
invalidsyntax101025-Aug-07 8:52 
GeneralRe: Console Menu Application Pin
Lutosław25-Aug-07 9:16
Lutosław25-Aug-07 9:16 
QuestionXML attribute Pin
ytubis25-Aug-07 5:30
ytubis25-Aug-07 5:30 
QuestionTime elapsed since user logged in Pin
Lutosław25-Aug-07 5:25
Lutosław25-Aug-07 5:25 
AnswerRe: Time elapsed since user logged in Pin
Hessam Jalali25-Aug-07 12:16
Hessam Jalali25-Aug-07 12:16 
GeneralRe: Time elapsed since user logged in Pin
Lutosław25-Aug-07 23:21
Lutosław25-Aug-07 23:21 
GeneralRe: Time elapsed since user logged in Pin
Hessam Jalali26-Aug-07 0:26
Hessam Jalali26-Aug-07 0:26 
GeneralRe: Time elapsed since user logged in Pin
Lutosław26-Aug-07 0:51
Lutosław26-Aug-07 0:51 
GeneralRe: Time elapsed since user logged in Pin
Hessam Jalali28-Aug-07 10:39
Hessam Jalali28-Aug-07 10:39 
QuestionProblem to Loading Data via Another Form. Pin
hdv21225-Aug-07 4:49
hdv21225-Aug-07 4:49 
hi i have a Main_form and Detail_form.
in my Main_form, i have a public method as 'LoadData' to load data and show it in gridView, here is my method code :
public void LoadData()<br />
        {<br />
            this.gridControl1.DataSource = null;<br />
            DataAccess.Command.CommandText = "SELECT * FROM v_fish_grid";<br />
            DataAccess.Command.CommandType = System.Data.CommandType.Text;            <br />
            if (DataAccess.Connection.State == ConnectionState.Closed)<br />
                DataAccess.Connection.Open();<br />
            DataAccess.Reader = DataAccess.Command.ExecuteReader();<br />
            this.dt.Load(DataAccess.Reader);<br />
            DataAccess.Reader.Close();<br />
            if (DataAccess.Connection.State == ConnectionState.Open)<br />
                DataAccess.Connection.Close();<br />
            this.gridControl1.DataSource = this.dt.DefaultView;<br />
        }

in Detail_form, i want when user insert,update or delete data,call the LoadData method in Main_form from Detail_form, i do this but my gridView's records was not update(i trace my LoadData method in runTime and dt object get recoreds but i don't know why my data does not load in gridView)
How to solve My problem ? thanks
QuestionTag name Pin
ytubis24-Aug-07 23:44
ytubis24-Aug-07 23:44 
AnswerRe: Tag name Pin
Christian Graus25-Aug-07 0:49
protectorChristian Graus25-Aug-07 0:49 
AnswerRe: Tag name 2 Pin
Luc Pattyn24-Aug-07 23:35
sitebuilderLuc Pattyn24-Aug-07 23:35 
GeneralRe: Tag name 2 Pin
hdv21225-Aug-07 7:56
hdv21225-Aug-07 7:56 

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.