Posts

Showing posts from 2016

C# Windows Form : PetCare

Image
A desktop application using C# as technology. the application is titled as "PETCARE" a system that a pet shop or veterinary can use it to store basic information about the pet's owner, details about the pet and the purpose of the visit to the veterinary or pet shot. The system also contained a stock management module that is used to track pet food purchased by a particular customer Screen Shot You can login both as a staff or as the admin. the admin has the privilege to register new staff and view details about transaction and other sensitive information. The system encrypt user password using MD5 algorithm The home screen of the application You can either add a new pet with its owner details or add another pet belonging to the same owner. both can be done using the same form below. and each pet owner will be given a reference number. Veterinary can use the application to store information about treatment done for a particular pet Can t

Asp.net vb PlanetFood cloud computing

Image
This is a small ASP.net vb application of a ficticious comapny called PlanetFood specialized in seafood menu. i used bootstrap to implement the front end of the application as well as make it responsive. The application can be viwed on a smart phone, laptop and tablet as well. For the database I used SQl server 2012 Screen Shot System will automatically calculate the total price for each customer Responsive display for a tablet screen Responsive for smart phone screen Source Code sample Login sample code Private Sub login() Dim con As New SqlConnection(Session("constring")) Dim sql = "select * from user_tbl where username = @usernameT and user_password = @passwordT and employee_status = 'admin' and status = 'active'" Dim sqlCmd As New SqlCommand(sql, con) sqlCmd.Parameters.AddWithValue("@usernameT", txtbx_username.Text) sqlCm