hi guys,
is it possible to make all new windows system through visual basic 2005. Is it also possible to make new file and folders(new file system, empty) so user can create their own files and folders.
Is it possible?
Is it possible to make new windows system in visual basic 2005?
yeah...but it will only run in its native os...this case being windows..as an application. (this works if youre trying to build a software framework to run within an existing operating system)
if what you want to do is write an os from the ground up...then youll probably be using c and assembly...c++ works too but c is more compatible with low level languages like assembly
for a good example...look for some simple open source dos projects..
look for Ralph Brown's Interrupt List for some low level info about the pc..that might help..
Reply:go ahead an email me directly...i can give you some details there.. Report It
Reply:No you can't write a new windows system using vb 2005.
You can create files and folder though.
My.Computer.FileSystem.CreateDirectory("...
Using sw As IO.StreamWriter = New IO.StreamWriter("TestFile.txt")
' Add some text to the file.
sw.Close()
End Using
Reply:Yes this is possible using Virtual PC. You can code it to create a new Virtual PC, see http://www.microsoft.com/windows/product... for dteails
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment