Giter Club home page Giter Club logo

visionthex / biologix Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 68 KB

🚀 Biologix: Innovative Chemistry Software Discover Biologix, a Visual Basic project transforming invoicing into a streamlined experience. Born in 2015, it's more than software—it's an immersive suite for a fictional chemical world. From secure logins to advanced calculators, every line of code is dedicated to user-friendly interactions. Explore

Visual Basic .NET 100.00%
chemical-elements coding-adventures creativity-inspired invoicing-software technology visual-basic learn-to-code

biologix's Introduction

Biologix: Innovative Visual Basic Invoice Project

Biologix Software Suite Visual Basic

Welcome to Biologix, a groundbreaking Visual Basic project born during my college years in 2015. It's not just an invoice system; it's an immersive experience tailored for a fictional chemical company. Let's explore the unique facets that make this project stand out.

Explore the Intricacies of Visual Basic

Introduction: A World of Chemical Innovation

Introduction Image

Dive into a world of chemical innovation! Biologix is more than just an invoicing tool; it's a suite of functionalities designed to streamline the ordering process for a chemical company. From a captivating introduction splash page to a user-friendly login screen, the journey begins here.

Login Screen: Secure and Seamless Access

Login Screen Image

Unlock the potential with a secure login screen. Admin credentials provide a gateway, with a built-in password reset for convenience. Witness a flawless login experience, complete with a welcome message on successful entry and error handling for those occasional mistyped passwords.

Password Reset: Advanced Security Measures

Password Reset Image

Your security is paramount. Biologix employs advanced measures like password resets, cleverly stored to mimic a sys.dll file. A simple yet effective encryption method ensures your data remains safe and accessible only to authorized users.

Unveiling the Heart of Biologix: The Main Form

Main Form 1

Behold the main form, where innovation takes center stage. Intuitively input prices, quantities, and product details with ease. The program's robust calculation engine effortlessly handles complex computations, allowing you to save and display crucial information.

Loan Calculator: Empowering Financial Decisions

Loan Calculator Image

Empower yourself with the loan calculator. Seamlessly calculate payments for larger invoice items, facilitating informed and strategic financial decisions.

Surpassing Expectations: Additional Features

Web Browser: A Gateway to Information

Web Browser 1

Embark on a journey of knowledge with the integrated web browser. Conduct research, access the main website, and utilize a built-in contact button for seamless communication.

Memo Notepad: Unleash Creativity and Organization

Memo Notepad 1

Fuel your creativity with the memo notepad. Take notes, save Rich Text or Text files, and stay organized in a feature-rich environment that goes beyond conventional notepads.

Extra Features: Elevating the Experience

Extra Features Image

Experience the luxury of additional features—About page, Disclaimer, edit tabs, and shortcuts—all crafted to elevate your interaction with Biologix.

Biologix is not just a program; it's an invitation to explore the seamless integration of technology, creativity, and functionality. Join me on this exciting journey, and let's redefine what's possible in the realm of Visual Basic development.

biologix's People

Contributors

visionthex avatar

Watchers

 avatar

biologix's Issues

Login.vb

Imports System.IO
Public Class frmLogin
    Dim Attempt As Integer = 1
    ' TODO: Insert code to perform custom authentication using a provided username and password
    '(See https://go.microsoft.com/fwlink/?LinkId=35339).
    'The custom principal can then be attached to the current thread's principal as follows:
    '       My.User.CurrentPrincipal = CustomPrincipal
    'where CustomPrincipal is the IPrincipal implementation used to perform authentication.
    'Subsequently, My.User will return identity information encapsulated in the CustomPrincipal object
    'such as the username, display name, etc.
  
Private Sub OK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK.Click
    Dim inputFile As StreamReader = File.OpenText("sys.dll")
    Dim LinePW As String
    
    LinePW = inputFile.ReadLine()
    inputFile.Close()
    
    If txtUser.Text = "Admin" And TxtPassWord.Text = LinePW Then
      MsgBox("Welcome, " & txtUser.Text)
      frmInvoice.Show()
      Me.Close()
    ElseIf Attempt = 3 Then
      MsgBox("Program is now closing, Maxium number of " & Attempt & " attampts!")
      Me.Close()
    Else
      MsgBox("Username and password incorrect, Please re-enter, you currently have reached attempt " & Attempt & " of 3.")
        Attempt = Attempt + 1
        txtUser.Text = ""
        TxtPassWord.Text = ""
        txtUser.Focus()
      End If
    End Sub
 
    Private Sub Cancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Cancel.Click
      Me.Close()
    End Sub
 
    Private Sub PictureBox1_Click(sender As Object, e As EventArgs) Handles PictureBox1.Click 'Back Door! into Invoice bypassing Login
      frmInvoice.Show()
      Me.Close()
    End Sub
 
End Class

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.