Loading VC++ DLL in LabVIEW

Hi,
I am trying to load a VC++ DLL (with two threads) in LabVIEW . Is it possible to maintain the DLL "ALIVE" in memory or it will be loaded in memory only when I am calling the DLL function??
Please provide your comments.
Thanks in Advance.
Regards,
Sathish kumar D

[email protected] wrote:
Hi,
I am trying to load a VC++ DLL (with two threads) in LabVIEW . Is it possible to maintain the DLL "ALIVE" in memory or it will be loaded in memory only when I am calling the DLL function??
Please provide your comments.
Thanks in Advance.
Regards,
Sathish kumar D
Define "alive" here! Normal operation of a DLL is that it provides functions that gets called by the calling application. The DLL is then alive every time one of its functions is called and for the rest it sits dormant and wait.
You mention two threads so seem to spawn two threads from inside the DLL byt one or more function calls. The DLL will stay alive for as long as you let it be. This means as long as one VI is in memory that references one of the DLL functions in a static matter (the DLL path and name defined in the Call Library Node and not passed to it as parameter), LabVIEW will leave that DLL in memory. But once the last VI referencing that DLL is gone, your DLL is forcefully unloaded by LabVIEW no matter what your threads would like to have.
Rolf Kalbermatter
CIT Engineering Netherlands
a division of Test & Measurement Solutions

Similar Messages

  • Need help loading DLL in labVIEW project

    I have a DLL that was written in C# that I want to load it to my labVIEW project. I have never done this before, so I need help. I chose Connectivity-Call Library Function Node then loaded my DLL. After, under function name, I typed in the function name from the code. I don't know what to do with other like Parameters.
    They don't let me attach dll file 
    Can someone explain how to set the parameters and etc?

    Well, it seems that you really need to learn quite a bit about .NET (ActiveX is very similar!) first.
    The constructor node in your code creates an object in your .NET CLR (Common Language Runtime). This object exposes properties and/or methods. Use Property Node(s) and Invoke Node(s) to access these. Usually, you get references to other objects which you can work this.
    Remember the golden rule for ActiveX and .NET:
    Close all references you created in your LabVIEW code on your own (using Close Reference)!
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Failed to load niScope_32.dll

    I had labview 2012 32bit installed on my PC(win-7) with all required (daq, scope & all other) drivers, and it was working fine. Suddenly labview was not able to load "niScope_32.dll" while loading my VI. I tried to repair it with same version of scope drivers(3.9.4) but problem didn't solved. I tried to locate niScope_32.dll i found it in C:\Program Files (x86)\National Instruments\RT Images\NI-Scope, when i browse & gave this location while loding VI labview gave error saying nipalp.dll was not found.
    So I removed full labview and tried with clean installation (from NI CD) but same problem.
    Then again I removed entire labview with all ni device drivers and installed labview 2013(downloaded from NI website)  and scope 4.0.5 drivers still problem persists. Even in NI-Max explorer it is showing NI-scope but I am not able to launch scope soft front panel, error "scope front panel could not launch because an error occured while trying to open application reference". Now I don't see any NI-Scope folder (or sub-folder) inside  "C:\Program Files (x86)\National Instruments" even after installing scope 4.0.5 !!!
    I upgraded scope driver to scope 4.1, now a loading screen appers as attached pic & soft panel fails to load...
     any solution???

    Can you think of anything that changed on your system between when it worked and stopped?  System update, NI Driver update, installation, etc.
    No there was no system update, or ni update... But all I can think of is I had installed "prolific USB to serial" & "WinAVR" software , I uninstalled "prolific" one after error in labview ..
    After error, when I connected to net ni labview & scope patch got resumed- downloading & updated in my system 
     Please post the MAX report here as well. Done attached
    When you uninstalled NI-SCOPE, did you also uninstall DAQmx and NI-SCOPE runtime?  In what order did you make changes?  Normally, LabVIEW must be installed first, and then the NI-SCOPE driver.   
    for 1st time i just repaired scope from windows control panel uninstall & change option, then I uninstalled scope & SCOPE runtime Reinstalled.
    After that I uninstalled all NI products from the National Instruments Software Add/Remove entry in "Add/Remove Program" from the winows control panel .  Reinstalled Labview 2012 followed by all device drivers & scope from CD. Still same problem. 
    Again I uninstalled all NI products (same way) then cleared all registary with help of ccleaner registary cleaner. Then I installed labview 2013(downloaded from ni-web but i am sure about it coz we had used same for other PC's & its working fine) followed by daq 9.4, scope 4.0.5 driver. 
    -Malay 
     

  • Creating dll in Labview

    Hello All,
    How do i create a dll in labview? I want to use it as a plug in into an application.
    Demmy

    Hi Demmy
    What LabVIEW version are you using? If you are using version 8 and higher then you have to have your VIs loaded into a LabVIEW project and you use the project build specification. You can access the LabVIEW 2009 help on how to build a dll here.
    Here is a quick summary:
    In the project window right click build specifications and choose New -> Shared Library (DLL). This will open the window to create the dll.
    Go to the Source Files category and use the arrow to take the VIs that you want into exported VIs, a dialog will then come up to define the function prototype for that vi. Do this for each vi you want to access in your dll.
    You will need LabVIEW professional version to create dlls and the target computer where you are using the dll must have the LabVIEW run time engine installed.
    Message Edited by Karissa on 03-03-2010 09:05 PM
    Systems Test Engineer
    Certified LabVIEW Architect (CLA)

  • Error calling DLL in LabVIEW, but works in VC

    I compiled a DLL from Matlab, and then compiled a wrapper DLL in VC++. I tested the wrapper DLL in VC++, and it works fine, generating the correct output as in Matlab. 
    But when I call the wrapper DLL in LabVIEW, the first thing I noticed was that it only ran once. The second time I ran the VI, it returns an error. And the output is always a single number instead of an array when it runs. 
    I followed the examples how to create a wrapper DLL for Matlab compiled code. One of the examples said three functions Initialize, run and terminate should be implemented so that the DLL function can run continuously. I did all those, but it still does not work. 
    Here is the test code in C++. I explicitely loaded the DLL and ran the functions. It worked fine. Why the VI in LabVIEW does not do the same thing?
    // contourWrapper3.cpp : Defines the entry point for the console application.
    #include "stdafx.h"
    #include <Windows.h>
    #include <iostream>
    typedef int (*InitFunc)();
    typedef void (*TerminateFunc)();
    typedef void (*contourFunc)(double*,double*,int,int,double);
    int _tmain(int argc, _TCHAR* argv[])
    InitFunc _InitFunc;
    TerminateFunc _TerminateFunc;
    contourFunc _contour;
    HINSTANCE hInstLibrary = LoadLibrary("contourcWrapper.dll");
    if(hInstLibrary)
    _InitFunc=(InitFunc)GetProcAddress(hInstLibrary,"c​ontourcInit");
    _TerminateFunc=(TerminateFunc)GetProcAddress(hInst​Library,"contourcTerminate");
    _contour=(contourFunc)GetProcAddress(hInstLibrary,​"contourcGenerate");
    if(_InitFunc)
    _InitFunc();
    if(_contour)
    double image2DArray[] = {1,2,6,4,6,8,0,5,1,3,5,4,7,8,8,9,10,0};
    int width = 3;
    int height = 6;
    double c[sizeof image2DArray] = {0};
    _contour(c, image2DArray, width, height, 0.6);
    for (int i=0; i<width*height; ++i)
    std::cout << c[i] << std::endl;
    _TerminateFunc();
    else
    std::cerr << "Could not initialize libcontour properly."
    << std::endl;
    return 0;
     This is the output window of the above C tester code. It displays the correct output of array. 
    And this is the VI that does not work. 
    In the attached files, 'libcontour.zip' contains the matlab-generated dll and wrapper dll. 
    Attachments:
    contourcWrapper_test.vi ‏12 KB
    libcontour.zip ‏50 KB

    But LabVIEW does.  The declarations (in C) for different types of arrays are not the same.  I think you are passing extranious data to the DLL which is causing the issue.
    I will defer to your expertise however.  Over the years my knowledge in this area has waned.  Perhaps you are correct (in which case I am not sure what is wrong).
    Examples:
    typedef struct
        int dimSize;
        double data[1];
      } t_LvArrayDbl1D, *p_LvArrayDbl1D, **h_LvArrayDbl1D;
    typedef struct
        int dimSize[2];
        double data[1];
      } t_LvArrayDbl2D, *p_LvArrayDbl2D, **h_LvArrayDbl2D;

  • How to make a driver using DLL in LabVIEW?

    I had followed the "Using Exteranal Code in LabVIEW" manual having finished the making dll file, and the lsb file(I attempted that two ways). But when I load the code in LabVIEW, it can't work. I don't know what had happened, I only got a error message like this:"'0x100014f1'commond call memory'0x00000000',this memory can't be written" or other similar error message, if I push the "enter" button, the vi application which I having lunched will crash. If I push the "cancel" button, the debug model will start,and the next message is "Unhandle exception in LabVIEW.exe(MSVCRTD.DLL/LVS95.TMP/COUNTER.DLL(the last one is creat by myself)):0xC0000005:Access Violation", but I wonder what had cause this? My DLL had been made successf
    ully under the VC++6.0, why LabVIEW can't call it fluently? How to make a driver for my own device using LabVIEW? How to correct my error to finished my hole work? Thank you very much. Jacky Wei
    Attachments:
    counter1.rar ‏33 KB

    1. Can you call this DLL from within VC?
    2. What operation system do you use? There may be a problem with calling of win95 dll under NT or win2000 for example.
    3. If you use NT you may not have permissions to work with some ports and memory areas.
    4. Under NT or win200 try to compile the library as a 32-bit dll, and under win95 - as 16-bit one.
    Good luck.
    Oleg Chutko

  • Calling MSP430 functions in MSP430-TI.dll using Labview

    Hi
    I have few questions about implementing the MSP430-TI.dll functions in LabVIEW and I greatly appreciate your help
    I would like to read MCU through JTAG and then update the firmware
    1- I can see all the dll functions in LabVIEW but I couldn't find any documentation for these functions like what are the parameters and return values. Could you please let me know from where I can find the user guide for these functions
    2- Can I use MSP430 Flasher command lines instead of using the dll in LabVIEW
    3- I don't have the updated firmware but one my boards has the MCU updated. When I use FETPro-430 , can I click on Read-Copy and then save the txt file and use it to update the FW of the other boards?
    Thanks

    I'm looking into this issue too. TI provided an executable with graphic user interface for loading firmware, I'm thinking whether I can use LabVIEW to automate the process, it will be appreciated if anyone with this experience can provide some suggestions. 

  • Error loading 'ModelCom.dll': Missing export 'GetModuleHandleW' from 'KERNEL32

    Hallo zusammen,
    wir Arbeiten hier mit LV-RT (8.5) und ProveTech TA, von der Firma MBtech.
    Die Frima MBtech liefert dazu eine dll dür den Datenaustausch zwischen beiden Systemen.
    Seit dem Update der dll auf eine neuere Version bekommen wir immer folgende Fehlermeldung:
    Error loading 'ModelCom.dll': Missing export 'GetModuleHandleW' from 'KERNEL32.DLL'
    Meine Anfrage bei MBtech hat folgendes ergeben, vielleicht können sie mir diesbezüglich weiter helfen?
    Besten Dank schonmal im voraus!
    Anfrage:
    beim Update von ProveTech auf die Version 2009SE wurde auch eine neue ModelCom.DLL zur Verfügung gestellt. Diese verursacht jedoch immer einen Absturz des LabView-Realtime Betriebssystems.
    Fehlermeldung:
    Error loading 'ModelCom.dll': Missing export 'GetModuleHandleW' from 'KERNEL32.DLL'
    Wurden in der neuen ModelCom.DLL vielleicht neue Funktionen programmiert,
    die auf (von LabView-Realtime) nicht unterstützte Windows-API-Funktion zugreifen?
    MBTech:
    Die Untersuchung der Abhängigkeit zu GetModuleHandleW hat ergeben, dass
    diese Abhängigkeit seit der Verwendung des Visual C++ 2008 Compilers existiert (statt Visual C++ 2005).
    Zu welchen Visual C++ Compiler-Versionen ist LabVIEW-RT kompatibel?
    Bald kommt der Release von Visual C++ 2010.

    Hallo Manuel.W,
    bitte entschuldigen Sie, dass es etwas länger gedauert hat. 
    Grundsätzlich unterstützen wir LabVIEW und LabWindows/CVI als Entwicklungsplattform für unsere Real-Time-Systeme. 
    Für andere Entwicklungsumgebungen können wir aus verständlichen Gründen keinen Support leisten.
    Windows-DLLs, welche mit anderen Entwicklungsumgebungen (als die beiden oben genannten) erstellt wurden, können auf Pharlap-basierten Real-Time-Systemen lauffähig sein, müssen es allerdings nicht.
     Das folgende Utility liefert einen ersten Ansatzpunkt, indem es die Funktionsaufrufe (Calls) der DLL testet.
    How Can I Verify that My DLL is Executable in LabVIEW Real-Time? 
    http://digital.ni.com/public.nsf/allkb/0BF52E6FAC0BF9C286256EDB00015230
    Ansonsten können vielleicht noch folgende Hinweise helfen:
    Can LabVIEW Real-Time Interface With External Code?
    http://digital.ni.com/public.nsf/allkb/2EA49B05E67DDECF86256F9A006FB315?OpenDocument 
    Are there any tips or guidlines when creating DLLs for a Destop RT target (using Visual Studio C++)
    http://forums.ni.com/ni/board/message?board.id=170&message.id=423544&requireLogin=False
    Can I Use a Free Compiler with Simulation Interface Toolkit (SIT)?
    http://digital.ni.com/public.nsf/allkb/AAD15283A1F051A1862574F000744DBD?OpenDocument 
    CVI RT Missing Export Error when using a DLL from VS2008
    http://forums.ni.com/ni/board/message?board.id=180&message.id=41001&requireLogin=False 
    Dann hoffe ich, dass diese Informationen hilfreich waren.
    Mit freundlichen Grüßen
    i. A. Ralf N.
    Application Engineering,
    GERMANY 

  • Error loading 'ole32.dll': Missing export '_resetstkoflw' from 'MSVCRT.DLL'

    I'm getting the RT error:
    Error loading 'ole32.dll': Missing export '_resetstkoflw' from 'MSVCRT.DLL'
    LabVIEW RT 2011
    I've reinstalled RT several times but am still seeing the error.
    I only see it after closing my application.  
    I've attached a report of my RT system.
    Any ideas on what I might be missing?
    Robert C. Mortensen
    Certified LabVIEW Architect
    Certified LabVIEW Embedded Systems Developer
    Endigit
    Attachments:
    ni_support.zip ‏1110 KB

    Hello Robert,
    I wasn't able to find too much about this error on our end, but doing a wider search it seems errors involving MSVCRT.DLL usually take place when this Microsoft C Runtime Library file is replaced by a third-party file that lacks "_resetstkoflwfunction". It's odd that the error occurs only after closing the application. Here is a third-party website I was able to find which explains this in a bit more detail, and might be a fix to try if your are comfortable: How to Fix Common Msvcrt.dll Errors?
    Regards,
    Deborah Y.
    LabVIEW Real-Time Product Marketing Manager
    Certified LabVIEW Architect
    National Instruments

  • How to open a 16-bit dll in Labview

    Hi,
    I would like to open a vi for a spectrometer (Jobin Yvon 270M), but I get the following error message: "A CIN tried to load a 16-bit dll. This operation is not supported under Labview for Windows 95 or Windows NT. The CIN and DLL must be recompiled". Is there any way how I can open the 16-bit dll in Labview? I´ve read that it could be possible by writing a Thunk DLL(???). Do you have some advise how to solve this problem?
    Thanks a lot,
    Markus.

    This isn't a LabVIEW issue, but a Windows issue. To call 16-bit code from a 32-bit OS you need a bridge. That's what the thunk is. You can read more from this MS KB article. There's also this NI article. Not for the faint of heart.

  • Easy text report in DLL causes LabVIEW crash

    I was wondering if anyone else could shed some light on this problem (it's got tech support stumped).
    To date I have two build machines and three target machines that have had the same problem. I build a DLL in LabVIEW that contains the Easy Text Report vi. I also create a VI that calls this DLL function to test it out. Everything works fine on my build machines. On my target machines, however...
    On the target machine I put a call library function node on the block diagram and configure it for the LabVIEW DLL I created, select the function and setup the parameters to the function. Upon clicking on OK on the configuration window for the call library function node, my hard drive access spikes for some period of time (sometimes fractions of seconds, sometimes seconds); I assume the VI inside the DLL is being loaded into memory. I then get a Windows message stating that LabVIEW needs to be shut down at which point Windows terminates LabVIEW. Removing the Easy Text Report from the DLL VI eliminates the crash. Tech support has helped narrow this down a bit -- it seems to specifically be the print portion of the report generation VIs (they sent me a DLL that creates an HTML report which had no issues).
    I'm doing this in LabVIEW 8.0. To make things more interesting, I have the same code in LabVIEW 7.0 and 7.1; neither of these have any problems. I've attached the code (LabVIEW 8.0) that tech support and I have been messing with.
    Any thoughts or sugestions?
    Tim Stahl
    Attachments:
    My DLL.zip ‏10 KB

    Hi DougF,
    It has been a while since I looked at this stuff in detail, so I will answer from memory.
    There are a number of routines that must be present for the code to work correctly. The two I am thinking about are "CINDispose" and "CINUnload".
    I suspect CINUnload is missing or buggy.
    I hope this helps,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • C++ builder 6 unresolved external error loading a dll

    Im using LabVIEW 6.1 and i'm trying to export a DLL that performs math routines (such as FFT and stuff..) to include it im my BC#B6 project. I chose the C Calling convention (because the Standard Calling Convention cannot be converted by the Coff2omf.exe tool (to get rid of the 0x21 error)). Still, i now get the following linking error (it searches for an underscore before the first letter of my function):
    [Linker Error] Unresolved external '_calcul' referenced from E:\WORK\PROJECT\CALLINGFORM.OBJ
    for now i only have a simple "multiply by 2" function that takes an int and returns an int :
    int16 __cdecl calcul(int16 Input);
    I would like to know...
    1 - How to get rid of this problem - where is the source
    of the problem (application builder i guess)?
    2 - Will I have this problem if i link dynamically the driver?
    3 - do i need to link the Run-time engine dlls to make it work in both static and dynamic loading?
    Simon Lapierre
    [email protected]

    Hello Simon,
    Thank you for contacting National Instruments.
    When you created your DLL in LabVIEW, a LIB file should also have been created. To call the DLL in C#, make sure that you include the LIB file in C#.
    In answer to your questions:
    1. You can solve this problem by including the LIB file in C#.
    2. You will not have this problem if you dynamically link the driver.
    3. You do not need to link the Run-time engine DLLs to make it work in both static and dynamic loading.
    I hope this helps. Let me know if this does not solve your problem.
    Sean C.
    Applications Engineer
    National Instruments

  • Help to make opencv's dll and LabVIEW's Call Library function node understanding each others

    Hi, i have a little problem trying to use a C++ opencv's dll in labview. I wrote a really simple and stupid dll just to try to understand how it works the call library function node. Here the header code:
    #ifdef GENERICDLL_EXPORTS
    #define GENERICDLL_API __declspec(dllexport)
    #else
    #define GENERICDLL_API __declspec(dllimport)
    #endif
    #include "stdafx.h"
    #include <opencv2/core/core.hpp>
    #include <opencv2/highgui/highgui.hpp>
    #include <iostream>
    #include <string.h>
    #include <stdio.h>
    #include <opencv/cv.h>
    #include <opencv/highgui.h>
    // Questa classe è esportata da Generic DLL.dll
    class GENERICDLL_API CGenericDLL {
    public:
    int Summ(int a, int b);
    int Sott(int a, int b);
    int opencv(int a);
    // TODO: aggiungere qui i metodi.
     and here the .cpp:
    // Generic DLL.cpp: definisce le funzioni esportate per l'applicazione DLL.
    #include "stdafx.h"
    #include "Generic DLL.h"
    #include <opencv2/core/core.hpp>
    #include <opencv2/highgui/highgui.hpp>
    #include <iostream>
    #include <string.h>
    #include <stdio.h>
    #include <opencv/cv.h>
    #include <opencv/highgui.h>
    using namespace cv;
    using namespace std;
    // Esempio di variabile esportata
    GENERICDLL_API int nGenericDLL=0;
    // Funzioni esportate.
    GENERICDLL_API int Summ(int a, int b)
    return a+b;
    GENERICDLL_API int Sott(int a, int b)
    return a - b;
    GENERICDLL_API int opencv(int a)
    const string ind = "C:\\Users\\sviluppo\\Desktop\\Tuli.bmp";
    const string ind_2 = "C:\\Users\\sviluppo\\Desktop\\Tuli_Gray.bmp";
    //Mat image;
    return 5;
    i can call all the three simple functions in labview with this easy code. No problem at all. If i uncomment the line "Mat image;" the call library function node doesn't work and i receive the error:
    "The library specified for this node cannot be found or cannot be loaded. Right-click the Call Library Function node and select Configure, then choose the correct library name or path."
    I think that is a problem of dependencies between opencv libraries but i dont know how to manage this. Any ideas?
    Thank you for yours time,
    Francesco.

    Hello Francesco,
    I'm having exactly the same problem as you. I created a DLL that I can easily access from LabView. If I add one line and include "imgproc.hpp" (the only one I need), then LV gives me the same error you had. I read the thread Loura linked to, but I don't see how people actually take care of the dependecies (Klemen's examples did not work for me for the same reason, even though I recompiled the .cpp). Could you explain in detail what you did to make it work?
    Thanks

  • Calling DLL using LabVIEW 7.1

    so, i have this DLL which might be compiled using Visual Studio 2003 or Visual Studio 2005.NET.
    question is: Can i call DLL functions using LabVIEW 7.1? has anyone tried it and has any issues loading the DLL?
    i think i have everything right, as far as the configuration of 'Call Library Function Node' is concerned, but i get the
    'error loading DLL - application has failed to start because application config is incorrect'.
    can you please verify if .NET is not causing me issues? i think DLL assembly should be the same wheather it's VStudio6
    or .NET, but can anyone confirm that's not the issue? Thanks...

    Yes.
    If you dll is generated by C/C++, using Call Library Function node.
    If it is generated by .net, using constructor node.
    http://forums.ni.com/ni/board/message?board.id=170&message.id=206959#M206959

  • Calling 64-bit dll from labview 8.2 on Windows7

    Hello,
    I have tried the LABview driver from the OMNIDRIVER (OceanOptics) package. But when calling functions from the “OmniDriver32.dll” , LABView is crashing and  says that the memory is corrupted.
    I am using LABVIEW 8.2 (32-bit) running on Windows 7 (64-bit).  I have tried some LABView code examples given for LABview 7.1 and 8.0. These example are using the OmniDriver32.dll (not the OmniDriver64.dll).
    But maybe these example are assuming that you are on a 32-bit operating system, which is not my case.
    So I have tried calling the OmniDriver64.dll. but LABView seems not to recognised the dll and can’t read the included functions.
    Is there a way to call some 64-bit dll from LABview 8.2 ?
    Or do I need to buy a new license for LABVIEW 64-bit ?
    Thanks,
    Pierre

    There is no virtualization support for DLL bitness issues outside of the Windows standard directories. The Windows and System directories that an application "sees" depends on its bitness. All other directories are not mapped depending on the calling process' bitness.
    So if you have installed 32 Bit LabVIEW and are not calling one of the system DLLs, you have to point the path of the DLL to the real 32 bit DLL. Pointing it to a 64 bit DLL should not even be able to get the VI compilable, since Windows will refuse to load the DLL into the 32 bit process as being an unknown file format, and that should make the VI broken.
    If you need to call a system DLL you simply enter the DLL name without path and Windows will find the according DLL for LabVIEW.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

Maybe you are looking for

  • Can I install Photoshop CC on a Mac running 10.5.8

    I can't get a straight answer out of the salesperson so I'm coming to the community. Has anyone installed CC (Photoshop or InDesign) on a Mac running Snow Leopard and if so, does it work and what (if any) issues have you had? Thanks in advance!

  • Getting message that Windows 7 not genuine

    I bought a Thinkpad X200 at the Lenovo Outlet that was supposed to have Windows 7 installed.  Instead, it had XP and Lenovo had to send me disks for Windows 7.  After working for over a year, I started getting a message "Windows 7 Build 7601. This co

  • Color coding of keywords in Flex 2.0

    I cannot find how to modify the default color coding of language (e.g., MXML) keywords in the Flex 2.0 UI. Does someone know how to change these colors?

  • Images looping

    Ok I am having major problems running this program. I need the user to enter in the command line argument; java ImageDiplay dog jpg 3meaning that the program will select dog1.jpg, dog2.jpg and dog3.jpg put them in the images array and loop these pict

  • What will do this best?

    Hello everyone; I wish to achieve these goals: • The ability to have different users log into the makeshift server with their own personal accounts. • Limit his/her filespace on the server to a certain amount. Btw - I unfortunatly; (due to lack of fu