You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
656 B
29 lines
656 B
using Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace OnDoc.DocMgmt
|
|
{
|
|
public partial class FrmDokumentwerte : Form
|
|
{
|
|
public clsDocData docData = new clsDocData();
|
|
public FrmDokumentwerte()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void FrmDokumentwerte_Load(object sender, EventArgs e)
|
|
{
|
|
sfDataGrid1.DataSource = docData.DocValues;
|
|
}
|
|
}
|
|
}
|