- Timestamp:
- 11/20/08 16:27:57 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Server.Console
- Files:
-
- 3 added
- 3 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.Console/HeuristicLab.Hive.Server.Console.csproj
r778 r794 60 60 </Compile> 61 61 <Compile Include="HiveServerConsoleApplication.cs" /> 62 <Compile Include="HiveServer ConsoleInformation.cs">62 <Compile Include="HiveServerManagementConsole.cs"> 63 63 <SubType>Form</SubType> 64 64 </Compile> 65 <Compile Include="HiveServer ConsoleInformation.Designer.cs">66 <DependentUpon>HiveServer ConsoleInformation.cs</DependentUpon>65 <Compile Include="HiveServerManagementConsole.Designer.cs"> 66 <DependentUpon>HiveServerManagementConsole.cs</DependentUpon> 67 67 </Compile> 68 68 <Compile Include="HiveServerConsolePlugin.cs" /> … … 74 74 <DependentUpon>HiveServerConsole.cs</DependentUpon> 75 75 </EmbeddedResource> 76 <EmbeddedResource Include="HiveServer ConsoleInformation.resx">77 <DependentUpon>HiveServer ConsoleInformation.cs</DependentUpon>76 <EmbeddedResource Include="HiveServerManagementConsole.resx"> 77 <DependentUpon>HiveServerManagementConsole.cs</DependentUpon> 78 78 </EmbeddedResource> 79 79 <EmbeddedResource Include="Properties\Resources.resx"> -
trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerConsole.cs
r785 r794 28 28 using System.Text; 29 29 using System.Windows.Forms; 30 using System.Threading;31 30 32 31 namespace HeuristicLab.Hive.Server.Console { … … 34 33 public partial class HiveServerConsole : Form { 35 34 36 HiveServer ConsoleInformationinformation = null;35 HiveServerManagementConsole information = null; 37 36 38 37 public HiveServerConsole() { … … 45 44 } 46 45 46 /// <summary> 47 /// When login button is clicked, the ManagementConsole 48 /// will be opened 49 /// </summary> 50 /// <param name="sender"></param> 51 /// <param name="e"></param> 47 52 private void btnLogin_Click(object sender, EventArgs e) { 48 53 if (ipIsValid()) { 49 54 this.Visible = false; 50 information = new HiveServer ConsoleInformation();55 information = new HiveServerManagementConsole(); 51 56 information.closeFormEvent += new closeForm(enableForm); 52 57 information.Show(); … … 54 59 } 55 60 61 56 62 private static bool ipIsValid() { 63 // TODO IP-Adress validation 57 64 return true; 58 65 }
Note: See TracChangeset
for help on using the changeset viewer.