I hate coding Visual Basic. Why? Because I never actually sat down and learned it, so whenever I have to do it, it’s very frustrating (instead of playing with code, I decided to play with Photoshop). For example, if I want to close a database in MS Access using Visual Basic, the code looks like this:
Private Sub cmdExit_Click()
CloseCurrentDatabase
End Sub
But if I want to close a form, it isn’t “CloseCurrentForm”, no… it’s:
Private Sub cmdExit_Click()
DoCmd.Close acForm, “FormName”
End Sub
I know to all you coders out there this makes sense, but to someone who doesn’t code much, it is very confusing. I guess it’s good I am going to start my college life with “Intro to Programming”. Anyway, I need to get back to coding this… fun, fun, fun.








