├── README.md ├── .gitattributes ├── AccessÖrnek3 ├── Properties │ ├── Settings.settings │ ├── licenses.licx │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Program.cs ├── App.config ├── AccessÖrnek3.csproj ├── Form1.cs ├── Form1.resx └── Form1.Designer.cs ├── LICENSE ├── AccessÖrnek3.sln └── .gitignore /README.md: -------------------------------------------------------------------------------- 1 | # Yolcu_Bilet_Otomasyon 2 | c# ile bilet otomasyonu 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /AccessÖrnek3/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AccessÖrnek3/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | DevExpress.XtraEditors.TextEdit, DevExpress.XtraEditors.v19.2, Version=19.2.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a 2 | DevExpress.XtraEditors.ComboBoxEdit, DevExpress.XtraEditors.v19.2, Version=19.2.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a 3 | -------------------------------------------------------------------------------- /AccessÖrnek3/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | using DevExpress.UserSkins; 6 | using DevExpress.Skins; 7 | using DevExpress.LookAndFeel; 8 | 9 | namespace AccessÖrnek3 10 | { 11 | static class Program 12 | { 13 | /// 14 | /// The main entry point for the application. 15 | /// 16 | [STAThread] 17 | static void Main() 18 | { 19 | Application.EnableVisualStyles(); 20 | Application.SetCompatibleTextRenderingDefault(false); 21 | Application.Run(new Form1()); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /AccessÖrnek3/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | System 12 | 13 | 14 | True 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Engincan Danabaş 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /AccessÖrnek3.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30011.22 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessÖrnek3", "AccessÖrnek3\AccessÖrnek3.csproj", "{609187FD-9A08-4AF4-9CBB-EDC97A0B419E}" 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 | {609187FD-9A08-4AF4-9CBB-EDC97A0B419E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {609187FD-9A08-4AF4-9CBB-EDC97A0B419E}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {609187FD-9A08-4AF4-9CBB-EDC97A0B419E}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {609187FD-9A08-4AF4-9CBB-EDC97A0B419E}.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 = {02DB888C-99E1-4B1B-81A3-5710B1248234} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /AccessÖrnek3/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.18034 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 AccessÖrnek3.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /AccessÖrnek3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | // General Information about an assembly is controlled through the following 5 | // set of attributes. Change these attribute values to modify the information 6 | // associated with an assembly. 7 | [assembly: AssemblyTitle("AccessÖrnek3")] 8 | [assembly: AssemblyDescription("")] 9 | [assembly: AssemblyConfiguration("")] 10 | [assembly: AssemblyCompany("")] 11 | [assembly: AssemblyProduct("AccessÖrnek3")] 12 | [assembly: AssemblyCopyright("Copyright © 2020")] 13 | [assembly: AssemblyTrademark("")] 14 | [assembly: AssemblyCulture("")] 15 | // Setting ComVisible to false makes the types in this assembly not visible 16 | // to COM components. If you need to access a type in this assembly from 17 | // COM, set the ComVisible attribute to true on that type. 18 | [assembly: ComVisible(false)] 19 | // The following GUID is for the ID of the typelib if this project is exposed to COM 20 | [assembly: Guid("9006f149-aa49-4b8e-ba69-386d945fa738")] 21 | // Version information for an assembly consists of the following four values: 22 | // 23 | // Major Version 24 | // Minor Version 25 | // Build Number 26 | // Revision 27 | // 28 | // You can specify all the values or you can default the Build and Revision Numbers 29 | // by using the '*' as shown below: 30 | // [assembly: AssemblyVersion("1.0.*")] 31 | [assembly: AssemblyVersion("1.0.0.0")] 32 | [assembly: AssemblyFileVersion("1.0.0.0")] 33 | -------------------------------------------------------------------------------- /AccessÖrnek3/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.18034 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 AccessÖrnek3.Properties 12 | { 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", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// Returns the cached ResourceManager instance used by this class. 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AccessÖrnek3.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// Overrides the current thread's CurrentUICulture property for all 56 | /// resource lookups using this strongly typed resource class. 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /AccessÖrnek3/AccessÖrnek3.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | Debug 4 | x86 5 | 8.0.30703 6 | 2.0 7 | {609187FD-9A08-4AF4-9CBB-EDC97A0B419E} 8 | WinExe 9 | Properties 10 | AccessÖrnek3 11 | AccessÖrnek3 12 | v4.7.2 13 | 512 14 | 15 | 16 | AnyCPU 17 | true 18 | full 19 | false 20 | bin\Debug\ 21 | DEBUG;TRACE 22 | prompt 23 | 4 24 | 25 | 26 | AnyCPU 27 | pdbonly 28 | true 29 | bin\Release\ 30 | TRACE 31 | prompt 32 | 4 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | Form 55 | 56 | 57 | Form1.cs 58 | 59 | 60 | 61 | 62 | Form1.cs 63 | 64 | 65 | 66 | ResXFileCodeGenerator 67 | Resources.Designer.cs 68 | Designer 69 | 70 | 71 | True 72 | Resources.resx 73 | 74 | 75 | 76 | SettingsSingleFileGenerator 77 | Settings.Designer.cs 78 | 79 | 80 | True 81 | Settings.settings 82 | True 83 | 84 | 85 | 86 | 93 | -------------------------------------------------------------------------------- /AccessÖrnek3/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 | [Aa][Rr][Mm]/ 27 | [Aa][Rr][Mm]64/ 28 | bld/ 29 | [Bb]in/ 30 | [Oo]bj/ 31 | [Ll]og/ 32 | [Ll]ogs/ 33 | 34 | # Visual Studio 2015/2017 cache/options directory 35 | .vs/ 36 | # Uncomment if you have tasks that create the project's static files in wwwroot 37 | #wwwroot/ 38 | 39 | # Visual Studio 2017 auto generated files 40 | Generated\ Files/ 41 | 42 | # MSTest test Results 43 | [Tt]est[Rr]esult*/ 44 | [Bb]uild[Ll]og.* 45 | 46 | # NUnit 47 | *.VisualState.xml 48 | TestResult.xml 49 | nunit-*.xml 50 | 51 | # Build Results of an ATL Project 52 | [Dd]ebugPS/ 53 | [Rr]eleasePS/ 54 | dlldata.c 55 | 56 | # Benchmark Results 57 | BenchmarkDotNet.Artifacts/ 58 | 59 | # .NET Core 60 | project.lock.json 61 | project.fragment.lock.json 62 | artifacts/ 63 | 64 | # StyleCop 65 | StyleCopReport.xml 66 | 67 | # Files built by Visual Studio 68 | *_i.c 69 | *_p.c 70 | *_h.h 71 | *.ilk 72 | *.meta 73 | *.obj 74 | *.iobj 75 | *.pch 76 | *.pdb 77 | *.ipdb 78 | *.pgc 79 | *.pgd 80 | *.rsp 81 | *.sbr 82 | *.tlb 83 | *.tli 84 | *.tlh 85 | *.tmp 86 | *.tmp_proj 87 | *_wpftmp.csproj 88 | *.log 89 | *.vspscc 90 | *.vssscc 91 | .builds 92 | *.pidb 93 | *.svclog 94 | *.scc 95 | 96 | # Chutzpah Test files 97 | _Chutzpah* 98 | 99 | # Visual C++ cache files 100 | ipch/ 101 | *.aps 102 | *.ncb 103 | *.opendb 104 | *.opensdf 105 | *.sdf 106 | *.cachefile 107 | *.VC.db 108 | *.VC.VC.opendb 109 | 110 | # Visual Studio profiler 111 | *.psess 112 | *.vsp 113 | *.vspx 114 | *.sap 115 | 116 | # Visual Studio Trace Files 117 | *.e2e 118 | 119 | # TFS 2012 Local Workspace 120 | $tf/ 121 | 122 | # Guidance Automation Toolkit 123 | *.gpState 124 | 125 | # ReSharper is a .NET coding add-in 126 | _ReSharper*/ 127 | *.[Rr]e[Ss]harper 128 | *.DotSettings.user 129 | 130 | # JustCode is a .NET coding add-in 131 | .JustCode 132 | 133 | # TeamCity is a build add-in 134 | _TeamCity* 135 | 136 | # DotCover is a Code Coverage Tool 137 | *.dotCover 138 | 139 | # AxoCover is a Code Coverage Tool 140 | .axoCover/* 141 | !.axoCover/settings.json 142 | 143 | # Visual Studio code coverage results 144 | *.coverage 145 | *.coveragexml 146 | 147 | # NCrunch 148 | _NCrunch_* 149 | .*crunch*.local.xml 150 | nCrunchTemp_* 151 | 152 | # MightyMoose 153 | *.mm.* 154 | AutoTest.Net/ 155 | 156 | # Web workbench (sass) 157 | .sass-cache/ 158 | 159 | # Installshield output folder 160 | [Ee]xpress/ 161 | 162 | # DocProject is a documentation generator add-in 163 | DocProject/buildhelp/ 164 | DocProject/Help/*.HxT 165 | DocProject/Help/*.HxC 166 | DocProject/Help/*.hhc 167 | DocProject/Help/*.hhk 168 | DocProject/Help/*.hhp 169 | DocProject/Help/Html2 170 | DocProject/Help/html 171 | 172 | # Click-Once directory 173 | publish/ 174 | 175 | # Publish Web Output 176 | *.[Pp]ublish.xml 177 | *.azurePubxml 178 | # Note: Comment the next line if you want to checkin your web deploy settings, 179 | # but database connection strings (with potential passwords) will be unencrypted 180 | *.pubxml 181 | *.publishproj 182 | 183 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 184 | # checkin your Azure Web App publish settings, but sensitive information contained 185 | # in these scripts will be unencrypted 186 | PublishScripts/ 187 | 188 | # NuGet Packages 189 | *.nupkg 190 | # NuGet Symbol Packages 191 | *.snupkg 192 | # The packages folder can be ignored because of Package Restore 193 | **/[Pp]ackages/* 194 | # except build/, which is used as an MSBuild target. 195 | !**/[Pp]ackages/build/ 196 | # Uncomment if necessary however generally it will be regenerated when needed 197 | #!**/[Pp]ackages/repositories.config 198 | # NuGet v3's project.json files produces more ignorable files 199 | *.nuget.props 200 | *.nuget.targets 201 | 202 | # Microsoft Azure Build Output 203 | csx/ 204 | *.build.csdef 205 | 206 | # Microsoft Azure Emulator 207 | ecf/ 208 | rcf/ 209 | 210 | # Windows Store app package directories and files 211 | AppPackages/ 212 | BundleArtifacts/ 213 | Package.StoreAssociation.xml 214 | _pkginfo.txt 215 | *.appx 216 | *.appxbundle 217 | *.appxupload 218 | 219 | # Visual Studio cache files 220 | # files ending in .cache can be ignored 221 | *.[Cc]ache 222 | # but keep track of directories ending in .cache 223 | !?*.[Cc]ache/ 224 | 225 | # Others 226 | ClientBin/ 227 | ~$* 228 | *~ 229 | *.dbmdl 230 | *.dbproj.schemaview 231 | *.jfm 232 | *.pfx 233 | *.publishsettings 234 | orleans.codegen.cs 235 | 236 | # Including strong name files can present a security risk 237 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 238 | #*.snk 239 | 240 | # Since there are multiple workflows, uncomment next line to ignore bower_components 241 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 242 | #bower_components/ 243 | 244 | # RIA/Silverlight projects 245 | Generated_Code/ 246 | 247 | # Backup & report files from converting an old project file 248 | # to a newer Visual Studio version. Backup files are not needed, 249 | # because we have git ;-) 250 | _UpgradeReport_Files/ 251 | Backup*/ 252 | UpgradeLog*.XML 253 | UpgradeLog*.htm 254 | ServiceFabricBackup/ 255 | *.rptproj.bak 256 | 257 | # SQL Server files 258 | *.mdf 259 | *.ldf 260 | *.ndf 261 | 262 | # Business Intelligence projects 263 | *.rdl.data 264 | *.bim.layout 265 | *.bim_*.settings 266 | *.rptproj.rsuser 267 | *- [Bb]ackup.rdl 268 | *- [Bb]ackup ([0-9]).rdl 269 | *- [Bb]ackup ([0-9][0-9]).rdl 270 | 271 | # Microsoft Fakes 272 | FakesAssemblies/ 273 | 274 | # GhostDoc plugin setting file 275 | *.GhostDoc.xml 276 | 277 | # Node.js Tools for Visual Studio 278 | .ntvs_analysis.dat 279 | node_modules/ 280 | 281 | # Visual Studio 6 build log 282 | *.plg 283 | 284 | # Visual Studio 6 workspace options file 285 | *.opt 286 | 287 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 288 | *.vbw 289 | 290 | # Visual Studio LightSwitch build output 291 | **/*.HTMLClient/GeneratedArtifacts 292 | **/*.DesktopClient/GeneratedArtifacts 293 | **/*.DesktopClient/ModelManifest.xml 294 | **/*.Server/GeneratedArtifacts 295 | **/*.Server/ModelManifest.xml 296 | _Pvt_Extensions 297 | 298 | # Paket dependency manager 299 | .paket/paket.exe 300 | paket-files/ 301 | 302 | # FAKE - F# Make 303 | .fake/ 304 | 305 | # CodeRush personal settings 306 | .cr/personal 307 | 308 | # Python Tools for Visual Studio (PTVS) 309 | __pycache__/ 310 | *.pyc 311 | 312 | # Cake - Uncomment if you are using it 313 | # tools/** 314 | # !tools/packages.config 315 | 316 | # Tabs Studio 317 | *.tss 318 | 319 | # Telerik's JustMock configuration file 320 | *.jmconfig 321 | 322 | # BizTalk build output 323 | *.btp.cs 324 | *.btm.cs 325 | *.odx.cs 326 | *.xsd.cs 327 | 328 | # OpenCover UI analysis results 329 | OpenCover/ 330 | 331 | # Azure Stream Analytics local run output 332 | ASALocalRun/ 333 | 334 | # MSBuild Binary and Structured Log 335 | *.binlog 336 | 337 | # NVidia Nsight GPU debugger configuration file 338 | *.nvuser 339 | 340 | # MFractors (Xamarin productivity tool) working folder 341 | .mfractor/ 342 | 343 | # Local History for Visual Studio 344 | .localhistory/ 345 | 346 | # BeatPulse healthcheck temp database 347 | healthchecksdb 348 | 349 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 350 | MigrationBackup/ 351 | 352 | # Ionide (cross platform F# VS Code tools) working folder 353 | .ionide/ 354 | -------------------------------------------------------------------------------- /AccessÖrnek3/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.Linq; 7 | using System.Text; 8 | using System.Windows.Forms; 9 | using System.Data.OleDb; 10 | 11 | namespace AccessÖrnek3 12 | { 13 | public partial class Form1 : DevExpress.XtraEditors.XtraForm 14 | { 15 | public Form1() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | OleDbConnection baglanti = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Database3.mdb"); 21 | OleDbCommand komut = new OleDbCommand(); 22 | 23 | private void verilerigoster() 24 | { 25 | listView1.Items.Clear(); 26 | baglanti.Open(); 27 | OleDbCommand komut = new OleDbCommand(); 28 | komut.Connection = baglanti; 29 | komut.CommandText = "Select * From Bilgiler"; 30 | OleDbDataReader oku = komut.ExecuteReader(); 31 | while (oku.Read()) 32 | { 33 | ListViewItem ekle = new ListViewItem(); 34 | ekle.Text = oku["SeferNO"].ToString(); 35 | ekle.SubItems.Add(oku["Tarih"].ToString()); 36 | ekle.SubItems.Add(oku["Saat"].ToString()); 37 | ekle.SubItems.Add(oku["AdSoyad"].ToString()); 38 | ekle.SubItems.Add(oku["Telefon"].ToString()); 39 | ekle.SubItems.Add(oku["KoltukNo"].ToString()); 40 | ekle.SubItems.Add(oku["Ücret"].ToString()); 41 | ekle.SubItems.Add(oku["Cinsiyet"].ToString()); 42 | 43 | listView1.Items.Add(ekle); 44 | 45 | } 46 | baglanti.Close(); 47 | } 48 | private void simpleButton1_Click(object sender, EventArgs e) 49 | { 50 | verilerigoster(); 51 | } 52 | 53 | private void simpleButton2_Click(object sender, EventArgs e) 54 | { 55 | baglanti.Open(); 56 | OleDbCommand komut = new OleDbCommand("insert into Bilgiler (Seferno,Tarih,Saat,AdSoyad,Telefon,Koltukno,Ucret,Cinsiyet) values ('"+textEdit1.Text.ToString()+"','"+textEdit2.Text.ToString()+"','"+textEdit3.Text.ToString()+"','"+textEdit4.Text.ToString()+"','"+textEdit5.Text.ToString()+"','"+textEdit6.Text.ToString()+"','"+textEdit7.Text.ToString()+"','"+comboBoxEdit1.Text.ToString()+"')",baglanti); 57 | komut.ExecuteNonQuery(); 58 | baglanti.Close(); 59 | verilerigoster(); 60 | textEdit1.Text = ""; 61 | textEdit2.Text = ""; 62 | textEdit3.Text = ""; 63 | textEdit4.Text = ""; 64 | textEdit5.Text = ""; 65 | textEdit6.Text = ""; 66 | textEdit7.Text = ""; 67 | comboBoxEdit1.Text = ""; 68 | 69 | } 70 | 71 | private void button0_Click(object sender, EventArgs e) 72 | { 73 | 74 | 75 | } 76 | 77 | private void button1_Click(object sender, EventArgs e) 78 | { 79 | textEdit6.Text = "1"; 80 | button1.Enabled = false; 81 | 82 | 83 | } 84 | 85 | private void button2_Click(object sender, EventArgs e) 86 | { 87 | textEdit6.Text = "2"; 88 | button2.Enabled = false; 89 | } 90 | 91 | private void button3_Click(object sender, EventArgs e) 92 | { 93 | textEdit6.Text = "3"; 94 | button3.Enabled = false; 95 | } 96 | 97 | private void button4_Click(object sender, EventArgs e) 98 | { 99 | textEdit6.Text = "4"; 100 | button4.Enabled = false; 101 | } 102 | 103 | private void button5_Click(object sender, EventArgs e) 104 | { 105 | textEdit6.Text = "5"; 106 | button5.Enabled = false; 107 | } 108 | 109 | private void button6_Click(object sender, EventArgs e) 110 | { 111 | textEdit6.Text = "6"; 112 | button6.Enabled = false; 113 | } 114 | 115 | private void button7_Click(object sender, EventArgs e) 116 | { 117 | textEdit6.Text = "7"; 118 | button7.Enabled = false; 119 | } 120 | 121 | private void button8_Click(object sender, EventArgs e) 122 | { 123 | textEdit6.Text = "8"; 124 | button8.Enabled = false; 125 | } 126 | 127 | private void button9_Click(object sender, EventArgs e) 128 | { 129 | textEdit6.Text = "9"; 130 | button9.Enabled = false; 131 | } 132 | 133 | private void button10_Click(object sender, EventArgs e) 134 | { 135 | textEdit6.Text = "10"; 136 | button10.Enabled = false; 137 | } 138 | 139 | private void button11_Click(object sender, EventArgs e) 140 | { 141 | textEdit6.Text = "11"; 142 | button11.Enabled = false; 143 | } 144 | 145 | private void button12_Click(object sender, EventArgs e) 146 | { 147 | textEdit6.Text = "12"; 148 | button12.Enabled = false; 149 | } 150 | 151 | private void button13_Click(object sender, EventArgs e) 152 | { 153 | textEdit6.Text = "13"; 154 | button13.Enabled = false; 155 | } 156 | 157 | private void button14_Click(object sender, EventArgs e) 158 | { 159 | textEdit6.Text = "14"; 160 | button14.Enabled = false; 161 | } 162 | 163 | private void button15_Click(object sender, EventArgs e) 164 | { 165 | textEdit6.Text = "15"; 166 | button15.Enabled = false; 167 | } 168 | 169 | private void button16_Click(object sender, EventArgs e) 170 | { 171 | textEdit6.Text = "16"; 172 | button16.Enabled = false; 173 | } 174 | 175 | private void button17_Click(object sender, EventArgs e) 176 | { 177 | textEdit6.Text = "17"; 178 | button17.Enabled = false; 179 | } 180 | 181 | private void Form1_Load(object sender, EventArgs e) 182 | { 183 | 184 | } 185 | 186 | private void simpleButton3_Click(object sender, EventArgs e) 187 | { 188 | baglanti.Open(); 189 | komut.Connection = baglanti; 190 | komut.CommandText = "delete from Bilgiler where AdSoyad='" + textEdit4.Text + "'"; 191 | komut.ExecuteNonQuery(); 192 | baglanti.Close(); 193 | verilerigoster(); 194 | textEdit1.Text = ""; 195 | textEdit2.Text = ""; 196 | textEdit3.Text = ""; 197 | textEdit4.Text = ""; 198 | textEdit5.Text = ""; 199 | textEdit6.Text = ""; 200 | textEdit7.Text = ""; 201 | comboBoxEdit1.Text = ""; 202 | } 203 | 204 | private void simpleButton4_Click(object sender, EventArgs e) 205 | { 206 | baglanti.Open(); 207 | komut.Connection = baglanti; 208 | komut.CommandText = ("update Bilgiler set Seferno='" + textEdit1.Text + "',Tarih='" + textEdit2.Text + "',Saat='" + textEdit3.Text + "',Telefon='" + textEdit5.Text + "',Koltukno='" + textEdit6.Text + "',Ucret='" + textEdit7.Text + "',Cinsiyet='" + comboBoxEdit1.Text + "' where AdSoyad='" + textEdit4.Text + "'"); 209 | komut.ExecuteNonQuery(); 210 | baglanti.Close(); 211 | verilerigoster(); 212 | 213 | } 214 | 215 | private void listView1_SelectedIndexChanged(object sender, EventArgs e) 216 | { 217 | 218 | } 219 | } 220 | } 221 | //Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Users\dnbse\OneDrive\Belgeler\Database3.mdb -------------------------------------------------------------------------------- /AccessÖrnek3/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=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 1069, 95 122 | 123 | 124 | 583, 56 125 | 126 | 127 | 713, 56 128 | 129 | 130 | 843, 56 131 | 132 | 133 | 968, 56 134 | 135 | 136 | 1067, 56 137 | 138 | 139 | 1166, 56 140 | 141 | 142 | 1291, 56 143 | 144 | 145 | 1390, 56 146 | 147 | 148 | 1515, 56 149 | 150 | 151 | 17, 95 152 | 153 | 154 | 142, 95 155 | 156 | 157 | 241, 95 158 | 159 | 160 | 366, 95 161 | 162 | 163 | 465, 95 164 | 165 | 166 | 590, 95 167 | 168 | 169 | 689, 95 170 | 171 | 172 | 814, 95 173 | 174 | 175 | 446, 56 176 | 177 | 178 | 17, 17 179 | 180 | 181 | 214, 56 182 | 183 | 184 | 835, 17 185 | 186 | 187 | 149, 17 188 | 189 | 190 | 244, 17 191 | 192 | 193 | 339, 17 194 | 195 | 196 | 434, 17 197 | 198 | 199 | 529, 17 200 | 201 | 202 | 631, 17 203 | 204 | 205 | 733, 17 206 | 207 | 208 | 937, 17 209 | 210 | 211 | 112, 56 212 | 213 | 214 | 1039, 17 215 | 216 | 217 | 1141, 17 218 | 219 | 220 | 1236, 17 221 | 222 | 223 | 1331, 17 224 | 225 | 226 | 1426, 17 227 | 228 | 229 | 1521, 17 230 | 231 | 232 | 17, 56 233 | 234 | 235 | 939, 95 236 | 237 | 238 | 316, 56 239 | 240 | -------------------------------------------------------------------------------- /AccessÖrnek3/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace AccessÖrnek3 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 | this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components); 33 | this.listView1 = new System.Windows.Forms.ListView(); 34 | this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); 35 | this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); 36 | this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); 37 | this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); 38 | this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); 39 | this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); 40 | this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); 41 | this.columnHeader8 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); 42 | this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton(); 43 | this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton(); 44 | this.labelControl1 = new DevExpress.XtraEditors.LabelControl(); 45 | this.textEdit1 = new DevExpress.XtraEditors.TextEdit(); 46 | this.textEdit2 = new DevExpress.XtraEditors.TextEdit(); 47 | this.labelControl2 = new DevExpress.XtraEditors.LabelControl(); 48 | this.textEdit3 = new DevExpress.XtraEditors.TextEdit(); 49 | this.labelControl3 = new DevExpress.XtraEditors.LabelControl(); 50 | this.textEdit4 = new DevExpress.XtraEditors.TextEdit(); 51 | this.labelControl4 = new DevExpress.XtraEditors.LabelControl(); 52 | this.textEdit5 = new DevExpress.XtraEditors.TextEdit(); 53 | this.labelControl5 = new DevExpress.XtraEditors.LabelControl(); 54 | this.textEdit6 = new DevExpress.XtraEditors.TextEdit(); 55 | this.labelControl6 = new DevExpress.XtraEditors.LabelControl(); 56 | this.textEdit7 = new DevExpress.XtraEditors.TextEdit(); 57 | this.labelControl7 = new DevExpress.XtraEditors.LabelControl(); 58 | this.labelControl8 = new DevExpress.XtraEditors.LabelControl(); 59 | this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit(); 60 | this.groupControl1 = new DevExpress.XtraEditors.GroupControl(); 61 | this.button15 = new DevExpress.XtraEditors.SimpleButton(); 62 | this.button12 = new DevExpress.XtraEditors.SimpleButton(); 63 | this.button9 = new DevExpress.XtraEditors.SimpleButton(); 64 | this.button6 = new DevExpress.XtraEditors.SimpleButton(); 65 | this.button3 = new DevExpress.XtraEditors.SimpleButton(); 66 | this.button0 = new DevExpress.XtraEditors.SimpleButton(); 67 | this.button17 = new DevExpress.XtraEditors.SimpleButton(); 68 | this.button16 = new DevExpress.XtraEditors.SimpleButton(); 69 | this.button14 = new DevExpress.XtraEditors.SimpleButton(); 70 | this.button13 = new DevExpress.XtraEditors.SimpleButton(); 71 | this.button11 = new DevExpress.XtraEditors.SimpleButton(); 72 | this.button10 = new DevExpress.XtraEditors.SimpleButton(); 73 | this.button8 = new DevExpress.XtraEditors.SimpleButton(); 74 | this.button7 = new DevExpress.XtraEditors.SimpleButton(); 75 | this.button5 = new DevExpress.XtraEditors.SimpleButton(); 76 | this.button4 = new DevExpress.XtraEditors.SimpleButton(); 77 | this.button2 = new DevExpress.XtraEditors.SimpleButton(); 78 | this.button1 = new DevExpress.XtraEditors.SimpleButton(); 79 | this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton(); 80 | this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton(); 81 | ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit(); 82 | ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit(); 83 | ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).BeginInit(); 84 | ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).BeginInit(); 85 | ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).BeginInit(); 86 | ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).BeginInit(); 87 | ((System.ComponentModel.ISupportInitialize)(this.textEdit7.Properties)).BeginInit(); 88 | ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit(); 89 | ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit(); 90 | this.SuspendLayout(); 91 | // 92 | // defaultLookAndFeel1 93 | // 94 | this.defaultLookAndFeel1.LookAndFeel.SkinName = "Office 2016 Colorful"; 95 | // 96 | // listView1 97 | // 98 | this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { 99 | this.columnHeader1, 100 | this.columnHeader2, 101 | this.columnHeader3, 102 | this.columnHeader4, 103 | this.columnHeader5, 104 | this.columnHeader6, 105 | this.columnHeader7, 106 | this.columnHeader8}); 107 | this.listView1.HideSelection = false; 108 | this.listView1.Location = new System.Drawing.Point(12, 210); 109 | this.listView1.Name = "listView1"; 110 | this.listView1.Size = new System.Drawing.Size(1112, 333); 111 | this.listView1.TabIndex = 0; 112 | this.listView1.UseCompatibleStateImageBehavior = false; 113 | this.listView1.View = System.Windows.Forms.View.Details; 114 | this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged); 115 | // 116 | // columnHeader1 117 | // 118 | this.columnHeader1.Text = "Sefer No"; 119 | this.columnHeader1.Width = 119; 120 | // 121 | // columnHeader2 122 | // 123 | this.columnHeader2.Text = "Tarih"; 124 | this.columnHeader2.Width = 164; 125 | // 126 | // columnHeader3 127 | // 128 | this.columnHeader3.Text = "Saat"; 129 | this.columnHeader3.Width = 106; 130 | // 131 | // columnHeader4 132 | // 133 | this.columnHeader4.Text = "Ad Soyad"; 134 | this.columnHeader4.Width = 221; 135 | // 136 | // columnHeader5 137 | // 138 | this.columnHeader5.Text = "Telefon"; 139 | this.columnHeader5.Width = 124; 140 | // 141 | // columnHeader6 142 | // 143 | this.columnHeader6.Text = "Koltuk No"; 144 | this.columnHeader6.Width = 114; 145 | // 146 | // columnHeader7 147 | // 148 | this.columnHeader7.Text = "Ücret"; 149 | this.columnHeader7.Width = 145; 150 | // 151 | // columnHeader8 152 | // 153 | this.columnHeader8.Text = "Cinsiyet"; 154 | this.columnHeader8.Width = 103; 155 | // 156 | // simpleButton1 157 | // 158 | this.simpleButton1.Location = new System.Drawing.Point(12, 12); 159 | this.simpleButton1.Name = "simpleButton1"; 160 | this.simpleButton1.Size = new System.Drawing.Size(88, 27); 161 | this.simpleButton1.TabIndex = 1; 162 | this.simpleButton1.Text = "Verileri Göster"; 163 | this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click); 164 | // 165 | // simpleButton2 166 | // 167 | this.simpleButton2.Location = new System.Drawing.Point(12, 45); 168 | this.simpleButton2.Name = "simpleButton2"; 169 | this.simpleButton2.Size = new System.Drawing.Size(88, 27); 170 | this.simpleButton2.TabIndex = 2; 171 | this.simpleButton2.Text = "Kaydet"; 172 | this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click); 173 | // 174 | // labelControl1 175 | // 176 | this.labelControl1.Location = new System.Drawing.Point(168, 12); 177 | this.labelControl1.Name = "labelControl1"; 178 | this.labelControl1.Size = new System.Drawing.Size(46, 13); 179 | this.labelControl1.TabIndex = 3; 180 | this.labelControl1.Text = "Sefer No:"; 181 | // 182 | // textEdit1 183 | // 184 | this.textEdit1.Location = new System.Drawing.Point(247, 9); 185 | this.textEdit1.Name = "textEdit1"; 186 | this.textEdit1.TabIndex = 4; 187 | // 188 | // textEdit2 189 | // 190 | this.textEdit2.Location = new System.Drawing.Point(247, 35); 191 | this.textEdit2.Name = "textEdit2"; 192 | this.textEdit2.TabIndex = 6; 193 | // 194 | // labelControl2 195 | // 196 | this.labelControl2.Location = new System.Drawing.Point(168, 38); 197 | this.labelControl2.Name = "labelControl2"; 198 | this.labelControl2.Size = new System.Drawing.Size(28, 13); 199 | this.labelControl2.TabIndex = 5; 200 | this.labelControl2.Text = "Tarih:"; 201 | // 202 | // textEdit3 203 | // 204 | this.textEdit3.Location = new System.Drawing.Point(247, 61); 205 | this.textEdit3.Name = "textEdit3"; 206 | this.textEdit3.TabIndex = 8; 207 | // 208 | // labelControl3 209 | // 210 | this.labelControl3.Location = new System.Drawing.Point(168, 64); 211 | this.labelControl3.Name = "labelControl3"; 212 | this.labelControl3.Size = new System.Drawing.Size(26, 13); 213 | this.labelControl3.TabIndex = 7; 214 | this.labelControl3.Text = "Saat:"; 215 | // 216 | // textEdit4 217 | // 218 | this.textEdit4.Location = new System.Drawing.Point(247, 87); 219 | this.textEdit4.Name = "textEdit4"; 220 | this.textEdit4.TabIndex = 10; 221 | // 222 | // labelControl4 223 | // 224 | this.labelControl4.Location = new System.Drawing.Point(168, 90); 225 | this.labelControl4.Name = "labelControl4"; 226 | this.labelControl4.Size = new System.Drawing.Size(50, 13); 227 | this.labelControl4.TabIndex = 9; 228 | this.labelControl4.Text = "Ad Soyad:"; 229 | // 230 | // textEdit5 231 | // 232 | this.textEdit5.Location = new System.Drawing.Point(462, 9); 233 | this.textEdit5.Name = "textEdit5"; 234 | this.textEdit5.TabIndex = 12; 235 | // 236 | // labelControl5 237 | // 238 | this.labelControl5.Location = new System.Drawing.Point(383, 12); 239 | this.labelControl5.Name = "labelControl5"; 240 | this.labelControl5.Size = new System.Drawing.Size(40, 13); 241 | this.labelControl5.TabIndex = 11; 242 | this.labelControl5.Text = "Telefon:"; 243 | // 244 | // textEdit6 245 | // 246 | this.textEdit6.Enabled = false; 247 | this.textEdit6.Location = new System.Drawing.Point(462, 35); 248 | this.textEdit6.Name = "textEdit6"; 249 | this.textEdit6.TabIndex = 14; 250 | // 251 | // labelControl6 252 | // 253 | this.labelControl6.Location = new System.Drawing.Point(383, 38); 254 | this.labelControl6.Name = "labelControl6"; 255 | this.labelControl6.Size = new System.Drawing.Size(49, 13); 256 | this.labelControl6.TabIndex = 13; 257 | this.labelControl6.Text = "Koltuk No:"; 258 | // 259 | // textEdit7 260 | // 261 | this.textEdit7.Location = new System.Drawing.Point(462, 61); 262 | this.textEdit7.Name = "textEdit7"; 263 | this.textEdit7.TabIndex = 16; 264 | // 265 | // labelControl7 266 | // 267 | this.labelControl7.Location = new System.Drawing.Point(383, 64); 268 | this.labelControl7.Name = "labelControl7"; 269 | this.labelControl7.Size = new System.Drawing.Size(30, 13); 270 | this.labelControl7.TabIndex = 15; 271 | this.labelControl7.Text = "Ücret:"; 272 | // 273 | // labelControl8 274 | // 275 | this.labelControl8.Location = new System.Drawing.Point(383, 90); 276 | this.labelControl8.Name = "labelControl8"; 277 | this.labelControl8.Size = new System.Drawing.Size(42, 13); 278 | this.labelControl8.TabIndex = 17; 279 | this.labelControl8.Text = "Cinsiyet:"; 280 | // 281 | // comboBoxEdit1 282 | // 283 | this.comboBoxEdit1.Location = new System.Drawing.Point(462, 90); 284 | this.comboBoxEdit1.Name = "comboBoxEdit1"; 285 | // 286 | // 287 | // 288 | this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { 289 | new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); 290 | this.comboBoxEdit1.Properties.Items.AddRange(new object[] { 291 | "Bay", 292 | "Bayan"}); 293 | this.comboBoxEdit1.TabIndex = 19; 294 | // 295 | // groupControl1 296 | // 297 | this.groupControl1.Controls.Add(this.button15); 298 | this.groupControl1.Controls.Add(this.button12); 299 | this.groupControl1.Controls.Add(this.button9); 300 | this.groupControl1.Controls.Add(this.button6); 301 | this.groupControl1.Controls.Add(this.button3); 302 | this.groupControl1.Controls.Add(this.button0); 303 | this.groupControl1.Controls.Add(this.button17); 304 | this.groupControl1.Controls.Add(this.button16); 305 | this.groupControl1.Controls.Add(this.button14); 306 | this.groupControl1.Controls.Add(this.button13); 307 | this.groupControl1.Controls.Add(this.button11); 308 | this.groupControl1.Controls.Add(this.button10); 309 | this.groupControl1.Controls.Add(this.button8); 310 | this.groupControl1.Controls.Add(this.button7); 311 | this.groupControl1.Controls.Add(this.button5); 312 | this.groupControl1.Controls.Add(this.button4); 313 | this.groupControl1.Controls.Add(this.button2); 314 | this.groupControl1.Controls.Add(this.button1); 315 | this.groupControl1.Location = new System.Drawing.Point(710, 12); 316 | this.groupControl1.Name = "groupControl1"; 317 | this.groupControl1.Size = new System.Drawing.Size(403, 178); 318 | this.groupControl1.TabIndex = 20; 319 | this.groupControl1.Text = "Yolcu Düzeni"; 320 | // 321 | // button15 322 | // 323 | this.button15.Location = new System.Drawing.Point(356, 139); 324 | this.button15.Name = "button15"; 325 | this.button15.Size = new System.Drawing.Size(39, 25); 326 | this.button15.TabIndex = 17; 327 | this.button15.Text = "15"; 328 | this.button15.Click += new System.EventHandler(this.button15_Click); 329 | // 330 | // button12 331 | // 332 | this.button12.Location = new System.Drawing.Point(301, 139); 333 | this.button12.Name = "button12"; 334 | this.button12.Size = new System.Drawing.Size(39, 25); 335 | this.button12.TabIndex = 16; 336 | this.button12.Text = "12"; 337 | this.button12.Click += new System.EventHandler(this.button12_Click); 338 | // 339 | // button9 340 | // 341 | this.button9.Location = new System.Drawing.Point(245, 139); 342 | this.button9.Name = "button9"; 343 | this.button9.Size = new System.Drawing.Size(39, 25); 344 | this.button9.TabIndex = 15; 345 | this.button9.Text = "9"; 346 | this.button9.Click += new System.EventHandler(this.button9_Click); 347 | // 348 | // button6 349 | // 350 | this.button6.Location = new System.Drawing.Point(192, 139); 351 | this.button6.Name = "button6"; 352 | this.button6.Size = new System.Drawing.Size(39, 25); 353 | this.button6.TabIndex = 14; 354 | this.button6.Text = "6"; 355 | this.button6.Click += new System.EventHandler(this.button6_Click); 356 | // 357 | // button3 358 | // 359 | this.button3.Location = new System.Drawing.Point(137, 139); 360 | this.button3.Name = "button3"; 361 | this.button3.Size = new System.Drawing.Size(39, 25); 362 | this.button3.TabIndex = 13; 363 | this.button3.Text = "3"; 364 | this.button3.Click += new System.EventHandler(this.button3_Click); 365 | // 366 | // button0 367 | // 368 | this.button0.Location = new System.Drawing.Point(38, 139); 369 | this.button0.Name = "button0"; 370 | this.button0.Size = new System.Drawing.Size(39, 25); 371 | this.button0.TabIndex = 12; 372 | this.button0.Text = "0"; 373 | this.button0.Click += new System.EventHandler(this.button0_Click); 374 | // 375 | // button17 376 | // 377 | this.button17.Location = new System.Drawing.Point(356, 35); 378 | this.button17.Name = "button17"; 379 | this.button17.Size = new System.Drawing.Size(39, 25); 380 | this.button17.TabIndex = 11; 381 | this.button17.Text = "17"; 382 | this.button17.Click += new System.EventHandler(this.button17_Click); 383 | // 384 | // button16 385 | // 386 | this.button16.Location = new System.Drawing.Point(356, 66); 387 | this.button16.Name = "button16"; 388 | this.button16.Size = new System.Drawing.Size(39, 25); 389 | this.button16.TabIndex = 10; 390 | this.button16.Text = "16"; 391 | this.button16.Click += new System.EventHandler(this.button16_Click); 392 | // 393 | // button14 394 | // 395 | this.button14.Location = new System.Drawing.Point(301, 35); 396 | this.button14.Name = "button14"; 397 | this.button14.Size = new System.Drawing.Size(39, 25); 398 | this.button14.TabIndex = 9; 399 | this.button14.Text = "14"; 400 | this.button14.Click += new System.EventHandler(this.button14_Click); 401 | // 402 | // button13 403 | // 404 | this.button13.Location = new System.Drawing.Point(301, 66); 405 | this.button13.Name = "button13"; 406 | this.button13.Size = new System.Drawing.Size(39, 25); 407 | this.button13.TabIndex = 8; 408 | this.button13.Text = "13"; 409 | this.button13.Click += new System.EventHandler(this.button13_Click); 410 | // 411 | // button11 412 | // 413 | this.button11.Location = new System.Drawing.Point(245, 35); 414 | this.button11.Name = "button11"; 415 | this.button11.Size = new System.Drawing.Size(39, 25); 416 | this.button11.TabIndex = 7; 417 | this.button11.Text = "11"; 418 | this.button11.Click += new System.EventHandler(this.button11_Click); 419 | // 420 | // button10 421 | // 422 | this.button10.Location = new System.Drawing.Point(245, 66); 423 | this.button10.Name = "button10"; 424 | this.button10.Size = new System.Drawing.Size(39, 25); 425 | this.button10.TabIndex = 6; 426 | this.button10.Text = "10"; 427 | this.button10.Click += new System.EventHandler(this.button10_Click); 428 | // 429 | // button8 430 | // 431 | this.button8.Location = new System.Drawing.Point(192, 35); 432 | this.button8.Name = "button8"; 433 | this.button8.Size = new System.Drawing.Size(39, 25); 434 | this.button8.TabIndex = 5; 435 | this.button8.Text = "8"; 436 | this.button8.Click += new System.EventHandler(this.button8_Click); 437 | // 438 | // button7 439 | // 440 | this.button7.Location = new System.Drawing.Point(192, 66); 441 | this.button7.Name = "button7"; 442 | this.button7.Size = new System.Drawing.Size(39, 25); 443 | this.button7.TabIndex = 4; 444 | this.button7.Text = "7"; 445 | this.button7.Click += new System.EventHandler(this.button7_Click); 446 | // 447 | // button5 448 | // 449 | this.button5.Location = new System.Drawing.Point(137, 35); 450 | this.button5.Name = "button5"; 451 | this.button5.Size = new System.Drawing.Size(39, 25); 452 | this.button5.TabIndex = 3; 453 | this.button5.Text = "5"; 454 | this.button5.Click += new System.EventHandler(this.button5_Click); 455 | // 456 | // button4 457 | // 458 | this.button4.Location = new System.Drawing.Point(137, 66); 459 | this.button4.Name = "button4"; 460 | this.button4.Size = new System.Drawing.Size(39, 25); 461 | this.button4.TabIndex = 2; 462 | this.button4.Text = "4"; 463 | this.button4.Click += new System.EventHandler(this.button4_Click); 464 | // 465 | // button2 466 | // 467 | this.button2.Location = new System.Drawing.Point(81, 35); 468 | this.button2.Name = "button2"; 469 | this.button2.Size = new System.Drawing.Size(39, 25); 470 | this.button2.TabIndex = 1; 471 | this.button2.Text = "2"; 472 | this.button2.Click += new System.EventHandler(this.button2_Click); 473 | // 474 | // button1 475 | // 476 | this.button1.Location = new System.Drawing.Point(81, 66); 477 | this.button1.Name = "button1"; 478 | this.button1.Size = new System.Drawing.Size(39, 25); 479 | this.button1.TabIndex = 0; 480 | this.button1.Text = "1"; 481 | this.button1.Click += new System.EventHandler(this.button1_Click); 482 | // 483 | // simpleButton3 484 | // 485 | this.simpleButton3.Location = new System.Drawing.Point(12, 78); 486 | this.simpleButton3.Name = "simpleButton3"; 487 | this.simpleButton3.Size = new System.Drawing.Size(88, 27); 488 | this.simpleButton3.TabIndex = 21; 489 | this.simpleButton3.Text = "Sil"; 490 | this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click); 491 | // 492 | // simpleButton4 493 | // 494 | this.simpleButton4.Location = new System.Drawing.Point(12, 111); 495 | this.simpleButton4.Name = "simpleButton4"; 496 | this.simpleButton4.Size = new System.Drawing.Size(88, 27); 497 | this.simpleButton4.TabIndex = 22; 498 | this.simpleButton4.Text = "Güncelle"; 499 | this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click); 500 | // 501 | // Form1 502 | // 503 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 504 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 505 | this.ClientSize = new System.Drawing.Size(1136, 555); 506 | this.Controls.Add(this.simpleButton4); 507 | this.Controls.Add(this.simpleButton3); 508 | this.Controls.Add(this.groupControl1); 509 | this.Controls.Add(this.comboBoxEdit1); 510 | this.Controls.Add(this.labelControl8); 511 | this.Controls.Add(this.textEdit7); 512 | this.Controls.Add(this.labelControl7); 513 | this.Controls.Add(this.textEdit6); 514 | this.Controls.Add(this.labelControl6); 515 | this.Controls.Add(this.textEdit5); 516 | this.Controls.Add(this.labelControl5); 517 | this.Controls.Add(this.textEdit4); 518 | this.Controls.Add(this.labelControl4); 519 | this.Controls.Add(this.textEdit3); 520 | this.Controls.Add(this.labelControl3); 521 | this.Controls.Add(this.textEdit2); 522 | this.Controls.Add(this.labelControl2); 523 | this.Controls.Add(this.textEdit1); 524 | this.Controls.Add(this.labelControl1); 525 | this.Controls.Add(this.simpleButton2); 526 | this.Controls.Add(this.simpleButton1); 527 | this.Controls.Add(this.listView1); 528 | this.Name = "Form1"; 529 | this.Text = "Access3"; 530 | this.Load += new System.EventHandler(this.Form1_Load); 531 | ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit(); 532 | ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit(); 533 | ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).EndInit(); 534 | ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).EndInit(); 535 | ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).EndInit(); 536 | ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).EndInit(); 537 | ((System.ComponentModel.ISupportInitialize)(this.textEdit7.Properties)).EndInit(); 538 | ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit(); 539 | ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit(); 540 | this.ResumeLayout(false); 541 | this.PerformLayout(); 542 | 543 | } 544 | 545 | #endregion 546 | 547 | private DevExpress.LookAndFeel.DefaultLookAndFeel defaultLookAndFeel1; 548 | private System.Windows.Forms.ListView listView1; 549 | private System.Windows.Forms.ColumnHeader columnHeader1; 550 | private System.Windows.Forms.ColumnHeader columnHeader2; 551 | private System.Windows.Forms.ColumnHeader columnHeader3; 552 | private System.Windows.Forms.ColumnHeader columnHeader4; 553 | private System.Windows.Forms.ColumnHeader columnHeader5; 554 | private System.Windows.Forms.ColumnHeader columnHeader6; 555 | private System.Windows.Forms.ColumnHeader columnHeader7; 556 | private System.Windows.Forms.ColumnHeader columnHeader8; 557 | private DevExpress.XtraEditors.SimpleButton simpleButton1; 558 | private DevExpress.XtraEditors.SimpleButton simpleButton2; 559 | private DevExpress.XtraEditors.LabelControl labelControl1; 560 | private DevExpress.XtraEditors.TextEdit textEdit1; 561 | private DevExpress.XtraEditors.TextEdit textEdit2; 562 | private DevExpress.XtraEditors.LabelControl labelControl2; 563 | private DevExpress.XtraEditors.TextEdit textEdit3; 564 | private DevExpress.XtraEditors.LabelControl labelControl3; 565 | private DevExpress.XtraEditors.TextEdit textEdit4; 566 | private DevExpress.XtraEditors.LabelControl labelControl4; 567 | private DevExpress.XtraEditors.TextEdit textEdit5; 568 | private DevExpress.XtraEditors.LabelControl labelControl5; 569 | private DevExpress.XtraEditors.TextEdit textEdit6; 570 | private DevExpress.XtraEditors.LabelControl labelControl6; 571 | private DevExpress.XtraEditors.TextEdit textEdit7; 572 | private DevExpress.XtraEditors.LabelControl labelControl7; 573 | private DevExpress.XtraEditors.LabelControl labelControl8; 574 | private DevExpress.XtraEditors.ComboBoxEdit comboBoxEdit1; 575 | private DevExpress.XtraEditors.GroupControl groupControl1; 576 | private DevExpress.XtraEditors.SimpleButton button15; 577 | private DevExpress.XtraEditors.SimpleButton button12; 578 | private DevExpress.XtraEditors.SimpleButton button9; 579 | private DevExpress.XtraEditors.SimpleButton button6; 580 | private DevExpress.XtraEditors.SimpleButton button3; 581 | private DevExpress.XtraEditors.SimpleButton button0; 582 | private DevExpress.XtraEditors.SimpleButton button17; 583 | private DevExpress.XtraEditors.SimpleButton button16; 584 | private DevExpress.XtraEditors.SimpleButton button14; 585 | private DevExpress.XtraEditors.SimpleButton button13; 586 | private DevExpress.XtraEditors.SimpleButton button11; 587 | private DevExpress.XtraEditors.SimpleButton button10; 588 | private DevExpress.XtraEditors.SimpleButton button8; 589 | private DevExpress.XtraEditors.SimpleButton button7; 590 | private DevExpress.XtraEditors.SimpleButton button5; 591 | private DevExpress.XtraEditors.SimpleButton button4; 592 | private DevExpress.XtraEditors.SimpleButton button2; 593 | private DevExpress.XtraEditors.SimpleButton button1; 594 | private DevExpress.XtraEditors.SimpleButton simpleButton3; 595 | private DevExpress.XtraEditors.SimpleButton simpleButton4; 596 | } 597 | } 598 | 599 | --------------------------------------------------------------------------------