Results 1 to 3 of 3

Thread: Big Question...

  1. #1

    Thread Starter
    New Member
    Join Date
    Sep 2000
    Location
    Phils
    Posts
    4
    Ey guys! ever used mIRC? i've got a question...

    is where those messages are printing out using a TextBox? or is it a richtextbox?

    anyone got a tutorial of using that VScrollBar? please if you know a site.. point it

    One more thing... what is the Component used in the Draggable Toolbar?

    thanks alot!
    --
    it's really hard to be a man in a world that's full of beauty.

  2. #2
    Guest
    It's neither a RichTextBox nor a TextBox, but yes you can use a RichTextBox to do the same thing.

  3. #3
    Guest
    Make another form called form1, set it's borderstyle to 4 - Fixed Dialog, and add:

    Code:
    Option Explicit
    
    Private Sub Form_DragDrop(Source As Control, X As Single, Y As Single)
        If Source.Name = "Toolbar1" And X > 20 Then
            Form1.Show
            Toolbar1.Visible = False
        If Source.Name = "Toolbar1" And X <= 20 Then
            Unload Form1
            Toolbar1.Visible = True
        End If
    End Sub
    To the primary form (assuming it's called "frmForm1" and add

    Code:
    Option Explicit
    
    Private Sub Form_Unload(Cancel As Integer)
        frmForm1.Toolbar1.Visible = True
    End Sub
    to the "Form1" that we added.

    (The second form is the floating version, so make it look like a floating toolbar).

    API and Code.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width