 |
 |
|
 | |  |
 |
 | |  |
Joined: 29 Aug 2007 |
Posts: 39 |
|
|
 |
Posted: Wed Nov 25, 2009 11:03 pm |
|
 |
 |
 |
 |
Unfortunately, these forums can get a bit combative at times. I think it might be a culture thing.
Anyhow, chilling out and taking a look at it rationally, you'd want to look at the system setup first, rather than trying to solve a problem we don't know exists in one specific area.
My first thought comes to the software that the keyboard is using. Have you always run that keyboard on that system (since it's last format)? If you have run a different keyboard, did it have any software installed, or was there software preinstalled by your system vendor (Dell for example)? In particular 'iTouch.exe' can cause odd issues like this. If you go into task manager and take a look in your processes, is it running?
If not, I'd go through the process list and close down any non-system related ones, giving it a try after each one. You might be able to pinpoint an issue that way.
Cheers.
|
|
 |
 | |  |
Joined: 29 Jun 2009 |
Posts: 26 |
|
|
 |
Posted: Sun Nov 29, 2009 6:01 pm |
|
 |
 |
 |
 |
dmitri,
I have really tried very hard to see if I could replicate the problem any place else, on any other app to try and narrow the scope of the problem. I have tried multiple 32-bit apps and 64-bit apps. Some the apps that I can tell you that I have tried to replicate the problem on are IE8 x64, IE8 x32, Firefox, Google Chrome, Safari, Adobe Photoshop CS4 64bit, Adobe Flex Builder 3 32bit, MS Visual Studio 2005 32bit, Visual Studio 2008 Lite C# 32bit, Windows Live Mail. I can tell you that all of those I have tested where they have focus and none of them interfere with the media buttons. Im really not trying to make this heated. This is such a minor issue and will in no way deter me from continuing to use PhpED as it is without a doubt the main tool that I use and the best one that have used to date. This is just my observations that I am giving you. I have done reboots and have PhpEd the only app running and it still does the same thing. I have not been able to get anything else at all to replicate the problem.
Stryks, same keyboard has been on here since the system was built, yes. No preinstalled software. I built this myself from scratch. I dont do factory installed systems. Cant trust them. iTouch.exe is not running on my system and there has been no extra keyboard software installed. If it was some outside process running, you would think it would have the same effect on other apps as well, and not single out PhpEd.
Like I said, this is a minor issue. Just something I noticed and thought I would report. Ive gotten used to Alt-Tab->Mute->Alt-Tab when I am working in PhpEd. lol
|
|
 |
 | |  |
 |
 | |  |
Joined: 29 Jun 2009 |
Posts: 26 |
|
|
 |
Posted: Mon Nov 30, 2009 4:36 pm |
|
 |
 |
 |
 |
I wrote a quick app to replicate what I am seeing. I am capturing windows messages and looking for WM_APPCOMMAND (0x319) messages, and then not process those messages. All media keys on my keyboard are in fact sending out standard HID protocol messages, nothing special. When the app that I created below has focus, all the media keys are not functional, exactly like happens with PhpEd. I hope this helps to show what I am seeing.
The app is a standard windows form application written in Visual Studio C# 2008 Express. The code below is the pertinent part of the code for the discussion.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Microsoft.Win32;
namespace MediaKeysCapture
{
public partial class Form1 : Form
{
private const int WM_APPCOMMAND = 0x319;
public Form1()
{
InitializeComponent();
}
protected override void WndProc(ref Message m)
{
if (m.Msg == WM_APPCOMMAND)
return;
else
base.WndProc(ref m);
}
}
}
|
[/code]
|
|
 |
 | |  |
 |
 | |  |
 |
 | |  |
 |
 | |  |
Guru master
Joined: 24 Jul 2009 |
Posts: 737 |
|
|
 |
Posted: Mon Nov 07, 2011 7:44 pm |
|
 |
 |
 |
 |
I have a Logitech G19 and that works fine in PhpED. Prior to that I had a Dell multimedia keyboard and that also worked fine. I use the controls a lot because I often listen to the radio whilst programming and mute if I get a phone call
Just checked and I don't have any of the Logitech keyboard drivers loaded. Windows is managing the multi-media controls.
I also have UAC turned off because it annoys the hell out of me for development work. Not sure if that helps in relation to Sangoku's comment about admin being somethng to do with it.
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
All times are GMT - 5 Hours
Page 2 of 4
|
|
|
|  |