Program For Class That Acts Like An Accounting Ledger Or Checkbook Organizer

Jul 3, 2010

I am writing a program for class that acts like an accounting ledger or checkbook organizer. There are many things that I can't figure out how to make happen.

First- I need a running total of credits and debits at the bottom of the form. I can't figure out how to get that to display. I tried it, but it just locks up the program.

Second- I put in an error handler for non-numeric input and that works but when I want to clear all fields with the clear button it errors each field for not having an entry. I tried 6 ways to Sunday to accept (""), but it messes up other things.

Third- I want 5 transactions to be visible with the ability to have 7. I have hidden the last two and want them to display when the new transaction button is clicked, but can't find anything in my book that would allow that to happen.

Public Class

'Declarations
Dim Tran1, Tran2, Tran3, Tran4, Tran5, Tran6, Tran7, TotalCred, TotalDeb As Double
Dim NewBal1, NewBal2, NewBal3, NewBal4, NewBal5, NewBal6, NewBal7, BegngBal As Integer

[CODE]................................

View 6 Replies


ADVERTISEMENT

Building The Next Step To A Checkbook Organizer?

Nov 7, 2010

Extended Checkbook Organizer ïBatch Mode Expand the Checkbook Organizer from Assignment #2 to include a batch mode which allows the user to enter transactions by loading from a USER SELECTED FILE. The format of this file should be as follows:

Date|Trans/Check Number|Amount|Type|Description Format Rules:

1. The delimiters MUST be the pipe ( | ) symbol.

2. The Type Code for Transactions MUST be DR for Debit or CR for Credit.

3. Date Format: MM/DD/YY or MM/DD/YYYY

File Example:
01/23/2010|2385|125.76|DR|Purchased groceries at Food Mart
02/05/2010|1050|1578.98|CR|Automated Payroll Deposit

Your application should allow the user to select a transaction file (Hint: An Open File Dialog will be needed). The application should parse the file and load the data into the Transaction Register maintaining the ongoing account, credit and debit balances as before.
Include the same total tracking and navigation from Assignment #2. Assignment Requirements:

1. Windows application that includes all requirements from Assignment #2

2.In addition to the manual transaction entry system from Assignment #2, include a batch loader process that allows the user to select a transaction file (see format above). This transaction file will be parsed and processed into the Transaction Register maintaining all ongoing balances.

3. The Transaction Detail viewing requirement will be carried over from Assignment #2.

4. Navigation will be the same as Assignment #2

5. Provide an Application Design Flow Chart along with a Version Control Section (may be included in the code comments or in a separate document)

6.Provide detailed comments in the code explaining the process and methodology that you use.
Assignment Rubric:

RequirementSectionPoint Value
User Interface Design
� Data Entry for Starting Balance (should only allow this once unless Clear is clicked) AND manual transaction entry

[code].....

View 3 Replies

How To Add Doubleclick Event In Checkbook Organizer

May 9, 2012

This is my first post on the forum here. And I have a question about checkbook organizer. here what I done so far.

Public Class Form1
Dim Transactions As New ArrayList()
Private Sub Form1_Load(ByVal sender As Syst

[code].....

View 1 Replies

.net Class Libraries For Accounting And Payrolls?

Mar 22, 2012

im searching for .net class libraries that could help me in accounting and calculating payrolls and other financial processes is there any libraries like that?

View 2 Replies

General Ledger Style Listview?

Jan 12, 2010

I am using VB express 2008.How I can create a General Ledger Style Listview with alternating colourd rows.

View 4 Replies

Best Way To Design Accounting Accounts

Jun 14, 2012

What a best way to design accounting accounts tables in database and link to vb.net.is it design one table for the accounts names and balances and another table for the journal

View 2 Replies

Pharmacies Accounting Project With .net?

Oct 10, 2011

Now I write what I Mvndm these two pages can help. The project is as follows. Pharmacy system Drug Name
Production Date Expiration date Time remaining until expiration drug Drug prices The number of drugs that are bought in stores What is described above in connection with a project that I want what I do?

View 3 Replies

[2005] Creating An Organizer?

Mar 6, 2009

I've came up with a clever little idea of mine to make an organizer for myself for my classes. I don't really feel like explaining how exactly it works so I've included a picture, you should get the idea.I've added random labels of random classes as a test. When the add button is clicked, combobox1 and textbox1 become visible. In the scenario that "English" is selected from the combobox, whatever is entered into the textbox will go directly into listbox1 since listbox1 is right under English. Here's the code.

1 Dim text As String
2 text = TextBox1.Text
3 ComboBox1.Visible = True
4 TextBox1.Visible = True

[code]....

View 15 Replies

Accounting Package - How To Copy Database

Jan 13, 2009

I am developing an accounting package. I am using vb.net 2008 and access. I have a database named blank.mdb in the current folder which is the basic data needed. Now what I want is whenever a user creates a new company. I want this blank.mdb to be copied as Company?.mdb ? represents 1 or 2 or 10 as the case may b ...standing for the no. of company. E.g. if there r already 10 companies created then the blank.mdb should b copied in the current folder as Company11.mdb. How to copy the database. I have a few basic data in the blank.mdb and want that to be copied too.

View 3 Replies

File For My Accounting Software Project?

Jun 22, 2010

File for my accounting software project. Is it possible with the help of 'HTML help workshop' software? If yes, then explain me how to do it?

View 2 Replies

How To Make MDIParent Form Acts Normally

May 24, 2012

I`m developing a desktop application using Visual Studio 2005 and a vb.net code.I`m using one MDIParent form 'frmMDI' and about 20 Child Forms. In the frmMDI there is a MainMenuStrip that contains 20 ToolStripMenuItems each one used to load a corresponding child form through this [code]So, that code is responsible to load a child form. Now what I`m facing after the loading of the child form is that the behavior of the controls of that child form is not so normal. you can`t set the cursor to the end of the text in a textbox.

View 17 Replies

MDI Container That Acts Like Windows Desktop?

Oct 23, 2011

I'm creating a program that requires an MDI Parent Container to keep its Children inside of the client area. If you didnt understand id like a MDI to have all the forms it creates to stay inside of the actual MDI.

I've said like the windows desktop becuase thats what the windows desktop is. It's basically a realy advanced MDI container.If you know any methods on how to do this as this may be used a lot by future programmers and it would be great to just link this to the same type of question.

View 7 Replies

Window That Acts Like MDI Child Over Chart Control

Jul 2, 2011

I need a tool window to act like a mdi child over a chart control. I can't use mdi because I'm using the krypton control ribbon component and they pretty much use all the mdi code in the background. Anything I do mucks it up. So I need a window to float over another control and be bounded by the real estate of that control.

View 2 Replies

Process.Start Acts Differently With Windows XP Or Vista?

Aug 12, 2009

I have a small VB. app in VS2008 that opens a windows folder in maximized view.I am using the following code:

Dim startInfo As New ProcessStartInfo("explorer.exe")
startInfo.WindowStyle = ProcessWindowStyle.Maximized
startInfo.Arguments = "C:\Program Files\123 Systems\ExcelFolders\TechTimeSheet"
Process.Start(startInfo)

When using my app with windows xp it works well. It opens a single folder as if going through the "my computer" to open it. Attached is a screen shot "folder" to show the desired way.However when using the same code with Vista it opens my folder as if I right clicked on the start menu and selected "explore", also a screen shot named "explore" is attached showing what I do NOT want. What should I change to get both vista and XP to work the same, that is opening a single folder.

View 1 Replies

Client Object Model: Uploading File To Drop Off Library Doesn't Apply Content Organizer Rules

Jun 29, 2011

I am currently developing a service using the SharePoint 2010 Client Object Model to programmatically upload Excel worksheets to a Drop Off Library and then set the properties on the file. This process is working well. However, the Drop Off Library is governed by Content Organizer Rules that aren't being applied to the uploaded file. I have examined every property I thought I could have missed: [code] What's most frustrating is that if I edit the document properties using the Web UI and check it back in without making any changes, the file is moved to its final location. What might I have overlooked that is preventing Content Organizer Rules from being applied to newly uploaded files when using SP2010 COM?

View 2 Replies

Call Method Base Class In Program Passing Sub Class Objects?

Apr 22, 2012

Base class has one field to hold numeric balance value. With 2 methods that accept arguments for adding and subtracting the new input calculating new balance. Sub class has four fields dates, transaction, memo and amount.I have a deposit form, and withdraw form. Each time one transaction is entered it creates an object with sub class fields, then adds to the account collection. My problem is not understanding how to call the deposit/withdraw method and pass the current transaction amount back to the base class to alculate the new balance. Does anyone have any links to information/tutorials on how to perform something like this? As you can see with my code I have tried various different approaches without any success.

[Code]...

View 5 Replies

Create Objects Of C# Class From Program Class In DNN?

Feb 23, 2011

Can we create objects of a C# class from a VB.NET class and vice versa?

View 2 Replies

Program Files Are All Mixed Up - In Class Saved Program In With Load Of Other Test Programs For The Same Assignment

Jan 8, 2010

In class i saved my program in with load of other test programs for the same assignment and got everything mixed up i finally figured out what was what and loaded the program in Visual Basic. Now my program doesn't recognize one of my forms when i try to access the design view of it. I hit run for the hell of it and the program runs with errors of course but the form1 "the missing one" shows up with all the buttons etc and i can use it.

Heres the link to the files. [URL]

View 3 Replies

Write A Program For VB Class That Consists Of A Resistance Checker Program?

Sep 20, 2010

i have to write a program for my VB class that consists of a resistance checker program. I've searched like a madman to help me through this and I have found nothing >. The program consists of 2 combo boxes, the first one is the nominal resistance drop down list of the numbers :100, 150, 220, 330, 470, 680, 820 and 1000. The second list is of the tolerance numbers; +/- 0.4%, +/-0.6% and +/-0.8%. Now what i want to do is select a number from the first combo box and select the tolerance level of the second combo box and i input the resistor of said value into the text box. when i click the check resistor button it should display a message saying if the resistor is in or out of tolerance. For now I have the form all laid out and the values inputted into both combo boxes and i can go to run the program i am able to select said values. Now my problem is trying to get the right code so that i can check the resistors value.

View 2 Replies

VS 2008 League Organizer Project - When I Save(Save Button) The Text File Saves All The Text Wrong

Oct 7, 2009

Its a League Organizer, basicly ive started it off with 16 teams and end up with 1(winner) 16 box's on the far left, then 8, then 4, then 2, then 1. the 16 box's have "Team 1" "Team 2" etc... ive put a new/clear/open/save button in that order.

BUT this is my problem..when i save(Save Button) the text file saves all the text wrong it ends up like this...Team 1Team 2Team 3Team 4 Etc...

But i want it to save like this

Team 1
Team 2
Team 3
Team 4
Etc...

The code is...

Dim Save As New SaveFileDialog
Save.Filter = "Text Files (*.txt)|*.txt|ALL FILES (*.*)|*.*"

[CODE]...

View 3 Replies

Make "Enter" Key Acts Like "Tab" Key In Datagrid View?

Feb 22, 2011

For example I have 5 columns in the datagrid and I'm currently in the first cell of the first row. When I press Enter key, I want the cursor to go to the next column of the same row but if it is the last column I want the cursor go the the first column of the next row.[code]...

View 5 Replies

Get Class Of A DIV Through Program?

Aug 11, 2009

I'm working on a web app that uses javascript to change the classes of 3 div's depending on what buttons the user has pressed.

Is it possible to get the value of the current class of a div?[code]...

View 2 Replies

Use My Class Within Another In Program?

Jul 8, 2011

Yes, this is a really bad question, probably one that any half decent VB.NET programmer should know. Well, I am new to VB.NET

I have created a windows forms class along side another one, and its code is this[code]...

View 4 Replies

Use Program Class In C# Project?

Dec 11, 2011

I would like to use the below VB.Net class in my C# Project. [code]...

View 4 Replies

Write A Program That Uses A Class?

May 2, 2009

I have to write a program that uses a class...and I've got no idea what it is or how to do that.My program is a simple interface that adds up the users selections and quantifies them into a membership fee.

Code:
Public Class Form1
Const FamMem As Integer = 90
Const SigMem As Integer = 50

[code]....

View 5 Replies

Access List From Another Class Program?

Jan 4, 2012

I have these two classes class FootballAdmin makes use of the import Football from the projects references, what i need to do is in class MainForm is for the updateView method to access the list held by FootballAdmin and display it in the teamSheetListBox, i am unsure how access the list as indicated by ?[cod]e...

View 1 Replies

Add Button And TextBox In Program Run By Class?

May 16, 2011

I want ask a question about add Button and TextBox in Class, and call it in main form.

detail request is:

I want create a Class(add_controlset_class), this Class creat a new button and new textbox.

When main form is loaded, I will call this Class twice, then input each location point.

Then when program running, display two button and two textBox in screen.

Public Class add_controlset_class
'in this area, create a button and a textbox
'But button and textbox location points as input parameter
End Class

[Code]....

View 15 Replies

Call Java Class In Program?

Jun 21, 2010

In one of my vb.net 2008 application i have called a java class file through batch process which creates txt file and jar file and put in app path folder.[code]...

View 1 Replies

Make An Agenda Program For The Class?

Sep 27, 2010

ng to make a nice agenda program for my class.i made my form and i think it would be best if i can put the dates and the things for that date in a excel sheet.but i realy don't know how to read and write things in excel.(the date needs to come in collum A and the item for that date in collum B)can any one tell me how to make my program able to read (and show ) me the things in the sheet and how to make it posible to let me write things in the sheet using only my program.and can this be done whitout excel needing t open ( or at least be visible).

View 3 Replies

Can't IronPython Find Program Class Library DLL

Oct 19, 2010

I created a Class Library project in Visual Studio 2010 and created added the following VB.Net class[code]...

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved