Week: 1 Update By: Nick Arneson

Slides:



Advertisements
Similar presentations
JQuery MessageBoard. Lets use jQuery and AJAX in combination with a database to update and retrieve information without refreshing the page. Here we will.
Advertisements

With Folder HelpDesk for Outlook, support centres and other helpdesks can work efficiently with support cases inside Microsoft Outlook. The support tickets.
KompoZer. This is what KompoZer will look like with a blank document open. As you can see, there are a lot of icons for beginning users. But don't be.
Welcome and Orientation Find dates an easy way… Click on one carat-go back one month, click on two carats-go back one year. Hold on box & slide.
A more efficient you. Introducing EmployerAccess Anthem’s easy-to-use online benefits management system Anthem Blue Cross is the trade name of Blue Cross.
Creating and Editing Reports. Starter – Guess the Words… Reports R e p o r t Label.
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
Catlyn Colson. Recap of Previously Completed Work Previously I had done the following: Built the Database, started basic layout of the webpage, connected.
Unit 1 – Improving Productivity Tyler Dunn Instructions ~ 100 words per box.
Cycling Training Tools Ethan Kopacz CS 470. System includes A training schedule generator A training log book A few small tools that aid in training or.
Archdiocese of Baltimore archbalt.powerschool.com/public
PPS/OPTRS Departmental Roles Structure System Presented by Payroll Services.
Website Development with Dreamweaver
Microsoft ® Office Access ® 2007 Training Datasheets II: Sum, sort, filter, and find your data ICT Staff Development presents:
Welcome and Orientation Find dates an easy way… Click on one carat-go back one month, click on two carats-go back one year. Hold on box & slide.
Microsoft Project – Tutorial 4 Leveling Overallocations In some cases, a resource could be assigned more work in a given time period than it has working.
S9k Production Floor System Ingredient Inventory Production Inventory Production Dashboard.
INFO1408 Database Design Concepts Week 15: Introduction to Database Management Systems.
Grade Book Database Presentation Jeanne Winstead CINS 137.
Gradebook Setup in Campus Instruction Grades
COPA Rollover How to successfully complete the COPA School Year End Rollover from to
PowerTeacher Gradebook PTG and PowerTeacher Pro PT Pro A Comparison The following slides will give you an overview of the changes that will occur moving.
CMPT 201 Computer Science II for Engineers
Databases: What they are and how they work
2004 Treatments & Prescriptions
Using Wikis to Facilitate Collaborative Research Projects
Copyright © 2016 Pearson Canada Inc.
Standard Operating Procedure
A more efficient you. Introducing EmployerAccess
CIS C Project Presentation 4
Getting Started Guide.
Parts.cat.com Client training 2016.
LCGAA nightlies infrastructure
Q TRACKER Tracking on the job training hours for Apprentices.
Creating a Baseline Grid
Online Software “To Do” List
Lesson 10: Building an App: Color Sleuth
New Mexico State University Erin Kelly, Computer Engineering
Printer Admin Print Job Manager
Using Office 365 in the Classroom
Archdiocese of Baltimore archbalt.powerschool.com/public
Tutorial Introduction to support.ebsco.com.
Version P055 of VA-ONCE Installation Date 07/28/18
PPS/OPTRS Departmental Roles Structure System
Getting Started and working with Pearson myautomotivelab
Introducing the New and Improved Staff Web Access
ENGINEERING MANAGEMENT (GE 404)
MIT GSL 2018 week 3 | thursday Meteor and App Ideation.
Unit# 6: ICT Applications
Education Specialist/ Program Animal Keeper's Day in ZIMS
Day Services: Changes to the Changes
ENGINEERING MANAGEMENT (GE 404)
Maryland Online IEP System Instructional Series - PD Activity #5
for Instructors and Roster Contacts
Interactive Medium-Fi Prototype
Background We would like to combine existing User guide and Admin guide currently in PDF form into a single HTML master site This master HTML site will.
Revision Strategy Cornell Method On How To Take Notes
Easy-Speak How easy is it?
NAVIGATING THE MINEFIELD
Step 1 Click on the link of the Course “Empowering Self” shared with you on . Once done, you will see this page. We are also putting it here:
Computer Science Kiosk
An Introduction to Designing and Executing Workflows with Taverna
End of day Calculator and special order parts tracking
End of day Calculator and special order parts tracking
Tutorial Introduction to help.ebsco.com.
CIS248 – Advanced App Development Week: 2 Update By: Nick Arneson
End of day Calculator and special order parts tracking
End of day Calculator and special order parts tracking
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
This is a template for a presentation that you can use to introduce your team to Harvest. You can customize the content of the slides. You’ll want to pay.
Presentation transcript:

Week: 1 Update By: Nick Arneson End of Day calculator Week: 1 Update By: Nick Arneson

About myself Name preference: Nick Age: 32 Background: CCNA, which is now the CCENT (Cisco Networking certs) History: Self taught HTML (with some CSS/JS/PHP) in 1999/2000 High School web design class required DreamWeaver, I used Notepad. High School is when I learned and could have taken the CCNA exam, but didn’t. Spent many years being prepared, just never took the exam.

Capstone project/ Goals End of Day Calculator w/ integrated special parts ordering sheet Calculate the drawer/ CC/ Checks/ Deposit in an easy manor Show how much to remove from till to keep max amount Tells you if you are long/short or flush Incorporate DB for handling tracking of special ordered parts Restricted access per user to some features of tracking parts

Tools being used Language: C# Software: Visual Studio Community 2017 (Want to try 2019) Database: SQL Sever Express Edition 2017 (Not used yet) Template: Current paper sheet of how calculations are done

Side notes: EoD calculation is easy DB factoring will be hard Right side will be reserved for check input/display This WILL take some time. DB factoring will be hard Will spent most of the remaining class period working on DB functionality

Main screen Second layout design Still need to do some work on it Top blank area will be tabs to select which part of the app will be shown. Right blank section (not fully shown) will display a record of the check amounts entered. Date will hopefully allow me to print the date on paper.

Calculation Enter the quantity of each bill or coin Bankroll is rolls of change Other amount for special bills/change ($2 bill, 0.50c piece, etc.) Displays full total of till, checks, CC, and deposit. Shows how much from the till should be removed to meet $500 max.

Some Code Const to a never changing value $500 max in till Easy vars are used to add the left side vars in with a few right side vars Split the vars into left / right side so I didn’t have a list of 15+ vars

Logic? Simple logic for adding totals Can see why I made “easy vars” As ckAmout/ccAmout/saeDeposit are the only “rightSide” vars that in that group Others are actually calculated in till section as they stay in the till.

DB Relationships None as of yet! Wont be implemented until after week 2 minimum!

Progress Messed up which class started first Gave me some time to start early.  Other class got in the way.  Changelog is done with total time throughout the project so far.

Changelog Don’t really need this slide… Wanted a little more detail for tracking things Besides mental “progress”, I get a physical “progress”, different from seeing it in the IDE.

Problems? Not calculating properly Total didn’t have bankRoll or otherAmount Also didn’t have CC, Checks, or Deposit This led me to create another var rightSideAmount to include CC, Checks, and Deposit. But still keeping bankRoll and otherAmount part of the till total. Problems?