C2017-003: Support SQL Server for storing of Referenced Object data

This commit is contained in:
2020-01-09 15:19:25 +00:00
parent 3f695a95a4
commit 7fbc9e358d
10 changed files with 192 additions and 36 deletions

View File

@@ -4,12 +4,13 @@ using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.Reflection;
using RODBInterface;
namespace ROEditor
{
partial class AboutROEditor : Form
{
public AboutROEditor()
public AboutROEditor(RODB myrodb)
{
InitializeComponent();
@@ -45,8 +46,8 @@ namespace ROEditor
// this.textBoxDescription.Text = AssemblyDescription;
this.labelCompanyName.Links[0].LinkData = "Volian Enterprises Inc.";
this.labelCompanyName.Links.Add(0,23,"www.volian.com");
//this.labelServer.Text = string.Format("SQL Server: {0}", server);
//this.labelDatabase.Text = string.Format("Database: {0}", databaseName);
this.labelServer.Text = myrodb.RODB_GetDBServerForAbout();//string.Format("SQL Server: {0}", server);
this.labelDatabase.Text = myrodb.RODB_GetDBNameForAbout(); //string.Format("Database: {0}", databaseName);
}