Matthew Greenslet![]() Idol ![]() ![]() ![]() ![]() Posts: 2077 Joined: 2/27/2006 ![]() | Any beginners guide to VB or VBA should do the trick. This should provide both enough logical programming concepts as well as VB syntax examples of how to structure your logic to give you the jump start in to writing in OmniLanguage. OmniLanguage is a purposely simplistic language to reduce the amount of VB syntax you need to learn. I would focus more heavily on logic structure rather than syntax. As far as VB syntax the only real concepts you need to know is.. What is a variable and how do I create one for the type I need? What is a variable type? What are If...Then...Else statements? What are For...Next loops And Do While Loop and how do I use them? More importantly how do avoid getting stuck in one? Most everything else is a pseudo language which is OmniLanguage. If you wanted to take it to the next level you could learn... What is an array and how are they used? What is the difference between a sub and a function? What is a method overload? From there you will understand a little more what is happening behind the scenes. |