J Joshua T. Moore Aug 31, 2004 #1 I need to be able to shutdown a CE.NET device using c#...anyone know how? Thanks.
P Paul G. Tobey [eMVP] Aug 31, 2004 #3 ....using keybd_event(). Likely, you can find this information in the archives of this newsgroup. Here's a search link for it: http://groups.google.com/groups?hl=...soft.public.dotnet.framework.compactframework Paul T.
....using keybd_event(). Likely, you can find this information in the archives of this newsgroup. Here's a search link for it: http://groups.google.com/groups?hl=...soft.public.dotnet.framework.compactframework Paul T.
C Chris Tacke, eMVP Sep 1, 2004 #4 ....or SendKeys from the SDF... -Chris Paul G. Tobey said: ...using keybd_event(). Likely, you can find this information in the archives of this newsgroup. Here's a search link for it: http://groups.google.com/groups?hl=...soft.public.dotnet.framework.compactframework Paul T. Click to expand...
....or SendKeys from the SDF... -Chris Paul G. Tobey said: ...using keybd_event(). Likely, you can find this information in the archives of this newsgroup. Here's a search link for it: http://groups.google.com/groups?hl=...soft.public.dotnet.framework.compactframework Paul T. Click to expand...
G Guest Sep 20, 2004 #5 Here's some VB.NET code that works for me. Maybe I shouldn't be using it but it seems to work fine. Public Declare Sub GwesPowerOffSystem Lib "Coredll" () Sub PowerOff() GwesPowerOffSystem() End Sub Good Luck, shapij
Here's some VB.NET code that works for me. Maybe I shouldn't be using it but it seems to work fine. Public Declare Sub GwesPowerOffSystem Lib "Coredll" () Sub PowerOff() GwesPowerOffSystem() End Sub Good Luck, shapij