473,796 Members | 2,867 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to repeat the mouse behavior?

Hi All,
I want to repeat the mouse behavior from user.

I have an application ( Bluetooth ), I can drag files (Mp3/jpg/...) to the
bluetooth icon, and then choice the target device, finally, the applicatoin
will send those files to the target device.

Right now, I want this behavior can automatically repeat. What can I do ?

Thank you very much for your help.

Best regards,
Boki.
Nov 30 '05 #1
6 1066
Hi Boki,

I think you need to explain a bit more. Why would you want to send the same
files to a target device more than once? And if the files are different, the
operation can't be made 'automatic' since it requires human intervention to
choose the files.

So what exactly do you mean by "automatica lly repeat"?

[==P==]

"Boki" <bo******@ms21. hinet.net> wrote in message
news:uV******** *****@TK2MSFTNG P10.phx.gbl...
Hi All,
I want to repeat the mouse behavior from user.

I have an application ( Bluetooth ), I can drag files (Mp3/jpg/...) to the
bluetooth icon, and then choice the target device, finally, the
applicatoin will send those files to the target device.

Right now, I want this behavior can automatically repeat. What can I do ?

Thank you very much for your help.

Best regards,
Boki.

Nov 30 '05 #2
Hi Peter,
Sorry, I want user can choose file(s) and then push to
Bluetooth device via this tool, because if we don't have this tool, we
have to drag files again and again.

for example:
I have a.mp3, b.jpg, c.bmp
and then I drag these three files to the BT icon ( at the same time,
the tool record the behavior ) and then I can control how many times I
want to repeat. ( or other functions)

I can't sure this is a good method, pleaee welcome to advice any
comment.

Best regards,
Boki

Nov 30 '05 #3
Kay
Hi Boki

I have no experience for bluetooth device but you may put the source &
destination path into 2 variables, then loop thru all the selected icon
(i.e. for each selected item in the source control, or do a count, something
like selecteditem.co unt, depends on which control you used), then do the
copy...

HTH

Kay

<bo******@ms21. hinet.net> wrote in message
news:11******** **************@ f14g2000cwb.goo glegroups.com.. .
Hi Peter,
Sorry, I want user can choose file(s) and then push to
Bluetooth device via this tool, because if we don't have this tool, we
have to drag files again and again.

for example:
I have a.mp3, b.jpg, c.bmp
and then I drag these three files to the BT icon ( at the same time,
the tool record the behavior ) and then I can control how many times I
want to repeat. ( or other functions)

I can't sure this is a good method, pleaee welcome to advice any
comment.

Best regards,
Boki

Dec 1 '05 #4
Hi,

1. how to control/monitor the mouse moving( x, y, click..) information
when the mouse is outside of a focus window.

2. How to command windows "copy" a select item...

Thank you very much!

Best regards,
Boki.

Kay wrote:
Hi Boki

I have no experience for bluetooth device but you may put the source &
destination path into 2 variables, then loop thru all the selected icon
(i.e. for each selected item in the source control, or do a count, something
like selecteditem.co unt, depends on which control you used), then do the
copy...

HTH

Kay

<bo******@ms21. hinet.net> wrote in message
news:11******** **************@ f14g2000cwb.goo glegroups.com.. .
Hi Peter,
Sorry, I want user can choose file(s) and then push to
Bluetooth device via this tool, because if we don't have this tool, we
have to drag files again and again.

for example:
I have a.mp3, b.jpg, c.bmp
and then I drag these three files to the BT icon ( at the same time,
the tool record the behavior ) and then I can control how many times I
want to repeat. ( or other functions)

I can't sure this is a good method, pleaee welcome to advice any
comment.

Best regards,
Boki


Dec 2 '05 #5
<bo******@ms21. hinet.net> wrote in message
news:11******** **************@ g49g2000cwa.goo glegroups.com.. .
1. how to control/monitor the mouse moving( x, y, click..) information
when the mouse is outside of a focus window.
Check the docs for SendInput() and / or mouse_event().
2. How to command windows "copy" a select item...


The programmatic interface to the clipboard is described here:

http://msdn.microsoft.com/library/de...eclipboard.asp

Regards,
Will
Dec 2 '05 #6
Nice answer. Thanks!

Best regards,
Boki.

Dec 3 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
3336
by: nicholas | last post by:
Hi, If on an asp.net page the user has just selected a value in a dropdownlist and scrolls with the wheel of his mouse, the selected value of the dropdownlist will change. How could I avoid this. So how could I disable the mouse scrolling that dropdownlist. Or how could I disable the mouse-scroll on those pages.
4
2734
by: ML | last post by:
I am trying to use the mouse wheel event on a numeric input box to allow the use to scroll to inc/dec the value by 1. The issue I am having is that the delta value returned seems to be off. From my understanding the delta is the number of detents the mouse has moved. The standard detent is supposedly 120 for one notch of the wheel, however when I turn the wheel 1 click I get 240. Is there someway to determine the actual detent setting...
4
1074
by: Boki | last post by:
Hi All, I want to repeat the mouse behavior from user. I have an application ( Bluetooth ), I can drag files (Mp3/jpg/...) to the bluetooth icon, and then choice the target device, finally, the applicatoin will send those files to the target device. Right now, I want this behavior can automatically repeat. What can I do ? Thank you very much for your help.
2
4409
by: scott_gui | last post by:
I am creating a Windows application: The mouse event <Double-Button-1> has a conflict when the <Button-1> event also has a binding. Double clicks will first perform the single click action. This seems a little silly. Anyone know how to circumvent this? Right now I am having the function that is bound to the double click event undo the action the single click event performs. This is annoying and it flashes the single click event for a...
7
2991
by: Martijn Mulder | last post by:
When the mouse is over a picture, the user can grow or shrink it by rolling the central mouse wheel. What behavior is typical when the user rolls the wheel away. Will the picture grow or shrink then?
1
1356
by: Alan | last post by:
I just installed MS Access 2002 on a new PC. On my old PC when I had a form up and held the mouse down on the backward and forward arrows to change the record, the records would fly by due to the repeat from the mouse. Now I have to click the mouse for each record advance. I looked through all of the settings in Access and can't find anything. Any ideas? thanks, Alan
1
1874
by: =?Utf-8?B?bGpsZXZlbmQy?= | last post by:
I've noticed that if you click on a Windows.Forms.ToolStripButton then a MouseLeave event will not occur until the button is released. ToolStripMenuItems on the other hand will raise a MouseLeave event as soon as the mouse moves outside of the item, even if the mouse button is held down. You can observe this behavior using the following sample: Public Class Form1 Inherits Windows.Forms.Form Public Sub New()
2
4808
XedinUnknown
by: XedinUnknown | last post by:
Hi! I am new to this forum, but not new to web design and programming. Nevertheless, I have never tried to use PNG so extensively in my pages. here's the problem. First, I have found that the PNG backgrounds and images had no transparency and grey around them when viewed in IE6, but I solved this bug using this hack. It works great, but then another problem came up: a background image that had the solution applied to was not repeating...
0
9685
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10244
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10201
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10021
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6802
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5454
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5582
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3744
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2931
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.