Coder Social home page Coder Social logo

turangarusso / connect Goto Github PK

View Code? Open in Web Editor NEW
3.0 1.0 1.0 26.36 MB

Insurance Management Software

License: MIT License

Visual Basic .NET 100.00%
insurance insurance-manager microsoft-access-database sms-api sms-messages sms-service textlocal visual-basic visual-studio microsoft-net-framework

connect's Introduction


        _________                                    __   
      \_   ___ \  ____   ____   ____   ____   _____/  |_ 
      /    \  \/ /  _ \ /    \ /    \_/ __ \_/ ___\   __\
      \     \___(  <_> )   |  \   |  \  ___/\  \___|  |  
       \______  /\____/|___|  /___|  /\___  >\___  >__|  
              \/            \/     \/     \/     \/     

Connect

A Insurance Management Software (.NET) .

Key FeaturesHow To UseCreditsLicense

Cattura

Key Features

  • Track the status of each customer easy
    • Store easy all information about your customer with the integrated database.
  • Search function
  • Automatic local notice when the policy has expired
  • Automatic sms notice to customer phone number when the policy has expired
    • You can manually set how long before the deadline to send a reminder sms (default is 30 days before).
    • You can manually send istant sms.
    • You can manually change the default text of the sms.
    • Sms system api by TextLocal.
  • Integrated Microsoft Access Database

Cattura2

How To Use

You can build the project using Visual Studio (full version), or you can use the prebuild exe in the repository. Check out the code to change TextLocal API Key

Private Sub txtAuto_Click(sender As Object, e As EventArgs) Handles txtAuto.Click
        Dim uTime As Integer
        Dim Ndate As Date
        Ndate = DateAdd("m", -1, DateTimePicker1.Value)
        uTime = (Ndate - New DateTime(1970, 1, 1, 0, 0, 0)).TotalSeconds
        Dim apikey = " ------------------ your api key -------------------------"
        'MessageBox.Show(uTime)
        Dim message = txtsms.Text & TextBox6.Text
        Dim numbers = TextBox3.Text
        Dim schedule = uTime.ToString
        Dim strGet As String
        Dim senderName = txtN.Text
        Dim url As String = "https://api.txtlocal.com/send/?"

        strGet = url + "apikey=" + apikey _
        + "&numbers=" + numbers _
        + "&message=" + WebUtility.UrlEncode(message) _
        + "&sender=" + senderName _
        + "&schedule_time=" + schedule

        Dim webClient As New System.Net.WebClient
        Dim result As String = webClient.DownloadString(strGet)
        MessageBox.Show(result, "info", MessageBoxButtons.OK, MessageBoxIcon.Information)
        ' Console.WriteLine(result)
        'Return result
    End Sub
Private Sub Button19_Click(sender As Object, e As EventArgs)
        Dim uTime As Integer
        Dim Ndate As Date
        Ndate = DateAdd("m", -1, DateTimePicker1.Value)
        uTime = (Ndate - New DateTime(1970, 1, 1, 0, 0, 0)).TotalSeconds
        Dim apikey = "------------------ your api key -------------------------"
        MessageBox.Show(uTime)
    End Sub
Private Sub Button19_Click_1(sender As Object, e As EventArgs) Handles Button19.Click
        Dim apikey = "------------------ your api key -------------------------"
        Dim uTime As Integer

        uTime = (DateTimePicker3.Value - New DateTime(1970, 1, 1, 0, 0, 0)).TotalSeconds
        Dim message = txtsms.Text & DataGridView1.CurrentCell.Value.ToString
        Dim numbers = txtT.Text

        Dim strGet As String
        Dim senderName = txtN.Text
        Dim url As String = "https://api.txtlocal.com/send/?"

        strGet = url + "apikey=" + apikey _
        + "&numbers=" + numbers _
        + "&message=" + WebUtility.UrlEncode(message) _
        + "&sender=" + senderName

        Dim webClient As New System.Net.WebClient
        Dim result As String = webClient.DownloadString(strGet)
        MessageBox.Show(result, "info", MessageBoxButtons.OK, MessageBoxIcon.Information)
        ' Console.WriteLine(result)
        'Return result
    End Sub

Access Database engine is required!

You can simply host the Microsoft Access database online

Note I will update UI/UX Design

Credits

Russo Giovanni M. TextLocal

License

MIT


connect's People

Contributors

turangarusso avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Forkers

basketcase808

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.