|
-
Jan 3rd, 2010, 07:32 AM
#1
Thread Starter
Junior Member
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
-
Jan 3rd, 2010, 09:05 PM
#2
New Member
Re: Help ! applications !
Try this
VB.Net Code:
For Each p As Process In Process.GetProcesses
If Not p.MainWindowTitle = Nothing Then
MenuStrip1.Items.Add(p.ProcessName.ToLower)
End If
Next
-
Jan 4th, 2010, 09:35 AM
#3
Thread Starter
Junior Member
-
Jan 4th, 2010, 09:40 AM
#4
Thread Starter
Junior Member
Re: Help ! applications !
 Originally Posted by NosFtw
Try this
VB.Net Code:
For Each p As Process In Process.GetProcesses
If Not p.MainWindowTitle = Nothing Then
MenuStrip1.Items.Add(p.ProcessName.ToLower)
End If
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|