Update of /cvsroot/adapdev/Adapdev/src/Adapdev.Windows.Forms
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23402/src/Adapdev.Windows.Forms
Modified Files:
Adapdev.Windows.Forms.csproj DatabaseSetting.cs
Log Message:
Added Progress Dialog and threaded control for loading tables.
Index: Adapdev.Windows.Forms.csproj
===================================================================
RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.Windows.Forms/Adapdev.Windows.Forms.csproj,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Adapdev.Windows.Forms.csproj 28 Feb 2005 01:55:12 -0000 1.2
--- Adapdev.Windows.Forms.csproj 12 Apr 2005 10:22:57 -0000 1.3
***************
*** 219,222 ****
--- 219,232 ----
BuildAction = "None"
/>
+ <File
+ RelPath = "Progress\ProgressWindow.cs"
+ SubType = "Form"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "Progress\ProgressWindow.resx"
+ DependentUpon = "ProgressWindow.cs"
+ BuildAction = "EmbeddedResource"
+ />
</Include>
</Files>
Index: DatabaseSetting.cs
===================================================================
RCS file: /cvsroot/adapdev/Adapdev/src/Adapdev.Windows.Forms/DatabaseSetting.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** DatabaseSetting.cs 11 Apr 2005 11:24:05 -0000 1.3
--- DatabaseSetting.cs 12 Apr 2005 10:22:57 -0000 1.4
***************
*** 81,87 ****
public DatabaseSchema GetDatabaseSchema() {
! DatabaseSchema schema = SchemaBuilder.CreateDatabaseSchema(this.OleDbConnectionString, this.DbType, this.DbProviderType);
! schema.ConnectionString = this.ConnectionString;
! return schema;
}
}
--- 81,88 ----
public DatabaseSchema GetDatabaseSchema() {
! //TODO: Fix this --> DatabaseSchema schema = SchemaBuilder.CreateDatabaseSchema(this.OleDbConnectionString, this.DbType, this.DbProviderType);
! // schema.ConnectionString = this.ConnectionString;
! // return schema;
! return null;
}
}
|