get computer info vb.net image

gerardolop
I need to insert a flash or gif advertisment in the computers of my little internet cafe. Not in any web page, Simplily I would like that meantime the customers are working in any page a banner or animated gif or flash crosses the screen advertising my products. How can I do that ?. Somebody said use Visual Basic. But How. I will appreaciate your helpnad HELP PLEASE.
Answer
Visual Basic or VB.net would definately be the way to go, i could easily write one but i am pretty sure someone has already written a program like it on one of the developer resource sites. You could check out the following sites for info
http://www.codeproject.com
http://www.planetsourcecode.com
http://www.programmersheaven.com
http://www.codeguru.com
Visual Basic or VB.net would definately be the way to go, i could easily write one but i am pretty sure someone has already written a program like it on one of the developer resource sites. You could check out the following sites for info
http://www.codeproject.com
http://www.planetsourcecode.com
http://www.programmersheaven.com
http://www.codeguru.com
I would like to know how the system stores the info of your mouseclick and how to call it in VB.NET?

Insane_MfB
I want to record every click my mouse does into an integer, like i can call a "form1.click" event and increment it into a variable eg, count +=1. but this only works if i click in the form, i want the program to run in the background and record all clicks done while the computer is on, and not just the clicks i do on the form.
Answer
You need to hook into system events to capture those. Read up on Platform Invoke (consuming Win32 API functions in .NET) and then read up on SetWindowsHookEx.
Here are a couple of links to show you how to code this up.
http://www.eggheadcafe.com/conversation.aspx?messageid=32112839&threadid=32112837
http://www.codeproject.com/KB/system/globalsystemhook.aspx
You need to hook into system events to capture those. Read up on Platform Invoke (consuming Win32 API functions in .NET) and then read up on SetWindowsHookEx.
Here are a couple of links to show you how to code this up.
http://www.eggheadcafe.com/conversation.aspx?messageid=32112839&threadid=32112837
http://www.codeproject.com/KB/system/globalsystemhook.aspx
Powered by Yahoo! Answers
Comments :
Post a Comment