I want to make a little application that changes the default playback device in windows 7. The only solution was to interact with the Sound Applet. I succeeded to get the handle to the SysListView32 window that has the devices name but i cant get the text from the ListView.

This is the code used:

IntPtr sListView = (window handle received from another function)
LVITEM lvi = new LVITEM();
lvi.mask = LVIF_TEXT;
lvi.cchTextMax = 1024;
lvi.iItem = 0; // i tried with a loop trought all the items
lvi.iSubItem = 0;
lvi.pszText = Marshal.AllocHGlobal(1024);

IntPtr ptrLvi = Marshal.AllocHGlobal(Marshal.SizeOf(lvi));
Marshal.StructureToPtr(lvi, ptrLvi, false);

SendMessage(sListView, (int)WinMesages.LVM_GETITEMW, IntPtr.Zero, ptrLvi);

string strLvi = Marshal.PtrToStringAuto(lvi.pszText);

The result (strLvi) are some chinese letters. What is wrong in the script?

UPDATE: LVITEM struct is this:

private struct LVITEM
{
    public uint mask;
    public int iItem;
    public int iSubItem;
    public uint state;
    public uint stateMask;
    public IntPtr pszText;
    public int cchTextMax;
    public int iImage;
    public IntPtr lParam;
}

The sLIstView handle is correct... a checked in spy++. What test do i need to perform to check where is the problem? I could give you all the script if that would help.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Have you tried using LWM_GETITEMTEXTW instead?

link|improve this answer
Yes i tried.. same thing – Sp3ct3R Sep 30 '11 at 17:02
@Sp3ct3R: Than what about string encoding? Can you try using PtrToStringUni/PtrToStringAnsi instead of PtrToStringAuto? – Sergey Kudriavtsev Sep 30 '11 at 20:58
There are another characters but not decipherable. i`ve tried with LWM_GETITEMTEXTW and LWM_GETITEMW like in my original post. Thanks for replying. – Sp3ct3R Sep 30 '11 at 21:52
@Sp3ct3R: Did some search on the Internet - seems your code is generally correct, but only for in-process communication. You just can't use it for interprocess communication because a pointer returned from call to SendMessage will be relative to process and thus invalid in your process context. Link to the forum topic where you can find some suggestions: dotnetmonster.com/Uwe/Forum.aspx/dotnet-interop/1285/… . – Sergey Kudriavtsev Oct 1 '11 at 8:02
Thanks i will try to convert that c++ script into C#. I will post here if i get in trouble. – Sp3ct3R Oct 1 '11 at 9:03
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.