Object Bulider- Object Interface 4.1.3 header files and libraries

Hi,
Due to a hard disk crash I have lost the OI header and libraries files version 4.1.3.
Can someone please let me know where can I get these files from. It will be very helpful if someone can provide me a link to download the same
Thanks !!!

You installed the Conduit spyware. To remove it, select Go ▹ Go to Folder… from the Finder menu bar, then copy the following text into the box that opens:
~/Library/Application Support/Conduit
Delete the selected item, if it exists.
Now select Go to Folder… again and enter:
/Library
From the folder that opens, delete the following items, if they exist. You may be prompted for your login password.
Application Support/Conduit
InputManagers/CTLoader
LaunchAgents/com.conduit.loader.agent.plist
ScriptingAdditions/ct_scripting.osax
Close the folder. Now select Go to Folder… again and copy:
/Applications/Toolbars
Delete that item. Close the Finder windows you opened. Log out and log back in.

Similar Messages

  • JNI header files and /include

    Does anyone know where the JNI classes and what .jar file if need be or just what classes jni.c header file(s)are dependant upon, and do they reside in JRE 1.3.0 or 1.3.1, or do I need the JDK version to obtain these, also isn't there suppose to be a JAVA_HOME/include directory where JNI stuff is or at all, or did that all change in 1.3 and up. I thought I remember there being one 1.17 and 1.2ish JDK's if not JRE installs. Any help would be greatly appreciated. Thanks. Trask.

    and what jar are they in or what is the path to them from JAVA_HOME

  • Concerning header files and include files

    I presently have a site I created in Frontpage 2003, Gunshows-USA.com.  It has seperate pages for each state and month.  I had a header file called head.shmtl that I included on each page.  This allowed me to create one file and reuse it on 50 different pages.  I was also able to place it on the page in such a way that I could include it under the Title of the page and even iinsert an indiviual banner above the header.shtml.  Will I be able to do basically  the same thing with Dreamwaver 5.5s header and footer function?  If so, is there anything special I need to be aware of?

    I guess I didn't quite explain myself as well as I should have. 
    1st I had used include files on my site for a header and a footer but the site broke and when I got it back up it was necessary to load code for each header file to each page to get it to appear.  I am not presently using include files on the site.  The site was created in FrontPage 2003 and I intend on migrating it to Dreamweaver as soon as I know a little more about what I'm doing with DW
    2nd.  When I had the include files working I did NOT have to change everything on every page when I wanted to change something in the header or footer.  The way I have it set up now I do.
    3rd.  Going through different tutorials books, etc I see that I can create a file with a header, a body, and a footer from the templates that are built into the program.  An example is the 3 column fixed, header and footer. My question is, if I use this layout will that layout follow throughout the site and will I be able to basically do the same as I did when I was using includes?  Will a change to the header file change every header file?
    4th.  Can I position the header file sot that it has space above it.  Or another words can I have the header file appear in the middle of the page?
    5th.  Is if possible to have more than one header or footer file and be able to call the one I want or use all one after another?

  • Labview Full 6.1 - You get CIN Tools header files and what else?

    We have Labview 6.1 Base Level and are developing 3rd party instrument drivers, initially implementing the AI functions. I have disovered it would be nice to beable to use NumericArrayResize for which we need CIN Tools and may need to upgrade. What else would we get?
    Can we build polymorphic Vis?
    Can we include our third party driver in the Measurement and Instrument Explorer?
    Can we have DAQ channels registered to our instrument?
    Can we create a functions palette for our interface?
    Are we able to build a Labview installer for the driver?

    You can go to www.ni.com and get a complete list of all the features but briefly, the full version adds analysis, signal processing, custom graphics and animation, CIN/DLL tools. The professional version adds the applicaton builder, source code control, a differencing tool, and polymorphic VI creation.
    MAX is for NI hardware and IVI drivers - not LabVIEW instrument drivers. You say that you're using the AI functions which implies an NI DAQ board so the board should already be visible in MAX as well as the channels.
    I believe all versions of LabVIEW can create a custom palette. On your function palette, click the Options button and see if there's a Edit Palettes button. If there is, the LabVIEW help can guide you in the creation of your own .mnu fil
    es that you can save and distribute.
    The application builder (which is also available separately) includes an installer that could probably be used for driver installation but I've never tried it for that. When I've created LabVIEW instrument drivers, all I usually did was zip up the LLB and mnu files, place them in the instr.lib folder and then unzip them.

  • Include my own libraries and header files when compiling Berkeley DB?

    Hi to All,
    I am a new user to this forum and a newbie to Berkeley DB as well.
    I want to use some functions from some of my header files inside the source code of Berkeley DB.
    I would really appreciate if anyone can help me in including my own header files and libraries in Berkeley DB before compiling and MAKE of Berkeley DB.
    The make file generated by running configure file is too large to undestand and make changes in. So is there any way to include my files in configuration script or Make file created after running configuration script?
    Imp information :
    db-4.7.25.NC.tar.gz + Ubuntu 8.04 + Libraries/Header files to be included are in C and C++.
    Thanks in advance.

    Hi to All,
    I am a new user to this forum and a newbie to Berkeley DB as well.
    I want to use some functions from some of my header files inside the source code of Berkeley DB.
    I would really appreciate if anyone can help me in including my own header files and libraries in Berkeley DB before compiling and MAKE of Berkeley DB.
    The make file generated by running configure file is too large to undestand and make changes in. So is there any way to include my files in configuration script or Make file created after running configuration script?
    Imp information :
    db-4.7.25.NC.tar.gz + Ubuntu 8.04 + Libraries/Header files to be included are in C and C++.
    Thanks in advance.

  • Do I need to declare my custom setter accessor in my interface/header file

    Hi there:
    I'm working through a Objective C tutorial. I've got an instance var that is declared in the var section of my @interface (in the header file). It's also declared as a property...all the defaults apply (assign and whatever else).
    @property int foo
    I also have it synthesized in my @implementation code.
    @synthesize foo;
    I need a custom setter though that checks out the value being assigned. Do I need to declare this setter function in my @interface section in the header file?
    -(void)setFoo:(int)newValue {
    if (newValue < minAllowed) {
    NSLog(@"Invalid foo: %i is less than the minimum of %i allowed", newValue, minAllowed);
    return;
    if (newValue > maxAllowed) {
    NSLog(@"Invalid foo: %i is greater than the maximum of %i allowed", newValue, maxAllowed);
    return;
    foo = newValue;
    } // setFoo()

    The @property statement is the declaration of the accessor methods whether they are synthesized or custom coded.
    For a fairly clear, detailed explanation see Accessor Methods in the +Memory Management Programming Guide for Cocoa+.

  • Import c struct from dll header file into TestStand?

    Hi,
    I'm writing a TestStand sequence to call some CVI functions I have compiled into a dll. One header file in the CVI code is the interface to the dll and declares some functions and some C structs which are to be passed into the functions as pointers. These structs are populated with test results as the CVI code executes. I want to import these structs into TestStand.
    TestStand seems to have properly imported my function calls because I can select them from a drop-down list. But it doesn't seem to recognize my struct definitions, because it just says "unknown __struct 617*" -- it knows it's a C struct pointer but doesn't know what fields exist in the struct.
    How do I get TestStand to recognize the fields that are in my structs?
    The C functions and structs are declared with DLLEXPORT in the header file. I compile the CVI code into a dll, with the target settings set to export marked header files and symbols. The only header file marked in the target settings dialog is the header file declaring these functions and structs. So I think they're being exported properly into the dll.
    Any ideas to help?
    Thanks!

    I'm using typedef struct {...} MyStruct; to make life easier in CVI world, so rather than changing that throughout my CVI code I think I'll just live with the fact that TestStand doesn't know what struct type it is.
    But typedef or not, is it ever possible for TestStand to import the struct definitions (ie so that it knows what fields and types exist within the struct)? Or do I have to make containers in TestStand that match the format of the structs I'm using in CVI, and pass those container pointers into my CVI function calls?
    Thanks!

  • Getting stylesheets to work in header.php and files associated with it

    Let's say I created a header.php file in my includes folder.  And I include it in my index.php file in the site root directory.
    Then in the header.php file, I have a link to the style sheet. 
    The issue I've always found is that you can't get the header.php file to apply the stylesheet.
    I can get it to work using global links, however I don't want to do that as I'll have to undo them before I upload the site.  (And I forget....)
    So anyways, I came up with this code today in an attempt to overcome this.  Here is my header file so far:
    "; } else           echo ""; ?>  
    So here is what it is doing:
    1. It is creating a variable called $directory which is equal to the current directory.
    2. Then it is creating another variable called $currentFolder which is equal to whether or not the variable $directory contains the word "includes".
    3. Then it says if $currentFolder is NOT false then it has the location of the stylesheet in relation to the header.php file.
    4. Else - if it IS false then the stylesheet is located in a location in relation to files in my root directory.
    This works perfectly fine....in Live view.  Both the header.php and index.php will format the header in live view.  Neither though will format it in Design view.  Which sucks cause I was pretty happy that I came up with this code on my own.
    The reason it isn't working in Design View - I realize now - is because Dreamweaver won't process that script in Design View. 
    Does anyone know of a way to get this script to run in Design View?  Or maybe some suggestions on editing this code to get it to work in Design View?
    Thanks!

    >The issue I've always found is that you can't get the header.php file to apply the stylesheet.
    Right. That's because, and it seems you understand this already, the css file relative location is different from the point of view of the header file, and the parent file. Since the header file is included in the parent at the server, the client then sees the css file in the wrong location.
    The solution is to use Design time style sheets. This will apply the css to the page only in design time - it won't actually insert the css file into the code. So, insert the css reference into the header file from the point of view of the parent - index.html. Then add a design time style sheet. That should work.

  • How to use preprocess​or directives (#define) in C++ header file with LabVIEW 8.2

    I have a C++ header file that contains around 2000 preprocessor directives:
    #define MEM_1   0xC
    #define MEM_2   0xD
    #define MEM_3   0x18
    I want to be able to "access" these memory offsets by identifier name (MEM_1) in my LabVIEW program like I would in a C++ program.  I do not want the overhead of parsing through the header file and storing all the offsets into an array or similar structure. 
    I've written a simple Win32 console program to return the memory offset given the identifier (see code below), and created a DLL to use with my LabVIEW program.  In the console program, you notice that I can call a function and pass in the identifer name, and get the offset back correctly:
    getOffset(MEM_1);
    In LabVIEW, I was hoping to be able to pass in the identifier (MEM_1) but was unsure what datatype to use.  In my C++ code, I defined the parameter as an int.  But in LabVIEW, I can't enter in MEM_1 as an int.   Can someone advise on how to do this?  Or if there is an alternate way to use #define's from external code inside LabVIEW?
    #include "stdafx.h"
    #include "scrmem.h"
    #include "stdio.h"
    void getOffset (int var);
    int _tmain(int argc, _TCHAR* argv[])
     getOffset(MEM_1);
    canf("%d");
     return 0;
    void getOffset (int var)
     printf("The address of MEM_1 is %x", var); 

    kaycea114 wrote:
    Hi,
    Where do you think I should use the string? 
    The way that getOffset is currently defined in the DLL, I have to connect an integer input into the LabVIEW function.  This prevents me from entering in: MEM_1 as the input to the LabVIEW function.
    Are you suggesting that I change getOffset to receive a String parameter ("MEM_1")?  Does that mean I need to do a string compare (line by line) through the header file to get the offset?  It seems like doing this search through the header file would degrade performance, but if that's the only work around, then I'll do it.
    Please advise.
    Well, what you want to do is indeed entering a string and getting back the assigned integer. That is what the C preprocessor is doing too although there it is done only once at the preprocessor stage of course and not at runtime anymore. But LabVIEW is not a C preprocessor.
    What you did so far seems to be to define getOffset() that accepts an enum that needs to be created from the C source code to then return the assigned constant. That's of course not very helpful.
    And writing a VI that could parse the C header file and create a name/constant array is really a lot easier than doing the same in C. You don't even need to parse the file each time again, but can instead cache them in an uninitialized shift register (LV2 style global).
    Even more easy would be to create from that data a ring control using property nodes and save it as custom control and voila you have the most direct lookup you can get in LabVIEW and it works just as comfortable as using the define in C code. It would mean that you need to seperate your header file possibly into several different files to only get related constants into the same ring control, but that is easily done.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Ther are PARAMETER LIST DISCREPANC​IES in the help file vs the NIDAQ.H header file for GPCTR_Read​_Buffer...

    PROBLEM: The function help file contains documentation for using GPCTR_Read_Buffer with 7 parmeters in the parameter list. The NADAQ.H Header file contains 8 parameters in the function declaration. Which is right? What is the correct parameter list and can an example be provided that shows how to use the function correctly? I am currently using DAQ ver 6.92 and a 6602 Counter Timer board in a buffered start/stop or ND_BUFFERED_TWO_SIGNAL_EDGE_SEPARATION_MSR application.

    Thanks for the response Filipe, I'll let you know how it goes. I only went into the header file because example code provided by NI ... paste ...
    iStatus = GPCTR_Read_Buffer(iDevice, ulGpctrNum, ND_READ_MARK, ulReadOffset, ulNumPtsToRead, ulTimeOut, &ulNumPtsRead, pulReadBuf);
    showed use of 8 parameters - in agreement with the header file and in disagreement with the on-line help file function documentation.
    Tom

  • What's This Help not working for one entry in each header file

    I have a large RoboHelp project that I have imported into Version 8 from a previous version. Prior to the import into Version 8, all of the What's This Help in the project was working perfectly; now, post-import, I have a problem.
    Firstly, some background information.
    My project contains a large number of individual header (.H) files, one for each dialog within the software. These header files, which have been generated and provided by our developers, contain one entry for each field on the dialog to which the header file relates. The header files are all contained within a \HTML Topics\Fields\ folder (going from the root of my Help project).
    Each header file has a corresponding text (.TXT) file. These text files contain entries that correspond to the entries in the relevant header file. The text files are also contained within the \HTML Topics\Fields\ folder.
    Below is an example of the contents of a header file:
    #define IDH_HIERARCHY_APPEARANCE_HIEARCHY_LIST          16811
    #define IDH_HIERARCHY_APPEARANCE_ADD_APPEARANCE         16812    
    #define IDH_HIERARCHY_APPEARANCE_REMOVE_APPEARANCE      16813
    Below is the contents of the corresponding text file:
    .topic IDH_HIERARCHY_APPEARANCE_ADD_APPEARANCE
    Click this button to add a new row of hierarchical appearance settings to the grid.
    .topic IDH_HIERARCHY_APPEARANCE_HIEARCHY_LIST
    Use this grid to define hierarchy appearance settings. Each row in the grid represents a level of the hierarchy. For example, the appearance settings you define for the first row apply to the top level of hierarchy, the settings you define for the second row apply to the second level, and so on.
    .topic IDH_HIERARCHY_APPEARANCE_REMOVE_APPEARANCE
    Click this button to delete the selected row of hierarchical appearance settings from the grid.
    The What's This Help that was part of the original project still works perfectly. However, after upgrading the project to RoboHelp Version 8, I have had to update the project to reflect changes to the software. As part of this work, I have imported some new header files and updated some existing ones - and edited the corresponding text files accordingly.
    The What's This Help that is covered by the header files that I have imported since the upgrade to RoboHelp Version 8 does not work correctly; in each case, the What's This Help does not work for whichever field appears at the top of the appropriate text file. The position of the entry in the corresponding header file does not make a difference.
    If I manually edit a text file to move a different entry to the top then recompile the Help project, the What's This Help does not work for the field that now appears at the top of the text file - and the What's This Help for the field that used to appear at the top of the text file now works.
    I've tried everything I can think of to fix this, but nothing has worked. It seems as if there is a problem in the way RoboHelp is compiling the header and text files.
    If I use Microsoft HTML Help Workshop to decompile the CHM file, then view the contents of the resulting, decompiled text files, the affected files appear as follows:
    .topic IDH_HIERARCHY_APPEARANCE_ADD_APPEARANCE
    Click this button to add a new row of hierarchical appearance settings to the grid.
    .topic 16811
    Use this grid to define hierarchy appearance settings. Each row in the grid represents a level of the hierarchy. For example, the appearance settings you define for the first row apply to the top level of hierarchy, the settings you define for the second row apply
    to the second level, and so on.
    .topic 16813
    Click this button to delete the selected row of hierarchical appearance settings from the grid.
    Note how the entry at the top - which relates to the What's This Help that doesn't work - appears differently to the other entries which do work. The name of the ID appears after ".topic" rather than the appropriate ID number.
    Any help that anyone can provide me with would be very much appreciated.
    Thank you,
    Mark

    Its working now. We just kept trying to reinstall the tools and restarting indesign. On the 4th time the buttons started working. I can't explain why it finally worked, just that it is working now.

  • HELP--using a program's header file!

    Ok, I have gone thru the jni tutorial and I understand the HelloWorld example... my problem is, in the tutorial the java part calls a C program that they then write... I need to call an existing program that is not written in java? I have this program's header file and that is all.
    How do I use this so that my java program can call the existing non java program? What do I do with it, how should/do I make the dll? The methods sigs. in the non java program's header file do not look like the ones created by javah.exe.
    please help, and thanks in advance

    What you need to do is
    1. Design nice java methods that are the equivalent of the C functions. Define them as "native" - no implementation in java.
    2. run javah and generate an h file for those methods.
    3. Write a dll in c for the new javah-generated .h file. This will be a very thin layer that translates between java and the original dll. In other words, your new dll mostly just calls the functions in the old dll.

  • Header File Functions Not Recognized

    hi, this is my first discussion on this form.
    i am trying to make a custom calculator using C++.i am trying to use a function that i have included in a header file, but it fails to compile and says i'm using an using an undeclaired identifier.
    i have 4 header files and only one of them (squared.h) actually lets me access my functions inside. i am new to C++.
    i am running OSX Lion and using Xcode 4 for my compiler.
    Main.cpp
    #include <iostream>
    #include "squared.h"
    #include "factorial.h"
    #include "squareroot.h"
    #include "pythagoream.h"
    int main ()
        squareroot();
    pythagoream.h
    #ifndef iostream
    #define iostream
    #ifndef cmath
    #define cmath
    using namespace std;
    double pythagoream()
        cout << "Is it a Side or Hypotonuse(s,h): ";
        char a;
        cin >> a;
        if (a == 's')
            cout << "Enter Hypotonuse Length: ";
            double b;
            cin >> b;
            cout << "Enter Known Side Length: ";
            double c;
            cin >> c;
            double d = sqrt((b * b) - (c * c));
            cout << "The Unknown Side Length Is: " << d << endl;
        if ( a == 'h')
            cout << "Enter Length Of Side 1: ";
            double b;
            cin >> b;
            cout << "Enter Length Of Side 2: ";
            double c;
            cin >> c;
            double d = sqrt((b * b) + (c * c));
    #endif
    #endif
    squared.h
    #ifndef iostream
    #define iostream
    using namespace std;
    void squared()
      cout << "Enter Any Number: ";
      double x;
              cin >> x;
              cout << x << " squared is " << x * x << endl;
    #endif
    squareroot.h
    #ifndef iostream
    #define iostream
    using namespace std;
    void squared()
      cout << "Enter Any Number: ";
      double x;
              cin >> x;
              cout << x << " squared is " << x * x << endl;
    #endif
    factorial.h
    #ifndef iostream
    #define iostream
    using namespace std;
    int factorial()
    int n;
    int factorial,i;
    cout << "Enter a positive integer: ";
    cin >> n;
              for (i = 0; i <= n; i++)
                        if (i == 0)
                        factorial = 1;
      else
                        factorial = factorial * i;
              cout << "The factorial of " << n << " is " << factorial << endl;
    #endif

    You need to include iostream in the header files where it is used and not in Main.cpp

  • Header File Not Found

    I installed the TestU01 Suite for testing some random number generators I am working on, but when I use the #includes in my code, the systems says it can't find them at compile time. I followed the instructions for downloading and installing the library from Dr. Richard Simard's site . Its in the MinGW repository for the Linux environment MSYS. I point Eclipse straight at it for the project and Eclipse says it can't find the file upon compiling. See attached images.
    From the attached images you can see that I have gone in and for this project added a custom path to where the include files were installed with MSYS. You can also see that Eclipse did add those paths as a valid path for includes in the project folder. However when I go to build the project Eclipse says there is an error, S4, and the error specifically states that the file can't be found. However, it is listed in the path of the includes so Eclipse should be able to see it.

    So I got Eclipse to find the header files, and I believe I have set up the library additions appropriately. I have even changed \ to / in all the areas that a library or the includes folder was added.
    Eclipse in the file now sees the header and even allows me to make variable of the struct type that is in the header. However when I go to use several of the functions from the header I am getting an "undefined reference" error. I have checked, and the function names are correct.
    Will not compile with these errors, and I really need to use this tool set/library for a project I am working on. Any help would be appreciated.

  • Where can i find the User32.dll header files?

    Hi
    Is there any way to get the header file and library file of User32.dll or If I want to use a function from a User32.dll where can i get the parameters and arguments for that function which is required to call.
    Thanks & Regards
    Samuel J
    System Engineer
    Captronic Systems
    [email protected]
    Solved!
    Go to Solution.

    Hi,
    In general you don't need "user32.h" because the functions are declared in Winuser.h (you should include Windows.h).
    Otherwise, if you need user32.h only, then you can get this file together with Debugging Tools 
    After install you will get this file at C:\Program Files\Debugging Tools for Windows\winext\manifest\user32.h
    regards,
    Andrey. 

Maybe you are looking for

  • How do I make a junk folder to replace the one I accidently deleted?

    I was having trouble with an undeletable, "ghost" e-mail in one of my junk folders, and the folder itself was uneditable. In the process of following all the advice from my Mac users group (resets, rebuilds, user library, preferences, etc.) I acciden

  • Text fields are not displayed for custom infotypes in Adhoc query

    We have developed a custom infotype , which we had incldued in the adhoc query.  when we generate output , it is showng codes instead of text . In the output filed , it is hwoing only vaue and Vale and text is diabled. please let me know , how to add

  • I keep getting a 9808 error

    I have been having the same issue for almost a month now, everytime I try to log into the Itunes store I get a 9808 error. I was forced to get a new computer and am trying to log into my store to authorize a new iPod to my account also and this is re

  • Unable to print a pdf 9 document

    trying to print to an HP officejet 6210 all in one.  the doc prints too small, too big, or off center, depending on the options i check and uncheck.  any ideas?  i've tried every combo there is.

  • Wrong Characters returned by the WebService

    Hi! I have an scenario where i have one RFC Function module that call a WebService (Java/EJB) that brings the information from a Oracle DB. The RFC parse the results and populate my return tables. When i call the WebService from wsnavigator in portal