Programming on a MAC with Visual Basic which is unfortuantely from Windows

Good evening. I am going to be taking some courses in Visual Basic.
I presently use a new IMAC computer and no intention of ever going back to PC.
However in course I need to download and learn Visual Basic which is only windows/microsoft based
Does anyone know of a program that is similar to the windows VB that I can use?
Otherwise how would I make the Windows VB work on my MAC, i really do not want to download Windows XP or anyone to work on my MAC, hence reason for switching to leopard and mac.
all suggestions and help is welcome, look forward to your responses.
email me as well please and thank you

Being an outsider to most things programming and almost all things M$
the brief information I found while reading around Visual Basic, is that it
no longer has Microsoft support since 2008. While that may not be a big
issue for those still needing such a beast, there probably is a newer kind
of technology one could be investing time more wisely into the use thereof.
Earlier: http://en.wikipedia.org/wiki/Visual_Basic
Later: http://en.wikipedia.org/wiki/VisualBasic.NET
Free Express Edition: http://en.wikipedia.org/wiki/MicrosoftVisual_StudioExpress
+{Since you have a computer which can support a virtual machine (os) and+
+not need run Windows directly, some software can run without an XP, etc.+
+And there is an open-source virtual machine available, for Intel-based Mac.+
+This in addition to better known retail products, details found in a search.}+
Since the Express Edition above indicates certain tools it provides, one can see
what kinds of Mac OS X software tools are available to perform similar tasks;
then check into how compatible those are with the resulting product you seek to
be engaged in; and if the recipient of said project could use an all-Mac result. In
their PC; if this is the direction you are considering.
You can create content in Terminal, in a Mac, or in XCode, and there are a few
free-ware open source cross-platform programming tools that could be used to
create a more platform neutral product; from what I've briefly read. However,
since Microsoft is playing to their own field, you may find if you have to be there
you will have to get a Virtual Machine to run Windows in the Mac or hope to get
a virtual machine that also can run just the Windows app without Windows in it.
Or, have an old cheap PC off to the side, and put your Windows software into it.
Then keep your modern-era stuff alive in your Mac. If you have Windows-only
clients, some of them may well be using their XP into the next century...
Good luck & happy computing!
{PS: this topic area is within the section for older PPC iMac G4 series computers.}

Similar Messages

  • Strange axbridge issue with Visual Basic

    I started having a very strange problem with my axbridge wrapped bean around the time I switched to JDK 1.5. Problem is, I can't seem to get rid of it by rolling back to earlier versions.
    Here's what happens: I create a very simple non-visual bean:
    package pack;
    public class Bean1 {
    public Bean1()
    System.out.println("Constructor");
    public boolean someMethod ()
    System.out.println("1");
    return false;
    I then create Bean1.dll using the packager.exe provided with the JDK, and register it as part of the packaging process.
    Then, I go into Visual Basic 6 and enter this code:
    Private Sub Command1_Click()
    Dim xx As Object
    xx = CreateObject("Bean1.Bean.1")
    End Sub
    On the CreateObject call, Visual Basic gives me the error "Object variable or With block variable not set", which isn't helpful.
    In the Java console with level 5 tracing turned on, I see this:
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@17ba38f, refcount=1
    basic: Registered modality listener
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter@9ffe3f
    basic: Loading applet ...
    basic: Initializing applet ...
    basic: Starting applet ...
    basic: Stopping applet ...
    basic: Removed progress listener: sun.plugin.util.GrayBoxPainter@9ffe3f
    basic: Finding information ...
    basic: Releasing classloader: sun.plugin.ClassLoaderInfo@17ba38f, refcount=0
    basic: Caching classloader: sun.plugin.ClassLoaderInfo@17ba38f
    basic: Current classloader cache size: 1
    basic: Done ...
    basic: Joining applet thread ...
    basic: Destroying applet ...
    basic: Disposing applet ...
    basic: Quiting applet ...
    java.lang.NullPointerException
         at sun.plugin.AppletViewer.loadJarFiles(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    basic: Exception: java.lang.NullPointerException
    java.lang.NullPointerException
         at sun.plugin.AppletViewer.loadJarFiles(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    basic: Modality pushed
    basic: Joined applet thread ...
    basic: Unregistered modality listener
    The only thing I've found in the bug database that seems even remotely related to this is bug 6391104, which is related to plugins somehow.
    I do not understand why applets are involved in this at all.
    When I try to instantiate the COM object from a C++ program, everything works fine. My problem only seems to occur with Visual Basic (version 6, not .NET).
    This problem seems so fundamental that it seems impossible that no one else has run into it, but there 's nothing about it on any forum or buglist that I've seen. So, I figured there must be something very obscure wrong with my setup. However, I tried installing this on a brand new machine using my trivial case, and I still have the problem. I'm really at my wits' end. Anyone have any ideas?

    You definately want to go to CR 2008. I'd recommed that you call 866-681-3435 and ask about the possibility of getting a 30 day eval.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Need help with Visual BASIC

    I am in an intro to programming course, and I am writing a console on Visual Basic 2013.  My problem with Visual Basic right now is that I cannot get the formula to work.  All of my inputted values end up being 0's.  Am I using incorrect parameters,
    am I misunderstanding how to use arguments; am I not coding correctly?  The scenario for my problem is:
          Areas of Rectangles: The area of a rectangle is the rectangle’s length times its width.  Design a program that asks for the length and width of two rectangles. The program should tell the user which rectangle has the
    greater area, or if the areas are the same.
    //My code is 
    Module Module1
        Sub Main()
            Dim LENGTH As Double = 0
            Dim WIDTH As double = 0
            Dim AREA_1 As Double
            Dim AREA_2 As Double
            Dim RECTANGLE As String = " "
            area1(LENGTH, WIDTH)
            areaCalc1(AREA_1, LENGTH, WIDTH)
            area2(LENGTH, WIDTH)
            areaCalc2(AREA_2, LENGTH, WIDTH)
            decision(AREA_1, AREA_2, RECTANGLE)
            displayDec(RECTANGLE)
            Console.WriteLine("Press any key to exit...")
            Console.Read()
        End Sub
        Sub area1(ByVal LENGTH, WIDTH)
            Console.WriteLine("Please input the following for your first rectangle:")
            Console.Write("Length: ")
            LENGTH = Console.ReadLine()
            Console.Write("Width: ")
            WIDTH = Console.ReadLine()
        End Sub
        Sub areaCalc1(ByVal AREA_1, ByRef LENGTH, WIDTH)
            AREA_1 = LENGTH * WIDTH
            Console.WriteLine("This is the area for rectangle 1: " & AREA_1)
        End Sub
        Sub area2(ByVal LENGTH, WIDTH)
            Console.WriteLine("Please input the following for your second rectangle: ")
            Console.Write("Length: ")
            LENGTH = Console.ReadLine()
            Console.Write("Width: ")
            WIDTH = Console.ReadLine()
        End Sub
        Sub areaCalc2(ByVal AREA_2, ByRef LENGTH, WIDTH)
            AREA_2 = LENGTH * WIDTH
            Console.WriteLine("This is the area for rectangle 2: " & AREA_2)
        End Sub
        Sub decision(ByRef AREA_1, AREA_2, ByVal RECTANGLE)
            If AREA_1 < AREA_2 Then
                RECTANGLE = "rectangle 2"
            Else
                RECTANGLE = "rectangle 1"
            End If
        End Sub
        Sub displayDec(ByRef RECTANGLE)
            Console.WriteLine("The rectangle with the greater Area is " & RECTANGLE)
        End Sub
    End Module

    Hi,
      If you are just beginning to program i highly recommend setting the following options in the Visual Studio menu (Tools/Options). Open the Options window and go to the (Projects and Solutions) and click on (VB Defaults). Now set the options as follows.
    Option Strict - On
    Option Explicit - On
    Option Infer - Off
     And probably one of the most important things to do is learning to Debug your code. That will save you hours of headaches when you get unexpected results in your applications. You will know how to track it down and find where in the code your results
    are being thrown off. There are quite a few Debugging tutorials on the internet. Here are a few decent ones.
    Debugging Express
    Breakpoints and Debugging Tools
    If you say it can`t be done then i`ll try it

  • Can you tell me how to measure audio signal frequency in measurement studio with visual basic 6.0?

    I'd like to measure two differential input signal(I.e. A+ and A-),below is two test projects,
    1.connect A+/A- to PCI 6052E card's ACH0/ACH8 ,and refer to GND for testing
    2.connect respectively A+/A- to PCI 6052E card's ACH0/ACH8 for testing
    Could you tell me the details of the second project?and give me a illustration in measurement studio with visual basic 6. 0 about the second?
    In addition,I would like to measure the audio signal frequency,could you give me a illustration in measurement studio with visual basic 6.0?
    Wait for your reply!

    Dear kelven,
    Thank you for contacting National Instruments.
    To address your question, there are Analog Input shipping examples that demonstrate how to measure an analog input differentially, as you specify in (2).
    As for measuring the audio signal frequency, you may want to check out the following KnowledgeBase. The link is:
    http://digital.ni.com/public.nsf/websearch/4b08380530d72d3b86256340004c3005
    Let me know if you have any further questions or if this does not resolve your issue.
    Thanks again and have a great day!
    Chad AE
    Applications Engineer - National Instruments

  • Office for Mac 2011 - Visual Basic

    I'm wondering if anyone has suggestions for a good place to get Visual Basic tutorials for Office 2011. I have zero experience in Visual Basic, and limited experience with formulas, tables, lists, and Pivot Tables, so the tutorials should be beginner-friendly.
    What I'm looking to use it for is automatically generating spreadsheets with four or five tabs using one outside data feed (.csv uploading) and five or six formulas of my own design.
    I've been using lynda.com to learn some technologies and their tutorials are very easy to understand and thorough. Unfortunately, they don't have anything specific about Visual Basic.
    Any guidance from the extremely helpful Apple community would be appreciated. Thanks in advance!

    I was aware of both the help menu and the help forums. I had gone through the tutorial you linked to previously (got there from Excel help) but it had a Word table generation tutorial, so it wasn't exactly what I was looking for.
    I recognize the increased effectiveness and decreased clutter of putting questions in the right place, but I wasn't exactly asking a help menu type question. I mentioned a location of tutorials that I'd found helpful for other topics and that many people are familiar with, hoping to find a similarly structured tutorial for this topic.
    In my opinion, it's at least equally irrelevant to suggest a location that is not directly related to the question as it is to ask a question about a software made by another company. And way more condescending.
    @Dimaxum: I, too, am familiar with this up and coming technology of internet perusal called google.

  • I have a PC running windows 7, 64 bit operating system which we upgraded from windows XP 32 bit. I can't download my photoshop elements which I bought as a download onto this 64 bit because it says it's for a 32 bit system

    I have a PC running windows 7, 64 bit operating system which we upgraded from windows XP 32 bit. I can't download my photoshop elements which I bought as a download onto this 64 bit because it says it's for a 32 bit system

    Hi claire.winteringham,
    If you have a 64 bit machine then there shouldn't be any problem while installing any 32-bit software.
    Try to download it with the below mentioned link :
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=en
    Thanks,
    Atul saini

  • Problems with visual basic and acrobat X

    Hello,
    In visual basic (excel), I had written a program in visual basic (excel) to open a pdf file on the local server.
    Before I updated to acrobat pro X, I had acrobat pro 8 on my pc.
    With the 8 I didn't had any problems to open the pdf-file.
    Now with the X version, it only opens the start window of acrobat x pro.
    Did they changed something in Xversion?
    Does anyone has an idea to solve this problem?
    Below you can find my visual basic code.
    Thanks in advanced !!
    Sylvie
    Code:
    Sub OpenPDF(bestand As String)
    Dim retval
    Dim sAdobeReader As String
    sAdobeReader = Chr(34) & "C:\Program Files\Adobe\Acrobat 10.0\Acrobat\Acrobat.exe" & Chr(34)
    'sAdobeReader = "C:\Program Files\Adobe\Acrobat 10.0\Acrobat\Acrobat.exe"
    retval = Shell(sAdobeReader & Chr(34) & bestand & Chr(34), 0)
    End Sub
    Private Sub SelectedPDF()
    OpenPDF ("N:\11276.pdf")
    End Sub

    This is really a user forum, I think you need a developer forum... maybe SDK?
    http://forums.adobe.com/community/acrobat

  • Examples of using SCXI-1160 Relay Card with Visual Basic 5.0.

    I am starting to develop some VB 5.0 code that interfaces with a PXI/SCXI Chassis. One of the cards that I have to work with is the SCXI-1160.

    At this point in time (5/14/01), I do not believe there are any pre-existing example programs developed in Visual Basic to control an SCXI-1160 switch module.
    However, the process is very easy to explain. You will need to add the NI-SWITCH instrument driver as a DLL reference to your VB program. The DLL file is called niswitch_32.dll and is located at C:\VXIpnp\WinXX\Bin (WinXX = Win95 or WINNT).
    Your program will begin with the niSwitch_init(...) function, and end with the niSwitch_close(...) function. The niSwitch_Connect(...) function can be used to actually make switch connections in your application.

  • Buying a Ipad, does it support Excel with visual basic?

    I live in PC world with Excel and visual basic for an order program.  I would like to know if an Ipad supports Excel and VB.  Any help is greatly appriciated.
    Thank you,
    Gabriel

    Sorry, no Excel on iPad. The iPad equivalent of Excel is called Numbers, an Apple-made app.

  • How can i measure the transmision time in gpib with visual basic with more precision if i use time() function?

    I want to take a measurement of the time that i use to make a gpib transmision in a Visual Basic program,i use the function TIME() to take the time in the begining and other time in the end,but this way only give me precision of seconds, and i want miliseconds,can i use other function,other way?
    Can answer in spanish?

    Try using GetTickCount() API function, which provides millisecond precision. If you need more precise timer, try using QueryPerformanceCounter() function.
    Makoto

  • PCI-GPIB Card with Visual Basic gives blue screen and re-boots PC

    The application makes the "ibsic" call then "ibln" to find devices on the bus. Running the VB program the first time is fine, but if you end the program and re-run a second time, you get a blue screen and the PC reboots when the program reaches the lines that make the first call to the NI-488 functions. If you close out of VB and then restart VB, everything is OK again.
    What is wrong?

    Hi,
    Here's an article that describes the most common blue screen when using VB:
    Why Does My Windows 2000 or XP System Crash When I Use Visual Basic to Program GPIB?
    Hope this helps
    DiegoF

  • Programming on a Mac with Textedit (not Netbeans)

    I am programming on a Mac. Netbeans has features unnecessary to me at this level. I am writing in textedit and compiling and running through Terminal. The only thing I wish Textedit did was the auto-tabbing based on bracket level and the coloring of text based on recognised syntax and commands. Is there a plugin for Textedit, or a simple program that does this for Mac OSX?
    Thank you.

    macrules2 wrote:
    If you can come up with $40 then textmate is the best editor for development work
    http://macromates.com/
    http://en.wikipedia.org/wiki/TextMate
    Failing that TextWrangler mentioned above is a good alternative.I apologize macrules2, I looked quickly at your reply there and didn't notice TextMate. I had to look up the url for the web page for the product and I did that after glancing at what people had posted. So I didn't look back and see that you had already mentioned it. I should've read more carefully, sorry about that. And I had no idea that there was a relationship between TextWrangler and BBedit.
    I've never used TextMate myself but I know of a gifted programmer that uses it for development and I'm going off of that.
    And I've also just noticed your username.... Mac Rules :o)
    Edited by: nantucket on Sep 14, 2007 12:45 PM

  • What program can l use to make cards, presentation cards in my Mac? something equivalent to Corel Draw from Windows

    I used to use Corel Draw from Windows to make cards, birthday cards, invitation cards, etc.
    Now l want do the same in my Macbook pro, people told me Mac has something equal to Corel Draw. I wonder which program l can use to do that.

    Mary --
    I used PrintShop for years.  Here's the link to the Apple Store page on "drawing."
    http://store.apple.com/us/browse/home/shop_mac/software/design_publishing
    Also "Print Explosion" is good.  It's included in this link:
    http://www.ehow.com/about_5206227_card-making-software-mac.html
    iPhoto has a beautiful card making function, using your own photos.  It's stunning really.
    If you have iPhoto, it's free.  If not, you can get it easily and cheaply via the AppStore.
    You can also do photo books & calendars through iPhoto.
    Also, Pages -- a program in iWork.  I haven't used it, but those who have, love it.
    http://www.apple.com/iwork/pages.
    I'll bet that's the one you heard about.

  • Had PSE 8 installed on PC Windows 7 with a catalog backup on an external drive. Now have a Mac with OS Mavericks. If I install PSE 12 or Lightroom on this Mac can I use the cat. backup from Windows or must I start from scratch

    Had pse 8 on a Windows 7 PC with a catalog backup on an external drive. Now have a Mac with OS Mavericks. If install pse 12 or Lightroom on the Mac will I be able to use the old catalog backup or must I start from scratch.

    If you made a full catalog backup using the organizer's backup command, and you did it to a removable drive, yes, you can restore it to the mac. A backup made on discs will not work, though.

  • Hi i take a mac with osx.i sync the files from my old windows pc to firefox mac and it synced all accept of a file i had created to my pc why?thanks

    i use mac with osx.i sync files from my windows pc to firefox mac it synced all accept of a file i had to my pc why?thanks

    Sync isn't a "cloud service" to back up miscellaneous user selected files. Only specific Firefox user data and preferences are synchronized.
    See this for what types of Firefox data Sync is intended to handle.
    [https://support.mozilla.org/en-US/kb/how-do-i-choose-what-types-information-sync-firefo How do I choose what types of information to sync on Firefox?]

Maybe you are looking for

  • My iPhone wont let me buy music why?

    Everytime I go into iTunes and try to buy music it won't let me. First it'll pop up saying you have insufficient funds(can't it go straight to your billing)  ;ask for my password for my apple I'd and then it'll take me to my account setting where eve

  • Is there a way to find an old very old text without load earlier?

    Okay so here is my problem I am trying to locate a text message that I had sent to me sometime in August. I have been trying to find it but because of the amount of time I have I can't keep hitting the load earlier button. I have tried searching the

  • How to call workflow api in procedure?

    I created a process in workflow,i call CreateProcess to starting from my procedure.But when i call the procedure in sqlplus i got a error message.That is ,ORA-20002: 3114: activity 'XTes/tes1' is not a process. Is there something wrong when i call Cr

  • How can I import a "book" from Aperture into iPhoto?

    I've created a "Book" in Aperture and want to import it into iPhoto so I can send the book to EU for the US. Thank you in advance!

  • XML file Synchronization

    Hi All, I have created an XML file from a table in oracle. Now, the requirement is, to update the file as soon as any DML occurs in the respective table. Does anyone have an idea how to implement it?? One way culd b to create trigger on the possible