Skip to content

Commit 0fb242e

Browse files
Wetland-GIS V1.0
A land management system include map and Markov Model. The map based on SuperMap iObject 6R. ( Without data ) ©2013 College of Urban and Environment Science, LNNU.
0 parents  commit 0fb242e

File tree

180 files changed

+133337
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

180 files changed

+133337
-0
lines changed

Diff for: 湿地GIS.sln

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "湿地GIS", "湿地GIS\湿地GIS.csproj", "{883F1FE6-2BF2-4526-82FF-C46710F2FBEC}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|x86 = Debug|x86
9+
Release|x86 = Release|x86
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{883F1FE6-2BF2-4526-82FF-C46710F2FBEC}.Debug|x86.ActiveCfg = Debug|x86
13+
{883F1FE6-2BF2-4526-82FF-C46710F2FBEC}.Debug|x86.Build.0 = Debug|x86
14+
{883F1FE6-2BF2-4526-82FF-C46710F2FBEC}.Release|x86.ActiveCfg = Release|x86
15+
{883F1FE6-2BF2-4526-82FF-C46710F2FBEC}.Release|x86.Build.0 = Release|x86
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal

Diff for: 湿地GIS.suo

37 KB
Binary file not shown.

Diff for: 湿地GIS/C_conn.cs

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Text;
4+
using System.Data.OleDb;
5+
6+
namespace 湿地GIS
7+
{
8+
class C_conn
9+
{
10+
string s_conn;
11+
OleDbConnection c_my_conn;
12+
13+
public OleDbConnection get_conn()
14+
{
15+
s_conn = global::湿地GIS.Properties.Settings.Default.LNNU_GISConnectionString;
16+
c_my_conn = new OleDbConnection(s_conn);
17+
c_my_conn.Open();
18+
return c_my_conn;
19+
}
20+
}
21+
}

Diff for: 湿地GIS/Form1.Designer.cs

+37
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: 湿地GIS/Form1.cs

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Data;
5+
using System.Drawing;
6+
using System.Text;
7+
using System.Windows.Forms;
8+
using DevComponents.DotNetBar;
9+
10+
namespace 湿地GIS
11+
{
12+
public partial class Form1 : DevComponents.DotNetBar.Office2007Form
13+
{
14+
public Form1()
15+
{
16+
InitializeComponent();
17+
}
18+
}
19+
}

Diff for: 湿地GIS/Form2.Designer.cs

+42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: 湿地GIS/Form2.cs

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Data;
5+
using System.Drawing;
6+
using System.Text;
7+
using System.Windows.Forms;
8+
using DevComponents.DotNetBar;
9+
10+
namespace 湿地GIS
11+
{
12+
public partial class Form2 : DevComponents.DotNetBar.Metro.MetroForm
13+
{
14+
public Form2()
15+
{
16+
InitializeComponent();
17+
}
18+
}
19+
}

Diff for: 湿地GIS/LNNU_GIS.ldb

64 Bytes
Binary file not shown.

Diff for: 湿地GIS/LNNU_GIS.mdb

32.4 MB
Binary file not shown.

0 commit comments

Comments
 (0)