Pbm in Dll (pls Francois)

Hi,
I created a test.dll using Microsoft visual c++ by following steps.
I opened a new project by
New--Project--win32 dynamic link library
I added a new src file test.c to project and edited it as:
int caps()
int *src=0x417;
if (*src==64)
return 1;
else
return 0;
I added a header file test.h and added
int caps()
I compiled the test.c with no errors.Then I built test.dll by pressing make test.dll.
Now If I view test.dll with a utility called DLLEXP(Utility to see func present in DLL),
Caps is not appearing in it.Thats y forms is also giving an error like caps is not found in test.dll.
I'm totally confused.
What is wrong in my process?
Pls its urgent...I've to use this dll in ORA_FFI package.
Adios..

Here is a Metalink sample
The memory for the char pointer must be globally allocated using a GlobalAlloc
(with the GMEM_FIXED flag) such that the memory is not resident on the stack.
The problem with allocating memory on the stack for the pointer is that this
memory block will be freed when the function exits and the returned pointer
will become invalid.
Here is a complete example showing a successful implementation of this
functionality. Although the following code demonstrates a 16bit
implementation, the same holds true for 32bit implementations.
-- This calling trigger's code                                --
declare
  -- Parameters
  parm1 VARCHAR2(128) := 'X';
  -- Return value
  rt VARCHAR2(512) := 'Hello Folks';
begin
  rt := MyLib.MyFunc1( parm1 );
  Message(rt);
end;
-- This wrapper package's header                             --
PACKAGE MyLib IS
  FUNCTION MyFunc1( parm1 IN OUT VARCHAR2 )
                    RETURN VARCHAR2;  
END;
-- This wrapper package's body                               --
PACKAGE BODY MyLib IS
  lib_hndl  ora_ffi.libHandleType;  
  func_hndl ora_ffi.funcHandleType;  
  FUNCTION i_MyFunc1( func_hndl IN ora_ffi.funcHandleType,  
                      parm1 IN OUT VARCHAR2 )
                      RETURN VARCHAR2;  
  PRAGMA INTERFACE(C,i_MyFunc1,11265);  
  FUNCTION MyFunc1( parm1 IN OUT VARCHAR2 )
                      RETURN VARCHAR2 
  IS   
    parm1_l  VARCHAR2 := parm1;
    rc       VARCHAR2(512);
  BEGIN   
    rc  := i_MyFunc1(func_hndl, parm1_l);
    RETURN (rc);  
  END ;  
BEGIN   
  lib_hndl := ora_ffi.load_library(NULL,'DLL16.DLL');  
  func_hndl :=
ora_ffi.register_function(lib_hndl,'PASCAL_TEST',ora_ffi.PASCAL_STD);
  ora_ffi.register_parameter(func_hndl,ORA_FFI.C_CHAR_PTR);
  ora_ffi.register_return(func_hndl,ORA_FFI.C_CHAR_PTR);
END;
-- This DLL's DEF file                                       --
LIBRARY      DLL16
EXETYPE      WINDOWS
CODE         PRELOAD MOVEABLE DISCARDABLE
DATA         PRELOAD SINGLE
HEAPSIZE     4096
EXPORTS
             WEP PRIVATE
             Pascal_Test  @1
-- This DLL's CPP file                                       --
#include <windows.h>
#include <string.h>
int CALLBACK LibMain(HANDLE hInstance, WORD wDataSeg, WORD wHeapSize, LPSTR
lpszCmdLine)
        if (wHeapSize > 0 )
                UnlockData (0);  // Unlocks the library's data segment
        return 1;
char* FAR PASCAL __export Pascal_Test (char* xyz)  
    HGLOBAL hgl;
    char FAR* abc;
    hgl = GlobalAlloc(GPTR, 256);
    abc = (char*)GlobalLock(hgl);
    strcpy(abc,"Hello World");
        GlobalUnlock(hgl);
        MessageBox(NULL,abc,"Pascal",MB_OK);
    return abc;
}Hope this help
Francois

Similar Messages

  • MY Compaq Presario CQ50 Notebook SHOWS: !! 0XC0190002 !! 1223/49793 (nshhttp.dll). pls solution

    MY Compaq Presario CQ50-105EE Notebook  SHOWS: !! 0XC0190002 !! 1223/49793 (nshhttp.dll) AFTER UPDATING FOR PACK 2 AND STOP DURING THE INSTALATION. I AM USING VISTA WINDOW. THIS WAS THE LAST RESULT BEFORE I RE-START TO RECOVERY

    I would use the HP recovery discs to re-install Vista.
    DO you have any data you need to back up first?

  • Post-installation glitch with ORAEVRUS10.DLL - pls help

    Hi
    I've installed 10g Express edition and everything is fine, except that the Windows 2003 Server event log is returning errors like this:
    The description for Event ID ( 5 ) in Source ( Oracle.xe ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: SMON, xe.
    This is because the following file:
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN\ORAEVRUS10.DLL
    is missing from the installation.
    Can anyone help me locate a copy of this file so that I can register it?
    Many thanks

    Hi
    I've installed 10g Express edition and everything is fine, except that the Windows 2003 Server event log is returning errors like this:
    The description for Event ID ( 5 ) in Source ( Oracle.xe ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: SMON, xe.
    This is because the following file:
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN\ORAEVRUS10.DLL
    is missing from the installation.
    Can anyone help me locate a copy of this file so that I can register it?
    Many thanks

  • Wrapping c# assembly in  pl sql and calling it as function

    hi guys i trust you are ok, i am working on a where i have oracle as a database i wanted to load a strored procedure which is a c # assembly but im getting error when i call the function see the code below.
    namespace testdll
    public static class test
    public static string show(string x)
    return " Hi "+x+" ,i am a dll from c sharp";
    THE ABOVE CODE IS FROM C SHARP WHICH I WILL CONVERT IT TO AN ASSEMBLY
    ============================================================
    CREATE OR REPLACE LIBRARY testdll2 AS
    'D:\oraclexe\app\oracle\product\10.2.0\server\BIN\testdll.dll';
    THIS CODE IS FOR CREATING A LIBRARY IN ORACLE
    =============================================================
    set serveroutput on;
    create or replace function rundll_func
    (cmd in varchar2)
    return varchar2
    as
    language c
    library testdll2
    name "testdll.test.show"
    parameters(cmd string, RETURN STRING)
    THIS IS WRAPPER FUNCTION WHICH USES THE LIBRARY CREATED ABOVE
    ====================================================
    set serveroutput on;
    CREATE OR REPLACE PROCEDURE calldll
    IS
    i varchar2(200);
    BEGIN
    i:= rundll_func();
    DBMS_OUTPUT.PUT_LINE (i);
    END calldll;
    THIS CODE IS A PROCEDURE THAT CALLS THE FUNCTION ABOVE WHICH HAS THE LIBRARY
    EXE CALLDLL - when i typre this i get the error
    ===================================
    plsql error mapping function
    unable to load symbol from dll
    pls help me could the problem be the way i have wrapped my function thank you

    user12086108 wrote:
    how do i wrapp a c# sharp functionI'm not aware of any support for C# in PL/SQL.
    There is support in PL/SQL for java. Is there a way you could do something Java, wrapping the Java in PL/SQL?
    Alternately, could you do something with a host call from DBMS_SCHEDULER?

  • Not able to create DSN

    I installed personal oracle8i on my win 98 m/c,
    when i try to create DSN i am getting the error
    "Error Cannot Load Resource File sqresus.dll"
    pls help..

    yes the %Oracle_home%\bin directory is in classpath and sqresus.dll is present. Now i copied sqresus.dll file to windows\system and the
    oracle odbc driver setup window now appeared , and I created the DSN.
    but the connection failed when i test my DSN with oracle odbc test ,
    it ends up with the error
    OCI.dll
    'one of the library files needed to run this application cannot be found'.
    SQLSTATE:IM004
    Native Error Code:0
    Driver Message:[Microsoft][ODBC Driver Manager] Driver's SQLAllocHandle on SQL_HANDLE_ENV failed.
    I don't know which library files still needed ..
    the mfc42*.dll version i am using is as follows
    mfc42.dll 6.00.8447.0
    mfc42u.dll 6.00.8168.0
    mfc42enu.dll 6.00.8168.0
    if all mfc42*.dll have to be the same version , tell me where to download it.
    null

  • Error appears when Upgrading from 11.1.1.3 to 11.1.1.4

    Hi All,
    We've Installed Hyperion 11.1.1.3 and would like to go for 11.1.1.4. We've applied the maintenance release 11.1.1.4. After the installation when trying to open EPM System Configurator, it is giving the below error message
    Java.exe-Entry point not found, The procedure entry point NETInetAddressToSockaddr@24 could not be located in the Dynamic Link Library net.dll
    Pls. advice
    Thanks,
    PVR

    Hello,
    Test to set the PATH before launching rwserver :
    example:
    set ORACLE_HOME=e:\oracle\ods1012
    set PATH=%ORACLE_HOME%\bin;%ORACLE_HOME%\jdk\jre\bin;%ORACLE_HOME%\jdk\jre\bin\classic;%ORACLE_HOME%\jdk\jre\bin\classic;%ORACLE_HOME%\jlib;%ORACLE_HOME%\jdk\bin
    rwserver server=repsrvr batch=yes autostart=yes
    Please let me know if it works.
    Thanks,
    KKT

  • Dbt In SQl Query

    Hi,
    I've got a series of dates which satisfies certain condition.
    I want latest date from series of dates.
    For ex:
    10-may-2005
    14-jun-2005
    16-aug-2005
    If this is the result of my query,I want only latest date ie 16-aug-2005.
    Hope u people got the pbm.
    Prashanth Dehmukh

    As Francois says, your question is not very clear, but maybe is this what you're looking for ?
    SQL> select * from test;
    A
    10-may-2005
    14-jun-2005
    16-aug-2005
    SQL> select * from (select a from test order by rownum desc)
      2  where rownum = 1;
    A
    16-aug-2005
    SQL> delete test where a = '14-jun-2005';
    1 row deleted.
    SQL> insert into test values('14-jun-2005');
    1 row created.
    SQL> select * from test;
    A
    10-may-2005
    16-aug-2005
    14-jun-2005
    SQL> select * from (select a from test order by rownum desc)
      2  where rownum = 1;
    A
    14-jun-2005
    SQL>                                                                   

  • Crystal Report Export To Excel Error: "Error detected by Export DDL"

    I have a windows application in .Net 2003, whenever i export the crystal report on my development machine or other windows xp machines it runs smoothly, but when i deploy the application on client's machine having windows vista installed, it displays error of "Error in file........., Error detected by export DLL"
    pls help me.

    First thing to look at is the wiki [What versions of Crystal Reports are supported on Windows Vista in VS .NET?|https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=64259646].
    Note that CR 9.1 is not supported on Vista. And if CR 9.1 is not supported on Vista, any earlier version of CR will also not be supported on Vista. That is not to say the app(s) will not work, they may - or not. You never know... and we have no experience with these types of installs as we don't need to have it.
    Next, have a look at KBase [1205312 - "Error detected by export DLL" while exporting to Excel after applying SP2 on Windows 2003 Server|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233303335333333313332%7D.do]. Not exactly the same OS, but I'd follow through on the suggestions in that KB anyhow.
    Finally, If this app works on a Vista box when a VB 6 app  is not installed, compare the dlls loaded between that box and the one that has both apps. Use [Modules|https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip] to do that.
    Other than that, only suggestion I have is to upgrade to a version of CR that does support Vista.
    - Ludek

  • Jdeveloper installation issue

    hi all,
    i have installed jdeveloper 11g .after installation when i start jdeveloper im getting the following error
    *"unable to create instance of java virtual machine located at path c:\oracle\middleware\jdk160_5\jre\bin\client\jvm.dll"*
    pls help me how to clear this error,
    regards,
    karthik

    # Oracle JDeveloper Launcher Configuration File
    # Copyright 2000-2008 Oracle Corporation.
    # All Rights Reserved.
    IncludeConfFile ../../ide/bin/ide.conf
    # Directive SetJavaHome is not required by default, except for the base
    # install, since the launcher will determine the JAVA_HOME. On Windows
    # it looks in ..\..\jdk, on UNIX it first looks in ../../jdk. If no JDK
    # is found there, it looks in the PATH.
    SetJavaHome C:\Oracle\Middleware\jdk160_05
    # MaxPermSize is required to run JDeveloper with Sun Microsystems virtual
    # machine (-client and -server). The default value is 64M, which isn't
    # enough to run JDeveloper successfully. With the default value, JDeveloper
    # will end up running out of memory at some point in time. For technical
    # details, see: http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html
    AddVMOption -XX:MaxPermSize=256M
    # Replace heavyweight AWT controls with lightweight implementations.
    AddVMOption -Xbootclasspath/p:../lib/lwawt.jar
    # Don't swap the entire JDev process out of memory when minimizing the main window.
    AddVMOption -Dsun.awt.keepWorkingSetOnMinimize=true
    this s the content of jdev.conf
    which value should i reduce here and by hw much??
    regards,
    karthik
    Edited by: karthik !! on May 20, 2009 10:29 AM

  • SBO version 6.5 and later on Citrix

    Hi there,
    I am curious to know whether SBO can run in a citrix environment multiple users (30+) ?
    Has anyone SBO running in a citrix environment with multiple users ? and, if yes, could you tell a little about the setup and requirements for the citrix server/farm ?
    Thanks in advance!
    Best Regards
    Christian Juhl Petersen

    Hi Vidar,
    We have a Citrix installation and we are having trouble getting our Addon installed. Do you have any tips or tricks?
    So far, when SAP tries to load our Addon we get the following error (it's long but I'll send the whole thing):
    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.
    Exception Text **************
    System.Runtime.InteropServices.COMException (0x80040154): COM object with
    CLSID {A0EDE268-F125-46D0-8BCB-08D1A6930480} is either not valid or not
    registered.
       at PLS.SAP.UserFormManager.Connect.get_SboCompany()
       at PLS.SAP.UserFormManager.FormBase..ctor(Connect connect)
       at PLS.SAP.UserFormManager.FormSelector..ctor(Connect connect)
       at PLS.SAP.UserFormManager.EventHandler..ctor(Connect connect)
       at PLS.SAP.UserFormManager.FormControl.FormControl_Load(Object sender,
    EventArgs e)
       at System.Windows.Forms.Form.OnLoad(EventArgs e)
       at System.Windows.Forms.Form.OnCreateControl()
       at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
       at System.Windows.Forms.Control.CreateControl()
       at System.Windows.Forms.Control.WmShowWindow(Message& m)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
       at System.Windows.Forms.ContainerControl.WndProc(Message& m)
       at System.Windows.Forms.Form.WmShowWindow(Message& m)
       at System.Windows.Forms.Form.WndProc(Message& m)
       at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg,
    IntPtr wparam, IntPtr lparam)
    Loaded Assemblies **************
    mscorlib
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.573
        CodeBase: file:///c:/winnt/microsoft.net/framework/v1.1.4322/mscorlib.dll
    PLS.SAP.UserFormManager
        Assembly Version: 1.0.1736.23097
        Win32 Version: 1.0.1736.23097
        CodeBase: file:///C:/Program%20Files/Sap%
    20Manage/AddOns/PLS/PLS.SAP.UserFormManager/PLS.SAP.UserFormManager.exe
    System.Windows.Forms
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.573
        CodeBase:
    file:///c:/winnt/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e08
    9/system.windows.forms.dll
    System
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.573
        CodeBase:
    file:///c:/winnt/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    System.Drawing
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.573
        CodeBase:
    file:///c:/winnt/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/syst
    em.drawing.dll
    Interop.SAPbouiCOM
        Assembly Version: 6.5.0.0
        Win32 Version: 6.5.0.0
        CodeBase: file:///C:/Program%20Files/Sap%
    20Manage/AddOns/PLS/PLS.SAP.UserFormManager/Interop.SAPbouiCOM.DLL
    Interop.SAPbobsCOM
        Assembly Version: 6.5.0.0
        Win32 Version: 6.5.0.0
        CodeBase: file:///C:/Program%20Files/Sap%
    20Manage/AddOns/PLS/PLS.SAP.UserFormManager/Interop.SAPbobsCOM.DLL
    System.Xml
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.573
        CodeBase:
    file:///c:/winnt/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.x
    ml.dll
    JIT Debugging **************
    To enable just in time (JIT) debugging, the config file for this
    application or machine (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the machine
    rather than being handled by this dialog.

  • HOW TO establish connection to database in netpoint in sample aspx page

    Hi ,
    Can anyone to help me to establish database connection using netpoint dll ,pls guide me.

    Hi Kannan,
    you will find the connection string that the Netpoint API needs in the NPSynchConfig.XML file which is in whatever folder you installed the Netpoint Synch Tool, just copy the value of the NPConnString.
    Most of the time you need to make a "connection" to the database via the API, you just set the NPConnection.GblConnectionString static member to this value, any function that requires a connection will take the global NPConnection object as a parameter
    Is that what you are looking for, or is there a specific requirement?

  • Flash Player Green screene

    Hi i have problem with new flash 10.1 that all videos i looked i mean youtube and other pages with live streme are green  there is no video only green screne in video window. Im using Windows 7 x32 using lattest crome 5.0.375.70 .
    Files from  folder C:\Windows\System32\Macromed\Flash :
    FlashInstall.txt
    flashplayer.xpt
    FlashUtil10h_Plugin
    NPSWF32.dll
    Pls Help  !!

    OK, got off my backside and updated my video drivers.  Problem appears solved.
    Now using version 257.21.  I would e-mail it to you, but you need the version for 32 bit OS.
    Link to the driver download page:  http://www.nvidia.com/Download/index5.aspx?lang=en-us
    Checking some other forums, this doesn't seem to work for everybody but it did for me.  Good luck.

  • Error could not load file or assembly netpont.licencing error'

    Hi,
    iam new to netpoint SDK, i have created table and i have two fields like accounid,accountame i try insert through netpoint.api.dll
    pls herewith below i have attached follwing code. Please guide me
    how to insert a sample data in sample database.
      using System;
    using System.Data;
    using System.Configuration;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Web.UI.HtmlControls;
    using netpoint.classes;
    using netpoint.api;
    using netpoint.api.account;
    using netpoint.api.common;
    using netpoint.api.prospecting;
    public partial class _Default : netpoint.classes.NPBasePage
        protected void Page_Load(object sender, EventArgs e)
        protected void Button1_Click(object sender, EventArgs e)
            System.Data.Odbc.OdbcConnection cn;
            System.Data.Odbc.OdbcCommand com;
            string strsql;
            NPBasePage bp = (NPBasePage)Page;
            cn = new System.Data.Odbc.OdbcConnection("Driver={SQL Server};Server=btsserverdc02;Database=library;Uid=sa;Pwd=sa2000");
            strsql = "insert into Users values('" + txtsample1.Text + "','" + txtsample2.Text + "' )";
             cn.Open();
            com = new System.Data.Odbc.OdbcCommand(strsql, cn);
            com.ExecuteNonQuery();
            cn.Close();

    Here's a sample page to display the logged in users' email address:
    <%@ Import Namespace="netpoint.classes" %>
    <%@ Import Namespace="netpoint.api" %>
    <%@ Import Namespace="netpoint.api.account" %>
    <%@ Page language="c#" MasterPageFile="~/masters/common.master"  Inherits="netpoint.classes.NPBasePage" %>
    < script runat="server"> //REMOVE SPACE BETWEEN < AND SCRIPT
    private NPBasePage bp;
    private NPUser u;
    public void Page_Load(object sender, System.EventArgs e){
    if (!base.IsPostBack)
         this.bp = (NPBasePage) this.Page;
            this.u = new NPUser(this.bp.UserID);
         if (this.bp.UserID != "")
            user.Text = u.Email;
         else
         user.Text = "Not logged in";
    </script>
    <asp:Content ContentPlaceHolderID="mainslot" runat="server" ID="main">
    User Email: <asp:Label ID="user" runat="server" Text="Label" Width="97px"></asp:Label> </div>
    </asp:Content>

  • I installed an iTunes update on my Windows Vista PC and now I can't open itunes. It says MSVCR80.dll not found. What can I do pls?

    Hi, I downloaded an itunes update to my windows vista pc a couple of days ago.
    Now I cannot open itunes because I am told that MSVCR80.dll can not be found.
    What is my best course of action please?

    Troubleshooting issues with iTunes for Windows updates - MSVCR80

  • NI-MAX/NVIORef.dll and RTE 8.2.x nightmare. pls someone sends me a RTE 8.2.1 dll?

    hi there
    i just installed LV 7.1 PDS 2005Q3 (default installation), and after that LV 8.5 PDS 2007Q4 (default installation). all works fine except the NI-MAX panels (e.g. devices test panels etc.). see attached ni-max (sorry for the german version..). this is annoying because i cannot add any devices etc.!
    LVBroker needs the RTE 8.2.1 , well OK, i downloaded the RTE 8.2.1 and ran the installer. the installer says "8.2.1 already installed", and so does MAX (see rte attachment). so the installer does nothing at all. the only content of the \Shared\LabVIEW Run-Time\8.2 - directory is the NVIORef.dll with version 8.2.0.131. i assume this is the 8.20 dll version, and not the 8.2.1.
    i'd like to replace this single dll with a "real" 8.2.1 dll. can someone please send me this dll?. or does someone have a better idea?
    the NVIORef.dll can be found in the directory \Shared\LabVIEW Run-Time\8.2, you can find out the version number in explorer with right click on the dll and then click the "version" tab page.
    thanks in advance
    Best regards
    chris
    CL(A)Dly bending G-Force with LabVIEW
    famous last words: "oh my god, it is full of stars!"
    Attachments:
    ni-max.JPG ‏18 KB
    rte.JPG ‏72 KB

    Chris,
    I just checked my LabVIEW 8.2.1 installation, and the version of the NVIORef.dll in the Runtime directory is still 8.2.0.131.
    BUT: this is not the only content of the Runtime directory, as you can see in the screenshot attached to this post.
    What OS are you using? If it is Microsoft Windows 2000, be sure to have at least SP3 installed before running the LabVIEW-RTE Setup.
    Regarding the broken Test Panels in MAX - do you have any drivers installed (VISA, DAQmx, ...)? If so, did you reinstall them after running the LabVIEW 8.5 setup?
    From my personal experience, I dare recommend you a clean new installation of both LabVIEW versions and the 8.2.1 runtime engine, best performed in the version order (7.1, then the 8.2.1 RTE, than 8.5.
    There is a forum entry with a download link to MSI blast and a very good PDF which points you to the Windows Registry keys that you need to delete after deinstallation, which you can find here:
    http://forums.ni.com/ni/board/message?board.id=250&message.id=34373&requireLogin=False
    I think it's worth giving a try.
    Attachments:
    version check1.gif ‏59 KB

Maybe you are looking for

  • Menu Bar In Muse CC 2014 vs. Menu Bar in Muse V7.4

    Ok! I admit to old age and failing eye sight but I something I do not understand is why are their two versions of Muse and which one should I be using? Muse 2014 appears to have more features but the menu bar and subsequent drop down menu's are extre

  • OS 10.4.6... but still Mail 2.0.7.

    I thought I was up-to-date, having run System Update to upgrade to OS 10.4.6... but how come I'm still on Mail 2.0.7? What gives?

  • Remove name from menu bar + possible bugs?

    Hello, I was wondering if it were possible to remove my name from the Menu bar. It currently says my full name and is clickable, dropping down to my icon and a link to the Login Window and Users & Groups Preferences (but there's no option to remove i

  • PDF Form issues

    I have created a right-enabled PDF form using acrobat pro 9 and Life Cycle Designer so our clients can fill and save it locally using the reader. It has worked fine during our testing but 10% of our clients couldn't save the information in the form o

  • Is WebLogic 9 supported by Policy Agent ?

    Hi, We are planning to use WebLogic 9. I�m wondering if this version 9 of WebLogic is supported by the Policy Agent (or only the version 8.1) ? Thanks, Adel