Search results for query: *

  • Users: jjm
  • Order by date
  1. J

    Read data on a SIM card (PhoneBook)

    Here is the solution : http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=5113
  2. J

    Simulate a keypress on the phonecallkey of a smartphone

    this code is ok : ---------------------------------------------- Const KEYEVENTF_KEYUP = &H2 Const KEYEVENTF_KEYDOWN = &H0 <DllImport("coredll.dll", CharSet:=CharSet.Unicode)> _ Public Shared Sub keybd_event(ByVal bVk As Byte, ByVal bScan As Byte, ByVal dwFlags As Integer, ByVal dwExtraInfo...
  3. J

    Simulate a keypress on the phonecallkey of a smartphone

    Hi, I'd like to simulate a keypress on the phonecall key of a smartphone. I've found the keycode of this key which is 114. So i use keybd_event method, but there is always a "notSupportdExeption" could you please explain me why... Here is my code ...
  4. J

    Read data on a SIM card (PhoneBook)

    Hi, I'm trying to read the entries of the phoneRepertory of a smart phone (accessing datas of the SIM card) here is my code : ------------------------------------------------------------------------------------- <StructLayout(LayoutKind.Sequential)> _ Public Structure SimPhoneBookEntry...
  5. J

    Take an incomming call on a smartphone

    Hi, I'm trying to make a program in VB using SmartPhone functions. For instance, I succed to dial a call with PhoneMakeCall function : http://msdn.microsoft.com/library/default.asp?url=/library/en-us/APISP/html/sp_phone_phonemakecall.asp I'd like to know if it's possible to take an incomming...
Back
Top