Page 1 of 1

OCIAX effort

Posted: Fri Nov 25, 2005 12:00 am
by christopher wilkinson
We are a non profit company and we want an os base made in VB. I haven't seen any of these so it could be interesting we have ?20 of donations at disposal. Please help.

Email me at [email protected] if you can or know anyone who can help us. We would want it to be exactly like Windows and boot from Floppies to then install via CD.

Thanks
Admin@ociax

Re: OCIAX effort

Posted: Sat Jan 07, 2006 12:00 am
by earlz
how the crap do you make an os base in vb
vb should be more like an os gui and even then you need tons of runtime support including most of the win32 dlls and if you use .net then you have to do .net too

Re: OCIAX effort

Posted: Mon Jan 30, 2006 12:00 am
by basileis
yeah hckr83 is right, you can make an OS in C or Assembly even in C++ also but in VB it's impossible , VB is used for UI designs mostly.

Re: OCIAX effort

Posted: Thu Mar 30, 2006 12:00 am
by happyplanet666
I don't know much about VB but it seems verry difficult. But maby you can write an c++ engine to run VB isn't ???


grtz

Re: OCIAX effort

Posted: Fri Mar 31, 2006 12:00 am
by earlz
But maby you can write an c++ engine to run VB isn't ???
that is possible but would basically require a full kernel

Posted: Sat Jun 24, 2006 4:58 pm
by Midas
Note that OSes in .NET are possible but are a very decided research topic just now - the Microsoft Singularity project springs to mind.

But for all intents and purposes, a VB OS is most impractical.

Posted: Wed Jul 19, 2006 7:35 am
by Toaster
i have an operating system base (for embedded software) written in assembler
it has full support for drives, file systems, task switcher, and lots of more

i only know LaOS as a VB OS...

if youre interested in my OS (ToasterOS) write me (here in the forum or per email)

greetings,

Toaster

Posted: Tue Jan 09, 2007 3:49 am
by Jules
Midas wrote:Note that OSes in .NET are possible but are a very decided research topic just now - the Microsoft Singularity project springs to mind.

But for all intents and purposes, a VB OS is most impractical.
Singularity is based on a .NET -> Typed Assembly Language compiler that isn't publically available. It's unlikely that anyone outside of MS could duplicate their results at this point.

OS in VB?

Posted: Sat Jan 13, 2007 9:07 pm
by Obereon
Visual basic relies on a runtime in order to provide most of it's internal functions. If that runtime could be simulated by providing a replacement which is not dependent on the underlying Windows OS code, then it would be feasible to build the remainder of the operating system in VB. The key problem, of course, is that the runtime would have to be reverse engineered in a clean room environment due to its closed nature.

So basically, in order to build an operating system using VB (either older VB or .NET) would require some portions to be written in other languages. Visual Basic by itself lacks certain functionality necessary to an OS, such as direct memory addressing, port I/O, direct CPU calls, etc.

As an academic exercise, it would be interesting. I think, however, that under real operating constraints, any OS written in VB would require significant outside architecture, and thus not prove useful or efficient.