What language is used to develope objects

C, C++ or Visual C++

All three! Technically speaking, you can develop the objects with just C. However, with Lookout 4.0 and above, C++ is used in the sense that all the files and syntax is in C++.
(Object Oriented Programming is just a concept -- can be, theoretically at least, accomplished with any language, but C++ makes it much easier).
Visual C++ is the compiler Lookout and NI prefers and recommends. You can try using other compilers but may run into compilation problems.. which will not be supported by NI.
So, C++ in Visual C++ environment is the answer to your question.
Hope this helps,
Regards,
Khalid

Similar Messages

  • What language  oracle  used to develop it's database

    what language oracle used to develop it's database?
    I think they use java because the database available on many platform!!

    Oracle's internals are written in C, though they started out in Fortran. Tom Kyte talks about this here: http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:5228516811673
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • What software is used to develop complex programs like 'Adobe InDesign'?

    I want to find out:
    What software is used to develop complex programs like 'Adobe InDesign'?
    Thanks.

    Just to expand a bit for anyone who is interested:
    Virtually all commercial software like InDesign, Photoshop, etc., is written these days in C or C++. That's not so much because C is such a vastly better language than anything else, it's more because in its advent it was vastly better than anything else at the time, and as a result, all software programmers know C by default. And once you have the beginnings of a codebase in C and a pool of software engineers who all know C, there is little reason to rewrite your code in some other language from scratch.
    Your question about software pertains more to the IDE that is used to write the code. That will obviously vary from one company to another and could be as simple as a plain text editor coupled with a command-line C compiler, to any number of commercial IDEs that all basically accomplish the same thing. For a long time in the elder days, virtually all code development on the Mac was done with CodeWarrior, but these days practically everyone on the Mac just uses Apple's own Xcode environment. For Windows development, the two real biggies are either Microsoft's Visual Studio (probably 90% of all Windows development is done using this IDE) and to a lesser degree, C++Builder, formerly owned by Borland but now by Embarcadero.
    When building the code into an executable package, the underlying compiler that most commercial software developers use is Intel's own compiler. The IDEs above all include their own free compilers; Intel's is a commercial product that is more finely tuned for Intel processors and produces cleaner machine code. On the Mac, Apple just uses GCC, a free open-source compiler that has been developed and used for many years by the Unix and Linux community.

  • What is the use of Adapter objects in I.R

    what is the use of Adapter objects in I.R

    congratulations you successfully opened 1000 new threads...
    adapters are components of the adapter engine, their main action is to connect different sysems with each other. therefore are different adapters:
    SAP-2-SAP Adapters: like IDoc and RFC
    SAP-2-NOT-SAP-ADapters: like JMS, JDBC, HTTP..
    and B2B Adapters...
    there are some rules in any board that you should accept:
    use search first
    use the sap help http://help.sap.com/
    and read the forum rules
    regards cc

  • What is the use of passing object reference to itself ?

    What is the use of passing object reference to itself ?
    regards,
    namanc

    There is an use for returning an object reference from itself, for instance:
    class C {
    public:
         C append(C c) {
             // do something interesting here, and then:
             return this;
    }You can "chain" calls, like this:
    C c = new C();
    C d = new C();
    C e = new C();
    c.append (d).append (e);Maybe the OP has "inverted" the common usage, or thought about a static method of a class C that requires a parameter of type C (effectively being a sort of "non-static method").
    class C {
        static void doAnotherThing (C c) {
            c.doSomething(); //-- effectively C.doAnotherThing(c) is an "alternative syntax" for c.doSomething()

  • What language is used between ?   ?

    I have the following sample code. What language is used? Why \u0022 is used? Is there any guide or documentation available for this?
    <? if (\u0022[DEST_DT]\u0022.equals(\u0022DATE\u0022)){?>TIMESTAMP<?} else if (\u0022[DEST_DT]\u0022.equals(\u0022NUMBER\u0022))

    The reason you will see these in place when the multiple phases of substitution are being taken advantage of.
    If you see the posts in Re: Regular Expression wierdness - problem with $ character you will see the phases.
    If you want to use multiple phases of substitution, you need to ensure that it is interpreted correctly.

  • What is the use for lock object and how to use the lock objects

    Hi Guru's,
    I am new to ABAP .Can you please clarify the that what is the use of lock object and how to use the loct object .what is use of the Deque & Enque  function modules .

    hi ,
    below are some minfo about lock objects :
      Lock Objects
    These types of objects are used for locking the access to database records in table. This mechanism is used to enforce data integrity that is two users cannot update the same data at the same time. With lock objects you can lock table-field or whole table.
    In a system where many users can access the same data, it becomes necessary to control the access to the data. In R/3 system this access control is built-in on database tables. Developers can also lock objects over table records.
    To lock an object you need to call standard functions, which are automatically generated while defining the lock object in ABAP/4 dictionary. This locking system is independent of the locking mechanism used by the R/3 system. This mechanism also defines LUW i.e. Logical Unit of Work. Whenever an object is locked, either by in built locking mechanism or by function modules, it creates corresponding entry in global system table i.e. table is locked. The system automatically releases the lock at the end of transaction. The LUW starts when a lock entry is created in the system table and ends when the lock is released.
    Creating Lock Objects
    Lock object is an aggregated dictionary object and can be defined by using the following steps:
    o From initial data dictionary screen, enter the name for the object, Click Lock object radiobutton and then click on Create. The system displays a dialog box for Maintain Lock Objects screen
    o Enter short text as usual and the name for primary table.
    -Save
    -Select Tables option
    From this screen you can:
    Select secondary tables, if any, linked by foreign key relationship.
    Fields for the lock objects. This option allows you to select fields for objects (R/3 system allows locking up to record level). Lock object argument are not selected by user but are imposed by the system and includes all the primary keys for the table.
    1) Exclusive lock: The locked data can only be displayed or edited by a single user. A request for another exclusive lock or for a shared lock is rejected.
    2) Shared lock: More than one user can access the locked data at the same time in display mode. A request for another shared lock is accepted, even if it comes from another user. An exclusive lock is rejected.
    3) Exclusive but not cumulative: Exclusive locks can be requested several times from the same transaction and are processed successively. In contrast, exclusive but not cumulative locks can be called only once from the same transaction. All other lock requests are rejected.
    Also, last but not the least, locking the object is logical (locking with any enqueue ) .so, you have to use the lock object while trying to access from second program .
    reward if helpful ,
    Regards,
    Ranjita

  • What is the use of mutable Objects ?

    Hi all,
    I want to know the use of mutable objects?
    Could u please help me ?
    regards,
    Nalini

    public class Sum {
        double value;
        public void add(double d) {
            value += d;
    }The sum class is mutable, since you can change it's value. The Integer class is an example of a class that's immutable. You can't change the value of an Integer after you have constructed the object.
    /Kaj

  • What should I use? - Developing from AI to Flash for Mac, iPad & Windows

    Not sure if I am in the right forum so if not please let me know.
    I want to develop an app to use on our Mac, Windows, and iPad systems. It would run locally and not over the internet. In short I would take template art from Illustrator files and convert to a usable flash files. The app would allow the user to change the named fields on the templates to their company name for visualizing the art. I have been doing some testing and this appears to be possible.
    I am obviously new to this and trying to understand what/how to develop. Any advice would be greatly appreciated.
    Thanks.

    Thanks for the help and you are correct I have not gotten into the iPad enough for any testing.
    I have read that Flash is not supported and also read that it is supported on the iPad. Confused as to what this page is telling me regarding a "Packager for iPhone IOS" - http://labs.adobe.com/technologies/packagerforiphone/ and this page http://www.adobe.com/devnet/logged_in/abansod_iphone.html
    Is this stuff just wishful thinking or only on iPhone or something else? Again thanks for the help.

  • What should i know to develop objects in CRM Web Shop

    Hi all,
    I am new to CRM Web Shop and would like to know what should I be knowing to do any development in CRM Web Shop?
    I am an ABAP Developer and can develop Web Dynpor's and BSP's using ABAP Work Bench. What else do I need to make my career as a Web Shop Developer? How extensively wil i work on Java and NWDS?
    From my initial resarch in the forum it seems like i need to have a extensive Java knowlede and i only know core java......so i want to know to what extent should i be coding in JAva for a development in CRM Web Shop.......If this looks like a basic question please help me with link that can provide me some help on this.
    Kind Regards,
    Sam.

    Hi Sam,
    To become CRM Web Shop Developer You should have below knowledge or hands on experience.
    1.   Core Java Development.
    2.   J2EE Development
          Model View Controler (MVC) development concept with Java Servlet Programming
    3.   Struts Programming knowledge
    4.   JCO. Programmin in Java
    5.   HTML Knowledge
    6.   Java Script Programming Knowledge
    7.   Eclipse / NWDS knowledge
    8.   Some knowledge about IPC.
    9.   XCM Configuration.
    10. Read Exten. Development Guide of ISA which explain you how to extend ISA application with example. You can download it from Service MArket Place. - I have sent it on your gmail address
    Cheers.
    eCommerce Developer
    Edited by: Ecommerce Developer on Jul 30, 2009 10:40 PM

  • Is it possible to have English as the interface language, but use (and develope for) any other language/locale?

    Before installing Firefox, I need to clarify the following:
    The use of locales: I am a developer and my preferable language, for the interface, is English (though, it is not my mother tongue). But, I would like to be able to use any other language (including, the use of any dictionary) and develop for any language or locale. So, does the English version let me do the above mentioned?
    Or, eg, do I need to install the Hebrew locale, if I want to use the Hebrew dictionary?
    Or, is it possible to install different locales on the same computer (and for the same user, in Win XP)?

    You can install any dictionary is every locale, so that shouldn't be a problem if you use the English locale.
    If you want to check out the user interface or how the browser acts with an RTL locale like Hebrew then you need to install the language pack and switch to that locale.
    You can install additional language packs in any Firefox version.
    * http://kb.mozillazine.org/Language_packs
    * Locale Switcher: https://addons.mozilla.org/firefox/addon/locale-switcher/
    * http://releases.mozilla.org/pub/mozilla.org/firefox/releases/latest/win32/xpi/

  • VERY Basic Questions about Oracle eBusiness - what "languages" are used?

    Please forgive the very basic nature of this post- (I have been in systems (IT) for over 20 years, so I do have lots of systems experience, but no exposure to this particular software.)
    So here are the basic questions - I assume that much of the data base logic is written in PL/SQL, but what other tools / languages are the applications written in?
    (Oracle Forms, Oracle Reports, Java, C, something else?)
    With over 20 years and experience with a number of other packages, I can learn a great deal about an application by 1. Looking at the DB structures (charts), 2. looking into DB code (Packages, triggers, procedure, functions) and 3. Seeing the screen shots.
    None of my customers have had Oracle eBusiness - that have had home grown applications or other COTS/packages.
    can anyone suggest a place where an independent person can inexpensively get some exposure?
    My sincere thanks for any answers/suggestions. 

    Hi,
    Please refer to the following links for details about the different database releases and Oracle tools.
    Oracle Timeline
    http://www.oracle.com/timeline/index.html
    http://www.oracle.com/oramag/profit/07-may/p27anniv_timeline.pdf
    Oracle Corporation - Oracle FAQ
    http://www.orafaq.com/wiki/Oracle_Corporation
    Oracle E-Business Suite consists of Application/Database/Client tiers, you can find more details in [Oracle Applications Concepts|http://www.oracle.com/technology/documentation/applications.html] manual.
    Oracle Forms
    http://en.wikipedia.org/wiki/Oracle_Forms
    Regards,
    Hussein

  • Uses of Business Objects

    Hi Gurus,
    What are the uses of Business Objects created in SWO1 Tcode.
    Thanks,
    KNV.

    Hi Ratnakar,
    Check these links about BO's..
    http://help.sap.com/saphelp_46c/helpdata/en/59/ae4484488f11d189490000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_46c/helpdata/en/59/ae449e488f11d189490000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_46c/helpdata/en/a5/3ec8534ac011d1894e0000e829fbbd/content.htm
    http://www.erpgenie.com/abap/bor.htm
    Business Objects are used basically to trigger other objects with the respective events like
    1) To Trigger Workflows
    2) To Trigger Events
    3) Used to communicate with NON SAP Systems using BAPI's
    4) To Trigger user define Business object we need to define the super type and need to delegate it with respect to the supertype so as to trigger custom business object which in turn triggers it event linkage objects whether it may be workflow or Event etc.
    Hope this would help you.
    Regards
    Narin Nandivada

  • How the language is used on output condition records

    What language is used on a form, if you leave the language on the output condition record blank?

    Hi Mike,
    Go to NACE t Code. Select V3- Billing . click on output types---select the output which your using and click on Mail title and text on left side.. ther you will find List of languages.
    Regards,
    Seegal

  • What language is best?

    anyone know what languages they use to program online games, such as everquest, ultima online, WOW, and so forth? I eventually want to work for a company that makes online games and didn't know what langauge they use... ie i dont know which language is really good to know. do they use java?

    http://www.gamedev.net is another good site to check for game programming.
    Most serious games today are written using C++. However, Java and C# are both good alternatives, that offer almost the same level of performance (if used properly) but much greater ease of use. In both cases, if there's something you'd really rather do in C++, there is a way to interact with native code.
    However, no matter which language you use, I'd suggest not starting with a massive multiplayer game like Ultima Online. Rather, make some simpler games, learn networking and graphics, and progress gradually towards something that big. Massive multiplayer games are about the hardest games to program, because in addition to real-time graphics and AI/physics simulation, they also require very efficient networking, and synchronization of hundreds of users.

Maybe you are looking for

  • Text blank in Customer line item display for credit notes

    Dear SD gurus, We are creating credit memo request in SAP and credit notes are created later on. Now when we look the customer line items, the credit note number is seen over there. But the text field is coming blank. We want to enter some text in th

  • 720p MP4 H.264 video not syncing?

    Hi, I've got an odd problem with video playback on my iPhone. I have one 63mb video which is just over four minutes in length. Its resolution is 1280 x 720, encoded in H.264, bit rate of 122kbps, total bit rate of 2122kbps. It syncs to my iPhone and

  • Safari closed unexpectedly and will no longer open.

    Safari froze while I was on my MacBook Pro.  Laptop is current with updates and operating system.  I was unable to force close the app, so I restarted my computer.  Now safari will not open.  Thoughts?  Ideas?

  • How to make call through j2me

    Hello friends, I'm building a system which can make automated call to register users. I want to know whether it is possible to make call through j2me ?

  • Scrolling through zoomed in pages

    Wouldn't it make sense, when zoomed in, to give the arrow buttons the behaviour not to scroll to the next page, but to scroll to the next part of the zoomed in page. Now I am constantly struggeling with reading the second half of a page...