Parent Directory
|
Revision Log
+ successfully install database from installer (if give right server and instance)
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.ComponentModel; |
4 | using System.Data; |
5 | using System.Drawing; |
6 | using System.Linq; |
7 | using System.Text; |
8 | using System.Windows.Forms; |
9 | |
10 | namespace AnywhereTS |
11 | { |
12 | public partial class DatabaseInstallerWaitDialog : Form |
13 | { |
14 | public DatabaseInstallerWaitDialog(string title, string message) |
15 | { |
16 | InitializeComponent(); |
17 | this.Title = title; |
18 | this.Message = message; |
19 | } |
20 | |
21 | public string Title { get { return this.Text; } set { this.Text = value; } } |
22 | public string Message { get { return this.lblMessage.Text; } set { this.lblMessage.Text = value; } } |
23 | |
24 | } |
25 | } |
ViewVC Help | |
Powered by ViewVC 1.1.22 |