Writing dll in visual c++ and importing it to labview

I am writing a Dll using microsoft visual c++. Under the source file i wish to include this header file(#include "extcode.h")sothat i can use the labview library function in c++.However when i try to duild the dll,it will produce a linker problem which say that unable to find this file or no such file exist.
Another point that i am not clear of is,under microsoft visual c++,can i either choose to add this file by listing it in mysource code(#include extcode.h) or can i just simply add by clicking on the project tab->add file ->indicate the file name?
when writing a dll, i can either choose to write in "C" or winapi.Which of these method will provide a better soln.
in lbview when we declar
ed the type of data say integer, i understand that there is only short integer(16bits) and a long integer(32bits) and achar (8bit integer). However in a c program there is short int,int and a long int so how i am able to declare an int as regard to labview?

Derek,
Use the following link :
http://zone.ni.com/devzone/devzone.nsf/webcategories/E2A99E7E10D5725D862567AC004F0A53?opendocument
I think you will find all you need there. The first link off this page will also give you a table of how labview ints convert to other development enviroment types. There are also links for creating a DLL in C++ and using it in labview like you are trying to do.
Jared

Similar Messages

  • Writng a dll in microsoft visual c++ and import it into labview

    everytime we create a dd project there will always be this prompt which will ask us whether to build an empty dll project or a simple project or complex one.Under what circumstances will i use a simple one and under what will i use the more complex one.Is the two prototype that is provided by microsoft enviroment be sufficient on most apllication? will there be a case where we will have to build our dll main?

    The best place to find information regarding dlls is from the technology creators themselves. Go to the following link to view the definitive overview on dlls at the Microsoft Developer Network (MSDN):
    http://msdn.microsoft.com/library/default.asp?URL=/library/psdk/winbase/dll_512r.htm
    If you would like to see the ins and outs on using external modules in LabView the following webpage contains our technical documents covering the subject:
    http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/a6705fec7ea42300862567b70054206e?OpenDocument
    Jason F.
    Applications Engineer
    National Instruments
    www.ni.com/ask

  • Visual J++ and import java

    Hi all,
    I want to import the new JDK to be used in visual J++. Does somebody knows how to do this?

    Sadly nothing seems to come close to J++ for sheer usability and speed. Nippy, powerful interfaces have always been Microsoft's strong suit and J++ shows what you can do if you program specifically for the underlying platform. I think that the technology did get bought up by someone and used in their product - perhaps it was Rational Rose?
    Borland JBuilder is considered by many to be one of the best around. Personally I find its interface a bit mouse-bound and a real nuisance. You know, one of those irritating editors that tries to be helpful by adding on things you're about to type thereby wasting your time when you have to go back and delete them.
    Together Control Center (or whatever it's now called) has keymappings very close to J++ but needs a good machine to run on - it also costs an arm and a leg. And another leg. Tons of fun to use, though, 'cos of all the pretty UML pictures.
    NetBeans is cheap and cheerful and many people seem to use it without problems - again it seems a bit clunky but I believe it's free.
    I wouldn't get too hung up on raw speed, though - you should spend most of your time staring at the screen not typing. Perhaps not even staring at the screen - just thinking.
    Hope this helps.

  • I am writting a DLL in Visual C++ and I want to use the extcode.h definitions.

    Does anyone know of examples using them with LabVIEW? I want to use typedefs like LStrHandle. I also want to use **TD1Hdl, and Variant. I learn from examples.

    Take a look at the application notes, tutorials, and examples on these pages:
    Using External Code > Integrating DLLs
    Using External Code > Code Interface Nodes (CINs)
    You may find additional useful information by looking at the lvexcode.pdf file in the manuals subdirectory of your LabVIEW installation folder.
    - Elton

  • Create a visual web part which get data from excel sheet and import it into sql server database in sharepoint 2010 (development)

    Hi,
    I want to create a visual webpart which will read data from excel sheet and import it in to sql server database.(using sharepoint development)
    I want to do it using visual webpart.
    Please help to solve the issue.
    Thanks in advance!
    Regards
    Rajni

    Hi  Rajni,
    Microsoft.Office.Interop.Excel assembly provides class to read excel file data, in your web part solution, reference the assembly, and following blog contains samples about how to read the excel file data,
    and import it to SQL  database.
    1.Create a Visual Web Part Project:Create
    Visual Web Parts in SharePoint 2010
    2.Read the excel workbook by using SPFile class:
    http://alancejacob.blogspot.in/2012/06/read-data-from-excel-file-and-insert-in.html
    http://stackoverflow.com/questions/14496608/read-excel-file-stored-in-sharepoint-document-library
    3.Export the excel workbook to SQL Server:
    http://www.c-sharpcorner.com/UploadFile/99bb20/import-excel-data-to-sql-server-in-Asp-Net/
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How to create dll in Visual Studio 2008 in Visual C++

    Hello,
    I have insatlled Visual Studio 2008. I have to create DLL in Project
    type Visual C++.
    Which Template i have to select to reate dll, MFC DLL or Class
    Library?.
    I have to call or import this dll in Windows Forms Application. How
    can i do this. Please give details procedure to do this.

    If we look at how  AFX_CLASS_EXPORT and AFX_CLASS_IMPORT  are defined in afxv_dll.h we see the following.
    #define AFX_CLASS_EXPORT __declspec(dllexport)
    #define AFX_CLASS_IMPORT __declspec(dllimport)
    So, when exporting our classes from our DLL we want the class declarations from the DLL to look like this:-
    class __declspec(dllexport) CMyClass : public CObject
    And, when importing our C++ classes into our application we want the class declarations from the DLL to look like this:-
    class __declspec(dllimport) CMyClass : public CObject
    OK, so here's how I do things.
    In the stdafx.h file for the export DLL, include two #defines at the bottom of the file like this:-
    #define _MYLIB_DLLAPI_
    #define _MYLIB_NOAUTOLIB_
    Now, in the main header file for your DLL, say mylib.h (the main 'point of entry' header for your DLL that you will include in you application later), add the following at the top:-
    // The following will ensure that we are exporting our C++ classes when
    // building the DLL and importing the classes when build an application
    // using this DLL.
    #ifdef _MYLIB_DLLAPI_
        #define MYLIB_DLLAPI  __declspec( dllexport )
    #else
        #define MYLIB_DLLAPI  __declspec( dllimport )
    #endif
    // The following will ensure that when building an application (or another
    // DLL) using this DLL, the appropriate .LIB file will automatically be used
    // when linking.
    #ifndef _MYLIB_NOAUTOLIB_
    #ifdef _DEBUG
    #pragma comment(lib, "mylibd.lib")
    #else
    #pragma comment(lib, "mylib.lib")
    #endif
    #endif
    Now, just declare all the C++ classes you want exported from the DLL like this:-
    (Note: Any C++ classes not declared with MYLIB_DLLAPI will not be exported from the DLL)
    class MYLIB_DLLAPI CMyClass : public CObject
    regards,
    Matt John
    complete variety of quilts is availabale here!
     PR: wait...
     I: wait...
     L: wait...
     LD: wait...
     I: wait...
    wait...
     Rank: wait...
     Traffic: wait...
     Price: wait...
     C: wait...

  • How to create package and import from jar file?

    Hi all,
    I am writing a software and I am not sure how to create a package for the classes.
    Say I have two classes in the same directory as follows:
    testA.java
    ==========
    package AB;
    public class testA
    public static void main(String[] args){
         testB myB = new testB();
         System.out.println("A test");
    testB.java
    ===========
    package AB;
    public class testB
    public testB(){
         System.out.println("B constructor");
    both file compile without the package heading;
    both file compile using: javac -classpath .\ *.java
    Question 1:
    I cannot run testA by: java -classpath .\ testA
    I think it is a syntax error. What is the correct one?
    If I run testA by: java testA
    The only output I get is: A test
    But I am expecting: B constructor /n A test
    What went wrong?
    Question 2:
    I need to use APIs of another software. I have downloaded a .jar file (xxx.jar) with all the classes in it. And I have put "import xxx.*;" in my source file. But the compiler complains about the importing. What is the right way to copmile it?
    I have read a couple of tutorials but they don't answer my question.
    (I am using windows2000 and don't have the classpath variable.)
    Hope some one can help.
    Thanks a lot

    Try moving testA out of the package and importing 'AB.*;'
    If you have:
    ./testA.class
    ./AB/testb.class
    Then to execute testA from ./ type: java -cp . testA

  • Error while using LabVIEW 8.2.1 Dll from Visual C++ 6.0

    I am getting an error while using a LabVIEW 8.2.1 dll from Visual C++ 6.0 application. This is what I am doing:
    1) Created a dll using LabVIEW 8.2.1 (I used a tutorial from NI knowledge base: "Creating DLLs from 6.0i". It is a temperature conversion VI; input DegreeF and get DegreeC out). Instead of LabVIEW 6.0i, I used 8.2.1. It created the dll Convert_Temp.dll successfully.
    2) Then I created a Visual C++ 6.0 application (used a tutorial from NI knowledge base: "Calling a DLL from Microsoft Visual C++ that was Generated by LabVIEW 6i). I could build the project and create an executable application F_To_C.exe.
    3) Then copied the LabVIEW dll Convert_Temp.dll into the folder where F_To_C.exe resides. Using windows explorer, went into that folder, and executed the application.  I got the following error:
    System Error 998 while loading the LabVIEW run-time engine (C:\Program Files\National Instruments\Shared\LabVIEW Run-Time\8.2\lvrt.dll).
    Convert_Temp requires a version 8.2.1 (or compatible) LabVIEW Run-Time Engine. Please contact the vendor of Convert_Temp to correct this problem.
    I checked the folder: C:\Program Files\National Instruments\Shared\LabVIEW Run-Time\8.2\. It has the file lvrt.dll.
    So why am I getting this error?
    GKB

    sounds like you need to install the LabVIEW 8.2.1 runtime. Not the 8.2 runtime engine.
    Paul <--Always Learning!!!
    sense and simplicity.
    Browse my sample VIs?

  • Error in Adobe Captivate 4: "unable to decode and import the selected wav - mp3 file"

    Good day!
    I have a problem. When i want to import music file from standart Gallery, i see the mistake: unable to decode and import the selected wav - mp3 file.
    I can't import mp3,wav files...
    In Adobe Help site i have found this: http://help.adobe.com/en_US/Captivate/4.0/Using/WS5b3ccc516d4fbf351e63e3d119e9582190-7fd8. html
    But in my Adobe Captivate 4 directory i don't have file regsvr32 NSAudio.dll.
    Question: where i can download this file?
    Thanks!

    Hi there
    As I recall there were two different "fixes" for audio with Captivate 4. One involved replacing the dll and another had something to do with installation problems on Windows XP. So give the link below a try.
    Click here to view
    Cheers... Rick
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • When i try to start itunes i get a message saying that the MSVCR80.dll file is missing and to reinstall itunes.  When I try to reinstall itunes it tells me that I have an Error 7 (windows error 126).  Can anybody tell me what this means?  Thanks

    When i try to start itunes i get a message saying that the MSVCR80.dll file is missing and to reinstall itunes.  When I try to reinstall itunes it tells me that I have an Error 7 (windows error 126).  Can anybody tell me what this means?  Thanks

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Dmamgr.dll & pcimgr.dll for Visual Studio 6.0 (Win 98 or 2K)

    I am missing the following NI dll's:dmamgr.dll & pcimgr.dll for Visual Studio 6.0 (Win 98 or 2K)
    Does anyone know the name of a .zip file that includes them, or any other information pertaining to them?
    Is there anyone from NI who has them?
    Thanks.

    Hi. An NI support engineer sent me a link, but when I tested it, the link failed.  Apparently it was only temporary.
    In any event, I've resolved this issue for my own satisfaction, however for the benefit of anyone with the same problem, the
    .dll's are in the following zip file:
    nivxi211.ZIP
    None-the-less, I did a search of the NI web site and cannot find this file at this time, so if anyone else wants it, they'll have to ask someone again.
    Thanks, however, as I said, my issue has been resolved happily. (-:
    JoeSoftware

  • IPhoto shows and imports triplicates (triple duplicates) of iPhone photos – On iPhone only single photos shown

    I recently plugged in my iPhone, only to see that when the contents of the device were shown in iPhoto, there were triples, or "triplicates" of every photo (this put the total around 10,000 photos). Meanwhile, on my iPhone's Photos app, everything looks normal with only single photos being shown.
    I toiled over how to remedy the problem, and found I had no other choice but to spend the MANY hours syncing thousand upon thousands of duplicate photos/videos to my iPhoto library. I then broke down and purchased Duplicate Annihilator to clean up my now ruined library. Because iPhoto made all those duplicates, the file size compounded into many gigabytes. Duplicate Annihiliator had to run for hours before finally cleaning things up. It did it's job well, however the root of the problem still remains.
    At the conclusion of transferring my entire library of photos from iPhone to iPhoto, I had the photos removed from the iPhone so I could start with a clean slate. I took a few sample photos and plugged the iPhone back in to iPhoto. Yet again, the dreaded triple duplicates, or "triplicates" of each photo I took show in the device preview window (i.e. I took 5, non-HDR photos, and 15 are shown—each repeated three times). If I proceed to import the collection, it imports triple of everything into my library.
    Essentially, my situation now is: I have to import multiple copies of everything (takes longer), then I have to run Duplicate Annihilator each time to keep my iPhoto library from being a mess. Just wastes tons of time. How can I keep iPhoto from showing and importing all these multiple copies every time? Again, on the iPhone end, everything looks normal—only a single copy of each photo.
    What I have tried:
    Closing/restarting iPhoto
    Checking for iPhoto updates (there are none, I'm on the latest version—which, as of this writing, is 9.2.3 629.52)
    Deleting com.apple.iPhoto.plist from ~/library/Preferences/
    Using Image Capture (triple duplicates still show in IC as well)
    Disabling Photo Stream
    Removing all photos and albums from iPhone

    I am seeing this problem still, even after trying the Photo stream toggle trick that was mentioned. I have one otehr observation to add.
    If I "Command"+select the first of each photo in iPhoto and then import those (choosing to Delete after import), then the next refresh of iPhone pictures oniPhoto will show all the photos (including the duplicates) gone. So basically something like this.
    1) iPhoto - I see triplicates of pictures on my iPhone.
    2) Command+Select the first instance of each duplicated picture.
    3) Import the selected pictures. Choose to Delete the pictures after import.
    4) Go back to iPhone in iPhoto. No more duplicates of the pictures I imported.
    So this doesn't fix the problem as all the unimported photos still show triplicates, but al least I don't have to run a de-duper on my laptop now to eliminate triplicates.
    This eliminates some of the hassle, but it's still a hassle.
    I hope someone figures this out completely because it's making me hate iPhoto just a little bit.
    Song

  • Creating *.dll  in Visual Studio (using c++) for JNI

    Hi,
    I'd like to ask, if anybody has experience how to make *.dll using Visual studio (2003) and use c++.
    I make *.dll library in C ( in DEV-C++), it is no problem in C , but when I use C++, it doesnt work (it is the same in Visual studio)
    I have the same code like in C ( the same header , and the "same" code - in dev-c++ it works well ) but when I try to create this same project using C++ it doesn work.
    Visual studio throws exeption:
    c:\Documents and Settings\patak\Dokumenty\Visual Studio Projects\jniknihovna\jniknihovna.cpp(13): error C2227: left of '->GetStringUTFChars' must point to class/struct/union
    type is 'JNIEnv'
    did you intend to use '.' instead?
    c:\Documents and Settings\patak\Dokumenty\Visual Studio Projects\jniknihovna\jniknihovna.cpp(13): error C2819: type 'JNIEnv_' does not have an overloaded member 'operator ->'
    Well does anybody have any idea how to solve this problem?

    Well I think I use my compiler (dev-c++) corectly:
    My codes :
    *.h file (that is produced by javah)
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include <jni.h>
    /* Header for class IntArray */
    #ifndef IncludedIntArray
    #define IncludedIntArray
    #ifdef __cplusplus
    extern "C" {
    #endif
    * Class: IntArray
    * Method: sumArray
    * Signature: ([I)I
    JNIEXPORT jint JNICALL Java_pole_IntArray_sumArray
    (JNIEnv *, jobject, jintArray);
    #ifdef __cplusplus
    #endif
    #endif
    And *.cpp
    #include <jni.h>
    #include <stdio.h>
    #include "dll.h"
    JNIEXPORT jint JNICALL
    Java_pole_IntArray_sumArray(JNIEnv *env, jobject obj, jintArray arr)
    jint buf[10];
    jint i, sum = 0;
    (*env)->GetIntArrayRegion(env, arr, 0, 10, buf);
    for (i = 0; i < 10; i++) {
    sum += buf;
    return sum;
    and in Java : private native int sumArray(int[] arr);
    and again error : 10 C:\Dev-Cpp\dllmain.cpp base operand of `->' has non-pointer type `JNIEnv_'
    (when I compile it as C library, it works , but I need to use C++ in other code, I can find only examples where only *.C is used )
    Maybe here is an error, but I don't know how to solve this problem
    Edited by: patakm1 on Apr 4, 2008 2:28 PM

  • Export and Import Integration Profile - Demantra

    Hi All,
    I am working on demantra workflow in export and import integration profiles through workflow.
    I want to avoid a customization to integrate the export profile data created from series A and import the data into other import profile created from series B.
    I have done the following:
    1. Create an export integration profile from series A and when launch the workflow found the below:
    1. view_name BIEO_view_name and table_name BIIO_table_name got created in transfer_query table.
    when i did
    select * from BIIO_view_name got records and when i did select * from BIIO_table_name, no data found.
    2. I want to populate data into the BIIO_table_name created from export profile. Is there any standard process to populate the data into the biio_table_name from bieo_view_name without writing the custom pl/sql.
    I need this data to populate into a import profile which got created through series B.
    I want to avoid the customization of wriring a custom pl/sql and want to know is there any seeded process of integrating the export profile from series A to import profile from Series B.
    Any help is appreciated.
    Regards,
    AK
    Edited by: Ajaykunde on Nov 28, 2009 8:53 AM

    Hi,
    Before to import your BS, did you import the Technical System?
    Before to import your Technical System, did you import the SWCV ?
    Before to import your SWCV, did you import the Product?
    if no, you have to respect a sequence for the import: from highest  to lowest level
    if answer is yes. then In your BS defined in Dev, do you have a transport Group which says "BS_dev -> BS_Qua"?
    If yes, both BS have to be defined in Qua SLD, else your transport link... has no link.
    Moreover, when you import something, normally you have a detailed error message which explain you what is missing.
    >> Question: How many business system should i maintain in SLD?
    no limit I think.
    >> Question: Should i do any config at the Transport Group?
    Only if you want that your BS_dev becomes automatically a BS_Qua after the transport.... so for me, it's yes
    regards.
    Mickael

  • Urgent!!!! please help!!! problems with visual j++ and jbuilder

    Hi,
    I have been worried about this problem since a long time. I couldn't get any help figuring out the problem. I am using microsoft visual j++ 6.0
    I have tried putting the rt.jar file in the class path but its getting me out of the compilation errors and not this runtime error.
    I faced this problem with many codes.
    When i used the jbuilder as one of the users suggested, i am getting this compilation errors,
    "FloatingAgent.java": Error #: 704 : cannot access directory vrml at line 4, column 4
    "FloatingAgent.java": Error #: 704 : cannot access directory vrml\node at line 5, column 4
    "FloatingAgent.java": Error #: 704 : cannot access directory vrml\field at line 6, column 4
    "FloatingAgent.java": Error #: 300 : class Script not found in class FloatingAgent at line 9, column 39
    Please somebody help.
    Jagadish.
    // an agent is floating randomly.
    import java.util.*;
    import vrml.*;
    import vrml.node.*;
    import vrml.field.*;
    import java.io.*;
    public class FloatingAgent extends Script{
    SFVec3f setAgentPosition;
    SFRotation setAgentRosition;
         static int count=0;
         float agentPosition[] = new float[3];
         float agentRosition[] = new float[4];
         float rotangle = 0.0f;
         float aRad= (float) (Math.PI/180);
    //Random randomNumGenerator = new Random();
    public void initialize(){
    // get the reference of the event-out 'setAgentPosition'.
    setAgentPosition =
    (SFVec3f)getEventOut("setAgentPosition");
              setAgentRosition =
    (SFRotation)getEventOut("setAgentRosition");
    // initialize the agent position.
    agentPosition[0] = 0.0f;
    agentPosition[1] = 0.0f;
    agentPosition[2] = 0.0f;
         agentRosition[0] = 0.0f;
    agentRosition[1] = 0.0f;
    agentRosition[2] = 1.0f;
         agentRosition[3] = 0.0f;
    public void processEvent(Event e){
    if(e.getName().equals("interval") == true){
    moveAgent();
    // generate random float value ranging between -0.1 to 0.1.
    /*float generateRandomFloat(){
    return(randomNumGenerator.nextFloat() * 0.2f - 0.1f);
    // move the agent randomly.
    void moveAgent()
    agentPosition = reader();
    // agentPosition[0] += generateRandomFloat() ;
    // agentPosition[1] += generateRandomFloat();
    //agentPosition[2] += generateRandomFloat();
         rotangle += 2.0f;
         agentRosition[3] = rotangle * aRad;
    // move the agent to the new position.
    setAgentPosition.setValue(agentPosition);
         setAgentRosition.setValue(agentRosition);
    }//move agent
    static float[] reader()
         float p1[] = new float[3];
         try{
         FileReader fr = new FileReader("data.txt");
         BufferedReader br = new BufferedReader(fr);
         String s;
    int count1=0;
    count++;     
         try{  
         while((s=br.readLine())!=null)
    count1++;
              StringTokenizer st = new StringTokenizer(s);
              if(count1==count)
              int i=0;
              while(st.hasMoreTokens())
              p1[i++]=Float.parseFloat(st.nextToken());
              }//if
              }//end of stringTokenizer while.
         fr.close();                
         catch(IOException f)
              System.out.println("file cannot be opened");
         }//try
         catch(FileNotFoundException e)
         System.out.println("file doesn't exist");
         } //try
         return p1;
    }//reader

    Didn't we hear this from you yesterday? Sounds too familiar. If so, we told you you're using a MICROSOFT product (Visual J++), which is OLD, and not up to the SUN's java specification. We suggested that you dump Visual J++ and go with something like JBuilder, Forte, Visual Cafe, etc.
    This is a SUN site in support of SUN's java - not Microsoft's outdated and non-existent (anymore) version.

Maybe you are looking for

  • VENDA DE AÇÚCAR - Substituição Tributária p/ RS

    Boa tarde PessoALL!!!        Segundo Protocolo ICMS 95 DE 2009, A PARTIR DO DIA 01/10/2009, TODA VENDA DE ACUCAR COM EMBALAGEM DE 1 E 2 KGS PARA O ESTADO DO RS DEVERÁ SAIR COM SUBSTITUIÇÃO TRIBUTÁRIA.         Foram feitos os cadastros devidos para qu

  • Front Row disappeared from my iMac

    I already read other topics to solve my problem but no one can answered my question. I updated software to Mac OS X (10.4.9) then my Front Row was disappeared. I tried to press command+esc from my keyboard. I also click menu twice from apple remote a

  • Been trying to access any service iTunes has, but am stopped with, "The Folder Cannot Be Found." Any fixes?

    Hello. I've been trying to use any of the functions in iTunes, but to no avail. I seem to be stumped with the window that keeps popping up, telling me, "The Folder Cannot Be Found." Any advice?

  • TCA value set error

    I have created three value sets and this one is to extract the contact from the id the value set gets sent. SELECT PARTY.PARTY_NAME, DECODE(ACCT_ROLE.STATUS,'A','Active','I','Inactive')||' '||PARTY.PERSON_LAST_NAME||' '||PARTY.PERSON_FIRST_NAME, ACCT

  • Re-installing Photoshop CS2 fails

    Because of some quirky behavior when launching Photoshop CS2, I decided<br />to re-install the application from the installation CD. I tried several times. Each time, when the installation is almost complete, a pop-up window informs me that: "Install