User Profile

Collapse

Profile Sidebar

Collapse
LucasOschip
LucasOschip
Last Activity: Oct 28 '10, 10:10 PM
Joined: Sep 28 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • LucasOschip
    started a topic Multithread a treeview

    Multithread a treeview

    Code:
    Public Class HTML5
    Public DOMTree As New Windows.Forms.TreeView
    Public Sub AddDocumentNameNode(Byval Name As String)
    DOMTree.Nodes.Add(Name)
    End Sub
    
    Public Class Tags
    
    Public Class a
    Private WorkerThread as System.Threading.Thread
    Private _Path As String = ""
    Public Property Path As String
    Get
    Return _Path
    End Get
    Set(Byval
    ...
    See more | Go to post

  • How do you login to facebook with Visual basic 2010.

    The title says it all.
    See more | Go to post

  • You can just use the MsgBoxStyle Enum to set the Style.
    Like here:
    MsgBox("Hello", MsgBoxStyle.Abo rtRetryIgnore, "AbortRetryIgno re")
    That would simply set the prompt as "Hello", The style as AbortRetryIngor e, and the title as "AbortRetryIgno re"
    See more | Go to post

    Leave a comment:


  • LucasOschip
    started a topic WPF usercontrol wont work.

    WPF usercontrol wont work.

    The problem im having is that when i try to set the property "Percentage " in a separate project it wont set the property.

    Heres the source code of both projects:

    UIProgressBar - This is the Usercontrol
    Code:
     Public Class UIProgressBar
        Public Property Percentage
            Get
                Return ReturnPercentageWork()
            End Get
            Set(ByVal value)
    ...
    See more | Go to post
No activity results to display
Show More
Working...