Skip to main content

First GUI Development

I've done my first GUI (graphic user interface). It's a relief to actually have something (although extremely simple) to show that I have at least done something.


It's nothing fancy, but hey! It's a window. No code added, no function what-so-ever. But, it's a great start. I think possibly some of the biggest challenges are just coming up with a user interface that works well. The formulas and code in the background can be easier to imagine when you have a physical interface and an idea of how it should work.

I had a friend, Joe Kidd, who worked in IT as a developer. I would sketch stuff out for him a lot when it came to designing a part of a program. I had no idea how in the world that could help him, but I see now the benefit behind having that.

This is really exciting, to be honest. I'm starting to realize that some of this might be much easier to build than I thought before. In addition to learning to be a better teammate for my company, this could be huge in terms of some side projects I've always wanted to do.

Comments

Popular posts from this blog

It's Alive!!!

My first program!!! It works! It installs! It does everything! :) Okay, I'm excited, but yesterday was a huge day. Not only did I pass my instructor test in my pilot school with a 97, but I also finished my first program. Functionality is completely perfect. The education I got from this was huge. Google answered nearly all of my questions, but I had to get quite a bit of help from my Supervisor to troubleshoot and help me piece it all together. Some things even baffled him for a second, which made me feel better. The code is pasted down below. Again, I'm sure there are better ways to do what I've done, but for my first program, I am thrilled to death! Public Class FRMTimeSheet     Private Sub Label1_Click(sender As Object, e As EventArgs) Handles lblMonday.Click     End Sub     Private Sub Label1_Click_1(sender As Object, e As EventArgs) Handles lblTimeIn.Click     End Sub     Private Sub Label1_Click_2(sender As Obj...

New Discoveries

So What Have We Learned Today, Class? Okay, I haven't progressed nearly as far as I had hoped in the textbook. Actually, I still haven't gotten past the GUI development in the 2nd chapter. This doesn't mean that I haven't been picking up what I can. Codefights has still been a great resource. Not knowing a lot of the functions has really been a hindrance. Not knowing many of the commonly known practices of developers has also slowed me down considerably. So, what have I learned? Visual Studio When I first started as a software tester in March this year, I was using TFS (Team Foundation Server) web portal. For those who don't know what this is, it's a web-based portal to let you see what your team is working on. Above is a generic screenshot of what's going on right now and things we're fixing. You can click on each task and see more specific details. This view is much easier to navigate to me, but I needed to learn how to integrate with Vi...

Progress on the Pet Project

So, I don't have much, but I do have some. Behold my genius code for my hours calculation:     Private Sub btnCalculate_Click(sender As Object, e As EventArgs) Handles btnCalculate.Click         Dim s1 As Integer         Dim s2 As Integer         Dim s3 As Integer         Dim s4 As Integer         s1 = Val(txtTimeInSunday.Text)         s2 = Val(txtTimeOutLunchSunday.Text)         s3 = Val(txtTimeInLunchSunday.Text)         s4 = Val(txtTimeOutSunday.Text)         lblSundayHoursTotal.Text = s4 - s1 - (s3 - s2)         Dim m1 As Integer         Dim m2 As Integer         Dim m3 As Integer         Dim m4 As Integer         s1 = Val(txtTimeInMonday.Text)         s2 = Val...