Microsoft Visual Basic Compiler - MAC and also IPHONE

I work for a company that manufactures traffic calming products. Our software development for the sign has been in Microsoft Visual Basic which is then compiled for the windows environment.
I need to locate a compiler that will hopefully compile it for use on the MAC and also possibly the IPHONE. Many of our customers are looking for a MAC version of the code. It is a simple program that uses bluetooth to communicate to the bluetooth modem in the sign, sending and receiving data and settings.
Thank any of you that can help me with this project. Rich Garrett [email protected] 678-925-3555 www.radarsign.com

xnav is right. RealBASIC is a good one to check out. I have a small amount of experience with it, as well as Visual Basic and Liberty BASIC. So, I don't really care for BASIC or any of its variants, but I think that if you to program BASIC on the Mac then RealBASIC is a good way to go. It's similar to Visual Basic, and provides a simple way to build basic (and maybe not-so-basic) apps on the Mac. I'm not sure if it supports iPhone development or not, but it's definitely worth looking into if you need to program BASIC on Mac, and it's the only BASIC-based development environment on the Mac that I know of (there could be more that I don't know of though).

Similar Messages

  • Excel Error: Microsoft Visual Basic Application: "Compile error in hidden module: Module 11

    i am enable to creat XML file in excel when ever try to creal the XML file it shows  Microsoft Visual Basic : "Compile error in hidden module MODULE 11
    can any one help me to solve this issue

    Hi,
    For the error message, this problem may occur when the following conditions are true:     
    The Microsoft Office Startup folder or the Microsoft Excel Startup folder contains either or both of the following Adobe Acrobat PDFMaker add-in template files:
    Pdfmaker.dot
    Pdfmaker.xla
    Norton AntiVirus software is installed.
    No full installed
    Please try the following methods:
    Method 1: Download the latest version of the add-in for Adobe Acrobat 5.0
    Method 2: Move the files
    Method 3: Visit the Symantec Web site for Norton Antivirus information   and product updates
    Method 4: Repair from the CD disk.
    For more detail information, please refer to the following link:
    http://support.microsoft.com/kb/307410/en-us
    Regards,
    George Zhao
    TechNet Community Support

  • Microsoft Forms and Microsoft Visual Basic while opening the Excel file

    Hello,
    I have issues with 2010 64 bit Office Pro Plus Excel. Whenever I open an Excel file (97-2003 worksheet) which has macros then I get below 2 errors in sequence.
    Please note that all macro settings are enabled and below are my system configs.
    Win 7 Ultimate 64 bit,
    MS Office Pro Plus 2010 64 bit with SP2.
    Googled all and tried but in vein and also note that I dont have any .exd files under ../forms to delete. Please help.
    Please note that for others with same system config/office versions and same 97-2003 worksheet it works so issues is only in my system.
    First Error
    Microsoft Forms
    Could not load an object because it is not available on this machine.
    Second Error
    Microsoft Visual Basic for Applications
    Compile error in hidden module:  MainUtilities2.
    This error commonly occurs when code is incompatible with the version, platform, or architecture of this application.  Click "Help" for information on how to correct this error.
    Thanks.

    Your macro's will not run in a Office 64 environment only in a 32bit environment. The 64bit environment has a whole different setup and macro's created in an earlier 32 bit environment will stop working.
    So if you want to use them in a 64 Office environment you have to rewrite the macro's.
    have a look here:
    http://msdn.microsoft.com/en-us/library/gg264421.aspx
    Maurice

  • I have 2 computers (1 Pc and 1 MAC) and 1 Iphone.The I phone is synchronised with the PC. I want to synchronised it also with my MAC, without erasing all my music and files. Someone can help me to find the answer ?

    I have 2 computers (1 Pc and 1 MAC) and 1 Iphone.The I phone is synchronised with the PC. I want to synchronised it also with my MAC, without erasing all my music and files. Someone can help me to find the answer ?
    i have already try the copy/paste thing with the ID of the file "iTunes Music Library.xml" it didn't change a thing. each time I relaunched Itunes, the ID is the first I have in the MAC.
    I have more than 5 000 files of music. I don't want to recreate one by one all my playlits.
    Many thnaks for your answers.
    Constance

    You can sync iphone with one and only one computer at a time.  If you sync to another, it will erase the current content and replace with content form the new computer.  There is no way around this.
    Put everything on one computer and sync from there.
    BTW, you posted in the Home Share forum.  Your question seems to have nothing to do with home share.

  • How can i download visual basic on mac??

    how can i download visual basic on mac?

    Not download and run on OS X. You can run Windows on your computer via Boot Camp or using virtualization software like Parallels. But MS does not have a Mac compatible version of VB
    There are third-party Basics for OS X, however they are not VB. The closest to VB is probably REAL Basic.
    OS X's own programming environment is XCode which is a free download via the App Store. It is a development environment that uses C as the compiler language. XCode is a visual development environment, too.

  • How do i use directX in microsoft visual basic studio 2010 express ?

    i am writing code to graph stock market prices using microsoft visual basic studio express
    i want fast response (i do machine language) using directX
    this is my problem
    i have never used directX, and i have never used directX in visual basic studio
    i followed a tutorial that went like this
      Reference: Microsoft.DirectX
                 Microsoft.DirectX.Direct3D
                 Microsoft.DirectX.Direct3DX
        Imports: Microsoft.DirectX
                 Microsoft.DirectX.Direct3D
                 Microsoft.DirectX.Direct3DX
        Declare: Private D3Ddev As Device = Nothing
                 Private D3Dpp As PresentParameters = Nothing
                 Private DP As DisplayMode = Nothing
    i found the reference dll's at C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0
    when i imported microsoft.directX.direct3DX i got error #1
    namespace or type specified in the imports 'microsoft.directX.direct3DX' doesn't contain any public member or cannot be found...
    the same error occurs wether i use direct3DX \1.0.2911.0 or \1.0.2902.0
    when i built and ran, i got error #2
    microsoft visual basic 2010 express is waiting for an operation to complete ...
    it hangs and i have to soft reset ctrl-alt-del
    error #3
    when i reference
      Microsoft.DirectX
      Microsoft.DirectX.Direct3D and
      Microsoft.DirectX.Direct3DX
      from C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0,
    all my declares work:
            D3Dpp = New PresentParameters()                             'Initialize
    some stuff for the Presentation parameters
            D3Dpp.BackBufferFormat = DP.Format
            D3Dpp.BackBufferWidth = DP.Width
            D3Dpp.BackBufferHeight = DP.Height
            D3Dpp.SwapEffect = SwapEffect.Discard                       'There's flip, copy, and discard. Flip and Discard
    are used most often.
            D3Dpp.PresentationInterval = PresentInterval.Immediate      'Present the scene immediately
    but when i start debugging (f5), i get this error message:
    mixed mode assembly is built against version 'v1.1.4322' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information
    i dont fully understand the visual studio process, but i think 'mixed mode' means run and debug. two seperate app's
    i know this is a long question, but the forums don't answer it properly
    i want it answered concisly. i am running windows 7 basic, and this is my question
    can somebody give me a dozen lines of directX code that will work with my system, so that i can at least draw a line using directX 2D and 3D ?
    thanks everybody :)

    Hi,
    Thank you for your post.
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses
    WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    Since your issue is related to DirectX, I suggest you consult on DirectX forum:
    http://xboxforums.create.msdn.com/forums/ for better response.
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do i share 1 ical calendar between 2 macs and 2 iphones using mobile me?

    i need one universal shared calendar to use between 2 macs and 2 iphones.
    i'll explain what i need to do, since i am so confused.
    we operate our company using 2 computers, an iMac & a macbook.  we also have 2 iphones.
    i want to be able to edit/add/delete events and to-do's in 1 shared calendar between all of them. 
    i do not want to have to sync ALL of our calendars as some of us have our personal calendars in iCal as well.
    we have a mobileme account as well.
    is there a way to do this?
    thank you!

    i need one universal shared calendar to use between 2 macs and 2 iphones.
    i'll explain what i need to do, since i am so confused.
    we operate our company using 2 computers, an iMac & a macbook.  we also have 2 iphones.
    i want to be able to edit/add/delete events and to-do's in 1 shared calendar between all of them. 
    i do not want to have to sync ALL of our calendars as some of us have our personal calendars in iCal as well.
    we have a mobileme account as well.
    is there a way to do this?
    thank you!

  • Alternative of Microsoft visual basic power packs

    Hello there,
    Is there any alternate to Microsoft visual basic power packs??
    Now i am using visual basic power packs for displaying email details in proper manner like sender name,subject,date & time in one particular row. So is there any other option for doing such things apart from Microsoft visual basic power packs?? 
    Thank in advance.

    The AutoCad Tutorial in the below link says you can use Visual Studio Express
    Jesus Espiga. For 2010 Visual Studio for Visual Basic express version was called Visual Basic 2010 Express.
    Autodesk - My First Plug-in Training
    You don't provide a link to the Tutorial you are using which of course makes it difficult to know much about the issues you may be having.
    Maybe the Tutorial is using a different year of Visual Studio Express or Visual Studio in the video Tutorial. So of course the Visual Studio IDE (GUI, whatever) would appear different, the controls and other things may be different than the Visual Basic
    Express 2010 IDE.
    That doesn't mean Visual Basic 2010 Express can not do what you need to do. Mostly it means you are probably unfamiliar with Visual Basic programming and therefore do not understand how to implement the desired capabilities shown in the tutorial on one version
    of Visual Studio with the version of Visual Studio you are using.
    So unless you can explain in more detail why you are having issues I will guess it is because you can't follow along due to differences in the Visual Studio used in the tutorial and the Visual Basic 2010 Express you are using with regard to limited knowledge
    on your part of using Visual Basic 2010 Express in the first place. Therefore unable to transfer what is going on in the video to what you need to be doing in Visual Studio.
    La vida loca

  • How do I sync Tasks/To-Do List between a MAC and an iPhone

    I am in the process of converting from a Windows PC to a MAC, and from a Blackberry to an iPhone. Today, I use the Outlook Tasks application extensively on my PC which syncs with my Blackberry. I am looking for an application that will provide this same functionality on the MAC and the iPhone. Can someone recommend an application that has a MAC client for Tasks/To-Do List that will sync with the iPhone? I have looked into the new Microsoft Office 11 home and business for the MAC which does provide the MAC client for task, but I have not been able to find an app for the iPhone that will sync the tasks to my iPhone.
    Any recommendation would be helpful
    Thank you
    PDT

    Must be a POP account then?
    No idea where the setting might be on an iPad, but see if it's similar to the Mac...
    Mail>Preferences>Accounts>Advanced tab, it has a box for Remove from Server once downloaded.

  • Error on Visual Basic 6.0 and Crystal Reports 9.2 on XP SO

    We need support to resolve an error on a system made with Visual Basic 6.x and Crystal Reports 9.2.
    Error '-2147417848 (80010108)'
    Automation Error
    Not always give these errors.
    Often occurs after request two reports followed and SO is XP
    When SO is Windows 2000 professional this error not occurs.
    These are versions of the products used:
    Versión Visual Basic:  6.0.9782
    Versión Cristal Reports:  9.2.0.448

    Hello,
    This forum is for community use and is not considered a support site. For assistance you need to purchase a case from our support site. But 9 is no longer a supported version so this is your only place to get assistance.
    Try downloading the only patches available from:
    ftp://ftp1.businessobjects.com/outgoing/CHF/cr90actxwin_en.zip
    ftp://ftp1.businessobjects.com/outgoing/CHF/cr90dbexwin_en.zip
    ftp://ftp1.businessobjects.com/outgoing/CHF/cr90devwin_en.zip
    ftp://ftp1.businessobjects.com/outgoing/CHF/cr90mainwin_en.zip
    Thank you
    Don

  • I just upgraded my iMac to OS 10.8.5 from 10.6.8 and now I can not get the calendars on my Mac and my iPhone 4s (running iOS 8.3) to sync

    I just upgraded my iMac to OS 10.8.5 from 10.6.8 and now I can not get the calendars on my Mac and my iPhone 4s (running iOS 8.3) to sync.  I already tried replacing the calendars on the phone with those on my computer but nothing happened.

    Set up iCloud
    Set up iCloud (2)

  • Hi there, I bought my mac and my iphone 5 in Colombia and now I am living in UK, my question is can I buy the UK adaptors and connect my computer and my mobile to the energy?

    Hi there, I bought my mac and my iphone 5 in Colombia and now I am living in UK, my question is can I buy the UK adaptors and connect my computer and my mobile to the energy?

    Yes.  You just need an appropriate adapter.   Apple products work across the full voltage range of 100 to 220v.

  • TS1591 i just got an ihome system and had trouble with it connecting to my iPhone.  I finally got it to work and now my itunes doesn't recognize my phone.  My software is up to date on both my Mac and my iPhone and I have shut everything down and restarte

    i just got an ihome system and had trouble with it connecting to my iPhone.  I finally got it to work and now my itunes doesn't recognize my phone.  My software is up to date on both my Mac and my iPhone and I have shut everything down and restarted.  Does anyone have any other suggestions?

    Let's try a standalone Apple Mobile Device Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of why it's not installing under normal conditions.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleMobileDeviceSupport.msi (or AppleMobileDeviceSupport64.msi) to do a standalone AMDS install.
    (If it offers you the choice to remove or repair, choose "Remove", and if the uninstall goes through successfully, see if you can reinstall by doubleclicking the AppleMobileDeviceSupport.msi again.)
    Does it install (or uninstall and then reinstall) properly for you? If so, can you get a normal iTunes install to go through properly now?
    If instead you get an error message during the install (or uninstall), let us know what it says. (Precise text, please.)

  • Hello, I live in the Netherlands and my friend is going to bring me a MAC and an Iphone. I was just wondering is there international warranty? Other question is that can I use Iphone with any simcard that I want? Thanks in advance!

    Hello, I live in the Netherlands and my friend is going to bring me a MAC and an Iphone. I was just wondering is there international warranty? Other question is that can I use Iphone with any simcard that I want? Thanks in advance!

    There is an international warranty on the Mac, but not on the iPhone...iPhone warranties are tied to the country of purchase.  Iphone 5s are currently only available in the US tied to a carrier, you cannot use another nano-sim card in them.

  • IPhone 5 not showing up as a device on my Mac, and also will not sync

    When I plug my iPhone 5 into my Macbook Pro, the device begins charging. ITunes and iPhoto both load up instantly as well, and my iPhone appears within iTunes. However, I would like to view the files of my iPhone directly like I have in the past, but the phone will not show up anywhere else as a device. The device will not show up anywhere on Finder, nor on the desktop. I have my settings to where devices should show up on my desktop or Finder, but the iPhone is nowhere to be found.
    In addition, when I try to sync my phone within iTunes, it begins syncing and gets all the way to step 5/5, but then it just goes on indefinitely and never actually finishes syncing.
    The main problem I would like to fix is to be able to locate my device on my computer but I would also very much appreciate information on how to fix the syncing problem.
    I am running the iOS 7 on my iPhone and I have the latest software for the Mac's operating system as well. I have not yet tried uninstalling iTunes and I would like to avoid doing so unless that is the only option left.
    Any help is much appreciated.

    You cannot view files on iPhone using the Mac.
    Everything goes through Mac iTunes.
    The main problem I would like to fix is to be able to locate my device on my computer but I would also very much appreciate information on how to fix the syncing problem.
    Just click Sync button again in Mac iTunes with your iPhone connected and selected.

Maybe you are looking for