Click here to Skip to main content
15,890,186 members
Home / Discussions / C#
   

C#

 
GeneralRe: foreach and IEnumerator Pin
Pete O'Hanlon1-May-08 8:41
mvePete O'Hanlon1-May-08 8:41 
GeneralRe: foreach and IEnumerator Pin
George_George1-May-08 22:05
George_George1-May-08 22:05 
GeneralRe: foreach and IEnumerator Pin
George_George1-May-08 2:32
George_George1-May-08 2:32 
GeneralRe: foreach and IEnumerator Pin
George_George1-May-08 2:31
George_George1-May-08 2:31 
Question? implement a COM Components method. Pin
lgatcodeproject29-Apr-08 23:52
lgatcodeproject29-Apr-08 23:52 
AnswerRe: ? implement a COM Components method. Pin
Simon P Stevens29-Apr-08 23:55
Simon P Stevens29-Apr-08 23:55 
QuestionRe: ? implement a COM Components method. Pin
lgatcodeproject30-Apr-08 0:14
lgatcodeproject30-Apr-08 0:14 
AnswerRe: ? implement a COM Components method. Pin
Simon P Stevens30-Apr-08 0:49
Simon P Stevens30-Apr-08 0:49 
AnswerRe: ? implement a COM Components method. Pin
Rob Graham30-Apr-08 4:37
Rob Graham30-Apr-08 4:37 
QuestionHow to show resource files in my usercontrol 's property Pin
Guru Call29-Apr-08 23:23
Guru Call29-Apr-08 23:23 
AnswerRe: How to show resource files in my usercontrol 's property Pin
J a a n s30-Apr-08 1:32
professionalJ a a n s30-Apr-08 1:32 
QuestionSqlserver Triggers Pin
Member 400849229-Apr-08 23:02
Member 400849229-Apr-08 23:02 
AnswerRe: Sqlserver Triggers Pin
Christian Wikander29-Apr-08 23:07
Christian Wikander29-Apr-08 23:07 
AnswerRe: Sqlserver Triggers Pin
Christian Graus29-Apr-08 23:23
protectorChristian Graus29-Apr-08 23:23 
AnswerRe: Sqlserver Triggers Pin
Nissim Salomon30-Apr-08 2:14
Nissim Salomon30-Apr-08 2:14 
AnswerRe: Sqlserver Triggers Pin
Rob Graham30-Apr-08 4:44
Rob Graham30-Apr-08 4:44 
QuestionForce TextBox to show cursor Pin
Christian Wikander29-Apr-08 23:02
Christian Wikander29-Apr-08 23:02 
AnswerRe: Force TextBox to show cursor Pin
Zoltan Balazs29-Apr-08 23:20
Zoltan Balazs29-Apr-08 23:20 
GeneralRe: Force TextBox to show cursor Pin
Christian Wikander29-Apr-08 23:23
Christian Wikander29-Apr-08 23:23 
GeneralRe: Force TextBox to show cursor Pin
Simon P Stevens29-Apr-08 23:52
Simon P Stevens29-Apr-08 23:52 
AnswerRe: Force TextBox to show cursor Pin
Christian Graus29-Apr-08 23:24
protectorChristian Graus29-Apr-08 23:24 
GeneralRe: Force TextBox to show cursor Pin
Christian Wikander29-Apr-08 23:26
Christian Wikander29-Apr-08 23:26 
GeneralRe: Force TextBox to show cursor Pin
Christian Graus29-Apr-08 23:32
protectorChristian Graus29-Apr-08 23:32 
QuestionC#.Net MS Access and DataGridView Problem Pin
Blackhawk5000029-Apr-08 23:00
Blackhawk5000029-Apr-08 23:00 
Hello, at first, i am german and i can't speak a perfect english.. thx Smile | :)

My Problem is, i have an Access Database and a DataGridView in my Applicatoin.
i have use the Wizard to Make a Databinding to the Database

As i have Build my DGV with Drag and Drop in my Application, i have use the smal little Pionter on the top right corner... i hope you understand qhat i mean.

okay.... the datas was also in the DGV, BUT if i make changes in the database, the DataGridView don't show it.... why? what can i do, to make the DataGridView shows the current datas in the database....

thare is my C# Code from Highscores.cs

using System;<br />
using System.Collections.Generic;<br />
using System.ComponentModel;<br />
using System.Data;<br />
using System.Drawing;<br />
using System.Text;<br />
using System.Windows.Forms;<br />
using System.IO;<br />
using System.Data.OleDb;<br />
<br />
namespace Zahlenraten<br />
{<br />
    public partial class f_Highscores : Form<br />
    {<br />
        public f_Highscores()<br />
        {<br />
            InitializeComponent();<br />
        }<br />
<br />
        private void f_Highscores_Load(object sender, EventArgs e)<br />
        {<br />
            // TODO: Diese Codezeile lädt Daten in die Tabelle "highscoresDataSet.HighscoreTabelle". Sie können sie bei Bedarf verschieben oder entfernen.<br />
            this.highscoreTabelleTableAdapter.Fill(this.highscoresDataSet.HighscoreTabelle);           <br />
        }<br />
<br />
        /// <summary><br />
        /// Beim Klick auf den Button b_zurück, wird das Fenster f_Highscores geschlossen<br />
        /// </summary><br />
        /// <param name="sender"></param><br />
        /// <param name="e"></param><br />
        private void b_zurück_Click(object sender, EventArgs e)<br />
        {<br />
            this.Close();<br />
        }<br />
    }<br />
}

AnswerRe: C#.Net MS Access and DataGridView Problem Pin
Blackhawk5000030-Apr-08 1:07
Blackhawk5000030-Apr-08 1:07 

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.