Phillip,
I didn't explain my second question right - what I meant was if you copy
text, then try pasting via the right shift and insert key, can you then paste
with ctrl-v (I understand ctrl-v works, what I'm curious about is if the
right shift -insert command clears your buffer).
But more importantly than that silly question, have you tried this keyboard
on another machine and if so what happens (if not could you try it?). Also
have you tried another keyboard on this machine - does it work?
Also, here's a script that will return some basic keyboard information - I'd
suggest running it to make sure the OS hasn't incorrectly iddentified your
keyboard. Copy the below code and paste it into a file called keyb.vbs (save
it to c:\keyb.vbs. Go to a command prompt and type cscript c:\keyb.vbs) I
can only verify that the code functions on windows xp so if it errors out on
your 2k box just let me know. thanks. Nick.
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_Keyboard")
For Each objItem in colItems
Wscript.Echo "Caption: " & objItem.Caption
Wscript.Echo "Description: " & objItem.Description
Wscript.Echo "Device ID: " & objItem.DeviceID
Wscript.Echo "Is Locked: " & objItem.IsLocked
Wscript.Echo "Layout: " & objItem.Layout
Wscript.Echo "Name: " & objItem.Name
Wscript.Echo "Number of Function Keys: " & objItem.NumberOfFunctionKeys
Wscript.Echo "Password: " & objItem.Password
Wscript.Echo "PNP Device ID: " & objItem.PNPDeviceID
Next
"Ant" wrote:
> On 4/8/2005 7:59 PM PT, Nick Staff wrote:
>
> > Does your keyboard have multiple functions mapped to the insert key?
> > Meaning is there some sort of FN or F Lock key on your keyboard? I'm not
> > asking because I think your using the wrong key combo but because I did use
> > the wrong key combo and noticed that it cleared my clipboard. My insert key
> > triples as my prtscn and sysreq keys and when I accidentally tried to paste
> > when the f lock was on I lost the text on my clipboard (at first I thought my
> > shift insert wasn't working either).
>
> No, this keyboard does not have FN and F lock keys. It is just a plain
> old PS/2 PC104 keyboard connected to an old Pentium 3 1 Ghz system with
> 512 MB of RAM.
>
>
> > You sound like you've been at this for a bit so I doubt this is the solution
> > for you, but maybe it will provide a clue (after trying the shift-insert
> > combo can you paste using control-v without recopying the text?)
>
> LEFT shift + insert and control-v were fine like in my original post.
> RIGHT shift + insert didn't.
I tried watching my Windows processes
> with Process Explorer, Task Manager, RegMon, and FileMon for any clues
> but that did not show anything interesting. 
> --
> "Is this stuff any good for ants?" "No, it kills them." --unknown
> /\___/\
> / /\ /\ \ Phil/Ant @ http://antfarm.ma.cx & http://aqfl.net (down)
> | |o o| | E-mail (nuke ANT if replying privately to a newsgroup
> \ _ / post): (E-Mail Removed)NT or (E-Mail Removed)
> ( )
> Ant is currently not listening to any songs on his home computer.
>