Question
$5.00 Create a C# Windows interface to access a bank account Access database within 3 hours time from NOW.
- From Computer-Science: Object-Oriented-Programming
- Closed, but you can still post tutorials
- Due on Dec. 09, 2011
- Asked on Dec. 09, 2011 at 05:03:40AM
Q:
Create a small BankAccount database with one Account table.The Account table
should have fields for account number, customer last and first names, and current balance.
The type of database (SQL Server or Access) will be determined by your instructor.
Populate the table with 8-10 records. Design a user interface that allows the user to
enter an account number. Retrieve and display the current balance for the account.
Completed run 100% with screenshots - Visual C# 2010 Express
- This tutorial was purchased 1 time and rated No Rating by students like you.
- Posted on Dec. 09, 2011 at 06:12:16AM
Posted by :
A:
Preview: ... cs
3. Find this line:
OleDbConnection con = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=D:\Ba ...
Attachments:
BankAccount.jpg (21K)
BankAccountInfo.zip (65K)
[
BankAccountInfo/BankAccount.accdb
BankAccountInfo/BankAccountInfo/BankAccountInfo.csproj
BankAccountInfo/BankAccountInfo/BankAccountInfo.csproj.user
BankAccountInfo/BankAccountInfo/bin/Debug/BankAccountInfo.exe
BankAccountInfo/BankAccountInfo/bin/Debug/BankAccountInfo.pdb
BankAccountInfo/BankAccountInfo/bin/Debug/BankAccountInfo.vshost.exe
BankAccountInfo/BankAccountInfo/bin/Debug/BankAccountInfo.vshost.exe.manifest
BankAccountInfo/BankAccountInfo/Main.cs
BankAccountInfo/BankAccountInfo/Main.Designer.cs
BankAccountInfo/BankAccountInfo/Main.resx
BankAccountInfo/BankAccountInfo/obj/x86/Debug/BankAccountInfo.csproj.FileListAbsolute.txt
BankAccountInfo/BankAccountInfo/obj/x86/Debug/BankAccountInfo.csproj.ResolveComReference.cache
BankAccountInfo/BankAccountInfo/obj/x86/Debug/BankAccountInfo.exe
BankAccountInfo/BankAccountInfo/obj/x86/Debug/BankAccountInfo.Main.resources
BankAccountInfo/BankAccountInfo/obj/x86/Debug/BankAccountInfo.pdb
BankAccountInfo/BankAccountInfo/obj/x86/Debug/BankAccountInfo.Properties.Resources.resources
BankAccountInfo/BankAccountInfo/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache
BankAccountInfo/BankAccountInfo/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache
BankAccountInfo/BankAccountInfo/obj/x86/Debug/GenerateResource.read.1.tlog
BankAccountInfo/BankAccountInfo/obj/x86/Debug/GenerateResource.write.1.tlog
BankAccountInfo/BankAccountInfo/Program.cs
BankAccountInfo/BankAccountInfo/Properties/AssemblyInfo.cs
BankAccountInfo/BankAccountInfo/Properties/Resources.Designer.cs
BankAccountInfo/BankAccountInfo/Properties/Resources.resx
BankAccountInfo/BankAccountInfo/Properties/Settings.Designer.cs
BankAccountInfo/BankAccountInfo/Properties/Settings.settings
BankAccountInfo/BankAccountInfo.sln
BankAccountInfo/BankAccountInfo.suo
]
The full tutorial is about 77 words long plus attachments.

Attachments:
[
BankAccountInfo/BankAccount.accdb
BankAccountInfo/BankAccountInfo/BankAccountInfo.csproj
BankAccountInfo/BankAccountInfo/BankAccountInfo.csproj.user
BankAccountInfo/BankAccountInfo/bin/Debug/BankAccountInfo.exe
BankAccountInfo/BankAccountInfo/bin/Debug/BankAccountInfo.pdb
BankAccountInfo/BankAccountInfo/bin/Debug/BankAccountInfo.vshost.exe
BankAccountInfo/BankAccountInfo/bin/Debug/BankAccountInfo.vshost.exe.manifest
BankAccountInfo/BankAccountInfo/Main.cs
BankAccountInfo/BankAccountInfo/Main.Designer.cs
BankAccountInfo/BankAccountInfo/Main.resx
BankAccountInfo/BankAccountInfo/obj/x86/Debug/BankAccountInfo.csproj.FileListAbsolute.txt
BankAccountInfo/BankAccountInfo/obj/x86/Debug/BankAccountInfo.csproj.ResolveComReference.cache
BankAccountInfo/BankAccountInfo/obj/x86/Debug/BankAccountInfo.exe
BankAccountInfo/BankAccountInfo/obj/x86/Debug/BankAccountInfo.Main.resources
BankAccountInfo/BankAccountInfo/obj/x86/Debug/BankAccountInfo.pdb
BankAccountInfo/BankAccountInfo/obj/x86/Debug/BankAccountInfo.Properties.Resources.resources
BankAccountInfo/BankAccountInfo/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache
BankAccountInfo/BankAccountInfo/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache
BankAccountInfo/BankAccountInfo/obj/x86/Debug/GenerateResource.read.1.tlog
BankAccountInfo/BankAccountInfo/obj/x86/Debug/GenerateResource.write.1.tlog
BankAccountInfo/BankAccountInfo/Program.cs
BankAccountInfo/BankAccountInfo/Properties/AssemblyInfo.cs
BankAccountInfo/BankAccountInfo/Properties/Resources.Designer.cs
BankAccountInfo/BankAccountInfo/Properties/Resources.resx
BankAccountInfo/BankAccountInfo/Properties/Settings.Designer.cs
BankAccountInfo/BankAccountInfo/Properties/Settings.settings
BankAccountInfo/BankAccountInfo.sln
BankAccountInfo/BankAccountInfo.suo
]
classes of BankAccount,CheckAccount,SavingsAccount
- This tutorial hasn't been purchased yet.
- Posted on Dec. 09, 2011 at 06:25:42AM
A:
Preview: ... + balance + " kroner"; } } public class CheckAccount: BankAccount {
public CheckAccount(string o, double ir): base(o, 0.0M, ir) { }
public CheckAccount(string o, decimal b, double ir): base(o, b, ir) { }
public override void Withdraw (decimal amount) { balance -= amount; if (amount interestRate = -0.10; }
public ...
The full tutorial is about 256 words long .