Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
Sign in to follow this  
jobro

VB6 and WADS

Recommended Posts

Well for map stuff you can check out DoomBuilders source code.

Also, Wintex was written in VB, though I recall that it used lots of dlls written in C for some of it's stuff, as well as using an external program for some stuff(deutex), but it might be worth checking out too.

Share this post


Link to post

That definitly helped. Thanks!

Still I'm stuck with the class. How do I call the clsWad class? Can't find any definition to use.

Share this post


Link to post

Someone else will have to help you with that. I have a vague idea of what it is, but no clue whatsoever of how to actually use it, heh.

Share this post


Link to post
jobro said:

That definitly helped. Thanks!

Still I'm stuck with the class. How do I call the clsWad class? Can't find any definition to use.


Well, like any other class.

Make a new project, add the clsWAD.cls file to the project, and then with code like this:

Dim MyWadClass As New clsWad

MyWadClass.OpenWad ("c:\temp\somewad.wad")
MsgBox "size is" & MyWadClass.WadSize

'etc.
Hope this helps.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  
×