Results 1 to 6 of 6

Thread: [VB6/VB10] - VB Forums Ticker/Monitor

  1. #1

    Thread Starter
    VB For Fun Edgemeal's Avatar
    Join Date
    Sep 2006
    Location
    WindowFromPoint
    Posts
    4,255

    [VB6/VB10] - VB Forums Ticker/Monitor

    See post #4 for updated (VB10) version.

    This (VB6) version was based to work with the older forum software.

    About VB Forums Ticker v2
    Scrolls the latest forum threads, showing number of replies and last poster.
    Notifies you when there has been a reply or new post to a selected forum within the last 1 to 60 minutes.
    * Requires Windows 2000/XP or later and the VB6 Runtime, all other dependencies are Windows API based.
    * Requires VB6 to compile source code.
    Attached Images Attached Images  
    Attached Files Attached Files
    Last edited by Edgemeal; Nov 13th, 2013 at 08:30 AM. Reason: Updated, VB6 version is no longer supportted

  2. #2
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: VB Forums Ticker Utility Version 2

    Thanks for the heads up! Will download it now.
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  3. #3
    New Member
    Join Date
    Jun 2010
    Posts
    4

    Re: VB Forums Ticker Utility Version 2.01

    This is awesome! I have been working on making a desktop notifier for my Forums.. If I finish it I will be happy to release it here.

  4. #4

    Thread Starter
    VB For Fun Edgemeal's Avatar
    Join Date
    Sep 2006
    Location
    WindowFromPoint
    Posts
    4,255

    Re: [VB6/VB10] - VB Forums Ticker/Monitor

    VB .Net version.
    HTML parsing updated to work with the newer VBForums layout (vBulletin v4.2.0/v4.2.2).
    Note: Overall VERY sloppy code structure, uses some VB6 syntax.
    Coded: VB10/VS 2010 + .Net FW 4.0.





    v1.025
    * More stuff.
    v1.022
    * List & View threads members started and replied to, and other minor changes.



    Also see: [VB10] Parsing VBForums Threads
    Attached Files Attached Files
    Last edited by Edgemeal; Oct 3rd, 2016 at 10:37 AM. Reason: Upload v1.025

  5. #5
    Bad man! ident's Avatar
    Join Date
    Mar 2009
    Location
    Cambridge
    Posts
    5,398

    Re: [VB6/VB10] - VB Forums Ticker/Monitor

    Nice to see you care about vb features. Target 4.0 not client profile

    vb Code:
    1. Imports System.Web
    2.  
    3. Public Class Form1
    4.  
    5.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    6.         Dim text As String = Me.TextBox1.Text
    7.         Dim decoded As String = HttpUtility.HtmlDecode(text)
    8.  
    9.         Me.TextBox1.Text = decoded
    10.     End Sub
    11.  
    12.     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    13.         Me.TextBox1.Text = "& " < > &apos % ı"
    14.     End Sub
    15. End Class

  6. #6

    Thread Starter
    VB For Fun Edgemeal's Avatar
    Join Date
    Sep 2006
    Location
    WindowFromPoint
    Posts
    4,255

    Re: [VB6/VB10] - VB Forums Ticker/Monitor

    Thanks for the tip!

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