1st thing here is to make sure the DS and CC remotes work outside of eHome. Once this done and and you can use the CC and DS remotes by themselves the all you need to do is run the eHome menu editor and turn on the menus.
We use VBScript to run / active the remotes. You can see this code in the eHomeClient.vbs file
'=================================================================
Function EXT_RUN_PHCC()
'--- Powerhome remote control center
'--- have we already init'd this?
If g_oGbl.Cargo_Item("PHCC_INIT") = "1" Then
g_oGbl.EH_ActivatePHCC '--- activate it
Else
'--- set the path
g_oGbl.Cargo_Add "C:\Program Files\powerhome\phremotecc.exe", "PHCC_PATH"
'--- set the caption
g_oGbl.Cargo_Add "Remote Control Center", "PHCC_CAPTION"
'--- load and activate
g_oGbl.EH_ActivatePHCC
'--- OK, set the Init flag
g_oGbl.Cargo_Add "1", "PHCC_INIT"
'--- move the window --- the .7 is a delay to let the EXE init itself
g_oGbl.EH_MoveWindow 0, -20, 800, 547, (g_oGbl.Cargo_Item("PHCC_HWND")), 0.7
End If
End Function
A note on that 0.7 param in the EH_MoveWindow function. This is a delay before we send a resize events to the Powerhome remote window. If you recieve a Powerhome error (resize events) then set this value to something higher. --- 1.0 or 1.2
Toss out some questions if you have any. I know, I know... I need to do a help file...

