Author Topic: Bluetooth Mass Sender (VB)  (Read 1918 times)

Offline alex2121

  • Newbie
  • *
  • Posts: 4
  • Karma: 0
Bluetooth Mass Sender (VB)
« on: January 23, 2008, 03:51:44 PM »
Hi Mike
I download and use your free Bluetooth Mass Sender Visual Basic sample code.
That was very good.
But I have questions.

- when I run bluetooth mass sender and other btframework sample program using BluetoothFrameworkX.ocx
  a Bluetooth framework demo gilog box show. If i buy your Bluetooth? Framework X that page will be not show?

- Mass sender can send a vCard to  mobile phones, in demo version send btframework vCard if i buy your Bluetooth? Framework X
  can send another vCard?

- Bluetooth mass sender send vCard & files to a phone more times. how can set that send this file only one time to phones?

- How i can find bluetooth mac address list , mass sender find phones mac address , with this can show phone model in form.

- How can see phone name in mass sender.

thanks

Offline Mike Petrichenko

  • Bluetooth Framework Developer
  • Administrator
  • Hero Member
  • *****
  • Posts: 2491
  • Karma: 1000
    • Wireless Communication Library
Re: Bluetooth Mass Sender (VB)
« Reply #1 on: January 23, 2008, 04:11:27 PM »
Good day!

- when I run bluetooth mass sender and other btframework sample program using BluetoothFrameworkX.ocx
  a Bluetooth framework demo gilog box show. If i buy your Bluetooth? Framework X that page will be not show?

Correct. The registered version of the library does not have any splash screen (demo dialog).

- Mass sender can send a vCard to  mobile phones, in demo version send btframework vCard if i buy your Bluetooth? Framework X
  can send another vCard?

You may change the vCard in demo as well. There is CompanyInfo property which is send as vCard. You may change this property to change the vCard.

- Bluetooth mass sender send vCard & files to a phone more times. how can set that send this file only one time to phones?

You should write OnAcceptDevice event handler to accept or decline phones to send data to. Please, use search on this forum to find more details.

- How i can find bluetooth mac address list , mass sender find phones mac address , with this can show phone model in form.

Unfortunatelly there is no common way to know the phone model. But somewere on thi forum the links for such information was posted.

- How can see phone name in mass sender.

Each event of the MassSender has a Device parameter. You may read Device.Name property to know the phone's name.
WCL - Wireless Communication Library
TextBlue - Bluetooth Proximity Marketing Software
WCL Phone Explorer - Free Phone Content Manager

Offline alex2121

  • Newbie
  • *
  • Posts: 4
  • Karma: 0
Re: Bluetooth Mass Sender (VB)
« Reply #2 on: January 25, 2008, 12:53:20 PM »
Hi Mike,
thanks for your help.
please explane how?

- Mass sender can send a vCard to  mobile phones, in demo version send btframework vCard if i buy your Bluetooth? Framework X
  can send another vCard?



You may change the vCard in demo as well. There is CompanyInfo property which is send as vCard. You may change this property to change the vCard.

Offline Mike Petrichenko

  • Bluetooth Framework Developer
  • Administrator
  • Hero Member
  • *****
  • Posts: 2491
  • Karma: 1000
    • Wireless Communication Library
Re: Bluetooth Mass Sender (VB)
« Reply #3 on: January 25, 2008, 01:08:00 PM »
Good day!

Its easy. BFBluetoothMassSenderX component has property CompanyInfo. This property has sub-properties (EMail, Message, Name, Phone URL). MassSender uses this properties to build vCard and send it to the phone. You may change this properties as you want even using Demo version of the BTF. Also, MassSender has SendCompanyInfo property (it is Boolean property). You may set it to False for not send vCard with Company info.
WCL - Wireless Communication Library
TextBlue - Bluetooth Proximity Marketing Software
WCL Phone Explorer - Free Phone Content Manager

Offline alex2121

  • Newbie
  • *
  • Posts: 4
  • Karma: 0
Re: Bluetooth Mass Sender (VB)
« Reply #4 on: January 25, 2008, 03:48:19 PM »
Hi Mike,
Thank for your quick reply.
I'm beginner in programming.
can you give me a sample code in this.

Regards

Offline Mike Petrichenko

  • Bluetooth Framework Developer
  • Administrator
  • Hero Member
  • *****
  • Posts: 2491
  • Karma: 1000
    • Wireless Communication Library
Re: Bluetooth Mass Sender (VB)
« Reply #5 on: January 25, 2008, 03:54:33 PM »
Here is
WCL - Wireless Communication Library
TextBlue - Bluetooth Proximity Marketing Software
WCL Phone Explorer - Free Phone Content Manager

Offline alex2121

  • Newbie
  • *
  • Posts: 4
  • Karma: 0
Re: Bluetooth Mass Sender (VB)
« Reply #6 on: January 25, 2008, 03:59:02 PM »
Dear Mike,
I have than.
I don't know how complete these:

  BFBluetoothMassSenderX.SendCompanyInfo = True
  BFBluetoothMassSenderX.CompanyInfo.EMail = ????
  BFBluetoothMassSenderX.CompanyInfo.Message = ????
  BFBluetoothMassSenderX.CompanyInfo.Name = ????
  BFBluetoothMassSenderX.CompanyInfo.Phone = ????
  BFBluetoothMassSenderX.CompanyInfo.URL = ????
 

Offline Mike Petrichenko

  • Bluetooth Framework Developer
  • Administrator
  • Hero Member
  • *****
  • Posts: 2491
  • Karma: 1000
    • Wireless Communication Library
Re: Bluetooth Mass Sender (VB)
« Reply #7 on: January 25, 2008, 04:26:50 PM »
Something like this

BFBluetoothMassSenderX.SendCompanyInfo = (cbSendvCard.Value = Checked)
  BFBluetoothMassSenderX.CompanyInfo.EMail = "email@domain.com"
  BFBluetoothMassSenderX.CompanyInfo.Message = "My message text"
  BFBluetoothMassSenderX.CompanyInfo.Name = "SuperPuperCompany"
  BFBluetoothMassSenderX.CompanyInfo.Phone = "+11111111111"
  BFBluetoothMassSenderX.CompanyInfo.URL = "www.domain.com"
WCL - Wireless Communication Library
TextBlue - Bluetooth Proximity Marketing Software
WCL Phone Explorer - Free Phone Content Manager