Click here to Skip to main content
15,885,767 members
Articles / Programming Languages / Visual Basic

Beam a File From Your Pocket PC Using VB.NET

Rate me:
Please Sign up or sign in to vote.
2.74/5 (12 votes)
20 Apr 2005CPOL 37.9K   18   3
How to beam a file from your Pocket PC.

Introduction

This is the code that enables you to beam a file via infrared from your Pocket PC.

Someone on a forum asked me how you beam a file with VB.NET. I couldn't find anything so I took a chance and used the actual Beam.exe to beam the file and it worked. Here's the code:

VB
Imports System.Runtime.InteropServices
Public Class Wireless
<DllImport("CoreDll.DLL", SetLastError:=True)> _
Private Shared Function CreateProcess(ByVal imageName As String, _
                            ByVal cmdLine As String, _
                            ByVal lpProcessAttributes As IntPtr, _
                            ByVal lpThreadAttributes As IntPtr, _
                            ByVal boolInheritHandles As Int32, _
                            ByVal dwCreationFlags As Int32, _
                            ByVal lpEnvironment As IntPtr, _
                            ByVal lpszCurrentDir As IntPtr, _
                            ByVal si() As Byte, _
                            ByVal pi As ProcessInfo) As Integer
End Function
<DllImport("CoreDll.dll")> _
Private Shared Function GetLastError() As Int32
End Function
Public Shared Function CreateProc(ByVal ExeName As String, _
                              ByVal CmdLine As String, _
                              ByVal pi As ProcessInfo) As Boolean
    If pi Is Nothing Then
        pi = New ProcessInfo
    End If
    Dim si(127) As Byte
    Return CreateProcess(ExeName, CmdLine, IntPtr.Zero, _
                                     IntPtr.Zero, 0, 0, _
                                     IntPtr.Zero, _
                                     IntPtr.Zero, si, pi) <> 0
End Function 'CreateProc
End Class 'Externals
Public Class ProcessInfo
Public hProcess As IntPtr
Public hThread As IntPtr
Public ProcessId As Int32
Public ThreadId As Int32
End Class 'ProcessInfo
Wireless.CreateProc("\Windows\Beam.exe", filename, nothing)

The filename being the file that you are beaming.

Have fun!!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionWhat about BlueTooth beaming? Pin
beardedfiend30-Sep-08 14:55
beardedfiend30-Sep-08 14:55 
What would I need to modify in this code to do a BlueTooth beam? Ideally I would like to beam a folder and its contents.
Generalnice but... Pin
bobsugar22212-Jun-07 7:25
bobsugar22212-Jun-07 7:25 
GeneralRe: nice but... Pin
VbGuru61312-Jun-07 7:34
VbGuru61312-Jun-07 7:34 

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.