Results 1 to 4 of 4

Thread: Menustrip refresh

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Jan 2010
    Posts
    25

    Arrow Menustrip refresh

    Hey guys Frist probblem is solved but i get a new one now
    i want to refresh the proggrams in the menustrip every second witout deleting the frist one

    Last edited by rayhvh; Jan 4th, 2010 at 09:39 AM. Reason: New probblem

  2. #2
    New Member
    Join Date
    Dec 2009
    Posts
    15

    Re: Help ! applications !

    Try this

    VB.Net Code:
    1. For Each p As Process In Process.GetProcesses
    2.         If Not p.MainWindowTitle = Nothing Then
    3.             MenuStrip1.Items.Add(p.ProcessName.ToLower)
    4.         End If
    5. Next

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Jan 2010
    Posts
    25

    Talking Re: Help ! applications !

    Tnkx !!
    but still got 2 problems

    if something new starts it doesnt come in form.load
    and when i add a timer the Standaar button disapear ( i make an screen )
    :


    !!

  4. #4

    Thread Starter
    Junior Member
    Join Date
    Jan 2010
    Posts
    25

    Re: Help ! applications !

    Quote Originally Posted by NosFtw View Post
    Try this

    VB.Net Code:
    1. For Each p As Process In Process.GetProcesses
    2.         If Not p.MainWindowTitle = Nothing Then
    3.             MenuStrip1.Items.Add(p.ProcessName.ToLower)
    4.         End If
    5. Next
    Tnkx fixed problem 1!

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