Click here to Skip to main content
15,867,979 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Prompt to add files when inserted MISSING Pin
Kris Morness30-Mar-04 14:30
Kris Morness30-Mar-04 14:30 
QuestionSend mail thru Lotus Notes ? Pin
MrBean29-Mar-04 21:29
MrBean29-Mar-04 21:29 
AnswerRe: Send mail thru Lotus Notes ? Pin
Daniel Turini29-Mar-04 21:41
Daniel Turini29-Mar-04 21:41 
GeneralCompiling project developed in VC 6.0 .NET Compiler Pin
Vini Deep29-Mar-04 20:48
Vini Deep29-Mar-04 20:48 
GeneralRe: Compiling project developed in VC 6.0 .NET Compiler Pin
Colin Angus Mackay29-Mar-04 22:10
Colin Angus Mackay29-Mar-04 22:10 
GeneralRe: Compiling project developed in VC 6.0 .NET Compiler Pin
Vini Deep29-Mar-04 23:06
Vini Deep29-Mar-04 23:06 
QuestionHow to soft reset PDA (Pocket PC) in VB.net CF Pin
maithoa29-Mar-04 16:46
maithoa29-Mar-04 16:46 
AnswerRe: How to soft reset PDA (Pocket PC) in VB.net CF Pin
Roman Rodov30-Mar-04 15:44
Roman Rodov30-Mar-04 15:44 
You need to use the KernelIoControl Windows CE API function from coredll.dll
<br />
[DllImport("coredll.dll")]<br />
private static extern void KernelIoControl( <br />
  int dwIoControlCode, <br />
  IntPtr lpInBuf, <br />
  IntPtr nInBufSize, <br />
  IntPtr lpOutBuf, <br />
  int nOutBufSize, <br />
  IntPtr lpBytesReturned <br />
);<br />
<br />
private static int METHOD_BUFFERED = 0;<br />
private static int FILE_ANY_ACCESS = 0<br />
private static int FILE_DEVICE_HAL = 0x101;<br />
<br />
private static int IOCTL_HAL_REBOOT= (0x10000 * FILE_DEVICE_HAL) | (0x4000 * FILE_ANY_ACCESS) | (0x4 * 15) | METHOD_BUFFERED;<br />
<br />


No call KernelIoControl like this:

KernelIoControl(IOCTL_HAL_REBOOT, IntPtr.Zero, 0, IntPtr.Zero, 0, IntPtr.Zero);

hope this helps
GeneralRe: How to soft reset PDA (Pocket PC) in VB.net CF Pin
maithoa1-Apr-04 14:17
maithoa1-Apr-04 14:17 
GeneralSystem.PlatformNotSupportedException when call a webservice on a Windows 2003 PC Pin
maithoa29-Mar-04 16:02
maithoa29-Mar-04 16:02 
GeneralSystem.Type Object Pin
Dan Broomall29-Mar-04 8:36
Dan Broomall29-Mar-04 8:36 
GeneralRe: System.Type Object Pin
Andy Brummer29-Mar-04 16:14
sitebuilderAndy Brummer29-Mar-04 16:14 
GeneralRe: System.Type Object Pin
Roman Rodov29-Mar-04 18:12
Roman Rodov29-Mar-04 18:12 
GeneralSend and receive file on VB.NET Pin
Anonymous29-Mar-04 3:08
Anonymous29-Mar-04 3:08 
GeneralRe: Send and receive file on VB.NET Pin
Colin Angus Mackay29-Mar-04 3:49
Colin Angus Mackay29-Mar-04 3:49 
GeneralRe: Send and receive file on VB.NET Pin
Anonymous29-Mar-04 4:30
Anonymous29-Mar-04 4:30 
GeneralRe: Send and receive file on VB.NET Pin
Colin Angus Mackay29-Mar-04 5:26
Colin Angus Mackay29-Mar-04 5:26 
GeneralRe: Send and receive file on VB.NET Pin
Anonymous29-Mar-04 5:50
Anonymous29-Mar-04 5:50 
GeneralRe: Send and receive file on VB.NET Pin
Randy S29-Mar-04 12:54
Randy S29-Mar-04 12:54 
GeneralRational XDE Pin
IamADotNetGuy28-Mar-04 21:56
IamADotNetGuy28-Mar-04 21:56 
QuestionHow to know user rights Pin
Sreepathi28-Mar-04 14:21
Sreepathi28-Mar-04 14:21 
AnswerRe: How to know user rights Pin
Roman Rodov29-Mar-04 3:19
Roman Rodov29-Mar-04 3:19 
GeneralRe: How to know user rights Pin
Sreepathi29-Mar-04 17:29
Sreepathi29-Mar-04 17:29 
Generalpocket pc infrared (consumer) Pin
Marlixx26-Mar-04 11:47
Marlixx26-Mar-04 11:47 
GeneralDotNet Remoting-----------------&gt;Urgent Pin
munishk26-Mar-04 10:45
munishk26-Mar-04 10:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.