What are the real advantages of ultilizing Teststand test engine as opposed to stand-alone Labview programming

The real problem that i am having is trying to keep open the VI that is called by Teststand for the user to enter values. Sometimes the window does not even appear to be open. Do i need to add delays.

hi,
I guess you do have a while loop in your VI to allow for user input!!
It might be that the VI front panel is going behind the main panel. In which case you need to make the VI behave as a modal dialog. If you have TestStand 2 then there is an example ModalDialog in the examples folder. If you are still using Teststand 1.0.x then you can get the same example in the Resource Library. Do a search for Modal Dialog.
Hope this helps
Ray Farmer
Regards
Ray Farmer

Similar Messages

  • What are the real minimum requirements for Mountain Lion?

    What are the real minimum requirements for Mountain Lion. Currently running Snow Leopard. I have a late 2006 Model: iMac6,1. Specs: 2.33 GHz Core 2 Duo, 3 GB 667 MHz DDR2, and the optional nVidia GeForce 7600GT c/w 256MB GDDR2. The advertisement is stating a 2007 model as the minumum, however the fastest 2006 Gen Plastic iMac should be faster then the slowest 2007 Gen Aluminum iMac7,1?

    From a previous posting from some else, I saw it was the 32bit versus 64bit video card driver being the issue. I was wondering if the optional video card I have installed also was limited to the 32bit issue. 64bit drivers exist for the 7600 GT GPU.

  • What are the main advantages of having multiple WLS_FORMS instance servers?

    Hi,
    I know it's possible to deploy multiple instance weblogic forms servers (WLS_FORMS). What are the advantages of having multiple instance of forms server?
    When we deploy forms&reports 11g the configuration process creates WLS_FORMS and WLS_REPORTS. Is there any advantage of having under the same physical server more than one WLS_FORMS server?
    Regards
    Ricardo

    The exact advantages and disadvantages will depend on exactly how you configure your environment. Remember that everything good comes with a price. So for example, you can add additional managed servers to improve scalability, but doing this means consuming more system resources. So although you may now be able to service twice as many users, it may have cost you 1gig of RAM or more (just an example).
    I would recommend taking a look at the documentation as it offers a pretty good high level view of the possible configurations and their advantages. Here is a good starting place:
    http://download.oracle.com/docs/cd/E14571_01/web.1111/e13716/understand_domains.htm
    The complete documentation set for FMw 11.1.1.3 and WLS 10.3.3 can be found here:
    http://download.oracle.com/docs/cd/E14571_01/index.htm

  • What are the real data files of an Oracle installation?

    When I install an Oracle (XE) database then a lot of stuff is copied/setup:
    *.exe, jdbc driver, service tools, scripts, config files,....
    But which are the real data files (under WinXP)?
    I mean the files where all the individual, personal table defintions, trigger code, inserted data records are stored?
    As far as I heard these are only 9 files.
    Is this true?
    What, if I copy just these 9 files to another Oracle XE installation on another computer and replace the 9 files over there?
    Is all the content available at the remote computer after restart?
    Peter

    user559463 wrote:
    When I install an Oracle (XE) database then a lot of stuff is copied/setup:
    *.exe, jdbc driver, service tools, scripts, config files,....
    But which are the real data files (under WinXP)?
    I mean the files where all the individual, personal table defintions, trigger code, inserted data records are stored?
    As far as I heard these are only 9 files.
    Is this true?
    What, if I copy just these 9 files to another Oracle XE installation on another computer and replace the 9 files over there?No. Oracle is far more complex than that. The control file keeps info about the data files, including stuff like the last checkpoint scn, etc. If you just drop a new file on a different installation, even if the file has the same name and is in the same path, it won't match the info in the control file.
    That's not to say there aren't ways to move a data file from one installation to another. But it is a lot more complex than simply dragging a file from one folder to another.
    >
    Is all the content available at the remote computer after restart?
    Peter

  • What's the real advantage to LabView?

    Hi
    I just started working with LabView to evaluate it's potential for
    controlling an experimental apparatus I'm building, and I'm trying to
    decide between it and C++. I've heard many recommendations of LabView,
    but I've been disappointed with it so far.
    My chief objection is program control. LabView to be sure does have nice
    GUI control objects that are easy to implement, but the lack of
    event-driven control structures is frustrating. After looking things over
    and experimenting a lot, I figured out a way to do GUI events with
    Synchronization VIs and a Case Structure, basically building my own
    message loop, but then I started to think - isn't this what I used have to
    do 10 years ago before the days of C++ class
    libraries? Sure, I'm saving
    a little time with my basic GUI controls, but to really customize controls
    I have to use ActiveX (LabView's "custom" control facility is pretty
    weak) too ,and if I used C++ I could get away with plain old child
    windows. I know LabView couldn't be as popular as it is if it didn't
    offer more advantages, so what is it I'm missing here? Is it just that
    LabView is easier for non-programmers?
    I'm also a bit shocked that the only While Structure (which perhaps should
    have been called the "Until" Structure) is execute-and-test. There's a
    reason why most other programming languages give you both
    execute-test-loop and test-execute-loop control structures. That seems
    like a big oversight that should have been easily correctable. I know I
    can fix it by adding some more logic to it, but once again I find myself
    paying for slightly easier GUI control object implementation by having to
    jump through all sorts of program control hoops.
    Thanks,
    Ben Buckner

    > I just started working with LabView to evaluate it's potential for
    > controlling an experimental apparatus I'm building, and I'm trying to
    > decide between it and C++. I've heard many recommendations of LabView,
    > but I've been disappointed with it so far.
    >
    > My chief objection is program control. LabView to be sure does have nice
    > GUI control objects that are easy to implement, but the lack of
    > event-driven control structures is frustrating. After looking things over
    > and experimenting a lot, I figured out a way to do GUI events with
    > Synchronization VIs and a Case Structure, basically building my own
    > message loop, but then I started to think - isn't this what I used have to
    > do 10 years ago before the days of C++ class libraries? Sure, I'm saving
    > a little time with my basic GUI controls, but to really customize controls
    > I have to use ActiveX (LabView's "custom" control facility is pretty
    > weak) too ,and if I used C++ I could get away with plain old child
    > windows. I know LabView couldn't be as popular as it is if it didn't
    > offer more advantages, so what is it I'm missing here? Is it just that
    > LabView is easier for non-programmers?
    >
    > I'm also a bit shocked that the only While Structure (which perhaps should
    > have been called the "Until" Structure) is execute-and-test. There's a
    > reason why most other programming languages give you both
    > execute-test-loop and test-execute-loop control structures. That seems
    > like a big oversight that should have been easily correctable. I know I
    > can fix it by adding some more logic to it, but once again I find myself
    > paying for slightly easier GUI control object implementation by having to
    > jump through all sorts of program control hoops.
    First off, note that I'm not the typical user as I work for NI, on LV. One
    of the biggest advantages to LV is that it is a dataflow language that works
    largely by value. This means very few side-effects in a language that
    supports fine grained parallelism. The other features that stem from these
    are garbage collection, easy to build/test code modules, and lots of public
    domain SW in the instrumentation and analysis areas. Also, LV is very open.
    Since most of its driver integration is done through DLLs and CINs, that
    means that you can too. You can call DLLs, automation servers, integrate
    ActiveX controls, communicate over TCP, and lots of other protocols; so your
    hands are rarely tied to just what NI ships with LV.
    The UI elements make many instrumentation programs easy and simple to write.
    They don't give as much flexibility as a framework written in C++, but they
    perform the 80% case with much less effort.
    If you are comfortable with C++, and aren't looking to simplify your
    programming tasks, then you might want to look towards the Visual Studio
    plug-ins NI sells like Componentworks or Measurement Studio. NI doesn't
    attempt to limit your options to just LV. They will offer more flexibility
    than LV, but will not have some of the advantages that LV brings to the table.
    As for how many loop types are built in, again, the goal was more one of
    simplicity than of flexibility. In reality, I almost never use a do loop
    or a while loop in C/C++. I also rarely need to add anything to a LV
    loop to make it pre-test. I also don't write very complicated UI's in LV.
    If I do, I build a state-machine that takes care of UI transitions. True,
    LV could build this stuff in, and it probably will in a future release, but
    in the meantime it has lots to offer. Is it what you are looking for?
    Greg McKaskle

  • What are the Roles and Responsibilities of SAP Testing Consultant?

    Hello,
               i want to know about The Roles and Responsibility of SAP Testing Consultant,,pls anybody guide me Real time scenarios.
    regards,
    Balaram

    Understanding the business scenarios
    Organization Structure to incorporate the tune of the script.
    Preparation of test scripts
    Execute and record results to see if it is fine before going to approval.
    Make changes to your test script if required.
    What is Test Script (Scenario Testing)
    Header Data
    Step in Process
    Transaction Code / Program (FB60)
    Menu Path
    Description
    Field Data and actions to complete
    Expected Results
    Actual Results
    TPR
    Closing Period
    F.19 Clearing GR/IR Account
    F.13 Adjustments GR/IR Account
    Using of these above two accounts will help us in clearing the balances and adjustments to those respective clearing accounts so that the GR/IR account will be zero balance and the balances will appear in respective reconciliation accounts accordingly the balances will be carried forwarded to next fiscal year.
    GR/IR Clears the following Documents
    GL Document
    Customer Documents
    Vendor Documents
    Assignment Field is important in any document (ZUONR), Amount (DMBTR)
    Foreign Currency Valuation
    Lowest Value Method, If we are in loss then only we will account for it.
    GL Accounts which are important in Testing
    Enjoy Transaction   - FB50
    Normal Transaction - FB01
    Document Parking   - FV50
    Post with Clearing   - F-04
    Incoming Payment   - F-06
    Outgoing Payment   - F-07
    Document Related
    Reset Cleared Items   - FBRA
    Parking Document Posting  - FBVO
    Reversal Documents   - F-14
    Company Code Clearing A/C
    (Trial Balance purposes) reversal  -  (FBUB)
    Clearing Account
    Partial clearing Invoice  - 100 - Open Item
                               Paid  -   70 - Open Item
                           Balance -   30
    In Partial Clearing you can see 100 and 70 are cleared line items and 30 as balance and if it is in Residual you can only 30 as balance as it creates new line item and you canu2019t see the other cleared line items.
    As no company will use residual clearing as it affects on ageing reports.
    Open Items in Foreign Currency in all Modules GL/AP/AR  - F.05
    Master Data
    Company Code
    Currency
    Only Balances in local currencies
    Reconciliation Account Type
    Year End Scripts
    Re Grouping Receivables / Payables  - (F101)
    Bad Debts Provisions u2013 Scripts
    We assume that the customer has not paid at the end of the year you doubt whether this receivable will ever be paid. So you make a transfer posting for the receivables to an account for individual value adjustments using special GL Indicator E and Transaction Code F-21
    Carry forward Balances
    Sub Ledgers and General Ledger balances to be forwarded to next Fiscal Year
    Accounts Payables
    Vendor Down Payments
    Invoice
    Parking
    Reversal
    Outgoing Payments
    Automatic Clearing
    Manual Clearing
    Advance (Down Payment)
    Post with Clearing
    Post without Clearing
    Reset Clearing
    Carry forward
    Regrouping
    Foreign Currency Valuations
    Accounts Receivables
    Customer Down Payments
    Invoice
    Parking
    Reversal
    Incoming Payments
    Manual Clearing
    Advance (Down Payment)
    Post with Clearing
    Post without Clearing
    Reset Clearing
    Carry forward
    Regrouping
    Foreign Currency Valuations
    Other than that, it is important to know the following:
    Unit Testing
    When you test every single document is called unit testing.
    String Testing
    One transaction full activity is called string testing . For example Vendor invoice, goods received and vendor payment.
    Integration Testing
    It is purely with other modules and we have to check whether the FI testing is working with other related modules or not.
    Regression Testing
    Testing for whole database. Bring all the data into another server and do the testing is called regression.
    UAT
    When we test any particular document with the user and if it is ok immediately we have to take the signature on the document, which is signed off and can be forwarded to the immediate boss. There are some steps to be followed when we go for user acceptance testing.
    Transaction u2013 Script Writing u2013 Expected Results u2013 Compare with Actual Results
    TPR (Transaction Problem Reporting)
    While doing the user acceptance testing if we get any problems then there are some methodologies to be followed according to the companyu2019s policy and normally as a tester we always need to write on Test Script itself.
    Hope this helps you.
    Regards,
    Rakesh

  • What are the ROLES & Responcibilites of a SAP Tester

    Hi,
    I would like to know the roles and responcibilites of a SAP tester
    what kind of things will do by Manual Testing as well as Automation Testing by using ECATT
    Thankyou

    Hi
    The roles and responsbilites of sap Ecatt tester shold know the knowledge of ECATT basic .
    go through this link
    https://www.sdn.com/irj/sdn/weblogs?blog=/pub/wlg/3334. [original link is broken] [original link is broken] [original link is broken]
    and having idea of project bussines requriement.
    by using ECATT automatic testing is better.
    http://help.sap.com/saphelp_erp2004/helpdata/EN/2a/121e3bd711bb04e10000000a114084/frameset.htm
    may be it's usefull.
    venu.

  • SSD: What's the Real Advantage?

    I am planning to but a new iMac and was thinking about getting a SSD. But I'm curious as to what the advantages really are? If its just speed, then IMO it's not worth the extra $500.00. I always though that SSD drives are more stable and had a longer lifespan. I'm reading things to the contrary though.

    Don't know where your information is coming from. They run faster, cooler and have no moving parts to wear out. The drives at Crucial and OWC have an estimated 10 million cycle life and are gaurnteed for 3 years. My boot time went from a couple of minutes to about 25 seconds, Applications launch in a flash. If you have Pageouts due to not having enough RAM this too is faster and less demanding on the Drive (no moving parts). For me it was the best investment I could make in my machine. I wouldn't buy a SSD that will store everything as they are still pricey but for all my Applications and enough room for project data is a must, IMHO.

  • What are the main advantages of using the IP Spoofing options in OLT?

    We are currently re-thinking our deployment of OATS (currently only 2 agent machines) and I was wondering about the benefits of using IP spoofing. Has anyone got any experience of using this feature (examples of when it's required)?
    What sort of scenarios does tests coming from multiple IP addresses assist with (I can think of issues with load-balancing depending on how this is configured)?
    I'm aware of the issue with ephemeral port exhaustion (mentioned in the OATS release notes) but would IP spoofing help?

    The "Known Problems, Limitations and Workarounds" section of the OATS Release notes usually mentions the following (which I've seen referred to as ephemeral ports before):
    Problem: Load tests on agent machines running Windows XP or Windows 2003
    may experience TCP port exhaustion during load testing. When too many TCP
    ports are opened on the agent machine, virtual users may fail with errors such as:
    java.net.SocketException: No buffer space available (maximum connections
    reached?)
    and
    The attempt to connect to the server XXXXX on port NNNN failed. Comparable
    WinInet error code: error 12029: ERROR_INTERNET_CANNOT_CONNECT. Caused by:
    java.net.BindException occurred. Error Message: Address already in use: connect
    Resolution: By default, Windows XP and Windows 2003 only allow 5000 TCP
    ports. This number should be increased according to the steps here:
    http://msdn.microsoft.com/en-us/library/aa560610(v=bts.20).as
    px
    In Windows Vista and Windows Server 2008, the default port range is increased
    from 5,000 to about 65,000 ports:
    http://support.microsoft.com/kb/929851/

  • What are the practical advantages of ECC RAM?

    I have a 2009 8 core Mac Pro and a 2010 dual core iMac (one I use in the office, the other at home, but both get used for work). I'm thinking about replacing the iMac and I'm inclined to get another iMac, but one thing makes me wonder if I should get a Mac Pro -- the fact that the Mac Pro has ECC RAM.
    But I don't really know how big of a difference ECC RAM makes. In general, both my Mac Pro and iMac seem stable -- I can keep them up and running for weeks at a time. Generally, the only reason I need to restart is to update the OS. I have occasionally had crashes on both, but those crashes are too rare for me to perceive a difference in frequency.
    One difference I've noticed is that remote controlling the Mac Pro is more reliable than remote controlling the iMac (using Back to My Mac). But I don't know if this could be due to the ECC RAM in the Pro or to some other unknown factor.
    So -- does anyone have any evidence regarding the practical benefits of ECC RAM in a Mac Pro? I have found articles about the benefits of ECC RAM in servers, but that is such a radically different usage scenario that I can't really figure out how it applies to my situaiton.

    When the RAM is working perfectly, there is NO Advantage to using ECC RAM, and ECC RAM may be effectively a little slower than conventional RAM.
    The advantage comes when you have problems of almost any sort, especially if you have a lot of RAM installed.
    In a Mac with conventional RAM, if you have a complex problem, you may spend a lot of time wondering if your problems are caused by Memory Errors. Memory errors can be very difficult to "catch in the act" of failing, and running memory tests overnight and/or for several days and nights may be required to isolate the problem. The more RAM you have, the longer this testing may take, and may still be inconclusive. Festering Memory errors can cause your files to become corrupted over time.
    Error Correcting Code (ECC) is a system supported by Hardware in the Xeon Processor. It generates eight additional syndrome bits -- additional parity bits formed from parity permutations on the data bits in a word -- and stores them with each word in memory. When read back, Hardware checks these parity trees in memory-cycle times, and any single-bit errors are corrected on the fly -- no slowdown. The correction also sets an error bit that is later collected by background software and tabulated in a report.
    Double-bit errors are generally not correctable. By design, they halt the machine on a kernel panic, machine check, to avoid poisoning your data. So a Server with error correction will not garbage-up its data by propagating RAM memory errors into its data.
    I have to agree with Linc Davis in that this is an Industrial Strength solution to a problem many users may never face. Personally, I use it on some of my systems (especially my home Server). I am glad it has been made available, and I am willing to pay the substantial premium for it (for certain uses).

  • What are the runtime advantages of using Java generics?

    I have downloaded Build 31 (courtesy of JavaLobby) and compiled the following program.
    Both methods (main and main2) are compiled to the exact same bytecodes (use javap -c to dump the bytecodes). I believe that the generics version (main) is clearer and cleaner (I regularly use templates in my C++ programs), but for the JVM they are exactly the same thing.
    Why did not the JVM was slightly modified to support without using erasure (the checkcast opcode that is used in compiling (String) it.next() could be eliminated in for (String v : s) )?
    // Compile with: javac -source 1.5 Test15.java
    import java.util.*;
    public class Test15 {
         public static void main2(String[] args) {
              Set s = new TreeSet();
              s.add("one");
              s.add("two");
              s.add("three");
              for (Iterator it = s.iterator(); it.hasNext(); ) {
                   String v = (String)it.next();
                   System.out.println (v);
         public static void main(String[] args) {
              Set<String> s = new TreeSet<String>();
              s.add("one");
              s.add("two");
              s.add("three");
              for (String v : s) {
                   System.out.println (v);

    It is not meant to be faster than the normal approach, it is meant to be easier to implement and more secure.
    Why did not the JVM was slightly modified to support without using erasure
    (the checkcast opcode that is used in compiling (String) it.next() could be
    eliminated in for (String v : s) )?I agree, and more do, that the erasure is somewhat the wrong approach, however, the JSR proposal wants it that way.

  • What are the REAL system requirements for High Definition Editing?

    According to Apple, you can edit HD in iMovie with: a G4 1GHz or faster processor, 512MB RAM or higher, and OSX 10.3.6 or higher.
    I am running a G4 iMac 1.25GHz with 512MB DDR SDRAM and Tiger 10.4.3
    My machine can barely import HD from my new Sony HDV1080i camcorder. It imports at anywhere from 1/8th speed to 1/2 speed.
    But more importantly, the playback in iMovie of my HD clips is not smooth -- the playback looks jagged, as if the computer cannot quite keep up at full speed.
    Would upgrading from 512MB RAM to 1G RAM likely solve my problems with the slow import and the jagged playback?

    Would upgrading from 512MB RAM to 1G RAM likely solve my problems with the slow import and the jagged playback?
    No. A faster Mac with a faster video card will help.
    The playback in iMovie is never as good as it will be on TV, even on DV. It must be even more difference for HDV.

  • What are the real requirements for an ipod touch to download Itunes-U?

    I recently downloaded the newest form of Itunes and have IOS 6-something-or-another, and i can't download Itunes U to my ipod touch. When i try, the error message says " The app, "Itunes U", was not installed on the ipod because it requires a newer version of ipod software". Does anyone have any ideas? I find myself being frustrated because apple said the basic requirement was anything above IOS 5. Thank You

    You can use the iTunes U app on iPad, iPhone, or iPod touch with iOS 5 and iTunes 10.5.2 or later. 
    You must have an iTunes Store account to download content from the iTunes U catalog.
    From here >   iTunes U: Frequently asked questions
    Try reseetting your iPod.
    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    Then try iTunes U.

  • I have Firefox 4. What are the disadvantages/advantages of downloading Firefox 5?

    Will my current Firefox 4 program configure the new downloaded Firefox 5 as an update so I won't lose my bookmarks? I use Windows Vista 7

    See if you can remove one of them.<br />
    If you can't do that then try to boot Windows in Safe Mode by pressing the F8 key on the boot screen.

  • What are the advantages of Using SAP ?

    what are the advantages of SAP when compared to other technologies?
    what are the basic advantages of SAP

    SAP's R/3, introduced in 1992, is the most used ERP system in the world.
    The R/3 software package is designed to allow businesses to effectively and efficiently operate a variety of business processes within a single integrated information system.
    The software is customizable using SAP's proprietary programming language, ABAP/4. R/3 is scalable and highly suited for many types and sizes of organizations and runs on six different platforms.
    SAPu2019s R/3 has been designed to be the best ERP system in the four areas of human resources, financial, supply chain management, and marketing. R/3 is also an international product, and meets the local fiscal, language, and tax requirements of most countries.
    SAPu2019s R/3 is very versatile, as it will operate on six different platforms, including the recently added Microsoft NT.
    The R/3 package includes several very attractive features like it has a three-tier client/server system. Providing three tiers offers scalability and easier adaptation to the specific needs of large companies and fast-growing companies.
    SAPu2019s R/3 is available in 14 different languages (German, English, Spanish, etc.) and also incorporates multiple currency features that provide essential information processing capabilities for multinational corporations.
    R/3u2019s modules are organized by the functional areas of financial, human resources, supply chain management, and marketing. While information is entered separately for each specific module, the modules are fully-integrated and provide real-time applications. This means that data entered into one module is immediately and automatically updated and reflected in all oft the functional areas.
    R/3 is composed of a single, virtual file structure with no subsystems.
    In addition, SAP has released u201CMySAP.comu201D which is software that provides for data interaction and processing connections with the Web.
    Financial and managerial accounting tools in SAP R/3 are contained in the financial accounting (FI) and the controlling (CO) modules. The General Ledger function in the FI module provides a comprehensive record of all information needed for external financial reporting. The accounting data is complete and accurate because the SAP system fully integrates all business transactions that were entered from all the operational areas of a company. In addition to the FI and CO modules, the SAP system includes the Investment Management (IM), Sales and Distribution (SD), Materials Management (MM), and Human Resources (HR) modules.
    Management accounting tools in SAP R/3 are cost center accounting, internal orders, product costing, and activity based costing, profitability analysis and profit center accounting.
    SAP R/3u2019s accounting features are modeled on German approaches to accounting, and thus they are well-organized and very efficient in processing accounting information and providing accounting statements and financial reports.
    As stated previously, R/3 offers multiple currency features and a three-tier system that is capable of meeting very high demands from the accounting system for either transaction processing or financial reporting.
    SAP was the first to implement integrated treasury capabilities. This attractive feature allows a corporate treasury department to function as an in-house bank by automating the control of cash flow, investment trades, and portfolio management.
    R/3 provides check writing capability in its Accounts Receivable component which very few other programs offer.
    Additionally, there is equal access to all data in the system. This means that personnel can access financial data directly from a computer screen rather than physically meet with the treasurer, controller, or some other similar person. In other words, R/3 offers real-time, immediately updated reporting.
    R/3 also provides for a "single data entry point" where the data entered from any location is instantly sent to all other appropriate modules in the ERP system.
    The accounts payable component of SAP R/3 contains four types of transaction blocks namely:
    ● The audit block● The receiving block● The vendor block● A manual block
    These blocks make it much less likely that improper payments will occur.
    SAP R/3 is organized with the concept that a business operates as a series of processes, which means that the company implementing R/3 may have to change and reorganize itself to properly fit with R/3 and use it effectively.

Maybe you are looking for

  • Old Email Messages Won't Delete

    Here's an interesting situation (and a first for me): I have about 6-8 emails that I received at various times this week (ironically, at the time that my network was down from the 7.4.1 Airport Update). When I highlight each message individually, the

  • Files not renaming correctly, what can I do?

    I made selects and renamed my raw files in Lightroom. I sent off the catalog to an editor to color correct, and now my raw files aren't linking. It appears that even though in lightroom, the images seem to be renamed, the actual raw files did not get

  • Connecting my guitar to my IMAC?

    I'm trying to play my electric guitar through my IMAC. I have external speakers connected to my Headphones socket in the back of my MAC, how do i go about playing my guitar through those speakers? I have an adapter that will allow me to connect my gu

  • Three transactions in one program

    Hi All, How do I create 3 transactions for one program. I have created one module pool program for employee details CREATION and I have one transaction for that. Now I want to create Two more transaction for two functionalities DISPLAY and CHANGE. Pl

  • IMovie 11 (9.0.8) is constantly crashing when I export the video. Thanks

    Hi iMovie 11 (9.0.8) is constantly crashing when I export the video. Mountain Lion 10.8.2 Thanks