Hello,
I was making a little application, but i was wondering, if it's posible to get the window title from Firefox and VLC Player. How to do this?
ThijsD
Printable View
Hello,
I was making a little application, but i was wondering, if it's posible to get the window title from Firefox and VLC Player. How to do this?
ThijsD
you can get all active process names
Code:Dim Proc As System.Diagnostics.Process
Dim ProcessList = System.Diagnostics.Process.GetProcesses()
For Each Proc In ProcessList
ListBox1.Items.Add(Proc.MainWindowTitle.ToString)
Next
Tnx it works :)
Edit
Is it also posible to check is a window title has changed?
:thumb:
Please mark this thread as resolved
Yeah sorry forgot to ask something :P
Is it posible to check if a title changes? (so pretty live :P)
Like: Title.Onchange?
as far as i know you can't, but you can keep update the listbox or whatever you store the information in with threading.
Ok thanks :) then ill just use a time and an Search or something :P
I'll figure it out ;) tnx anyways