hi there,
maybe it's an old problem, but i havn't found anything which helps me right now in this forum.
i'm using right now VB 6.0 for handling the more complexiv
thing which are send from the MUD to MUSH. therefore i'm still using a scipt-file in MUSH, wherein there is a definition and function like:
Dim VBApp
Sub InitVB()
set VBApp = createobject("VBApp.clsMush")
VBApp.InitWorld (world)
End Sub
like you can see i'm creating an object in this script.
this object is a class in the ActiveX-EXE "VBApp". and
then i'm calling a method which gives the actual world
to my VBApplication. after that i can handle everything
i want in VB.
now, i would like to use VB 6.0 to connect to a MUD via MUSH, that means i would like to start my VBApp and connect to a MUD, which i can select, therefore i have witten some code in VB which handles alle my chars, passwords, world properties like ip, port etc. in a databse.
i thought this can be done, if i create a new instance of the world in VB like:
Dim gWorld As World
Set gWorld = New World
But in this case vb opens the wholy mush-client and tries to load a new world-file. could i instead do something like (within VB ??):
- start mush (backgraound)
- open a new world, set all properties via VB according data from my databse like world-name, ip, port etc.
- connecting to the world
etc.
sorry for my english, it isn't really good, but i hope you understand what i mean.
thx in advance
Kerrigan
maybe it's an old problem, but i havn't found anything which helps me right now in this forum.
i'm using right now VB 6.0 for handling the more complexiv
thing which are send from the MUD to MUSH. therefore i'm still using a scipt-file in MUSH, wherein there is a definition and function like:
Dim VBApp
Sub InitVB()
set VBApp = createobject("VBApp.clsMush")
VBApp.InitWorld (world)
End Sub
like you can see i'm creating an object in this script.
this object is a class in the ActiveX-EXE "VBApp". and
then i'm calling a method which gives the actual world
to my VBApplication. after that i can handle everything
i want in VB.
now, i would like to use VB 6.0 to connect to a MUD via MUSH, that means i would like to start my VBApp and connect to a MUD, which i can select, therefore i have witten some code in VB which handles alle my chars, passwords, world properties like ip, port etc. in a databse.
i thought this can be done, if i create a new instance of the world in VB like:
Dim gWorld As World
Set gWorld = New World
But in this case vb opens the wholy mush-client and tries to load a new world-file. could i instead do something like (within VB ??):
- start mush (backgraound)
- open a new world, set all properties via VB according data from my databse like world-name, ip, port etc.
- connecting to the world
etc.
sorry for my english, it isn't really good, but i hope you understand what i mean.
thx in advance
Kerrigan