Handy Hint 1:

Save All Function

It seems to be a given, but using the Save All button / function compared to the Save As or Save Function has some interesting results.
The Save All function saves all files and gives you your solution file / folder. This allows you easy access to your data via that solution file.
The Save As or Save function stills saves your work but it seperates all the files and does not give you a solution file, which can prove rather difficult to remedy.

Handy Hint 2:

Step Into and Over Function

Very useful debugging Functions.

Step Into by default is F8. When this is pressed the program loads and then progresses 1 line of code at a time at the button press until your Line break. This is useful for finding errors or to debug your program.

Step Over Function

Similar to the above but the default is F5. When this is pressed it skips straight away to your line break. Very useful if you only need to test a small portion of code.