Coding in Notepad...
Mate.Go back to sleep.Read what I said properly.
I understand that you weren't asking about problems with references, but I felt that it would be better to help you with your original problem than with coding in Notepad, which most programmers would agree is unnecessary. Although you can write Java and PHP code in Notepad, most people do not, as there are many free and commercial IDEs available for most platforms. The same applies to VB.Net and almost all other languages. mskeel and Nerseus have listed a few.
As far as misinterpreting your post goes, there were three parts to that:
I've become frustrated with using the Visual basic standard edition.You're
mostly limited to the stock provided dll's and can't really import new ones
Firstly, I do not believe Visual Basic.Net Standard Edition restricts the DLLs you can reference. I'd be interested to know what references you are trying to add which it won't allow. Both mskeel and Nerseus appear to reflect my skepticism here.
The
problem was when I tried importing a reference to system.Windows.forms
and got a class not recognized error,yet it imported system.io just fine.
Secondly, you claim you "imported a reference" to System.Windows.Forms which failed to compile, but imported System.IO just fine. Since System.IO is not a reference, this indicates that you aren't aware of the difference between references and namespaces, and that the VB.Net
Imports statement is not related to referencing external DLLs and is to aid code readability only.
When I used java I just adding the dll's to the directory and used the imports statement and everything worked,but not with vb .net.
Thirdly, you are comparing the way Java compiles to the way VB.Net compiles, which is like comparing apples with oranges. The VB.Net
Imports statement and the Java
import statement are two entirely different things. The Java statement instructs the compiler to find a specific external package or class, using the CLASSPATH environment variable and other special directories (such as the current one). The VB.Net
Imports statement has absolutely nothing to do with external libraries, references etc.
A lot of the threads I've read on this forum are started by people asking for help with a solution when they should really be asking about the problem which prompted the solution. In this case I got the impression that you believe that the Standard Edition is limited, when really it isn't, and that you weren't clear on the difference between importing a namespace and adding a reference. If I was mistaken then I apologise, and I'll waste no more of your thread. I hope you enjoy programming in Notepad.
Good luck