Skip to content
MSN

Help with rebar requested

A TG007 community discussion started by asher.

Discussion 3 posts
Page 1 of 1
Open
Topic #965 · 3 published posts · 503 views

notworking.gif

I have a dialog called master and am currently trying to use rebar to get the dialog to dock on the left hand side.....I've tried doing a direct copy paste from the rebar help file and no luck on that so far, i'm using the newest version of mirc and i don't think that ktools works on it. Any advice?

 

dll <rebar directory here> Dock $dialog(<dialog name here>).hwnd > <position here>

 

<rebar directory here> = the location of the dll, rebar

 

<dialog name here> = the dialog you wish to dock, normally best to put this into the init part of the dialog, and then replace <dialog name here> with $dname

 

<position here> = options from top,left,right and bottom

Suppose the dialogs name is Test. Here is how you will dock using rebar.dll

 

This will dock the dialog Master to the left of the chat window.

dll $findfile($mircdir,rebar.dll,1) Dock $dialog(Master).hwnd > left

 

This will dock the dialog Master to the right of the chat window

dll $findfile($mircdir,rebar.dll,1) Dock $dialog(Master).hwnd > right

 

This will dock the dialog Master to the top of the chat window

dll $findfile($mircdir,rebar.dll,1) Dock $dialog(Master).hwnd > top

 

This will dock the dialog Master to the bottom of the chat window

dll $findfile($mircdir,rebar.dll,1) Dock $dialog(Master).hwnd > bottom

 

Just copy what code you want to use. smile.gif

Edited Jul 24, 2004 7:24 PM by Warrior124