Microsoft Development
--
Questions
--
Followers
Top Experts
I started my mobile development on Motorola MC70 &Â MC75.
Using VS2008 C# and Enterprise Mobility Developer Kit for .NET version 2.6
i am using this DLL Symbol.Fusion.dll to connect to WLAN dll version is 2.6.0.3
WLAN myCommandModeWlan = null;
myCommandModeWlan = new WLAN(FusionAccessType.COMM
i am facing this error: "No compatible FusionInterface dll found. Expected version is 4.3.0.2 or higher version having the format 4.x.x.x"
please i need your advice it is so urgent.
- i want to Enable/Disable WLAN
- i want to Connect to specific access Point
thanks,
Zero AI Policy
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
tell me how to know that.
also this version of DLL will also work with MC70?
Then go on and use the WM65 download.






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
Here is a download for MC65 (running WM65): http://support.symbol.com/support/search.do?cmd=displayKC&docType=kc&externalId=13497&sliceId=&dialogID=53173214&stateId=0%200%2053165532Â ?
or something else?
but sometimes i get this error:
WLAN myCommandModeWlan = null;
myCommandModeWlan = new WLAN(FusionAccessType.COMM
FusionInterfaceOpenEx failed : Too many applications running in Command mode
please help
using System.Linq;
using System.Collections.Generic
using System.Text;
using Symbol.Fusion;
using Symbol.Fusion.WLAN;
using Symbol.Exceptions;
namespace RamzyMobile
{
  class WIFIRadio
  {
    WLAN myCommandModeWlan = null;
    Config myConfig = null;
    public WIFIRadio()
    {
      try
      {
        myCommandModeWlan = new WLAN(FusionAccessType.COMM
        //create a reference to Config
        myConfig = new Config(FusionAccessType.CO
      }
      catch (OperationFailureException
      {
        System.Windows.Forms.Messa
      }
    }
    ~WIFIRadio()
    {
      myCommandModeWlan.Dispose(
      myCommandModeWlan = null;
    }
    public void ToggleWiFi(bool enableWiFi)
    {
      try
      {
        if (myCommandModeWlan != null)
        {
          if (enableWiFi)
          {
            myCommandModeWlan.Adapters
          }
          else
          {
            myCommandModeWlan.Adapters
          }
        }
      }
      catch (OperationFailureException
      {
        System.Windows.Forms.Messa
      }
    }
    public bool GetCurrentStatus()
    {
      if (myCommandModeWlan != null)
      {
        if (myCommandModeWlan.Adapter
        {
          return true;
        }
        else
        {
          return false;
        }
      }
      else
      {
        return false;
      }
    }
    public void ConnectToProfile(string strProfileName)
    {
      Profile myProfile = GetProfileByID(strProfileN
      if (myProfile != null)
      {
        myProfile.Enabled = true;
        FusionResults result = myProfile.Connect(true);
        if (result != FusionResults.SUCCESS)
        {
          //Error
        }
      }
    }
    public Profile GetProfileByID(string profileName)
    {
      Profiles myProfiles = myCommandModeWlan.Profiles
      //traverse all Profiles
      for (int profileIndex = 0; profileIndex < myProfiles.Length; profileIndex++)
      {
        Profile myProfile = myProfiles[profileIndex];
        if (profileName == myProfile.Name)
        {
          return myProfile;
        }
      }
      return null;
    }
  }
}

Get a FREE t-shirt when you ask your first question.
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
i got this error:
FAPI_FAILURE = Fusion Public API failed in the operation
so pleas advice.
thanks,
i want you to see it too + i have some questions.
so can i added it here or do you want me to open a new question ?
thanks
you should contact motorola support about your issue with there hardware and software. The code is OK.
I fear here is no one that help with siiues inside motorola software.
Sorry
Josef






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
Microsoft Development
--
Questions
--
Followers
Top Experts
Most development for the Microsoft platform is done utilizing the technologies supported by the.NET framework. Other development is done using Visual Basic for Applications (VBA) for programs like Access, Excel, Word and Outlook, with PowerShell for scripting, or with SQL for large databases.