Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
 
  HOME    TRACKER    Visual Basic




How To Move The Mouse Down A Listbox Items?


Hi all. There is an application that has a listbox and once u click in one of item of the listbox the item get highlighted and once u double click on it a new window gets open. I do not have access to application source code. What i want is to develop a form with button and once i click on start and i place the mouse over topest item the mouse crawl down the listbox items one by one and duble click on each itme untill i reach the end of list itmes. I do not know the exact search term for it.so i be happy if an expert tell me how i can achive that task.




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread
Select ListBox Items With Mouse Move
Say I have a listbox with the following items
VB Code:
Private Sub Form_Load()With List1  .AddItem "Oranges"  .AddItem "Grapes"  .AddItem "Pears"  .AddItem "Prunes"End WithEnd Sub
I would like to be able to display the item my mouse is over in a tooltip, but
VB Code:
Private Sub List1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)List1.ToolTipText = List1.List(List1.ListIndex)End Sub
Doesn't seem to work.

How could I do that?

###MoVe Items In A ListBOX! Simple Help! Like I Want To Move An Item One Down ###
Hi every1,

ANy1 knws any quick way by which i can move items in a listbox?
Like i have a list box and when i click a button i want the time to be move down by one item in the list or move up by one item...

cud any1 suggest a good method?


thx

Move Items In Listbox...
my problem is simple and stupid:

I have an app with an listbox in it. I want to give the ability to the user to move up or down the items of the listbox but I don't know how to do this. Any ideas?





--------------------------------------------------------------------------------
What's up maggots?? I hope u are Slayerized!!!
www.slipknot1.com www.slayer.net

Edited by - SledgeHammer_999 on 7/12/2005 12:44:46 PM

Listbox Move Items Up And Down
Hey-
how would I make it so when a listbox item is selected the user can press an "up" or "down" button to move the line, rightfully, up or down? NE help would be greatly appreciated.

How To Move Items Up/down Listbox?
Hi,

What is the simplest way to move an item up or down a list box with a command button? Be aware I keep getting an error when it reaches the top/bottom of the list if you keep clicking the command button.

Code:
Private Sub cmdUp_Click()
Dim strItem As String
Dim i As Integer

    strItem = lstAllStars.Text
    i = lstAllStars.ListIndex
    lstAllStars.RemoveItem lstAllStars.ListIndex
    lstAllStars.AddItem strItem, i - 1
    
End Sub

Thanks in advance!
Ed

 

Move Items In A Listbox
I need some help with a listbox control in VB. Can somebody tell me how to move items in a listbox up and down by clicking a button on a form.

Move Items Inside ListBox
G'day!
Does anybody know how I could move items inside a ListBox like Winamp does? I am making an MP3 player and this is for the playlist.

Thanks!

Easily Move Items From One Listbox To Another
Using this one sub routine, you can easily move one or more than one, or all items, from one listbox to another. This code uses 4 command buttons with the following captions:

>> - move all items from listbox on left to listbox on right
> - move selected items from listbox on left to listbox on right
< - move selected items from listbox on right to listbox on left
<< - move all items from listbox on right to listbox on left.
VB Code:
Private Sub MoveLBItems(FromListBox As ListBox, ToListBox As ListBox, Optional MoveAll As Boolean) Dim i As Long            With FromListBox                If MoveAll = True Then                     For i = 0 To .ListCount - 1                         ToListBox.AddItem .List(i) 'move all items to Tobox                     Next                       .Clear                Else                     For i = .ListCount - 1 To 0 Step -1                         If .Selected(i) = True Then ' if selected then                             ToListBox.AddItem .List(i) ' add to other list                             .RemoveItem i ' remove                         End If                     Next                End If            End WithEnd Sub Private Sub cmdMoveAll_Click()MoveLBItems List1, List2, TrueEnd Sub Private Sub cmdMoveSelected_Click()MoveLBItems List1, List2End Sub Private Sub cmdMoveSelectedBack_Click()MoveLBItems List2, List1End Sub Private Sub cmdMoveAllBack_Click()MoveLBItems List2, List1, TrueEnd Sub 'to use this project wide, simply move the sub to a module and make it Public  

How Do I Move Items In A Listbox Control
Hi,
    How do i move a

1.selected item in a listbox from its current position and insert it a position above.


2. selected item in a listbox from its current position and insert it a position below.

Please do help me.

Regards
M.C.Chengappa

Swap/Move Items In A Listbox
How can I move items in a listbox?
Let's say I have one listbox, where its style property is set to checkboxes. How can I move items whose checkboxes are checked? I should be able to move them up and down by pressing up or down button.


For example a listbox contains 10 items, and item 5, 7 and 3 are checked. When I press down button it should move those items down by one.

Please help.

Thanx.

Move Items In Listbox (using RowSource From Worksheet)
I have a listbox which has been populated by dropdown lists in a multipage user form. The data has been copied to worksheet manipilated by user and then returned to list box by rowsource from worksheet range. Have no problem deleting rows from list box but have become unstuck on the issue of moving data in list box which refects on the worksheet. The final procedure from this form is to print the data.

Move Checked Items To Top Of Listbox. (Resolved)
Hey All,

Let's say I have a listbox (style = 1 - checkbox) with the
following code...


Code:
Private Sub Form_Load()
List1.AddItem "apple", (0)
List1.AddItem "orange", (1)
List1.AddItem "banana", (2)
List1.AddItem "grape", (3)
List1.AddItem "lime", (4)
List1.AddItem "lemon", (5)
End Sub


Now, let's say I select (check) three of the items in the listbox.
Can someone please tell me how I can move those three items
to the top of the list, when I click a button.

I kind of figured that I will need to loop through the list, but I
can't seem to get anything to work.

Thanks in advance for any help,
Ron

Move Items From Listbox To Listbox
I have a form that contains 2 listboxes. When the form loads the first list box appears the users enter the information in to a text box and on enter that information is placed in the list. Below the list I have a command button the command buttons needs to be able to get the information from list one and be viewed in list 2. Here is the catcher though after the user enters the information the user will need to go back and select the ones needed to be moved. I have set the multiselect to true so that works but I need the ones selected to be moved to listbox2 on click.

Thaks in advance for any help you can provide.

Move Item In Listbox With The Mouse
If I forget to put an item in a list box. Can I put it in and move it where it needs to be with the mouse


Thank you for your help

Mouse Move On Item Listbox Or Combobox
possibke to have the same effect on items in a VBA combobox for Excel?
Tks.

http://delphi.about.com/library/weekly/aa102604a.htm

Moving Listbox Items W/ Mouse
does anyone know how to shift listbox items around with the mouse? a good example would be winamp's playlist. the code i came up with works fine...if you move your mouse slowly. if you go fast, it'll pretty much mess up the order because the cursor jumps around when you move your mouse too quickly.


Dim HotItem1 As Integer

Private Sub List1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 1 Then
If HotItem1 <> List1.ListIndex Then
If HotItem1 > -1 Then
a = List1.List(HotItem1)
b = List1
List1.List(List1.ListIndex) = a
List1.List(HotItem1) = b
End If
HotItem1 = List1.ListIndex
List1_Click
End If
Else
HotItem1 = -1
End If

End Sub

Move A Control In Run Time With MOUSE MOVE
I build with the MOUSE MOVE event a posibility to move a control in RUN TIME
But the move is not so good
Someone have a idea about a improve way to do this task

Thanks

Written A Code To Move Mouse And Simulate Mouse Click, Its Not Working??
this code is to move mouse and simulate the mouse click.

My intension is to place the cursor in the middle of the screen initially and move.

the code contains approriate comments ,i think that helps to understand code (actually i've seen it in some other forum and made small changes).



when i run the code the cursor is not placed at the centre of the screen??

whats wrong with my code?? please somebody correct it??

here i'm giving my entire code.. (please have patience and go through)


Option Explicit

' ----------------------------------------------
' * MouseEvent Related Declares *
' ----------------------------------------------
Private Const MOUSEEVENTF_ABSOLUTE = &H8000
Private Const MOUSEEVENTF_LEFTDOWN = &H2
Private Const MOUSEEVENTF_LEFTUP = &H4
Private Const MOUSEEVENTF_MIDDLEDOWN = &H20
Private Const MOUSEEVENTF_MIDDLEUP = &H40
Private Const MOUSEEVENTF_MOVE = &H1
Private Const MOUSEEVENTF_RIGHTDOWN = &H8
Private Const MOUSEEVENTF_RIGHTUP = &H10

Private Declare Sub mouse_event Lib "user32" (ByVal dwFlags As Long, _
ByVal dx As Long, ByVal dy As Long, ByVal cbuttons As Long, _
ByVal dwExtraInfo As Long)

' ----------------------------------------------
' * GetSystemMetrics Related Declares *
' ----------------------------------------------
Private Const SM_CXSCREEN = 0
Private Const SM_CYSCREEN = 1
Private Const TWIPS_PER_INCH = 1440
Private Const POINTS_PER_INCH = 72
Private Declare Function GetSystemMetrics Lib "user32" (ByVal nIndex _
As Long) As Long

' ----------------------------------------------
' * GetWindowRect Related Declares *
' ----------------------------------------------
Private Type RECT
Left As Long
Top As Long
Right As Long
Bottom As Long
End Type
Private Declare Function GetWindowRect Lib "user32" (ByVal hwnd As Long, _
lpRect As RECT) As Long


' ----------------------------------------------
' * Internal Constants and Types *
' ----------------------------------------------

Private Const MOUSE_MICKEYS = 65535

Public Enum enReportStyle
rsPixels
rsTwips
rsInches
rsPoints
End Enum

Public Enum enButtonToClick
btcLeft
btcRight
btcMiddle
End Enum


' Returns the screen size in pixels or, optionally,
' in others scalemode styles
Public Sub GetScreenRes(ByRef X As Long, ByRef Y As Long, Optional ByVal _
ReportStyle As enReportStyle)

X = GetSystemMetrics(SM_CXSCREEN)
Y = GetSystemMetrics(SM_CYSCREEN)
If Not IsMissing(ReportStyle) Then
If ReportStyle <> rsPixels Then
X = X * Screen.TwipsPerPixelX
Y = Y * Screen.TwipsPerPixelY
If ReportStyle = rsInches Or ReportStyle = rsPoints Then
X = X TWIPS_PER_INCH
Y = Y TWIPS_PER_INCH
If ReportStyle = rsPoints Then
X = X * POINTS_PER_INCH
Y = Y * POINTS_PER_INCH
End If
End If
End If
End If
End Sub


' Convert's the mouses coordinate system to
' a pixel position.
Public Function MickeyXToPixel(ByVal mouseX As Long) As Long
Dim X As Long
Dim Y As Long
Dim tX As Single
Dim tmouseX As Single
Dim tMickeys As Single

GetScreenRes X, Y
tX = X
tMickeys = MOUSE_MICKEYS
tmouseX = mouseX

MickeyXToPixel = CLng(tmouseX / (tMickeys / tX))

End Function


' Converts mouse Y coordinates to pixels
Public Function MickeyYToPixel(ByVal mouseY As Long) As Long
Dim X As Long
Dim Y As Long
Dim tY As Single
Dim tmouseY As Single
Dim tMickeys As Single

GetScreenRes X, Y
tY = Y
tMickeys = MOUSE_MICKEYS
tmouseY = mouseY

MickeyYToPixel = CLng(tmouseY / (tMickeys / tY))

End Function


' Converts pixel X coordinates to mickeys
Public Function PixelXToMickey(ByVal pixX As Long) As Long
Dim X As Long
Dim Y As Long
Dim tX As Single
Dim tpixX As Single
Dim tMickeys As Single

GetScreenRes X, Y
tMickeys = MOUSE_MICKEYS
tX = X
tpixX = pixX

PixelXToMickey = CLng((tMickeys / tX) * tpixX)

End Function


' Converts pixel Y coordinates to mickeys
Public Function PixelYToMickey(ByVal pixY As Long) As Long
Dim X As Long
Dim Y As Long
Dim tY As Single
Dim tpixY As Single
Dim tMickeys As Single

GetScreenRes X, Y
tMickeys = MOUSE_MICKEYS
tY = Y
tpixY = pixY

PixelYToMickey = CLng((tMickeys / tY) * tpixY)

End Function


' The function will center the mouse on a window
' or control with an hWnd property. No checking
' is done to ensure that the window is not obscured
' or not minimized, however it does make sure that
' the target is within the boundaries of the
' screen.
Public Function CenterMouseOn(ByVal hwnd As Long) As Boolean
Dim X As Long
Dim Y As Long
Dim maxX As Long
Dim maxY As Long
Dim crect As RECT
Dim rc As Long

GetScreenRes maxX, maxY
rc = GetWindowRect(hwnd, crect)

If rc Then
X = crect.Left + ((crect.Right - crect.Left) / 2)
Y = crect.Top + ((crect.Bottom - crect.Top) / 2)
If (X >= 0 And X <= maxX) And (Y >= 0 And Y <= maxY) Then
MouseMove X, Y
CenterMouseOn = True
Else
CenterMouseOn = False
End If
Else
CenterMouseOn = False
End If
End Function


' Simulates a mouse click
Public Function MouseFullClick(ByVal MBClick As enButtonToClick) As Boolean
Dim cbuttons As Long
Dim dwExtraInfo As Long
Dim mevent As Long

Select Case MBClick
Case btcLeft
mevent = MOUSEEVENTF_LEFTDOWN Or MOUSEEVENTF_LEFTUP
Case btcRight
mevent = MOUSEEVENTF_RIGHTDOWN Or MOUSEEVENTF_RIGHTUP
Case btcMiddle
mevent = MOUSEEVENTF_MIDDLEDOWN Or MOUSEEVENTF_MIDDLEUP
Case Else
MouseFullClick = False
Exit Function
End Select
mouse_event mevent, 0&, 0&, cbuttons, dwExtraInfo
MouseFullClick = True

End Function


Public Sub MouseMove(ByRef xPixel As Long, ByRef yPixel As Long)
Dim cbuttons As Long
Dim dwExtraInfo As Long

mouse_event MOUSEEVENTF_ABSOLUTE Or MOUSEEVENTF_MOVE, _
PixelXToMickey(xPixel), PixelYToMickey(yPixel), cbuttons, dwExtraInfo

End Sub

Simulate Mouse Move And Mouse Click With Directinput
I've been trying to figure this one out for a while. I can already do it with mouse_event calls but would like to get it working with direct input. I've found lots of tutorials on how to HANDLE mouse input with directinput, but not one tutorial on how to simulate mouse events with directinput. (without using mouse_event at all). I'm getting stumped here, and Im pretty new to the directx sdk, so please use kid gloves

- How To Draw Image On Mouse Down / Mouse Move
hi friends,
i hv two picture boxes. pic1 contains a image (16 * 16 pixel). on mouse down of pic2 i need to draw the pic1 image on pic2, a perfect square
how do i do that
plz help.

thanx in advance
harry

regards

harry

Mouse Move + Repete While Mouse Is Held..
I have a small grid of picture boxs i'm using for some drawing program. What i'm hoping todo is, as the mouse is moved over the pictures and the left mouse button is held change the picture the mouse is over.

Works fine using MouseMove, only problem i'm having is getting it to read when the left button being helt down. If Button = 1 Then.. only triggers once, when the buttons first pressed.

Any help would be great, cheers

How To Show A Toolbar On The Flash Move In IE When Mouse Move To It Like Flash Catcher?
How to show a toolbar on the flash move in IE when mouse move to it like Flash Catcher ?

Mouse Move, Mouse Click
I know you can make the mouse move to a certain spot on the screen, but can you make it 'click'??? If you cant to that can you make it press a key(, Enter, Letters, Keys, Ect...)?

Move Items In The Listview
I am refer the following thread below to move the items in the listview.

http://www.vbforums.com/showthread.p...items+listview

When there is not items in the listview, I click the button, I got the error message. and the error message point at
strCol1 = ListView1.SelectedItem

So How to solve it?


Code:
Dim itmX As ListItem
Dim strCol1 As String
Dim strCol2 As String
Dim lngIndex As Long
strCol1 = ListView1.SelectedItem
strCol2 = ListView1.SelectedItem.SubItems(1)
lngIndex = ListView1.SelectedItem.Index
ListView1.ListItems.Remove (lngIndex)
If lngIndex = ListView1.ListItems.Count + 1 Then
lngIndex = 0
End If
Set itmX = ListView1.ListItems.Add(lngIndex + 1, , strCol1)
itmX.SubItems(1) = strCol2

ListView1.ListItems(lngIndex + 1).selected = True

How To Move Items From One Folder To Another
How do I go deleting a message in my inbox, and have it show up in my Trash? I know this much of the process:

1. Delete the message (Don't need info on this)
2. Empty the listview when the user clicks on the Trash folder (Don't need info on this either)

There's a Step C, which involves retrieving the sender, subject, send date, and message text from the message, just like I did when retrieving new mail. How would I retrieve the data for just that message, and add that to the now-empty listview?

An example of what I want to do would be found inside Outlook Express. Note as it empties the listview when you change folders, and then loads the contents of the selected folder.

Sorry if this seems a little vague, but that's the best I can explain it.

Split + Move Combo Box Items
I am working on a program that logs into aim on multiple accounts.

It has a combo box were the account:password is loaded, in a line by line form like:

Account:Password
Account:Password
Account:Password

And so on... I need to make it so that it basically press's down to bring the next account:password into the main field, making it readable, then log into aim with it, using tocsock.


Code:
Private Sub tocSock1_incomingChatID(Index As Integer, strRoom As String, lngId As Long)
Dim a As Integer
Dim sn(Slider1.Value) As String
Dim pw(Silder1.Value) As String
For a = 1 To Slider1.Value
tocsock1(a).loginUser sn(a) pw(a)
Next a
End Sub
That is the code so far. sn will be replaced with the correct control name.property of the split, being the text before :

pw will be replaced with the second part of the split.

I believe my code is correct, I just have to make it perform a split, and after each attempt, move the combo box to the NEXT account, following the one it was just on. It should start socket 1 with the 1st one in the slot, not with the blank part, which would be the (0) of the combobox.

Thanks alot in advance, I hope I explained it enough!

EDIT: The Slider control is what selects how many sockets will be used, which is what "a" is. Thanks!

Move Items Back And Forth Between Listviews
I have populated a listview with two columns of information, one a chemical name and the other an associated code. I want to select one or more names and move them and the code to a second listview, removing them from the first. I also want to be able to remove selected item(s) from the second and pass them back to the first. I have done this with listboxes, but how is this done with listviews. I am stumbling all over I need the codes from the second listview to pass to a SQL query rather than long convoluted chemical names (that have embedded commas as well).

Move Items In 2 List Boxes
I need a code that when the user either clicks up or down items in 2 listboxes will move.

Let me explain... when the user clicks the second of the first list box then clicks the up cmdUp button the second item of the second listbox will also move up. Any suggestions?

Move Listview Items Up/down **RESOLVED**
I'm brand new to the listview and I can't seem to figure this out. I searched the forum and didn't see anything, so...
How do you set the index of an item in the listview? For example, a button the moves the selected item down one position.

Move Between Items By Enter Key Press
Hi dear friend :
how can i move between TextBoxes in Run time in the form by Enter(=#13)
Thanks

Regards
Samaneh

Move Selected Listview Items Up/down/top/bottom
Hello, does anybody know how to move the selected items in a Listview up, down, to the top, to the bottom? Including subitems, keys, tags, etc.

How To Move Multiple Selected Items To New ListView
I have 2 ListView Controls. I need to move multiple selected items from ListView1 to ListView2.

How would I go about doing this?

Drag/Move Items In Listview Like In WinAmp
Hi,

How to make dragable/moveable items in Listview like in WinAmp?
I use viev mode: report (3)
My list have 10 collumns.

The example how to do it would be great ;]

Thanks

Move Items In Listview - Including Subitems
I needed to know how to move items in a listbox up and down. I searched on here and found the code below (Thanks!) but when I use it and move an item, it looses the subitems with it. It only moves the first column. Can someone show me what to do to move the remaining 3 columns each time? And also, what error trap can I put to prevent an error if no items are available to move or if the item it at the top already and I try to move it up?

Thanks alot!!!!

Private Sub ListView1_KeyDown(KeyCode As Integer, Shift As Integer)
x = ListView1.SelectedItem.Index
With ListView1.ListItems
Select Case KeyCode
Case vbKeyUp
.Add x - 1, , .Item(x)
.Remove x + 1
Set ListView1.SelectedItem = .Item(x)
Case vbKeyDown
.Add x + 2, , .Item(x)
.Remove x
Set ListView1.SelectedItem = .Item(x)
End Select
End With
End Sub

Copying The Items From My Listbox To Another Listbox Not In My Program?[UNSOLVED]
Hey!
As you can see I want to copy the items from a listbox in my form into another program(wich i didnt made it, but the program is made with VB)
How can I do this?
P.S : There are two listboxes in the other app!

Thank you!!

I Want To Display Data In Two Columns In Listbox And Add Items In Listbox How Is It Possible In Vb 6.0
i want to display data in two columns in listbox and add items in listbox how is it possible in vb 6.0 ...?

I Want To Display Data In Two Columns In Listbox And Add Items In Listbox How Is It Possible
i want to display data in two columns in listbox and add items in listbox how is it possible ...?

On Mouse Move
I am trying to figure it out what code do I use when I move my mouse out of the command button to load different picture into the command button

example:

1st I make a command button graphical then
I load a picture into the command button in design time, then
when I move mouse over different picture is loaded, and when I move my mouse out of the command button different picture has to be loaded, That where I am having trouble.

Some one please help.

Thanks

On Mouse Move.. How Do You?
I have a form that is full screen and in it is a webbrowser control also full size of form. what i want to do is when the mouse moves to hide the form and show another

Now the problem is the form doesn't detect the mouse movement through the web browser because it works fine with an empty form.

How do I detect mouse movement no matter what the mouse is on , even if it is not on the form if the form is not maximized?

Move A Mouse
I am making a help program and I was wondering how I could move a mouse to a certain location.

If a user clicks on help, and loads the demo. I want the mouse to be able to move to a certain spot and click on the drop down menu, and so on.


Thanks

he9ap00

Mouse Down, Up, Move
ok can i know the difference between the 3 of them...

I would say that Mouse Down is when you click on something and that your finger on the mouse is till holding it...
Finally Mouse up would be when you release the mouse button and Mouse Move would be like when you move the mouse over that object...
and another thing is the dragDrop and the dragOver. What does it do and what the difference with OLE action...

if you know a webpage that explain those option or in the tutorial here not sure i search but there was too many result dunno how to formulate that research...

Mouse Move
any one can help????
how to program to move the cursor in the website??? (act as a mouse)when i have already program to link to it already...
Thanks!!!!

Mouse Move
i have an app where there is a "answer" textbox on the form.
I also have created a form in the shape of a speach bubble and have written code that puts some help text into it.
But i'm having a problem displaying it, i want it to do as follows.
No matter where the form is physically on the screen or where at what point i hover over the text box i want the speach bubble form to popup to the top and right of where the mouse pointer is.
I have not really used the mouse move event before.

Help anyone ???

thanks.

Mouse Move
Hi,
I am trying to popup a form next to the mouse pointer when ever the mouse pointer is moved over a certain text box.
I have put this into my functions module.

Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long

and have this code in the txtbox.mousemove()....

ShapedForm.Move POINTAPI * Screen.TwipsPerPixelX, POINTAPI * Screen.TwipsPerPixelY + ShapedForm.ScaleHeight

ShapedForm.Show vbModal

but this does not work, can anyone see a problem or im i missing somthing ???

Cheers.

Move Mouse
hi all ,

my problem is that i want to move my mouse on vb form after form load to the exact position ex.-i have cmd button on a form i want to show that pointer is going to cmd button .
pointer should go shlowly.it should be viewable.
giv me suitable answer .
thanks,
abhishek mishra

Move Mouse X And Y
Hey , how can i move the mouse x and y co ordinates via code?

i dont mean on the form. ill have the form in the background and i can press a button and the mouse moves to a set location.

something like screen.mouse.x = 500 screen.mouse.y = 200

but actual code instead

Mouse Move
I have a program where you move the mouse on the form to work it. I want to be able to detect when i'm not on the form such as the when the mouse is on the blue bar on the top or on the taskbar or around the window. How can i do this?

Move Mouse
how would you make the mouse move to a certain place into an active x control, then click, then type something?

Move The Mouse
How could using VB could I make it move my mouse say 30 degrees upwards?

Or how could I using VB have it press in pageup and the left arrow key for a certain ammout of time in miliseconds then rightclick?

Copyright © 2005-08 www.BigResource.com, All rights reserved