"
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Anime_Database_Modifier
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void main_listBindingNavigatorSaveItem_Click(object sender, EventArgs e)
{
this.Validate();
this.main_listBindingSource.EndEdit();
this.tableAdapterManager.UpdateAll(this.animeDataSet);
}
private void Form1_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'animeDataSet.main_list' table. You can move, or remove it, as needed.
this.main_listTableAdapter.Fill(this.animeDataSet.main_list);
}
private void main_listBindingNavigator_Refre****ems(object sender, EventArgs e)
{
}
}
}
"
I know its probably something simple but for the life of me I cannot figure it out. If needed I can attach the project and database. I have the database local at the moment but I am going to build a client that can see it on the network. Just need to get it working first.
Edited by dragonskullinc, 16 June 2010 - 09:43 AM.
added source


Sign In
Create Account

Back to top










