473,549 Members | 2,708 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Which one is the Bluetooth DLL?

Hi All,

I am going to use some Bluetotoh API, should I include some special DLL
or just call it directly?

Best regards,
Boki.

May 6 '06 #1
4 2225
> Hi All,

I am going to use some Bluetotoh API, should I include some special DLL
or just call it directly?

Best regards,
Boki.


Hi,
I don't know what you mean by 'call directly'. but
if you are using the microsoft bluetooth api, then this could help you:
http://msdn.microsoft.com/library/de..._bluetooth.asp
http://msdn.microsoft.com/library/de..._api__amdi.asp

if you are using a 3d part API, then consult the API manual on how to
configure your poject.
it is also possible to configure a bluetooth device as a serial port or
tcpip port

There are also a couple of examples on www.codeproject.com

--

Kind regards,
Bruno van Dooren
br************* *********@hotma il.com
Remove only "_nos_pam"
May 7 '06 #2

Bruno van Dooren wrote:
Hi All,

I am going to use some Bluetotoh API, should I include some special DLL
or just call it directly?

Best regards,
Boki.


Hi,
I don't know what you mean by 'call directly'. but
if you are using the microsoft bluetooth api, then this could help you:
http://msdn.microsoft.com/library/de..._bluetooth.asp
http://msdn.microsoft.com/library/de..._api__amdi.asp

if you are using a 3d part API, then consult the API manual on how to
configure your poject.
it is also possible to configure a bluetooth device as a serial port or
tcpip port

There are also a couple of examples on www.codeproject.com

--

Kind regards,
Bruno van Dooren
br************* *********@hotma il.com
Remove only "_nos_pam"


Hi,

To explain my question:

For example, I want to use CallWindowProc, I have to use "use32.dll" ,
if I want to call Bluetooth APIs, which DLL should I use ?

Declare Function CallWindowProc Lib "user32" Alias "CallWindowProc A" _
(ByVal lpPrevWndFunc As Long, ByVal hWnd As Long, _
ByVal Msg As Long, ByVal wParam As Long, _
ByVal lParam As Long) As Long
Best regards,
Boki.

May 7 '06 #3
>> I don't know what you mean by 'call directly'. but
if you are using the microsoft bluetooth api, then this could help you:
http://msdn.microsoft.com/library/de..._bluetooth.asp
http://msdn.microsoft.com/library/de..._api__amdi.asp

if you are using a 3d part API, then consult the API manual on how to
configure your poject.
it is also possible to configure a bluetooth device as a serial port or
tcpip port

There are also a couple of examples on www.codeproject.com

--

Kind regards,
Bruno van Dooren
br************* *********@hotma il.com
Remove only "_nos_pam"


Hi,

To explain my question:

For example, I want to use CallWindowProc, I have to use "use32.dll" ,
if I want to call Bluetooth APIs, which DLL should I use ?

Declare Function CallWindowProc Lib "user32" Alias "CallWindowProc A" _
(ByVal lpPrevWndFunc As Long, ByVal hWnd As Long, _
ByVal Msg As Long, ByVal wParam As Long, _
ByVal lParam As Long) As Long
Best regards,
Boki.


Hi Boki,

If you look up the individual functions that you want to use (for example
the accept function) you will also get information as to which header to
include, lib to link to and dll will be used.
for example, this page links to the accept function:
http://msdn.microsoft.com/library/de...setservice.asp
which has a description of the function, together with the information that
you need.
http://msdn.microsoft.com/library/de...k/accept_2.asp

You also might want to search on codeproject for some examples that might
save you some time.
--

Kind regards,
Bruno van Dooren
br************* *********@hotma il.com
Remove only "_nos_pam"
May 7 '06 #4
> > Hi,
I don't know what you mean by 'call directly'. but
if you are using the microsoft bluetooth api, then this could help you:
http://msdn.microsoft.com/library/de..._bluetooth.asp
http://msdn.microsoft.com/library/de..._api__amdi.asp

if you are using a 3d part API, then consult the API manual on how to
configure your poject.
it is also possible to configure a bluetooth device as a serial port or
tcpip port

There are also a couple of examples on www.codeproject.com

--

Kind regards,
Bruno van Dooren
br************* *********@hotma il.com
Remove only "_nos_pam"


Hi,

To explain my question:

For example, I want to use CallWindowProc, I have to use "use32.dll" ,
if I want to call Bluetooth APIs, which DLL should I use ?

Declare Function CallWindowProc Lib "user32" Alias "CallWindowProc A" _
(ByVal lpPrevWndFunc As Long, ByVal hWnd As Long, _
ByVal Msg As Long, ByVal wParam As Long, _
ByVal lParam As Long) As Long

Hi,
you can also get bluetooth devices to act as serial ports in windows.
That way you can easily communicate with them using the serial port .NET
class.
That might be mugh easier than having to muck about with socket functions.

These articles might help you with that.
http://search.msdn.microsoft.com/sea...th+serial+port

http://www.devx.com/dotnet/Article/31001
http://msdn2.microsoft.com/en-us/library/ms228841.aspx
http://sharewareconnection.com/bluetooth-net.htm

--

Kind regards,
Bruno.
br************* *********@hotma il.com
Remove only "_nos_pam"

May 8 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
2265
by: Thomas_Germany | last post by:
I would like to develop a smart device bluetooth application for pocket PC 2003. As I know, Pocket PC 2003 includes the microsoft bluetooth stack. My intention is to use the SDK from mircrosoft and not the expensive SDK from WIDCOMM to use the bluetooth programming interfaces. But, as I know most pocket PCs with integrated bluetooth chips use...
0
1637
by: Mulham | last post by:
hi everybody... im a c# developer , but im very new in bluetooth programming ! my questions are : 1. i searched on msnd and found many c# functions for bluetooth, but i dont know wiether these functions work on any bluetooth dungle (sender/reciever) ? are there any restrictions on the dungle i use ? the only thing i have is the driver that...
1
10895
by: henrycortezwu | last post by:
Hi All, I'm trying to connect to a virtual port (COM19, OUTGOING, "Bluetooth Serial Port") using VS2005 System.IO.Ports. When I ran the ff code below here's what happens. 1) VS2005 Compiles w/o errors 2) My Nokia 6600 prompted me the message "Accept Connection request from DEMON?" note: DEMON is my computers name. 3) Using my Nokia 6600,...
4
5653
by: Boki | last post by:
Hi All, I am going to use some Bluetotoh API, should I include some special DLL or just call it directly? Best regards, Boki.
2
5416
by: colin | last post by:
Hi, Im having a tiresome amount of trouble with using a bluetooth serial link. The receiving end is a bluetooth-rs232 module conected to my embeded system. The PC has a little usb bluetooth dongle, ive tried a another dongle with widicom software as I was having problems with the IVT bluesoleil software. that seems to have got rid of...
6
8497
by: jabslim | last post by:
excuse me, im a newbie programmer and i need a code on how to to be able to send files from a mobile phone to a pc through bluetooth in vb.net can anyone post a code here on how to detect a bluetooth device and how to send files to the pc in vb.net? i would really really appreciate your help!!
1
2421
by: gringgos | last post by:
hi, friends... Currently i am doing a project based on bluetooth and Visual Basic 6.0. But i am unable to find any solution regarding bluetooth. But my supervisor gave her idea about do a code where it runs the bluetooth application as a hidden program to send the audio file. It is where when i click the button send, it will operate the file...
1
6076
by: Z.K. | last post by:
I know this is probably not the correct newsgroup, but I can't find anywhere else that is appropriate to post it in. I need to figure out how to write a bluetooth program to access a bluetooth barcode scanner. After a lot of searching the Internet, I have come to the conclusion that something using RFCOMM would be best. Unfortunately,...
2
1973
by: Dave Harry | last post by:
I'm using the following code to determine the available serial ports: ComboBoxPort.Items.Clear() For Each sp As String In My.Computer.Ports.SerialPortNames ComboBoxPort.Items.Add(sp) Next It worked well in XP, but under Vista (now with SP1) the Bluetooth ports don't show correctly. We have half a dozen different brands and types of...
0
7524
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7960
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
7812
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6048
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5372
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5089
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3501
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3483
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1061
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.