mIRC Home    About    Download    Register    News    Help

Print Thread
#56916 23/10/03 12:52 PM
Joined: May 2003
Posts: 2,265
P
pheonix Offline OP
Hoopy frood
OP Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
does anyone know how to dock a toolbar using the newest rebar.dll ?


new username: tidy_trax
#56917 23/10/03 02:13 PM
Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
I think that the only one that can answer that in the best way, thats the author of that DLL file..


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
#56918 23/10/03 02:27 PM
Joined: May 2003
Posts: 2,265
P
pheonix Offline OP
Hoopy frood
OP Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
it says in the help file it isn't supported yet, but i've seen some 6.12 toolbar screenshots.
so the author(clickhere) probably wouldn't be the best to ask.


new username: tidy_trax
#56919 23/10/03 03:48 PM
Joined: May 2003
Posts: 2,265
P
pheonix Offline OP
Hoopy frood
OP Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
got it now but it's too late to delete the post;\


new username: tidy_trax
#56920 23/10/03 04:13 PM
Joined: Dec 2002
Posts: 295
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Dec 2002
Posts: 295
Pheonix

Could you please post how to do it, as i too am interesetd in rebar.dll

I have spent the past few nights reading the info that came with the dll, but seen as ktools isnt compatable with V6.12 i had to look elsewhere, i used to have a dialog "docked" to the side of my screen for easier access to my bans and kicks etc.

Thanks
ShadowDemon
mIRC V6.12


Never argue with an idiot...they'll drag you down to their level and beat you up with experience
#56921 23/10/03 04:20 PM
Joined: May 2003
Posts: 2,265
P
pheonix Offline OP
Hoopy frood
OP Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
i didn't actually use rebar lol.
i opened a dialog to the exact right spot, then used:
on *:dialog:toolbar:init:*:{
dll mdx.dll SetMircVersion $version
dll mdx.dll MarkDialog $dname
dll mdx.dll SetDialog $dname style
}

that half-docks it, i think it can still be moved around using /dialog -s, but it can't be moved by titlebar etc.


new username: tidy_trax
#56922 23/10/03 04:33 PM
Joined: Dec 2002
Posts: 295
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Dec 2002
Posts: 295
Ok, thanks for that, looks like im gonna have to mail the authors of rebar and/or ktools and get them to release "fixed" versions of their dlls so i can "dock" my dialog again, or i may be forced to switch back to mIRC V6.03 (which i dont really want to do, as i like V6.12)

Unless somebody reading this thread can come up with a newer dll or way to "dock" dialogs then i`m stuck with boring plain popups and keyboard shortcuts.

ShadowDemon


Never argue with an idiot...they'll drag you down to their level and beat you up with experience
#56923 23/10/03 04:40 PM
Joined: Mar 2003
Posts: 160
Vogon poet
Offline
Vogon poet
Joined: Mar 2003
Posts: 160
YAY for rebar.dll, get them mIRC 6.12 scripts rolling! grin

#56924 23/10/03 04:58 PM
Joined: Dec 2002
Posts: 29
R
Ameglian cow
Offline
Ameglian cow
R
Joined: Dec 2002
Posts: 29
It`s preatty simple to dock dialog with rebar.dll
and rebar works with mIRC 6.12.
command to dock is
dll RebaR.dll Dock $dialog(name of the dialog here).hwnd > position
where position can be top,bottom,left,right.
Also if you have rebar.dll in eny other directory then mirc directory you use
dll pathto\RebaR.dll Dock $dialog(name ot the dialog).hwnd > position

#56925 23/10/03 11:00 PM
Joined: Dec 2002
Posts: 295
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Dec 2002
Posts: 295
Thanks RAIN, but i have a problem

* /dll: no such routine 'Dock' (line 2, rebar.mrc)

My Code
Code:
on *:start: {
  dll RebaR.dll Dock $dialog(chanset).hwnd > right
}

dialog chanset {
  title ""
  size -1 -1 60 200
  option dbu
  icon 1, 7 174 16 16, $scriptdir/mircscripts.icl, 0
  box "Group Box", 2, 1 1 58 115
  check "Check Box", 3, 3 11 50 10
  check "Check Box", 4, 3 22 50 10
}


Why doesnt this work ?
I know this should prolly go in scripts help, but seen as i`m here replying thanks to RAIN may as well explain it dont work.
Just looking at rebars help again.

ShadowDemon


Never argue with an idiot...they'll drag you down to their level and beat you up with experience
#56926 24/10/03 09:48 AM
Joined: Dec 2002
Posts: 1,922
O
Hoopy frood
Offline
Hoopy frood
O
Joined: Dec 2002
Posts: 1,922
Your dll could be outdated. Get v0.2 from here. Also, you'd want to call /dll when the dialog is loaded, not "on start".

#56927 24/10/03 09:53 AM
Joined: Jan 2003
Posts: 38
T
Ameglian cow
Offline
Ameglian cow
T
Joined: Jan 2003
Posts: 38
try using on 1:dialog:bleh:init: instead and open the dialog first cant dock anything that doesnt exist? smile

tho i dunno if that can have anything to do with the routine error

Last edited by toe_cutter; 24/10/03 09:57 AM.
#56928 24/10/03 10:57 AM
Joined: Dec 2002
Posts: 295
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Dec 2002
Posts: 295
I tried that and it doenst work, i replaced the "On Start" event with what you gave me

Thanks for your help


Never argue with an idiot...they'll drag you down to their level and beat you up with experience
#56929 24/10/03 11:07 AM
Joined: Dec 2002
Posts: 295
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Dec 2002
Posts: 295
Thanks Online, i emailed the the author and he told me to get the latest version 0.2 from the same site you just pointed me too, took me a while to understand any of the site, because english is my only langauge and dont know any other.

I had KToolls, load "On Start" event, so i thought this would work, seems i am having way too much trouble with this RebaR.dll and there exists no other dll's that work that either "Dock" dialogs AND work with V6.12.

Oh well looks like i`m going back down to V6.03 of mIRC frown
(I really dont want to have to, but i need fast buttons to my many channel options i originaly built into my "Docked" dialog script) and yet i love the newest options in in V6.12

ShadowDemon


Never argue with an idiot...they'll drag you down to their level and beat you up with experience

Link Copied to Clipboard