├── Hello_cs_code ├── app.config ├── Properties │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Program.cs ├── Hello_cs_code.csproj ├── Form1.resx ├── Form1.cs └── Form1.Designer.cs ├── Hello_cs_code_ns.sln ├── .gitattributes └── .gitignore /Hello_cs_code/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Hello_cs_code/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Hello_cs_code/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace Hello_cs_code 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// The main entry point for the application. 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | Application.Run(new Form1()); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Hello_cs_code/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Hello_cs_code.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.0.3.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Hello_cs_code_ns.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28307.329 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hello_cs_code", "Hello_cs_code\Hello_cs_code.csproj", "{8AACE949-54E8-4F2C-8EB3-FE20289C07F7}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {8AACE949-54E8-4F2C-8EB3-FE20289C07F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {8AACE949-54E8-4F2C-8EB3-FE20289C07F7}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {8AACE949-54E8-4F2C-8EB3-FE20289C07F7}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {8AACE949-54E8-4F2C-8EB3-FE20289C07F7}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {456C1944-62CF-49AE-A7E3-1F821C38AC2C} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Hello_cs_code/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Hello_cs_code")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Hello_cs_code")] 13 | [assembly: AssemblyCopyright("Copyright © 2019")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("8aace949-54e8-4f2c-8eb3-fe20289c07f7")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /Hello_cs_code/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Hello_cs_code.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Hello_cs_code.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Hello_cs_code/Hello_cs_code.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {8AACE949-54E8-4F2C-8EB3-FE20289C07F7} 8 | WinExe 9 | Hello_cs_code 10 | Hello_cs_code 11 | v4.8 12 | 512 13 | true 14 | 15 | 16 | 17 | AnyCPU 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | false 26 | 27 | 28 | AnyCPU 29 | pdbonly 30 | true 31 | bin\Release\ 32 | TRACE 33 | prompt 34 | 4 35 | false 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | Form 48 | 49 | 50 | Form1.cs 51 | 52 | 53 | 54 | 55 | Form1.cs 56 | 57 | 58 | ResXFileCodeGenerator 59 | Resources.Designer.cs 60 | Designer 61 | 62 | 63 | True 64 | Resources.resx 65 | True 66 | 67 | 68 | 69 | SettingsSingleFileGenerator 70 | Settings.Designer.cs 71 | 72 | 73 | True 74 | Settings.settings 75 | True 76 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /Hello_cs_code/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Mono auto generated files 17 | mono_crash.* 18 | 19 | # Build results 20 | [Dd]ebug/ 21 | [Dd]ebugPublic/ 22 | [Rr]elease/ 23 | [Rr]eleases/ 24 | x64/ 25 | x86/ 26 | [Ww][Ii][Nn]32/ 27 | [Aa][Rr][Mm]/ 28 | [Aa][Rr][Mm]64/ 29 | bld/ 30 | [Bb]in/ 31 | [Oo]bj/ 32 | [Oo]ut/ 33 | [Ll]og/ 34 | [Ll]ogs/ 35 | 36 | # Visual Studio 2015/2017 cache/options directory 37 | .vs/ 38 | # Uncomment if you have tasks that create the project's static files in wwwroot 39 | #wwwroot/ 40 | 41 | # Visual Studio 2017 auto generated files 42 | Generated\ Files/ 43 | 44 | # MSTest test Results 45 | [Tt]est[Rr]esult*/ 46 | [Bb]uild[Ll]og.* 47 | 48 | # NUnit 49 | *.VisualState.xml 50 | TestResult.xml 51 | nunit-*.xml 52 | 53 | # Build Results of an ATL Project 54 | [Dd]ebugPS/ 55 | [Rr]eleasePS/ 56 | dlldata.c 57 | 58 | # Benchmark Results 59 | BenchmarkDotNet.Artifacts/ 60 | 61 | # .NET Core 62 | project.lock.json 63 | project.fragment.lock.json 64 | artifacts/ 65 | 66 | # ASP.NET Scaffolding 67 | ScaffoldingReadMe.txt 68 | 69 | # StyleCop 70 | StyleCopReport.xml 71 | 72 | # Files built by Visual Studio 73 | *_i.c 74 | *_p.c 75 | *_h.h 76 | *.ilk 77 | *.meta 78 | *.obj 79 | *.iobj 80 | *.pch 81 | *.pdb 82 | *.ipdb 83 | *.pgc 84 | *.pgd 85 | *.rsp 86 | *.sbr 87 | *.tlb 88 | *.tli 89 | *.tlh 90 | *.tmp 91 | *.tmp_proj 92 | *_wpftmp.csproj 93 | *.log 94 | *.vspscc 95 | *.vssscc 96 | .builds 97 | *.pidb 98 | *.svclog 99 | *.scc 100 | 101 | # Chutzpah Test files 102 | _Chutzpah* 103 | 104 | # Visual C++ cache files 105 | ipch/ 106 | *.aps 107 | *.ncb 108 | *.opendb 109 | *.opensdf 110 | *.sdf 111 | *.cachefile 112 | *.VC.db 113 | *.VC.VC.opendb 114 | 115 | # Visual Studio profiler 116 | *.psess 117 | *.vsp 118 | *.vspx 119 | *.sap 120 | 121 | # Visual Studio Trace Files 122 | *.e2e 123 | 124 | # TFS 2012 Local Workspace 125 | $tf/ 126 | 127 | # Guidance Automation Toolkit 128 | *.gpState 129 | 130 | # ReSharper is a .NET coding add-in 131 | _ReSharper*/ 132 | *.[Rr]e[Ss]harper 133 | *.DotSettings.user 134 | 135 | # TeamCity is a build add-in 136 | _TeamCity* 137 | 138 | # DotCover is a Code Coverage Tool 139 | *.dotCover 140 | 141 | # AxoCover is a Code Coverage Tool 142 | .axoCover/* 143 | !.axoCover/settings.json 144 | 145 | # Coverlet is a free, cross platform Code Coverage Tool 146 | coverage*.json 147 | coverage*.xml 148 | coverage*.info 149 | 150 | # Visual Studio code coverage results 151 | *.coverage 152 | *.coveragexml 153 | 154 | # NCrunch 155 | _NCrunch_* 156 | .*crunch*.local.xml 157 | nCrunchTemp_* 158 | 159 | # MightyMoose 160 | *.mm.* 161 | AutoTest.Net/ 162 | 163 | # Web workbench (sass) 164 | .sass-cache/ 165 | 166 | # Installshield output folder 167 | [Ee]xpress/ 168 | 169 | # DocProject is a documentation generator add-in 170 | DocProject/buildhelp/ 171 | DocProject/Help/*.HxT 172 | DocProject/Help/*.HxC 173 | DocProject/Help/*.hhc 174 | DocProject/Help/*.hhk 175 | DocProject/Help/*.hhp 176 | DocProject/Help/Html2 177 | DocProject/Help/html 178 | 179 | # Click-Once directory 180 | publish/ 181 | 182 | # Publish Web Output 183 | *.[Pp]ublish.xml 184 | *.azurePubxml 185 | # Note: Comment the next line if you want to checkin your web deploy settings, 186 | # but database connection strings (with potential passwords) will be unencrypted 187 | *.pubxml 188 | *.publishproj 189 | 190 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 191 | # checkin your Azure Web App publish settings, but sensitive information contained 192 | # in these scripts will be unencrypted 193 | PublishScripts/ 194 | 195 | # NuGet Packages 196 | *.nupkg 197 | # NuGet Symbol Packages 198 | *.snupkg 199 | # The packages folder can be ignored because of Package Restore 200 | **/[Pp]ackages/* 201 | # except build/, which is used as an MSBuild target. 202 | !**/[Pp]ackages/build/ 203 | # Uncomment if necessary however generally it will be regenerated when needed 204 | #!**/[Pp]ackages/repositories.config 205 | # NuGet v3's project.json files produces more ignorable files 206 | *.nuget.props 207 | *.nuget.targets 208 | 209 | # Microsoft Azure Build Output 210 | csx/ 211 | *.build.csdef 212 | 213 | # Microsoft Azure Emulator 214 | ecf/ 215 | rcf/ 216 | 217 | # Windows Store app package directories and files 218 | AppPackages/ 219 | BundleArtifacts/ 220 | Package.StoreAssociation.xml 221 | _pkginfo.txt 222 | *.appx 223 | *.appxbundle 224 | *.appxupload 225 | 226 | # Visual Studio cache files 227 | # files ending in .cache can be ignored 228 | *.[Cc]ache 229 | # but keep track of directories ending in .cache 230 | !?*.[Cc]ache/ 231 | 232 | # Others 233 | ClientBin/ 234 | ~$* 235 | *~ 236 | *.dbmdl 237 | *.dbproj.schemaview 238 | *.jfm 239 | *.pfx 240 | *.publishsettings 241 | orleans.codegen.cs 242 | 243 | # Including strong name files can present a security risk 244 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 245 | #*.snk 246 | 247 | # Since there are multiple workflows, uncomment next line to ignore bower_components 248 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 249 | #bower_components/ 250 | 251 | # RIA/Silverlight projects 252 | Generated_Code/ 253 | 254 | # Backup & report files from converting an old project file 255 | # to a newer Visual Studio version. Backup files are not needed, 256 | # because we have git ;-) 257 | _UpgradeReport_Files/ 258 | Backup*/ 259 | UpgradeLog*.XML 260 | UpgradeLog*.htm 261 | ServiceFabricBackup/ 262 | *.rptproj.bak 263 | 264 | # SQL Server files 265 | *.mdf 266 | *.ldf 267 | *.ndf 268 | 269 | # Business Intelligence projects 270 | *.rdl.data 271 | *.bim.layout 272 | *.bim_*.settings 273 | *.rptproj.rsuser 274 | *- [Bb]ackup.rdl 275 | *- [Bb]ackup ([0-9]).rdl 276 | *- [Bb]ackup ([0-9][0-9]).rdl 277 | 278 | # Microsoft Fakes 279 | FakesAssemblies/ 280 | 281 | # GhostDoc plugin setting file 282 | *.GhostDoc.xml 283 | 284 | # Node.js Tools for Visual Studio 285 | .ntvs_analysis.dat 286 | node_modules/ 287 | 288 | # Visual Studio 6 build log 289 | *.plg 290 | 291 | # Visual Studio 6 workspace options file 292 | *.opt 293 | 294 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 295 | *.vbw 296 | 297 | # Visual Studio LightSwitch build output 298 | **/*.HTMLClient/GeneratedArtifacts 299 | **/*.DesktopClient/GeneratedArtifacts 300 | **/*.DesktopClient/ModelManifest.xml 301 | **/*.Server/GeneratedArtifacts 302 | **/*.Server/ModelManifest.xml 303 | _Pvt_Extensions 304 | 305 | # Paket dependency manager 306 | .paket/paket.exe 307 | paket-files/ 308 | 309 | # FAKE - F# Make 310 | .fake/ 311 | 312 | # CodeRush personal settings 313 | .cr/personal 314 | 315 | # Python Tools for Visual Studio (PTVS) 316 | __pycache__/ 317 | *.pyc 318 | 319 | # Cake - Uncomment if you are using it 320 | # tools/** 321 | # !tools/packages.config 322 | 323 | # Tabs Studio 324 | *.tss 325 | 326 | # Telerik's JustMock configuration file 327 | *.jmconfig 328 | 329 | # BizTalk build output 330 | *.btp.cs 331 | *.btm.cs 332 | *.odx.cs 333 | *.xsd.cs 334 | 335 | # OpenCover UI analysis results 336 | OpenCover/ 337 | 338 | # Azure Stream Analytics local run output 339 | ASALocalRun/ 340 | 341 | # MSBuild Binary and Structured Log 342 | *.binlog 343 | 344 | # NVidia Nsight GPU debugger configuration file 345 | *.nvuser 346 | 347 | # MFractors (Xamarin productivity tool) working folder 348 | .mfractor/ 349 | 350 | # Local History for Visual Studio 351 | .localhistory/ 352 | 353 | # BeatPulse healthcheck temp database 354 | healthchecksdb 355 | 356 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 357 | MigrationBackup/ 358 | 359 | # Ionide (cross platform F# VS Code tools) working folder 360 | .ionide/ 361 | 362 | # Fody - auto-generated XML schema 363 | FodyWeavers.xsd -------------------------------------------------------------------------------- /Hello_cs_code/Form1.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | 124 | 125 | 126 | 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 169 | TkSuQmCC 170 | 171 | 172 | 173 | 104, 17 174 | 175 | 176 | 191, 17 177 | 178 | 179 | 56 180 | 181 | -------------------------------------------------------------------------------- /Hello_cs_code/Form1.cs: -------------------------------------------------------------------------------- 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 | 9 | 10 | 11 | namespace Hello_cs_code 12 | { 13 | public partial class Form1 : Form 14 | { 15 | string my_var2; 16 | long my_var; 17 | 18 | public Form1() 19 | { 20 | InitializeComponent(); 21 | } 22 | 23 | private void button1_Click(object sender, EventArgs e) 24 | { 25 | MessageBox.Show("Hello This Is My First C# Code and I am Really Happy!!!!"); 26 | MessageBox.Show("2 Line"); 27 | MessageBox.Show("3 Line"); 28 | MessageBox.Show("4 Line"); 29 | MessageBox.Show("5 Line"); 30 | 31 | } 32 | 33 | private void button2_Click(object sender, EventArgs e) 34 | { 35 | MessageBox.Show("I am Button 2!!!"); 36 | } 37 | 38 | private void button3_Click(object sender, EventArgs e) 39 | { 40 | MessageBox.Show("I am Button 3", "Hello!") ; 41 | } 42 | 43 | private void button4_Click(object sender, EventArgs e) 44 | { 45 | button4.BackColor = Color.Yellow; 46 | //This line changes the color of my button 2 47 | button2.BackColor = Color.Green; 48 | this.BackColor = Color.Red; 49 | //THis 50 | button4.ForeColor = Color.Red; 51 | 52 | } 53 | 54 | private void button5_Click(object sender, EventArgs e) 55 | { 56 | this.textBox1.Text = "I'm Beautiful Textbox "; 57 | this.button3.Text = "Hi Babe!"; 58 | this.Text = "Hi I Love You; Me too!!!!"; 59 | } 60 | 61 | private void button6_Click(object sender, EventArgs e) 62 | { 63 | this.textBox2.Text= DateTime.Now.ToString(); 64 | // this.textBox2.Text = DateTime.Now.DayOfYear.ToString(); 65 | 66 | } 67 | 68 | private void button7_Click(object sender, EventArgs e) 69 | { 70 | this.panel1.Enabled = true; 71 | } 72 | 73 | private void button8_Click(object sender, EventArgs e) 74 | { 75 | this.panel1.Enabled = false; 76 | //this.Enabled = false; 77 | } 78 | 79 | private void timer1_Tick(object sender, EventArgs e) 80 | { 81 | this.textBox2.Text = DateTime.Now.ToString(); 82 | } 83 | 84 | private void timer2_Tick(object sender, EventArgs e) 85 | { 86 | //this.textBox3.Text = DateTime.Now.ToString(); 87 | this.textBox3.Text = DateTime.Now.Hour.ToString() +":"+ DateTime.Now.Minute.ToString() +":" +DateTime.Now.Second.ToString() +":"+DateTime.Now.Millisecond.ToString() ; 88 | } 89 | 90 | private void button9_Click(object sender, EventArgs e) 91 | { 92 | this.timer2.Enabled = false; 93 | } 94 | 95 | private void button10_Click(object sender, EventArgs e) 96 | { 97 | this.timer2.Enabled = true; 98 | } 99 | 100 | private void button11_Click(object sender, EventArgs e) 101 | { 102 | MessageBox.Show("Do you want to delete?","Finish",MessageBoxButtons.YesNoCancel,MessageBoxIcon.Question,MessageBoxDefaultButton.Button2,MessageBoxOptions.DefaultDesktopOnly); 103 | //MessageBox.Show("Done!"); 104 | } 105 | 106 | private void button12_Click(object sender, EventArgs e) 107 | { 108 | // this.pictureBox1.Image = Image.FromFile("E:\\cs\\Koala.jpg"); 109 | this.pictureBox1.BackgroundImage = Image.FromFile("E:\\cs\\Koala.jpg"); 110 | 111 | this.BackgroundImage= Image.FromFile("E:\\cs\\Koala.jpg"); 112 | } 113 | 114 | private void button13_Click(object sender, EventArgs e) 115 | { 116 | string msg=this.textBox4.Text ; 117 | //msg =this.textBox4.Text ; 118 | MessageBox.Show("Hi : "+ msg ); 119 | MessageBox.Show("Hi : " + msg+" Wellcome Back"); 120 | 121 | } 122 | 123 | private void button14_Click(object sender, EventArgs e) 124 | { 125 | ////string a1; 126 | ////string a2; 127 | ////a1 = this.textBox5.Text; 128 | ////a2 = this.textBox6.Text; 129 | /// 130 | int a1; 131 | int a2; 132 | //a1 =Convert.ToInt32( this.textBox5.Text); 133 | //a2 =Convert.ToInt32( this.textBox6.Text); 134 | Int32.TryParse(this.textBox5.Text, out a1); 135 | int.TryParse(this.textBox6.Text, out a2); 136 | int a3; 137 | a3 = a1 + a2; 138 | 139 | MessageBox.Show( a3.ToString() ); 140 | } 141 | 142 | 143 | private void button15_Click(object sender, EventArgs e) 144 | { 145 | long a1; 146 | long a2; 147 | 148 | //a1 =Convert.ToInt32( this.textBox5.Text); 149 | //a2 =Convert.ToInt32( this.textBox6.Text); 150 | long.TryParse(this.textBox5.Text, out a1); 151 | long.TryParse(this.textBox6.Text, out a2); 152 | long a3; 153 | a3 = a1 + a2; 154 | 155 | MessageBox.Show(a3.ToString()); 156 | } 157 | 158 | private void button16_Click(object sender, EventArgs e) 159 | { 160 | double a1; 161 | double a2; 162 | //a1 =Convert.ToInt32( this.textBox5.Text); 163 | //a2 =Convert.ToInt32( this.textBox6.Text); 164 | double.TryParse(this.textBox5.Text, out a1); 165 | double.TryParse(this.textBox6.Text, out a2); 166 | double a3; 167 | a3 = a1 + a2; 168 | 169 | MessageBox.Show(a3.ToString()); 170 | } 171 | 172 | private void button17_Click(object sender, EventArgs e) 173 | { 174 | float a1; 175 | float a2; 176 | //a1 =Convert.ToInt32( this.textBox5.Text); 177 | //a2 =Convert.ToInt32( this.textBox6.Text); 178 | float.TryParse(this.textBox5.Text, out a1); 179 | float.TryParse(this.textBox6.Text, out a2); 180 | float a3; 181 | a3 = a1 + a2; 182 | 183 | MessageBox.Show(a3.ToString()); 184 | } 185 | 186 | private void button18_Click(object sender, EventArgs e) 187 | { 188 | decimal a1; 189 | decimal a2; 190 | //a1 =Convert.ToInt32( this.textBox5.Text); 191 | //a2 =Convert.ToInt32( this.textBox6.Text); 192 | decimal.TryParse(this.textBox5.Text, out a1); 193 | decimal.TryParse(this.textBox6.Text, out a2); 194 | decimal a3; 195 | a3 = a1 + a2; 196 | 197 | MessageBox.Show(a3.ToString()); 198 | } 199 | 200 | private void button19_Click(object sender, EventArgs e) 201 | 202 | { 203 | string p; 204 | // p = "C:\\Windows\\System32\\calc.exe"; 205 | p = this.textBox7.Text; 206 | this.process1.StartInfo.FileName =p ; 207 | this.process1.Start(); 208 | } 209 | 210 | private void button20_Click(object sender, EventArgs e) 211 | { 212 | this.process1.StartInfo.FileName = "C:\\Windows\\System32\\notepad.exe"; 213 | this.process1.Start(); 214 | } 215 | 216 | private void button21_Click(object sender, EventArgs e) 217 | { 218 | this.process1.StartInfo.FileName = "C:\\Windows\\System32\\mspaint.exe"; 219 | this.process1.Start(); 220 | } 221 | 222 | private void button22_Click(object sender, EventArgs e) 223 | { 224 | this.process1.StartInfo.FileName = "E:\\Program Files (x86)\\Oranus Soft\\Automation.2018.1.April\\oranus_pro.exe"; 225 | this.process1.Start(); 226 | } 227 | 228 | private void button23_Click(object sender, EventArgs e) 229 | { 230 | 231 | this.Close(); 232 | } 233 | 234 | private void button23_Click_1(object sender, EventArgs e) 235 | { 236 | MessageBox.Show("Nice Time!"); 237 | this.Close(); 238 | } 239 | 240 | private void Form1_Load(object sender, EventArgs e) 241 | { 242 | 243 | } 244 | 245 | private void button24_Click(object sender, EventArgs e) 246 | { 247 | Int32 uyb; 248 | 249 | Int32.TryParse(this.textBox8.Text, out uyb); 250 | 251 | Int32 age; 252 | Int32 curr_year; 253 | curr_year = DateTime.Now.Year; 254 | age = curr_year - uyb; 255 | // MessageBox.Show(age.ToString()); 256 | 257 | if (age > 35) 258 | { 259 | MessageBox.Show("You are middle aged!!!"); 260 | } 261 | if (age<35) 262 | { 263 | MessageBox.Show("You are young! don't afraid!!!"); 264 | } 265 | if (age==35) 266 | { 267 | MessageBox.Show("I don't know who you are!!!!!!!!"); 268 | } 269 | //else 270 | //{ 271 | // MessageBox.Show("You are young! don't afraid!!!"); 272 | //} 273 | } 274 | 275 | private void button25_Click(object sender, EventArgs e) 276 | { 277 | Int32 i; 278 | for (i=0;i<20;i++) 279 | { 280 | MessageBox.Show("I am for loop: my number is: " + i.ToString()); 281 | } 282 | } 283 | 284 | private void button26_Click(object sender, EventArgs e) 285 | { 286 | Int32 j; 287 | for (j=0;j<1000;j++) 288 | { 289 | this.comboBox1.Items.Add(j.ToString()); 290 | } 291 | } 292 | 293 | private void button27_Click(object sender, EventArgs e) 294 | { 295 | Int32 mn; 296 | Int32.TryParse(this.textBox9.Text, out mn); 297 | string en_mon_name; 298 | en_mon_name = "unknown"; 299 | if (mn==1) 300 | { 301 | // MessageBox.Show("January"); 302 | en_mon_name= "January"; 303 | } 304 | if (mn == 2) 305 | { 306 | // MessageBox.Show("February"); 307 | en_mon_name = "February"; 308 | } 309 | if (mn == 3) 310 | { 311 | //MessageBox.Show("March"); 312 | en_mon_name = "March"; 313 | } 314 | if (mn == 4) 315 | { 316 | //MessageBox.Show("April"); 317 | en_mon_name = "April"; 318 | } 319 | if (mn == 5) 320 | { 321 | //MessageBox.Show("May"); 322 | en_mon_name = "May"; 323 | } 324 | if (mn == 6) 325 | { 326 | // MessageBox.Show("June"); 327 | en_mon_name = "June"; 328 | } 329 | if (mn == 7) 330 | { 331 | // MessageBox.Show("July"); 332 | en_mon_name = "July"; 333 | } 334 | if (mn == 8) 335 | { 336 | // MessageBox.Show("August"); 337 | en_mon_name = "August"; 338 | } 339 | if (mn == 9) 340 | { 341 | // MessageBox.Show("September"); 342 | en_mon_name = "September"; 343 | } 344 | if (mn == 10) 345 | { 346 | // MessageBox.Show("October"); 347 | en_mon_name = "October"; 348 | } 349 | if (mn == 11) 350 | { 351 | //MessageBox.Show("November"); 352 | en_mon_name = "November"; 353 | } 354 | if (mn == 12) 355 | { 356 | //MessageBox.Show("December"); 357 | en_mon_name = "December"; 358 | } 359 | 360 | MessageBox.Show(en_mon_name); 361 | } 362 | 363 | private void button28_Click(object sender, EventArgs e) 364 | { 365 | Int32 mn; 366 | Int32.TryParse(this.textBox9.Text, out mn); 367 | string en_name; 368 | en_name = "unknows"; 369 | 370 | switch (mn) 371 | { 372 | case 1: 373 | en_name = "January"; 374 | break; 375 | 376 | case 2: 377 | en_name = "February"; 378 | break; 379 | 380 | case 3: 381 | en_name = "March"; 382 | break; 383 | 384 | case 4: 385 | en_name = "April"; 386 | break; 387 | 388 | case 5: 389 | en_name = "May"; 390 | break; 391 | 392 | case 6: 393 | en_name = "June"; 394 | break; 395 | 396 | case 7: 397 | en_name = "July"; 398 | break; 399 | 400 | case 8: 401 | en_name = "August"; 402 | break; 403 | 404 | case 9: 405 | en_name = "September"; 406 | break; 407 | 408 | case 10: 409 | en_name = "October"; 410 | break; 411 | 412 | case 11: 413 | en_name = "November"; 414 | break; 415 | 416 | case 12: 417 | en_name = "December"; 418 | break; 419 | 420 | default: 421 | en_name = "Wrong Number"; 422 | break; 423 | } 424 | MessageBox.Show(en_name); 425 | 426 | } 427 | 428 | private void button29_Click(object sender, EventArgs e) 429 | { 430 | string m_name; 431 | m_name = this.textBox10.Text; 432 | string month_num; 433 | 434 | switch (m_name) 435 | { 436 | case "January": 437 | month_num = "1"; 438 | break; 439 | 440 | case "February": 441 | month_num = "2"; 442 | break; 443 | 444 | case "March": 445 | month_num = "3"; 446 | break; 447 | 448 | 449 | case "April": 450 | month_num = "4"; 451 | break; 452 | 453 | 454 | case "May": 455 | month_num = "5"; 456 | break; 457 | 458 | case "June": 459 | month_num = "6"; 460 | break; 461 | 462 | case "July": 463 | month_num = "7"; 464 | break; 465 | 466 | case "August": 467 | month_num = "8"; 468 | break; 469 | 470 | case "September": 471 | month_num = "9"; 472 | break; 473 | 474 | case "October": 475 | month_num = "10"; 476 | break; 477 | 478 | case "November": 479 | month_num = "11"; 480 | break; 481 | 482 | case "December": 483 | month_num = "12"; 484 | break; 485 | 486 | default: 487 | month_num = "Not Valid!"; 488 | break; 489 | } 490 | 491 | MessageBox.Show("Your Month Number Is: " + month_num); 492 | } 493 | 494 | private void button30_Click(object sender, EventArgs e) 495 | { 496 | Boolean b; 497 | b = this.button18.Enabled; 498 | MessageBox.Show(b.ToString()); 499 | this.button13.Enabled = b; 500 | // this.Visible = b; 501 | } 502 | } 503 | } 504 | -------------------------------------------------------------------------------- /Hello_cs_code/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Hello_cs_code 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 33 | this.button1 = new System.Windows.Forms.Button(); 34 | this.button2 = new System.Windows.Forms.Button(); 35 | this.button3 = new System.Windows.Forms.Button(); 36 | this.button4 = new System.Windows.Forms.Button(); 37 | this.textBox1 = new System.Windows.Forms.TextBox(); 38 | this.button5 = new System.Windows.Forms.Button(); 39 | this.button6 = new System.Windows.Forms.Button(); 40 | this.textBox2 = new System.Windows.Forms.TextBox(); 41 | this.panel1 = new System.Windows.Forms.Panel(); 42 | this.button7 = new System.Windows.Forms.Button(); 43 | this.button8 = new System.Windows.Forms.Button(); 44 | this.timer1 = new System.Windows.Forms.Timer(this.components); 45 | this.tabControl1 = new System.Windows.Forms.TabControl(); 46 | this.tabPage1 = new System.Windows.Forms.TabPage(); 47 | this.tabPage2 = new System.Windows.Forms.TabPage(); 48 | this.tabPage3 = new System.Windows.Forms.TabPage(); 49 | this.button10 = new System.Windows.Forms.Button(); 50 | this.button9 = new System.Windows.Forms.Button(); 51 | this.textBox3 = new System.Windows.Forms.TextBox(); 52 | this.tabPage4 = new System.Windows.Forms.TabPage(); 53 | this.button11 = new System.Windows.Forms.Button(); 54 | this.tabPage5 = new System.Windows.Forms.TabPage(); 55 | this.pictureBox1 = new System.Windows.Forms.PictureBox(); 56 | this.button12 = new System.Windows.Forms.Button(); 57 | this.tabPage6 = new System.Windows.Forms.TabPage(); 58 | this.button18 = new System.Windows.Forms.Button(); 59 | this.button17 = new System.Windows.Forms.Button(); 60 | this.button16 = new System.Windows.Forms.Button(); 61 | this.button15 = new System.Windows.Forms.Button(); 62 | this.button14 = new System.Windows.Forms.Button(); 63 | this.textBox6 = new System.Windows.Forms.TextBox(); 64 | this.textBox5 = new System.Windows.Forms.TextBox(); 65 | this.textBox4 = new System.Windows.Forms.TextBox(); 66 | this.button13 = new System.Windows.Forms.Button(); 67 | this.tabPage7 = new System.Windows.Forms.TabPage(); 68 | this.textBox7 = new System.Windows.Forms.TextBox(); 69 | this.button22 = new System.Windows.Forms.Button(); 70 | this.button21 = new System.Windows.Forms.Button(); 71 | this.button20 = new System.Windows.Forms.Button(); 72 | this.button19 = new System.Windows.Forms.Button(); 73 | this.tabPage8 = new System.Windows.Forms.TabPage(); 74 | this.button23 = new System.Windows.Forms.Button(); 75 | this.tabPage9 = new System.Windows.Forms.TabPage(); 76 | this.label1 = new System.Windows.Forms.Label(); 77 | this.textBox8 = new System.Windows.Forms.TextBox(); 78 | this.button24 = new System.Windows.Forms.Button(); 79 | this.tabPage10 = new System.Windows.Forms.TabPage(); 80 | this.comboBox1 = new System.Windows.Forms.ComboBox(); 81 | this.button26 = new System.Windows.Forms.Button(); 82 | this.button25 = new System.Windows.Forms.Button(); 83 | this.tabPage11 = new System.Windows.Forms.TabPage(); 84 | this.button29 = new System.Windows.Forms.Button(); 85 | this.textBox10 = new System.Windows.Forms.TextBox(); 86 | this.label3 = new System.Windows.Forms.Label(); 87 | this.button28 = new System.Windows.Forms.Button(); 88 | this.textBox9 = new System.Windows.Forms.TextBox(); 89 | this.label2 = new System.Windows.Forms.Label(); 90 | this.button27 = new System.Windows.Forms.Button(); 91 | this.timer2 = new System.Windows.Forms.Timer(this.components); 92 | this.process1 = new System.Diagnostics.Process(); 93 | this.button30 = new System.Windows.Forms.Button(); 94 | this.panel1.SuspendLayout(); 95 | this.tabControl1.SuspendLayout(); 96 | this.tabPage1.SuspendLayout(); 97 | this.tabPage2.SuspendLayout(); 98 | this.tabPage3.SuspendLayout(); 99 | this.tabPage4.SuspendLayout(); 100 | this.tabPage5.SuspendLayout(); 101 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); 102 | this.tabPage6.SuspendLayout(); 103 | this.tabPage7.SuspendLayout(); 104 | this.tabPage8.SuspendLayout(); 105 | this.tabPage9.SuspendLayout(); 106 | this.tabPage10.SuspendLayout(); 107 | this.tabPage11.SuspendLayout(); 108 | this.SuspendLayout(); 109 | // 110 | // button1 111 | // 112 | this.button1.Location = new System.Drawing.Point(83, 45); 113 | this.button1.Name = "button1"; 114 | this.button1.Size = new System.Drawing.Size(75, 23); 115 | this.button1.TabIndex = 0; 116 | this.button1.Text = "Hello C#"; 117 | this.button1.UseVisualStyleBackColor = true; 118 | this.button1.Click += new System.EventHandler(this.button1_Click); 119 | // 120 | // button2 121 | // 122 | this.button2.Location = new System.Drawing.Point(83, 74); 123 | this.button2.Name = "button2"; 124 | this.button2.Size = new System.Drawing.Size(75, 23); 125 | this.button2.TabIndex = 1; 126 | this.button2.Text = "Button 2"; 127 | this.button2.UseVisualStyleBackColor = true; 128 | this.button2.Click += new System.EventHandler(this.button2_Click); 129 | // 130 | // button3 131 | // 132 | this.button3.Location = new System.Drawing.Point(83, 103); 133 | this.button3.Name = "button3"; 134 | this.button3.Size = new System.Drawing.Size(75, 23); 135 | this.button3.TabIndex = 2; 136 | this.button3.Text = "button3"; 137 | this.button3.UseVisualStyleBackColor = true; 138 | this.button3.Click += new System.EventHandler(this.button3_Click); 139 | // 140 | // button4 141 | // 142 | this.button4.BackColor = System.Drawing.Color.WhiteSmoke; 143 | this.button4.Location = new System.Drawing.Point(55, 143); 144 | this.button4.Name = "button4"; 145 | this.button4.Size = new System.Drawing.Size(133, 33); 146 | this.button4.TabIndex = 3; 147 | this.button4.Text = "Change Color"; 148 | this.button4.UseVisualStyleBackColor = false; 149 | this.button4.Click += new System.EventHandler(this.button4_Click); 150 | // 151 | // textBox1 152 | // 153 | this.textBox1.Location = new System.Drawing.Point(15, 19); 154 | this.textBox1.Name = "textBox1"; 155 | this.textBox1.Size = new System.Drawing.Size(214, 21); 156 | this.textBox1.TabIndex = 4; 157 | this.textBox1.Text = "Test"; 158 | // 159 | // button5 160 | // 161 | this.button5.Location = new System.Drawing.Point(64, 193); 162 | this.button5.Name = "button5"; 163 | this.button5.Size = new System.Drawing.Size(113, 23); 164 | this.button5.TabIndex = 5; 165 | this.button5.Text = "Change Text"; 166 | this.button5.UseVisualStyleBackColor = true; 167 | this.button5.Click += new System.EventHandler(this.button5_Click); 168 | // 169 | // button6 170 | // 171 | this.button6.Location = new System.Drawing.Point(101, 90); 172 | this.button6.Name = "button6"; 173 | this.button6.Size = new System.Drawing.Size(75, 23); 174 | this.button6.TabIndex = 6; 175 | this.button6.Text = "Time"; 176 | this.button6.UseVisualStyleBackColor = true; 177 | this.button6.Click += new System.EventHandler(this.button6_Click); 178 | // 179 | // textBox2 180 | // 181 | this.textBox2.Location = new System.Drawing.Point(18, 54); 182 | this.textBox2.Name = "textBox2"; 183 | this.textBox2.Size = new System.Drawing.Size(238, 20); 184 | this.textBox2.TabIndex = 7; 185 | // 186 | // panel1 187 | // 188 | this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))); 189 | this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; 190 | this.panel1.Controls.Add(this.button5); 191 | this.panel1.Controls.Add(this.textBox1); 192 | this.panel1.Controls.Add(this.button4); 193 | this.panel1.Controls.Add(this.button3); 194 | this.panel1.Controls.Add(this.button2); 195 | this.panel1.Controls.Add(this.button1); 196 | this.panel1.Enabled = false; 197 | this.panel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178))); 198 | this.panel1.ForeColor = System.Drawing.Color.Maroon; 199 | this.panel1.Location = new System.Drawing.Point(18, 12); 200 | this.panel1.Name = "panel1"; 201 | this.panel1.Size = new System.Drawing.Size(258, 265); 202 | this.panel1.TabIndex = 8; 203 | // 204 | // button7 205 | // 206 | this.button7.Location = new System.Drawing.Point(282, 156); 207 | this.button7.Name = "button7"; 208 | this.button7.Size = new System.Drawing.Size(112, 45); 209 | this.button7.TabIndex = 9; 210 | this.button7.Text = "Enable"; 211 | this.button7.UseVisualStyleBackColor = true; 212 | this.button7.Click += new System.EventHandler(this.button7_Click); 213 | // 214 | // button8 215 | // 216 | this.button8.Location = new System.Drawing.Point(282, 207); 217 | this.button8.Name = "button8"; 218 | this.button8.Size = new System.Drawing.Size(112, 40); 219 | this.button8.TabIndex = 10; 220 | this.button8.Text = "Disable"; 221 | this.button8.UseVisualStyleBackColor = true; 222 | this.button8.Click += new System.EventHandler(this.button8_Click); 223 | // 224 | // timer1 225 | // 226 | this.timer1.Enabled = true; 227 | this.timer1.Tick += new System.EventHandler(this.timer1_Tick); 228 | // 229 | // tabControl1 230 | // 231 | this.tabControl1.Controls.Add(this.tabPage1); 232 | this.tabControl1.Controls.Add(this.tabPage2); 233 | this.tabControl1.Controls.Add(this.tabPage3); 234 | this.tabControl1.Controls.Add(this.tabPage4); 235 | this.tabControl1.Controls.Add(this.tabPage5); 236 | this.tabControl1.Controls.Add(this.tabPage6); 237 | this.tabControl1.Controls.Add(this.tabPage7); 238 | this.tabControl1.Controls.Add(this.tabPage8); 239 | this.tabControl1.Controls.Add(this.tabPage9); 240 | this.tabControl1.Controls.Add(this.tabPage10); 241 | this.tabControl1.Controls.Add(this.tabPage11); 242 | this.tabControl1.Location = new System.Drawing.Point(23, 11); 243 | this.tabControl1.Name = "tabControl1"; 244 | this.tabControl1.SelectedIndex = 0; 245 | this.tabControl1.Size = new System.Drawing.Size(695, 402); 246 | this.tabControl1.TabIndex = 11; 247 | // 248 | // tabPage1 249 | // 250 | this.tabPage1.Controls.Add(this.panel1); 251 | this.tabPage1.Controls.Add(this.button8); 252 | this.tabPage1.Controls.Add(this.button7); 253 | this.tabPage1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178))); 254 | this.tabPage1.ForeColor = System.Drawing.Color.Maroon; 255 | this.tabPage1.Location = new System.Drawing.Point(4, 22); 256 | this.tabPage1.Name = "tabPage1"; 257 | this.tabPage1.Padding = new System.Windows.Forms.Padding(3); 258 | this.tabPage1.Size = new System.Drawing.Size(687, 376); 259 | this.tabPage1.TabIndex = 0; 260 | this.tabPage1.Text = "tabPage1"; 261 | this.tabPage1.UseVisualStyleBackColor = true; 262 | // 263 | // tabPage2 264 | // 265 | this.tabPage2.Controls.Add(this.textBox2); 266 | this.tabPage2.Controls.Add(this.button6); 267 | this.tabPage2.Location = new System.Drawing.Point(4, 22); 268 | this.tabPage2.Name = "tabPage2"; 269 | this.tabPage2.Padding = new System.Windows.Forms.Padding(3); 270 | this.tabPage2.Size = new System.Drawing.Size(687, 376); 271 | this.tabPage2.TabIndex = 1; 272 | this.tabPage2.Text = "tabPage2"; 273 | this.tabPage2.UseVisualStyleBackColor = true; 274 | // 275 | // tabPage3 276 | // 277 | this.tabPage3.Controls.Add(this.button10); 278 | this.tabPage3.Controls.Add(this.button9); 279 | this.tabPage3.Controls.Add(this.textBox3); 280 | this.tabPage3.Location = new System.Drawing.Point(4, 22); 281 | this.tabPage3.Name = "tabPage3"; 282 | this.tabPage3.Padding = new System.Windows.Forms.Padding(3); 283 | this.tabPage3.Size = new System.Drawing.Size(687, 376); 284 | this.tabPage3.TabIndex = 2; 285 | this.tabPage3.Text = "Clock"; 286 | this.tabPage3.UseVisualStyleBackColor = true; 287 | // 288 | // button10 289 | // 290 | this.button10.Location = new System.Drawing.Point(198, 141); 291 | this.button10.Name = "button10"; 292 | this.button10.Size = new System.Drawing.Size(129, 34); 293 | this.button10.TabIndex = 2; 294 | this.button10.Text = "Start"; 295 | this.button10.UseVisualStyleBackColor = true; 296 | this.button10.Click += new System.EventHandler(this.button10_Click); 297 | // 298 | // button9 299 | // 300 | this.button9.Location = new System.Drawing.Point(198, 181); 301 | this.button9.Name = "button9"; 302 | this.button9.Size = new System.Drawing.Size(129, 34); 303 | this.button9.TabIndex = 1; 304 | this.button9.Text = "Stop"; 305 | this.button9.UseVisualStyleBackColor = true; 306 | this.button9.Click += new System.EventHandler(this.button9_Click); 307 | // 308 | // textBox3 309 | // 310 | this.textBox3.BackColor = System.Drawing.Color.Black; 311 | this.textBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178))); 312 | this.textBox3.ForeColor = System.Drawing.Color.White; 313 | this.textBox3.Location = new System.Drawing.Point(18, 19); 314 | this.textBox3.Name = "textBox3"; 315 | this.textBox3.Size = new System.Drawing.Size(523, 62); 316 | this.textBox3.TabIndex = 0; 317 | this.textBox3.Text = "12:36"; 318 | this.textBox3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; 319 | // 320 | // tabPage4 321 | // 322 | this.tabPage4.Controls.Add(this.button11); 323 | this.tabPage4.Location = new System.Drawing.Point(4, 22); 324 | this.tabPage4.Name = "tabPage4"; 325 | this.tabPage4.Padding = new System.Windows.Forms.Padding(3); 326 | this.tabPage4.Size = new System.Drawing.Size(687, 376); 327 | this.tabPage4.TabIndex = 3; 328 | this.tabPage4.Text = "Msg Box"; 329 | this.tabPage4.UseVisualStyleBackColor = true; 330 | // 331 | // button11 332 | // 333 | this.button11.Location = new System.Drawing.Point(185, 61); 334 | this.button11.Name = "button11"; 335 | this.button11.Size = new System.Drawing.Size(139, 32); 336 | this.button11.TabIndex = 0; 337 | this.button11.Text = "Show MessageBox"; 338 | this.button11.UseVisualStyleBackColor = true; 339 | this.button11.Click += new System.EventHandler(this.button11_Click); 340 | // 341 | // tabPage5 342 | // 343 | this.tabPage5.Controls.Add(this.pictureBox1); 344 | this.tabPage5.Controls.Add(this.button12); 345 | this.tabPage5.Location = new System.Drawing.Point(4, 22); 346 | this.tabPage5.Name = "tabPage5"; 347 | this.tabPage5.Padding = new System.Windows.Forms.Padding(3); 348 | this.tabPage5.Size = new System.Drawing.Size(687, 376); 349 | this.tabPage5.TabIndex = 4; 350 | this.tabPage5.Text = "Picture"; 351 | this.tabPage5.UseVisualStyleBackColor = true; 352 | // 353 | // pictureBox1 354 | // 355 | this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; 356 | this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; 357 | this.pictureBox1.Location = new System.Drawing.Point(200, 26); 358 | this.pictureBox1.Name = "pictureBox1"; 359 | this.pictureBox1.Size = new System.Drawing.Size(267, 174); 360 | this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; 361 | this.pictureBox1.TabIndex = 1; 362 | this.pictureBox1.TabStop = false; 363 | // 364 | // button12 365 | // 366 | this.button12.Location = new System.Drawing.Point(296, 224); 367 | this.button12.Name = "button12"; 368 | this.button12.Size = new System.Drawing.Size(75, 23); 369 | this.button12.TabIndex = 0; 370 | this.button12.Text = "Load"; 371 | this.button12.UseVisualStyleBackColor = true; 372 | this.button12.Click += new System.EventHandler(this.button12_Click); 373 | // 374 | // tabPage6 375 | // 376 | this.tabPage6.Controls.Add(this.button30); 377 | this.tabPage6.Controls.Add(this.button18); 378 | this.tabPage6.Controls.Add(this.button17); 379 | this.tabPage6.Controls.Add(this.button16); 380 | this.tabPage6.Controls.Add(this.button15); 381 | this.tabPage6.Controls.Add(this.button14); 382 | this.tabPage6.Controls.Add(this.textBox6); 383 | this.tabPage6.Controls.Add(this.textBox5); 384 | this.tabPage6.Controls.Add(this.textBox4); 385 | this.tabPage6.Controls.Add(this.button13); 386 | this.tabPage6.Location = new System.Drawing.Point(4, 22); 387 | this.tabPage6.Name = "tabPage6"; 388 | this.tabPage6.Padding = new System.Windows.Forms.Padding(3); 389 | this.tabPage6.Size = new System.Drawing.Size(687, 376); 390 | this.tabPage6.TabIndex = 5; 391 | this.tabPage6.Text = "Variables"; 392 | this.tabPage6.UseVisualStyleBackColor = true; 393 | // 394 | // button18 395 | // 396 | this.button18.Enabled = false; 397 | this.button18.Location = new System.Drawing.Point(362, 195); 398 | this.button18.Name = "button18"; 399 | this.button18.Size = new System.Drawing.Size(159, 23); 400 | this.button18.TabIndex = 8; 401 | this.button18.Text = "Show Decimal Sum"; 402 | this.button18.UseVisualStyleBackColor = true; 403 | this.button18.Click += new System.EventHandler(this.button18_Click); 404 | // 405 | // button17 406 | // 407 | this.button17.Location = new System.Drawing.Point(362, 133); 408 | this.button17.Name = "button17"; 409 | this.button17.Size = new System.Drawing.Size(159, 23); 410 | this.button17.TabIndex = 7; 411 | this.button17.Text = "Show Float Sum"; 412 | this.button17.UseVisualStyleBackColor = true; 413 | this.button17.Click += new System.EventHandler(this.button17_Click); 414 | // 415 | // button16 416 | // 417 | this.button16.Location = new System.Drawing.Point(362, 162); 418 | this.button16.Name = "button16"; 419 | this.button16.Size = new System.Drawing.Size(159, 23); 420 | this.button16.TabIndex = 6; 421 | this.button16.Text = "Show Double Sum"; 422 | this.button16.UseVisualStyleBackColor = true; 423 | this.button16.Click += new System.EventHandler(this.button16_Click); 424 | // 425 | // button15 426 | // 427 | this.button15.Location = new System.Drawing.Point(362, 94); 428 | this.button15.Name = "button15"; 429 | this.button15.Size = new System.Drawing.Size(159, 23); 430 | this.button15.TabIndex = 5; 431 | this.button15.Text = "Show Long / int64 Sum"; 432 | this.button15.UseVisualStyleBackColor = true; 433 | this.button15.Click += new System.EventHandler(this.button15_Click); 434 | // 435 | // button14 436 | // 437 | this.button14.Location = new System.Drawing.Point(281, 94); 438 | this.button14.Name = "button14"; 439 | this.button14.Size = new System.Drawing.Size(75, 23); 440 | this.button14.TabIndex = 4; 441 | this.button14.Text = "Show Sum"; 442 | this.button14.UseVisualStyleBackColor = true; 443 | this.button14.Click += new System.EventHandler(this.button14_Click); 444 | // 445 | // textBox6 446 | // 447 | this.textBox6.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178))); 448 | this.textBox6.Location = new System.Drawing.Point(281, 51); 449 | this.textBox6.Name = "textBox6"; 450 | this.textBox6.Size = new System.Drawing.Size(400, 35); 451 | this.textBox6.TabIndex = 3; 452 | this.textBox6.Text = "36"; 453 | // 454 | // textBox5 455 | // 456 | this.textBox5.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178))); 457 | this.textBox5.Location = new System.Drawing.Point(281, 6); 458 | this.textBox5.Name = "textBox5"; 459 | this.textBox5.Size = new System.Drawing.Size(400, 35); 460 | this.textBox5.TabIndex = 2; 461 | this.textBox5.Text = "25"; 462 | // 463 | // textBox4 464 | // 465 | this.textBox4.Location = new System.Drawing.Point(39, 25); 466 | this.textBox4.Name = "textBox4"; 467 | this.textBox4.Size = new System.Drawing.Size(179, 20); 468 | this.textBox4.TabIndex = 1; 469 | // 470 | // button13 471 | // 472 | this.button13.Location = new System.Drawing.Point(90, 65); 473 | this.button13.Name = "button13"; 474 | this.button13.Size = new System.Drawing.Size(75, 23); 475 | this.button13.TabIndex = 0; 476 | this.button13.Text = "Show Msg"; 477 | this.button13.UseVisualStyleBackColor = true; 478 | this.button13.Click += new System.EventHandler(this.button13_Click); 479 | // 480 | // tabPage7 481 | // 482 | this.tabPage7.Controls.Add(this.textBox7); 483 | this.tabPage7.Controls.Add(this.button22); 484 | this.tabPage7.Controls.Add(this.button21); 485 | this.tabPage7.Controls.Add(this.button20); 486 | this.tabPage7.Controls.Add(this.button19); 487 | this.tabPage7.Location = new System.Drawing.Point(4, 22); 488 | this.tabPage7.Name = "tabPage7"; 489 | this.tabPage7.Padding = new System.Windows.Forms.Padding(3); 490 | this.tabPage7.Size = new System.Drawing.Size(687, 376); 491 | this.tabPage7.TabIndex = 6; 492 | this.tabPage7.Text = "Run App"; 493 | this.tabPage7.UseVisualStyleBackColor = true; 494 | // 495 | // textBox7 496 | // 497 | this.textBox7.Location = new System.Drawing.Point(45, 17); 498 | this.textBox7.Name = "textBox7"; 499 | this.textBox7.Size = new System.Drawing.Size(314, 20); 500 | this.textBox7.TabIndex = 4; 501 | this.textBox7.Text = "C:\\\\Windows\\\\System32\\\\calc.exe"; 502 | // 503 | // button22 504 | // 505 | this.button22.Location = new System.Drawing.Point(113, 183); 506 | this.button22.Name = "button22"; 507 | this.button22.Size = new System.Drawing.Size(145, 23); 508 | this.button22.TabIndex = 3; 509 | this.button22.Text = "Run Kamisha"; 510 | this.button22.UseVisualStyleBackColor = true; 511 | this.button22.Click += new System.EventHandler(this.button22_Click); 512 | // 513 | // button21 514 | // 515 | this.button21.Location = new System.Drawing.Point(113, 140); 516 | this.button21.Name = "button21"; 517 | this.button21.Size = new System.Drawing.Size(145, 23); 518 | this.button21.TabIndex = 2; 519 | this.button21.Text = "Run Paint"; 520 | this.button21.UseVisualStyleBackColor = true; 521 | this.button21.Click += new System.EventHandler(this.button21_Click); 522 | // 523 | // button20 524 | // 525 | this.button20.Location = new System.Drawing.Point(113, 97); 526 | this.button20.Name = "button20"; 527 | this.button20.Size = new System.Drawing.Size(145, 23); 528 | this.button20.TabIndex = 1; 529 | this.button20.Text = "Run NotePad"; 530 | this.button20.UseVisualStyleBackColor = true; 531 | this.button20.Click += new System.EventHandler(this.button20_Click); 532 | // 533 | // button19 534 | // 535 | this.button19.Location = new System.Drawing.Point(113, 54); 536 | this.button19.Name = "button19"; 537 | this.button19.Size = new System.Drawing.Size(145, 23); 538 | this.button19.TabIndex = 0; 539 | this.button19.Text = "Run Calc"; 540 | this.button19.UseVisualStyleBackColor = true; 541 | this.button19.Click += new System.EventHandler(this.button19_Click); 542 | // 543 | // tabPage8 544 | // 545 | this.tabPage8.Controls.Add(this.button23); 546 | this.tabPage8.Location = new System.Drawing.Point(4, 22); 547 | this.tabPage8.Name = "tabPage8"; 548 | this.tabPage8.Padding = new System.Windows.Forms.Padding(3); 549 | this.tabPage8.Size = new System.Drawing.Size(687, 376); 550 | this.tabPage8.TabIndex = 7; 551 | this.tabPage8.Text = "Close"; 552 | this.tabPage8.UseVisualStyleBackColor = true; 553 | // 554 | // button23 555 | // 556 | this.button23.Cursor = System.Windows.Forms.Cursors.Hand; 557 | this.button23.Image = ((System.Drawing.Image)(resources.GetObject("button23.Image"))); 558 | this.button23.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 559 | this.button23.Location = new System.Drawing.Point(295, 92); 560 | this.button23.Name = "button23"; 561 | this.button23.Size = new System.Drawing.Size(75, 43); 562 | this.button23.TabIndex = 0; 563 | this.button23.Text = "Exit"; 564 | this.button23.TextAlign = System.Drawing.ContentAlignment.MiddleRight; 565 | this.button23.UseVisualStyleBackColor = true; 566 | this.button23.Click += new System.EventHandler(this.button23_Click_1); 567 | // 568 | // tabPage9 569 | // 570 | this.tabPage9.Controls.Add(this.label1); 571 | this.tabPage9.Controls.Add(this.textBox8); 572 | this.tabPage9.Controls.Add(this.button24); 573 | this.tabPage9.Location = new System.Drawing.Point(4, 22); 574 | this.tabPage9.Name = "tabPage9"; 575 | this.tabPage9.Padding = new System.Windows.Forms.Padding(3); 576 | this.tabPage9.Size = new System.Drawing.Size(687, 376); 577 | this.tabPage9.TabIndex = 8; 578 | this.tabPage9.Text = "Calc Age"; 579 | this.tabPage9.UseVisualStyleBackColor = true; 580 | // 581 | // label1 582 | // 583 | this.label1.AutoSize = true; 584 | this.label1.Location = new System.Drawing.Point(165, 105); 585 | this.label1.Name = "label1"; 586 | this.label1.Size = new System.Drawing.Size(68, 13); 587 | this.label1.TabIndex = 2; 588 | this.label1.Text = "Year of Birth:"; 589 | // 590 | // textBox8 591 | // 592 | this.textBox8.Location = new System.Drawing.Point(234, 104); 593 | this.textBox8.Name = "textBox8"; 594 | this.textBox8.Size = new System.Drawing.Size(100, 20); 595 | this.textBox8.TabIndex = 1; 596 | this.textBox8.Text = "1981"; 597 | // 598 | // button24 599 | // 600 | this.button24.Location = new System.Drawing.Point(234, 147); 601 | this.button24.Name = "button24"; 602 | this.button24.Size = new System.Drawing.Size(87, 23); 603 | this.button24.TabIndex = 0; 604 | this.button24.Text = "Calculate Age"; 605 | this.button24.UseVisualStyleBackColor = true; 606 | this.button24.Click += new System.EventHandler(this.button24_Click); 607 | // 608 | // tabPage10 609 | // 610 | this.tabPage10.Controls.Add(this.comboBox1); 611 | this.tabPage10.Controls.Add(this.button26); 612 | this.tabPage10.Controls.Add(this.button25); 613 | this.tabPage10.Location = new System.Drawing.Point(4, 22); 614 | this.tabPage10.Name = "tabPage10"; 615 | this.tabPage10.Padding = new System.Windows.Forms.Padding(3); 616 | this.tabPage10.Size = new System.Drawing.Size(687, 376); 617 | this.tabPage10.TabIndex = 9; 618 | this.tabPage10.Text = "For Loop"; 619 | this.tabPage10.UseVisualStyleBackColor = true; 620 | // 621 | // comboBox1 622 | // 623 | this.comboBox1.FormattingEnabled = true; 624 | this.comboBox1.Items.AddRange(new object[] { 625 | "1221"}); 626 | this.comboBox1.Location = new System.Drawing.Point(345, 245); 627 | this.comboBox1.Name = "comboBox1"; 628 | this.comboBox1.Size = new System.Drawing.Size(121, 21); 629 | this.comboBox1.TabIndex = 2; 630 | // 631 | // button26 632 | // 633 | this.button26.Location = new System.Drawing.Point(365, 286); 634 | this.button26.Name = "button26"; 635 | this.button26.Size = new System.Drawing.Size(75, 23); 636 | this.button26.TabIndex = 1; 637 | this.button26.Text = "Add Item"; 638 | this.button26.UseVisualStyleBackColor = true; 639 | this.button26.Click += new System.EventHandler(this.button26_Click); 640 | // 641 | // button25 642 | // 643 | this.button25.Location = new System.Drawing.Point(276, 103); 644 | this.button25.Name = "button25"; 645 | this.button25.Size = new System.Drawing.Size(164, 50); 646 | this.button25.TabIndex = 0; 647 | this.button25.Text = "Show Msg"; 648 | this.button25.UseVisualStyleBackColor = true; 649 | this.button25.Click += new System.EventHandler(this.button25_Click); 650 | // 651 | // tabPage11 652 | // 653 | this.tabPage11.Controls.Add(this.button29); 654 | this.tabPage11.Controls.Add(this.textBox10); 655 | this.tabPage11.Controls.Add(this.label3); 656 | this.tabPage11.Controls.Add(this.button28); 657 | this.tabPage11.Controls.Add(this.textBox9); 658 | this.tabPage11.Controls.Add(this.label2); 659 | this.tabPage11.Controls.Add(this.button27); 660 | this.tabPage11.Location = new System.Drawing.Point(4, 22); 661 | this.tabPage11.Name = "tabPage11"; 662 | this.tabPage11.Padding = new System.Windows.Forms.Padding(3); 663 | this.tabPage11.Size = new System.Drawing.Size(687, 376); 664 | this.tabPage11.TabIndex = 10; 665 | this.tabPage11.Text = "Switch"; 666 | this.tabPage11.UseVisualStyleBackColor = true; 667 | // 668 | // button29 669 | // 670 | this.button29.Location = new System.Drawing.Point(316, 291); 671 | this.button29.Name = "button29"; 672 | this.button29.Size = new System.Drawing.Size(182, 23); 673 | this.button29.TabIndex = 6; 674 | this.button29.Text = "Show Number via Switch Case"; 675 | this.button29.UseVisualStyleBackColor = true; 676 | this.button29.Click += new System.EventHandler(this.button29_Click); 677 | // 678 | // textBox10 679 | // 680 | this.textBox10.Location = new System.Drawing.Point(316, 229); 681 | this.textBox10.Name = "textBox10"; 682 | this.textBox10.Size = new System.Drawing.Size(181, 20); 683 | this.textBox10.TabIndex = 5; 684 | this.textBox10.Text = "March"; 685 | // 686 | // label3 687 | // 688 | this.label3.AutoSize = true; 689 | this.label3.Location = new System.Drawing.Point(236, 232); 690 | this.label3.Name = "label3"; 691 | this.label3.Size = new System.Drawing.Size(71, 13); 692 | this.label3.TabIndex = 4; 693 | this.label3.Text = "Month Name:"; 694 | // 695 | // button28 696 | // 697 | this.button28.Location = new System.Drawing.Point(305, 150); 698 | this.button28.Name = "button28"; 699 | this.button28.Size = new System.Drawing.Size(182, 23); 700 | this.button28.TabIndex = 3; 701 | this.button28.Text = "Show Name via Switch Case"; 702 | this.button28.UseVisualStyleBackColor = true; 703 | this.button28.Click += new System.EventHandler(this.button28_Click); 704 | // 705 | // textBox9 706 | // 707 | this.textBox9.Location = new System.Drawing.Point(306, 75); 708 | this.textBox9.Name = "textBox9"; 709 | this.textBox9.Size = new System.Drawing.Size(181, 20); 710 | this.textBox9.TabIndex = 2; 711 | this.textBox9.Text = "3"; 712 | // 713 | // label2 714 | // 715 | this.label2.AutoSize = true; 716 | this.label2.Location = new System.Drawing.Point(226, 78); 717 | this.label2.Name = "label2"; 718 | this.label2.Size = new System.Drawing.Size(74, 13); 719 | this.label2.TabIndex = 1; 720 | this.label2.Text = "Month Numer:"; 721 | // 722 | // button27 723 | // 724 | this.button27.Location = new System.Drawing.Point(352, 111); 725 | this.button27.Name = "button27"; 726 | this.button27.Size = new System.Drawing.Size(75, 23); 727 | this.button27.TabIndex = 0; 728 | this.button27.Text = "Show Name"; 729 | this.button27.UseVisualStyleBackColor = true; 730 | this.button27.Click += new System.EventHandler(this.button27_Click); 731 | // 732 | // timer2 733 | // 734 | this.timer2.Enabled = true; 735 | this.timer2.Interval = 1; 736 | this.timer2.Tick += new System.EventHandler(this.timer2_Tick); 737 | // 738 | // process1 739 | // 740 | this.process1.StartInfo.Domain = ""; 741 | this.process1.StartInfo.LoadUserProfile = false; 742 | this.process1.StartInfo.Password = null; 743 | this.process1.StartInfo.StandardErrorEncoding = null; 744 | this.process1.StartInfo.StandardOutputEncoding = null; 745 | this.process1.StartInfo.UserName = ""; 746 | this.process1.SynchronizingObject = this; 747 | // 748 | // button30 749 | // 750 | this.button30.Location = new System.Drawing.Point(382, 294); 751 | this.button30.Name = "button30"; 752 | this.button30.Size = new System.Drawing.Size(115, 29); 753 | this.button30.TabIndex = 9; 754 | this.button30.Text = "Boolean "; 755 | this.button30.UseVisualStyleBackColor = true; 756 | this.button30.Click += new System.EventHandler(this.button30_Click); 757 | // 758 | // Form1 759 | // 760 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 761 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 762 | this.ClientSize = new System.Drawing.Size(746, 425); 763 | this.Controls.Add(this.tabControl1); 764 | this.ForeColor = System.Drawing.Color.Black; 765 | this.Name = "Form1"; 766 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 767 | this.Text = "Hello C Sharp Programming I Love You!"; 768 | this.Load += new System.EventHandler(this.Form1_Load); 769 | this.panel1.ResumeLayout(false); 770 | this.panel1.PerformLayout(); 771 | this.tabControl1.ResumeLayout(false); 772 | this.tabPage1.ResumeLayout(false); 773 | this.tabPage2.ResumeLayout(false); 774 | this.tabPage2.PerformLayout(); 775 | this.tabPage3.ResumeLayout(false); 776 | this.tabPage3.PerformLayout(); 777 | this.tabPage4.ResumeLayout(false); 778 | this.tabPage5.ResumeLayout(false); 779 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); 780 | this.tabPage6.ResumeLayout(false); 781 | this.tabPage6.PerformLayout(); 782 | this.tabPage7.ResumeLayout(false); 783 | this.tabPage7.PerformLayout(); 784 | this.tabPage8.ResumeLayout(false); 785 | this.tabPage9.ResumeLayout(false); 786 | this.tabPage9.PerformLayout(); 787 | this.tabPage10.ResumeLayout(false); 788 | this.tabPage11.ResumeLayout(false); 789 | this.tabPage11.PerformLayout(); 790 | this.ResumeLayout(false); 791 | 792 | } 793 | 794 | #endregion 795 | 796 | private System.Windows.Forms.Button button1; 797 | private System.Windows.Forms.Button button2; 798 | private System.Windows.Forms.Button button3; 799 | private System.Windows.Forms.Button button4; 800 | private System.Windows.Forms.TextBox textBox1; 801 | private System.Windows.Forms.Button button5; 802 | private System.Windows.Forms.Button button6; 803 | private System.Windows.Forms.TextBox textBox2; 804 | private System.Windows.Forms.Panel panel1; 805 | private System.Windows.Forms.Button button7; 806 | private System.Windows.Forms.Button button8; 807 | private System.Windows.Forms.Timer timer1; 808 | private System.Windows.Forms.TabControl tabControl1; 809 | private System.Windows.Forms.TabPage tabPage1; 810 | private System.Windows.Forms.TabPage tabPage2; 811 | private System.Windows.Forms.TabPage tabPage3; 812 | private System.Windows.Forms.TextBox textBox3; 813 | private System.Windows.Forms.Timer timer2; 814 | private System.Windows.Forms.Button button10; 815 | private System.Windows.Forms.Button button9; 816 | private System.Windows.Forms.TabPage tabPage4; 817 | private System.Windows.Forms.Button button11; 818 | private System.Windows.Forms.TabPage tabPage5; 819 | private System.Windows.Forms.PictureBox pictureBox1; 820 | private System.Windows.Forms.Button button12; 821 | private System.Windows.Forms.TabPage tabPage6; 822 | private System.Windows.Forms.TextBox textBox4; 823 | private System.Windows.Forms.Button button13; 824 | private System.Windows.Forms.Button button14; 825 | private System.Windows.Forms.TextBox textBox6; 826 | private System.Windows.Forms.TextBox textBox5; 827 | private System.Windows.Forms.Button button15; 828 | private System.Windows.Forms.Button button16; 829 | private System.Windows.Forms.Button button18; 830 | private System.Windows.Forms.Button button17; 831 | private System.Windows.Forms.TabPage tabPage7; 832 | private System.Windows.Forms.Button button19; 833 | private System.Diagnostics.Process process1; 834 | private System.Windows.Forms.Button button20; 835 | private System.Windows.Forms.Button button21; 836 | private System.Windows.Forms.Button button22; 837 | private System.Windows.Forms.TextBox textBox7; 838 | private System.Windows.Forms.TabPage tabPage8; 839 | private System.Windows.Forms.Button button23; 840 | private System.Windows.Forms.TabPage tabPage9; 841 | private System.Windows.Forms.Label label1; 842 | private System.Windows.Forms.TextBox textBox8; 843 | private System.Windows.Forms.Button button24; 844 | private System.Windows.Forms.TabPage tabPage10; 845 | private System.Windows.Forms.Button button25; 846 | private System.Windows.Forms.ComboBox comboBox1; 847 | private System.Windows.Forms.Button button26; 848 | private System.Windows.Forms.TabPage tabPage11; 849 | private System.Windows.Forms.TextBox textBox9; 850 | private System.Windows.Forms.Label label2; 851 | private System.Windows.Forms.Button button27; 852 | private System.Windows.Forms.Button button28; 853 | private System.Windows.Forms.Button button29; 854 | private System.Windows.Forms.TextBox textBox10; 855 | private System.Windows.Forms.Label label3; 856 | private System.Windows.Forms.Button button30; 857 | } 858 | } 859 | 860 | --------------------------------------------------------------------------------