forked from adreena/Asset_Mng
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathVendor.cs
More file actions
51 lines (40 loc) · 1.46 KB
/
Vendor.cs
File metadata and controls
51 lines (40 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Asset_Mng
{
public partial class Vendor : Form
{
public Vendor()
{
InitializeComponent();
}
/* private void ÝÑæÔäÏåBindingNavigatorSaveItem_Click(object sender, EventArgs e)
{
this.Validate();
// this.ÝÑæÔäÏåBindingSource.EndEdit();
// this.ÝÑæÔäÏåTableAdapter.Update(this.asset_MngDataSet.ÝÑæÔäÏå);
}*/
private void Vendor_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'asset_MngDataSet.ÝÑæÔäÏå' table. You can move, or remove it, as needed.
this.فروشندهTableAdapter.Fill(asset_MngDataSet.فروشنده);
}
private void bindingNavigatorAddNewItem_Click(object sender, EventArgs e)
{
}
private void فروشندهBindingNavigatorSaveItem_Click(object sender, EventArgs e)
{
this.Validate();
this.فروشندهBindingSource.EndEdit();
this.فروشندهTableAdapter.Fill(this.asset_MngDataSet.فروشنده);
}
private void فروشندهDataGridView_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
}
}