SystemParametersInfo questions

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • limhyeam
    New Member
    • Feb 2010
    • 2

    SystemParametersInfo questions

    Hi all,

    I am trying to look high and low on this issue. I know that we can use DeviceInfo to get the UUID, however, I was also trying to get the UUID using SystemParameter sInfo.. I get 1439 Win39Error. I dont know what is wrong with it as the documentation in MSDN on this is only one line.

    Can anyone point out what is wrong with this line? Thanks.

    byte[] UUID = new byte[16];
    const uint SPI_GETUUID = 263;

    SystemParameter sInfo(SPI_GETUU ID, 0, ref UUID, 0);

    Cheers,
    Desmond
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    Windows error 1432 is:
    ERROR_INVALID_L B_MESSAGE
    1432 (0x598) Invalid message for single-selection list box.

    Not sure what else to tell you

    Comment

    Working...