This question's due date has already passed. You may post a tutorial, but there's no guarantee that the original asker will purchase the tutorial. But other people might!

Question

$5.00 Create a C# Windows interface to access a bank account Access database within 3 hours time from NOW.

Asked by :
gummybear2011
gummybear2011 Not confirmed
Rating :No Rating
Questions Asked: 10
Tutorials Posted: 0
 
 
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.
 

Available Tutorials to this Question
 
$10.00
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 :
diamondsteven
diamondsteven Not confirmed
Rating (87):A-
Questions Asked: 0
Tutorials Posted: 374,
Earned: $1,600.74
 
A:
Preview: ... cs 3. Find this line: OleDbConnection con = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=D:\Ba ...

The full tutorial is about 77 words long plus attachments.

attachmentlogo

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
 ]

 
$1.00
classes of BankAccount,CheckAccount,SavingsAccount
  • This tutorial hasn't been purchased yet.
  • Posted on Dec. 09, 2011 at 06:25:42AM
Posted by :
naralogan
naralogan
Rating (12):C-
Questions Asked: 14
Tutorials Posted: 31,
Earned: $106.78
 
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 .