Forms Open API and ActiveX

I need to access the open api and display some of the activex related information stored in our forms. The api header files i have (6i release 2) do not have the required macro d2fitmg_activex_val_prop, which should be in the file D2FITM.H. Nor can I find D2FP_ACTIVEX_VAL_PROP. Both are descibed in the online help, but missing from the headers. I do not whether the .lib file supports it.
Can anyone tell me what I should do? Where I can find the latest API? I downloaded Forms 6i Release 2 only yesterday, but the header files are the same.
Thank you for your time.

This is a bug in the documentation. The property in question is not exposed through the API.
In the builder when you select this property within the Property inspector, the Control then pops up it's own property palette. There is no way we can do that in batch so the property is not exposed.

Similar Messages

  • How can I detect Form Open event and Import data event ?

    We are using Adobe Designer 7 and Adobe Reader 7.0.5. When we open a Form, Initialize event is being called. Similarly when we Import any data, initialize event is being called. At the Initialize event, I want to know whether it is caused by Opening the Form (or) Importing the data. Please respond as we were completely stuck up with this issue.

    My screenshot was only an example how you can approach the issue. I wasnt saying that you should try it with AI....
    Just take a closer look into the DAQmx Events and you will discover something like this:
    hope this helps,
    NorbertMessage Edited by Norbert B on 10-05-2007 02:35 AM
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.
    Attachments:
    DAQmxEvent.PNG ‏11 KB

  • Flycapture API and activeX

    Hi,
    I try to operate Point grey research grasshoper camera using CVI.
    I need it to be asynchronic - means to fire a software trigger when i need it to grab the next frame.
    At first i tried using their activeX component, this generated an .fp file with many functions that did not appear in their docs. but i could start the camera with synchronic mode.
    I also tried to use their .lib files to use their SDK but it didnt compile.
    Did anyone here succeeded to control some of their cameras using the API?

    Hey omerwagner,
    You may want to look at Point Grey's support website here. They are going to be more familiar with setting up a software trigger off of their cameras. They also have lots of information on using the FlyCapture SDK. It may be worth taking a second look into using those libraries and trying to solve the non-compiling issue, especially if the ActiveX control can't be configured for software triggering. And additionally, compiling issues are going to be much more likely to be answered on this forum.
    Best of luck,
    Luke W

  • font color=red Create/Modify forms and triggers through C++ using OPEN API

    <font color=red>
    Dear brothers/sisters<font color=darkblue>
    <br><br>
    Please help us to find the linking problem.
    <br>
    We have to add PRE-FORM trigger to many FMBies. We have thousants of FMBies. So opening one by one is difficult. For this we are using OPEN API and BORLAND C++. We have coppied all header files from D:\orant\FORMS60\API.
    But there is a link error. Here is the snippet.
    <br>
    <font color=red>
    <br>#include <stdio.h>
    <br>#include <stdlib.h>
    <br>#include <malloc.h>
    <br>#include <d2fctx.h> /* Forms API context */
    <br>#include <d2ffmd.h> /* Form module header file */
    <br>int main (int argc, char *argv[])
    <br>{
    <br>d2fctxa ctx_attr;
    <br>d2fctx *ctx;
    <br>d2ffmd *form;
    <br>text *form_name;
    <br>/* Check arguments */
    <br>if ( argc != 2 )
    <br>{
    <br>fprintf(stderr, "USAGE: %s <filename>\n", argv[0]);
    <br>exit(1);
    <br>}
    <br>/* Create Forms API context */
    <br>ctx_attr.mask_d2fctxa = (ub4)0;
    <br>if ( d2fctxcr_Create(&ctx, &ctx_attr) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Error creating Forms API context\n");
    <br>exit(1);
    <br>}
    <br>/* Load the form module into memory */
    <br>if ( d2ffmdld_Load(ctx, &form, argv[1], FALSE) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Failed to load form module: %s\n", argv[1]);
    <br>exit(1);
    <br>}
    <br>/* Get the name of the form module */
    <br>if ( d2ffmdg_name(ctx, form, &form_name) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Error getting the name of the form module\n");
    <br>}
    <br>else
    <br>{
    <br>/* Print the name of the form, then free it */
    <br>printf ("The name of the form is %s\n", form_name);
    <br>free(form_name);
    <br>}
    <br>/* Destroy the in-memory form */
    <br>if ( d2ffmdde_Destroy(ctx, form) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Error destroying form module\n");
    <br>}
    <br>/* Close the API and destroy context */
    <br>d2fctxde_Destroy(ctx);
    <br>return 0;
    <br>}
    <br>
    <font color=darkblue>
    <br>
    The compilation is success. But there is a link error. Please help us to find the problem.
    <br><br>
    Here is the error Message.
    <br>
    <font color=red>
    <br>Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
    <br>FIRST.CPP:
    <br>Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland
    <br>Error: Unresolved external '_d2fctxcr_Create' referenced from D:\API\FIRST.OBJ
    <br>Error: Unresolved external '_d2ffmdld_Load' referenced from D:\API\FIRST.OBJ
    <br>Error: Unresolved external '_d2ffmdgt_GetTextProp' referenced from D:\API\FIRST.OBJ
    <br>Error: Unresolved external '_d2fctxde_Destroy' referenced from D:\API\FIRST.OBJ
    <br><br>
    <font color=darkblue size=4>Could you please help us.......<br>

    <font color=red>
    Dear brothers/sisters<font color=darkblue>
    <br><br>
    Please help us to find the linking problem.
    <br>
    We have to add PRE-FORM trigger to many FMBies. We have thousants of FMBies. So opening one by one is difficult. For this we are using OPEN API and BORLAND C++. We have coppied all header files from D:\orant\FORMS60\API.
    But there is a link error. Here is the snippet.
    <br>
    <font color=red>
    <br>#include <stdio.h>
    <br>#include <stdlib.h>
    <br>#include <malloc.h>
    <br>#include <d2fctx.h> /* Forms API context */
    <br>#include <d2ffmd.h> /* Form module header file */
    <br>int main (int argc, char *argv[])
    <br>{
    <br>d2fctxa ctx_attr;
    <br>d2fctx *ctx;
    <br>d2ffmd *form;
    <br>text *form_name;
    <br>/* Check arguments */
    <br>if ( argc != 2 )
    <br>{
    <br>fprintf(stderr, "USAGE: %s <filename>\n", argv[0]);
    <br>exit(1);
    <br>}
    <br>/* Create Forms API context */
    <br>ctx_attr.mask_d2fctxa = (ub4)0;
    <br>if ( d2fctxcr_Create(&ctx, &ctx_attr) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Error creating Forms API context\n");
    <br>exit(1);
    <br>}
    <br>/* Load the form module into memory */
    <br>if ( d2ffmdld_Load(ctx, &form, argv[1], FALSE) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Failed to load form module: %s\n", argv[1]);
    <br>exit(1);
    <br>}
    <br>/* Get the name of the form module */
    <br>if ( d2ffmdg_name(ctx, form, &form_name) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Error getting the name of the form module\n");
    <br>}
    <br>else
    <br>{
    <br>/* Print the name of the form, then free it */
    <br>printf ("The name of the form is %s\n", form_name);
    <br>free(form_name);
    <br>}
    <br>/* Destroy the in-memory form */
    <br>if ( d2ffmdde_Destroy(ctx, form) != D2FS_SUCCESS )
    <br>{
    <br>fprintf(stderr, "Error destroying form module\n");
    <br>}
    <br>/* Close the API and destroy context */
    <br>d2fctxde_Destroy(ctx);
    <br>return 0;
    <br>}
    <br>
    <font color=darkblue>
    <br>
    The compilation is success. But there is a link error. Please help us to find the problem.
    <br><br>
    Here is the error Message.
    <br>
    <font color=red>
    <br>Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
    <br>FIRST.CPP:
    <br>Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland
    <br>Error: Unresolved external '_d2fctxcr_Create' referenced from D:\API\FIRST.OBJ
    <br>Error: Unresolved external '_d2ffmdld_Load' referenced from D:\API\FIRST.OBJ
    <br>Error: Unresolved external '_d2ffmdgt_GetTextProp' referenced from D:\API\FIRST.OBJ
    <br>Error: Unresolved external '_d2fctxde_Destroy' referenced from D:\API\FIRST.OBJ
    <br><br>
    <font color=darkblue size=4>Could you please help us.......<br>

  • OPEN API

    Please tell what is Oracle Open API, what 's the differences between Open API and OCI? If you could introduce some materials on web, it would be great.
    ge

    Hi,
    I recommend getting in touch with the tools vendor or to follow his setup instructions. If teh tool e.g. is created for an older version of Forms, then maybe an update of the tool is required.
    Frank

  • Open Interfaces and API

    Anyone figured out how to set a column back to Null using the 11i open interfaces and/or API's ???
    Thanks in advance,
    Matt

    Updating a column to a Null value is only available for Release 11 via
    patch 9073379. From package INVUPD1B.pls version 110.4 onwards Oracle is supporting the following ways to update NULL to item attributes through Item Open Import:
    For Numeric fields : insert -999999
    For Character fields : insert '!'
    This only applies to fields that are nullable in the form.
    I have a list that I got off of Metalink at one time, but have not been able to find it again. A search on Metalink using 'IOI null' should give you a little to look at.
    Kevin

  • Opening User defined Fields Form via API

    Hi
    Is there a posiibility to open those user defined field - forms via API. If yes is it possible to check if it is already open?
    TIA
    Phile

    Hi,
    In your eventhandler, you can use this:
    Set oSboForm = Sbo_application.Forms.GetFormByTypeAndCount(-pval.FormType, pval.FormTypeCount)
    form and udf-form are linked through a minus sign.
    I do not know of a nice way to check if they are anebled. What I'm currently doing is running the above line of code contained in an error handler. The error handler does a sendkeys of control shift u (which enables the udf-form) and displays a message. Problem is after control shift u, screen is not yet updated so your code cannot continue immediatelly. Development knows of this problem, but I never received a promise when this will be fixed.
    Hope this helps,
    Jacques

  • Forms 5 Open API Problem

    How can the displayed text of an existing Graphics Text
    (Boilerplate) be modified with Open API functions?
    All(?) properties of all Forms objects can be modified with
    function calls similar to the calls in the example below. Just
    this one seems impossible.
    (See Forms builder help topic "Open API, creating module")
    Code fragment:
    /* create a Graphics Object */
    status = d2fgracr_Create( pd2fctx , pd2fcnv,
    &pd2fgra, (text*) "MYTEXT" );
    /* set Graphics type to TEXT */
    status = d2fgras_graphics_typ(pd2fctx,pd2fgra,D2FC_GRTY_TEXT);
    /* set displayed text to "TEXT1" */
    status = d2fgras_gra_text(pd2fctx,pd2fgra,(text*) "TEXT1");
    /* Modify "TEXT1" to "TEXT2" */
    status = d2fgras_gra_text(pd2fctx,pd2fgra,(text*) "TEXT2");
    /* Check value; ought to be "TEXT2" */
    status = d2fgrag_gra_text(pd2fctx,pd2fgra,&tex);
    printf("%s",tex); /* prints TEXT1 !!!????*/
    null

    I checked PATH environment variable and it already contains path having Forms DLLs in it.
    After that I deinstalled Oracle 9 database from computer and tried again to start my program.
    Now it works but I don't know why it was having trouble creating context with d2fctxcr_Create when database was installed on computer.
    Anyway, I might need database in the future so I would like that it coexists peacefully on my computer with Oracle Designer. How can I achieve that? Tnx in advance.

  • Interactive PDF form on Android, can I make a form field to open camera and use photo in field?

    If I have an interactive PDF form on Android, is there any way to make a form field that will open the camera and insert the photo in the field?

    One alternative would be to create a web form in FormsCentral and use the attachment feature.

  • I just downloaded a pdf form and need to open it and fill in blanks but can't figure ohow to find the file

    I just downloaded a pdf form and need to open it and fill in blanks but how can I find the file in Adobe so I can open it??
    Thank you in advance.

    Hi Steve Odem,
    If you downloaded the file from a web page, it most likely went into a Downloads folder on your computer. If you don't know where that folder is, the easiest thing to do may be to use the Find feature of Mac OS or Windows (whichever you use), to search for the PDF form. Once you know where the file ended up, you can easily navigate to that folder in Reader. (Choose File > Open in Reader, then navigate to the file in the Open dialog box.)
    Please let us know if you have additional questions.
    Best,
    Sara

  • Is it possible to create a standard form that can be emailed to anyone and once filled out by the receiver, have a button that the receiver clicks and the form is encrypted and attached an email back to the sender and a preset admin password would open it

    Is it possible to create a standard form that can be emailed to anyone and once filled out by the receiver, have a button that the receiver clicks and the form is encrypted and attached to an email back to the sender and a preset admin password would open it?

    Hello Graphicsguy123,
    You would need to first create the form ( or Widget in EchoSign) first to generate a url which you can paste it in the email being sent to customers. You would need to make sure you have a Document Cloud Enterprise Premium account in order to create a Widget. If you don't have the account, you can use the trial version to test it. Here is the link:
    Global Trial Registration | eSign services from Adobe
    -Rijul

  • I filled out my own form saved it and sent through email, when I opened it what I filled out was not there, why would this be

    I filled out my own form saved it and sent through email, when I opened it what I filled out was not there, why would this be?

    What software did you use to fill-in the form (Preview, perhaps) and what software did you use to open it after you emailed it?

  • How to publish infopath forms to open new and old form templates in sharepoint2007

    Hi All,
    My requirement is , we are having a form library with the Infopath form templated(V1) published.
    Then we have added about 300 items using template(v1) into the sharepoint library.
     Then client asked for the changes in form and we deveploped infopath template (V2) and published, able to create the items using the new template(v2).
    But ,the issue is when we open item from the 300 items which are created with template(v1), its is opening using template(v2) and we are loosing the functionality of template(v1).
    Can i know ,how to publish the form template to use both template versions and it should open the form with  wahatever the  template it used for creation.
    Thanks in Advance.
    Anil Kumar K

    Hi,
    If you want the InfoPath forms for displaying the items in the list, then I recommend to click Customize Form button in the ribbon of the list to edit the form in InfoPath and then publish the form back to SharePoint.
    After that, you will see there are three new forms(displayifs.aspx, editifs.aspx, newifs.aspx) when you view the list in SharePoint Designer.
    Then you can create the custom action to navigate to the custom InfoPath form:
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Unable to open forms in R12 and getting FRM-92050 failed to connect server

    Hi ,
    When i trying to open forms in R12 instance i am getting the error like this
    FRM-92050 unable to connect to server :/forms/servlet :-1.
    please help to check
    thanks
    balu

    Hi Balu;
    Please check below and see its helpful for your issue:
    Forms: 9.x and 10.x: Troubleshooting FRM-92050, FRM-921xx [ID 189867.1]
    FRM-92050 / FRM-92060 When Invoking a Second Forms Session in a New IE Browser Window [ID 251915.1]
    Regard
    Helios

  • How to open quotation and order form?

    How to open quotation and sales order form from code behind in VB?

    Hi,
    On the button click event u need to execute the following code to open the required system forms,
    sbo_application.ActivateMenuItem("2049") 'For sales Quotation
    sbo_application.ActivateMenuItem("2050") 'For Sales Order form.
    Hope it helps,
    Vasu Natari.

Maybe you are looking for

  • XML Schemas embedded in Forms TIPS

    I have been having a lot of trouble with embedding an XML Schema into my form to be used with a Workflow. The first problem appears to be that if you create a form and the very "FIRST" dataconnection is not to your schema, the workflow designer will

  • Apache 20 on Windows working with WLS 6.1 ????

    Did anyone ever get this to work? Thanks Brian

  • Were  is the Reader 9.2 update?

    I have tried to download the file to update Reader 9.12 to version 9.2.  I followed the links and it says it will be a 22 meg file.  When it is actually downloaded it is a 275 meg file and appears as though it is for Acrobat.  Seems like there are so

  • Upload from single App to cloud and use on two home computers?

    I currently have adobe illustrator adobe app which I downloaded and receive updates from on one computer.  I would like to upgrade to the full cloud version and use on two computers in my home under the single cloud subscription.  Is this possible? 

  • HELP! _Application Icon in the trash bin mishap.

    Accidentally dropped my FCP 6 app Icon(package) in the trash bin (dont ask), put it back where it belongs and I can no longer open FCP. I get a basic 'unepectedly quit.." error message. My FCP studio is an upgrade package, and I cant seem to reinstal