vote up 2 vote down star

I'm primarily a graphic designer but would like to develop skills in writing basic code. I'd like to create a little program or code that would allow me to do the following tasks.

Sheet of events,dates and times etc is either typed or uploaded through excel to a database which then displays by date. As each event or task is completed a drop down box can be selected highlighting the event has been completed. Maybe fit in a progress bar of how many tasks have been completed. It'd also need to be able to be edited by different people across a computer network and then updates its display.

The reason I want to make this is really as a personal organiser and as a little project as I enjoy learning new skills.

What would be the best way/language to go about writing this? I understand this will be incredibly basic to all you.

Any answers or directions to resources would be greatly appreciated.

flag
can you change your question to something useful like : "How do I start coding?" or something.... – DrG Jan 8 at 13:52

9 Answers

vote up 0 vote down

In your graphic design, does your primary application have a scripting or macro language? If so you could learn basic programming there, and in a context you already understand. You would be learning the concepts of programming and then use those ideas in a full programming platform, assuming your scripting language is robust enough. It would at least get your feet wet.

Which application do you use in your graphic design?

Also, you mentioned Excel. You could use the Record Macro feature and then view code. This also would at least let you see things in the background. It won't teach you how to program, however. It won't be the prettiest code, but it will let you see things.

link|flag
vote up 2 vote down

First, there is a difference between learning to program and learning a programming language. This is similar to the distinction between learning to build a wardrobe and learning to use a hammer.

If you know this you can save yourself a lot of confusion afterwards. If you want to learn to program a very good starting point are the MIT OpenCourseWare lectures: Structure and Interpretation of Computer Programs. These lectures help you grasp the fundamental concepts of programming. There is also a book accompanying these.

At the same time you can learn any programming language you like. Although these lectures focus primarily on functional ones, this need not worry you. The concepts are applicable on any language and help a lot! The rest is details. :)

As for language choice: If I would start programming again today I personally would want to start with Python.

link|flag
vote up 0 vote down

Developing applications is more than just writing code - its finding out how to architect a solution, determining the best plan of attack and being able to easily roll with changes and/or unexpected events.

As a beginner you'll be challenged with not only learning a programming language, but possibly even a framework on top of that (so you know how to use your programming skills) in addition to just learning a UI(s) ie: visual studio, etc.

It really comes down to personal preference, but in my opinion especially if you have a windows background, then .NET would be the easiest to setup and begin using. You also have the choice of programming languages (VB.NET and c# for example), etc.

link|flag
vote up 1 vote down

The easiest way to do this might be to just use a spreadsheet.

You could use Google Apps so that it could be publicly editable. http://www.google.com/apps

link|flag
vote up -4 vote down

PHP + Dreamweaver.

lot of reading at php.net and keep asking.

link|flag
lol! why a negative score? haha. – Gabriel Sosa Jan 8 at 14:01
Must be Dreamweaver... – pi Jan 8 at 14:32
If I give some advice to start programming in PHP, I'd say to start learning something like Zend, Cake PHP, or Symphony, but NOT dreamweaver. – Nicolas Dorier Apr 10 at 15:10
vote up 0 vote down

PHP isn't bad for learning what does code actually does. the bad thing is that it's just too easy to create spaghetti code. if you really want to learn, and grow from there, don't be satisfied when it works. after doing it, try to redo it again with your new knowledge. there's a maxim "don't be afraid to throw out your code, you will anyway". it's even more true when learning.

link|flag
vote up -1 vote down

I'd start with Microsoft Access. It will get you a base line for working with databases as well as input forms and reports.

Kexi and OpenOffice Base are open source alternatives. You can get into scripting if you want to implement some advanced features.

link|flag
Sometimes I just don't understand the neg scores. Is the suggestion of using google spreadsheets really 3 points better then my idea of using access? – Dan Williams Jan 8 at 17:01
Access isn't really good for learning how to program. That's why there are so many ** applications out there written in it. – Riho Jan 9 at 10:16
Access with Report, Input forms, database doesn't learn good programming practices, and it's a very specific topic, to start learning I think we should learn something more general (UI design, some framework, LINQ etc...) – Nicolas Dorier Apr 10 at 15:08
vote up 5 vote down

(assuming you are running windows)

Pick a language

  • I'ld go for Microsoft.NET C#.
  • It's VERY easy to interact with databases (Access or SQL Server).
  • You can choose to make a console (command line), web or windows application
  • The free IDE (basically a fancy editor) is awesome. http://www.microsoft.com/Express/
  • You can choose VB.NET as well, some people find it easier to start there.
  • You won't spend hours installing and configuring web servers etc.

Pick a book

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.