Hello, long time since i actually scripted anything from mIRC, so a lot rusty at my scripting skills
Recently i got my PC back after many many months of not having one, (had to borrow a pc)
anyways i have just updated my mIRC to the latest Version 6.31 from an erlier version.
Anyways if somebody could help me or whatever, i basicly had this in my old script
ON *:START {
dialog -m chanset chanset | dll ktools.dll DockWindow $dialog(chanset).hwnd > right
}
dialog chanset {
title ""
size -1 -1 70 300
option dbu
***DIALOG STUFF HERE***
}
This used to use ktools.dll to dock a dialog called chanset to the right hand side of my mIRC
However seen as this dll is now no longer supported i cant do this anymore, then i rememberd dcx.dll
A quick read up says i can dock a dialog to the right hand side.
This is my new code
ON *:START {
dialog -m chanset chanset | dll dcx.dll /xdock -t $chanset(dcx).hwnd +v
}
dialog chanset {
title ""
size -1 -1 70 300
option dbu
***DIALOG STUFF HERE***
}
but all i get is
* /dll: no such routine '/xdock' (line 2, startup.mrc) I have copied the dcx.dll to all the right folders including the folder this script is run from
Can anybody help or atleast tell me in a pleasent way what im doing wrong please
or
suggest a way to "dock" the dialog to the right hand side, i have a rebar.dll and mdx.dll aswell as a few other dlls
in my old mIRC backups before i lost my PC (Harddrive was kept intact) and im sure that most of these dlls will now be outdated from the NEWer mIRC
Thanks
ShadowDemon
mIRC V6.31
(PS, im not a novice or pro scripter, maybe somewhere in the middle, please be gentle with me)