How to preset the Enable pin functions by software using the frame graber 1422?

Hi
I'm looking for any information related to how to configure by software the enable pins on Frame grabber PCI-1422. I found some examples on NI WWW showing that Frame synchronisation signal was wired to Enable A and Line signal synchronisation signal was wired to EnableB.And this was for an Area SCAN type sensor. But in any case that i wish to use my actual setup/cable for a Line SCAN type camera, do I have to modify my cable in order to connect now the Line synchronisation signal on Enable A? Or there is a possibility to define this my software (Camera file for example)
Thank you
regards
Bruno

Hi bjsimard,
I think your best bet in this case is going to be modifying your cable. I don't think you'll be able to modify your camera file in order to do this.

Similar Messages

  • How to preset the FM Statio

    Recently, I just got Zen Neeon as my MP3 player.
    I had manage to save the Audio tracks into my player but I got problem preseting FM station to my player.
    I wish to know how to preset the station?
    Or else I will need to keep on tuning for my station.
    Thanks!

    clefairy978,
    Enter FM radio mode, scroll to the FM channel you wanted and then push the scroller in to access the player menu. Scroll down to the option 'Save Preset' and select the preset location you wanted.
    Jason

  • How i disable the frame window??

    how i disable the frame window??
    i had used frame.disable(); function but its not work...
    disable function works only on components its not work on frame..

    hi!
    1) which one you are using? Frame/JFrame ?
    2) exactly what do you want to disable?
    a) entire frame including titlebar buttons
    b) just all the child components, menus, toolbar buttons
    c) what should be the behavior of taskbar at the time of disabled frame object?
    i think for a proper and to the point solution these are thing one need to know.
    regards
    Aniruddha

  • How to set the frame size?

    Hi,
    Can some one show me how to set the frame size in this program? History: I have created a window and added a button but its to small. So I want to increase the size of the frame to at least 600X400 pixel.
    private static void showGUI() {
            //Create and set up the window.
            JFrame frame = new JFrame("ButtonDemo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            Main newContentPane = new Main();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        }It would be nice if you could show me how to do it.
    Thank you very much for reading this.

    Challenger wrote:
    Simply adding
    frame.setSize(new Dimension(600,400));to the end of your code should work perfectly.Or, if you want to do it correctly, .setPreferredSize() on your frame before you .pack() it. The default layout manager for JFrame is BorderLayout, which uses the preferredSize of each component to calculate sizes during the .pack() call.

  • How to Find the Frame by Fillcolor

    Hi All,
    How to find the Frame by its fillcolor?
    I tried the following method but it doesn't work.
    app.findTextPreferences.fillColor = app.swatches.item("Red");
    And
    app.findTextPreferences.fillColor = app.activeDocument.swatches.item("Red");
    Thanks in advance
    Ramkumar

    Sorry.
    i used findObjectPreferences but i wrote it wrong.
    Regards,
    Ramkumar

  • How to Preset the Web Page resolution

    Hello to all. I tried searching but came with nothing. I
    wanted to know if there is a way in preseting the page to a
    resolution, say 1024x768
    Or is it better having the width set at 100% and go from
    there?
    thank you for the help

    Hi,
    >>
    I wanted to know if there is a way in preseting the page to a
    resolution, say 1024x768
    >>
    you could put all the page contents in a table that´s
    tagged with a fixed width of 1024
    >>
    Or is it better having the width set at 100% and go from
    there?
    >>
    I´d certainly recommend this "fluid" approach, because
    you can´t foresee if the visitor has a smaller screen
    resolution, or if part of the browser´s "inner screen" has
    been reduced by means of a sidebar.

  • How to create the Frame object with API in 6i?

    do i create an item using d2fitmcr_Create, and then set the type or style to frame? or is it a graphics item that i have to create using a different function? ive tried various combinations with no luck.
    ive looked at the frame object in the GUI, and cant figure out how to duplicate it using the API (the frame object is the thin line box with a label used to groups items visually on a form)
    thanks!
    [email protected]

    Frame is a type of graphic d2fgracr_Create() (d2fgra.h) then set the type as required using d2fgras_graphics_typ():
    Definition of Graphics types is in d2fdef.h
    ** Graphics Type (D2FP_GRAPHICS_TYP)
    ** [BPT]
    #define D2FC_GRTY_ARC              0                                 /* Arc */
    #define D2FC_GRTY_IMAGE            1                               /* Image */
    #define D2FC_GRTY_LINE             2                                /* Line */
    #define D2FC_GRTY_POLY             3                             /* Polygon */
    #define D2FC_GRTY_RECT             4                           /* Rectangle */
    #define D2FC_GRTY_RREC             5                   /* Rounded Rectangle */
    #define D2FC_GRTY_TEXT             6                                /* Text */
    #define D2FC_GRTY_GROUP            7                               /* Group */
    #define D2FC_GRTY_FRAME            8                               /* Frame */All the various properties for setting up the associated block etc (if required) can be set through macros in d2fgra.h

  • How to disable the frame rotation corner

    One thing that is bothering since the frame rotation feature was added is the missing option to DISABLE this feature!
    Perhaps it's just my way of working, if I want to rotate a frame I quickly press "R" on the keyboard, rotate and press "V" or else to get back.
    Almost every time I want to scale a frame on the logical lower right corner I hit "rotate" first and have to try again. I find that very annoying and am sure there are many others having the same issue with it. Too many functions on already hard to grab corner edges are rather counter-productive in my eyes.
    Any way to disable that rotation corner?
    If not:
    Adobe – it would be cool to have a simple option in the prefs where one can enable/disable that function.
    Thanks!

    What you need to do is provide a ComponentListener which always resets the JFrame back to its original position.
    imports left out...
    public class FixedFrame extends JFrame{
         private Rectangle rect;
         public FixedFrame(){
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              rect = new Rectangle(200,200,200,200);
              setBounds(rect);
              setVisible(true);
              addComponentListener(new ComponentAdapter(){
                   public void componentMoved(ComponentEvent ce){
                        setBounds(rect);
                   public void componentResized(ComponentEvent ce){
                        setBounds(rect);
         public static void main(String[] args){
              new FixedFrame();
    }

  • How to get the frame rate of my application

    Hi again...
    How can I get the frame rate of my application?
    I also want the frame rate value to be the title of the frame, updated every second. How do I do that?
    thanks in advance...

    To get the path where your application has been installed you have to do the following:
    have a class called "what_ever" in the folder.
    then you do a litte:
    String path=
    what_ever.class.getRessource("what_ever.class").toString()
    That get you a string like:
    file:/C:/Program Files/Cool_program/what_ever.class
    Then you process the result a little to remove anything you don't want:
    path=path.substring(path.indexOf('/')+1),path.lastIndexOf('/'))
    //Might be a little error here but you should find out //quickly if it's the case
    And here you go, you have a nice
    C:/Program Files/Cool_program
    which is the path to your application.
    Hooray

  • How to get the frame number of a label in a different scene.

    I am completely stumped on this.
    I have my project setup as the gameplay in one scene, and another scene for the outcome.
    The outcome scene, say called, GameDone, has 2 frames. The first frame for win, labeled it WON, the second frame for lost, labeled LOST.
    I could do the very simple thing and just gotoAndStop("GameDone", 1); but thats a bad practice, I believe.
    Ive gone through google and found the closest thing needing a MovieClip. I could not figure out what to give it? A random MovieClip? a new one? one from the next scene? one from the current scene?
    import flash.display.Scene; 
    for (var i:uint = 0; i < mc1.scenes.length; i++) {
         var scene:Scene = mc1.scenes[i];
         trace("scene " + scene.name + ": " + scene.numFrames + " frames");
    That was an adobe sample.
    So how could I, in the gameplay scene, the frame number for either WON or LOST in the "GameDone" scene?
    Thanks.

    Try doing the simple thing that you think is a bad practice.  I don't know why you think it is.  The only problem with it is that you appear to have it backwards for AS3... in AS3 it is gotoAndStop(frame,scene);
    Why don't you use the frame labels instead of frame numbers?  gotoAndStop("Won", "GameDone");

  • How to get the Frame size in H.263 by JMF ?

    Dear all,
    How to get the individual frame size in H.263 format if the H.263 file is a format of InputStream ???

    VideoFormat.getSize() returns a Dimension of a frame. H263Format is a subclass of VideoFormat. Guess you could get that object from getFormat() in your stream if it's a PullBufferStream. Or, with a Processor, you could do getTrackControls() and iterate through the TrackControl.getFormat()s until you find the VideoFormat.
    Suppose you could also get a FrameGrabbingControl, grab a frame and get the Dimension from him.
    --invalidname

  • How to make the frame of the inputfield colored?

    Hi everyone,
      I have a problem here: I have a table on the screen, there are two columns which are inputfield,when user type something and press the "Enter" button,  my program will check whether the value is correct or not. And when the input is wrong I want to point out the specific cell which is wrong by make the frame of the cell red, green or something else.
      How can I achieve this?
    Thanks in advance.

    hi,
    check out this thread :
    Re: Can we Change the backround color of an Input field in Webdynpro for ABAP.
    Thanx.

  • How to adjust the frame number in this script?

    I have a timeline slider part to my animation which starts at frame 1089 and ends at frame 1173, I have a script which allows me to do this and works perfectly when I build it in a new flash file starting at frame 1, I need this code to work for the animation I have built at frame 1089, I dont know which number "1's" in the script relate to the frame number, I have tried changing them all to 1089 but that doesn't work! at the moment as soon as I click on this it jumps back to frame number 1 - which I believe as the code stands is exactly what it should be doing. Please could anyone edit this code so that it realises which frames I want it to work in?  Thank you in anticipation, Ellie x
    var numOfFrames:Number = 84; // number of frames in the timeline to scrub
    var widthOfScrubber:Number = 500; // width in pixels of scrubber bar
    var widthOfScrubberSlider:Number = 25; // width in pixels of scrubber slider
    var widthOfScrub:Number = widthOfScrubber - widthOfScrubberSlider;
    var stepValue:Number = Math.round(widthOfScrub / numOfFrames);
    var scrubX:Object = scrubber.scrubberSlider;
    var isPlaying:Number = 1;
    var home = this;
    scrubX._x = 0;
    onEnterFrame = function() {
    if (scrubber.activeNow == 1 && isPlaying == 0) {
    var frameNum = Math.round(scrubX._x / stepValue);
    gotoAndStop(frameNum);
    } else if (scrubber.activeNow == 1 && isPlaying == 1) {
    var frameNum = Math.round(scrubX._x / stepValue);
    gotoAndPlay(frameNum);
    } else if (scrubX._x <= widthOfScrub && scrubber.activeNow != 1 && isPlaying == 1) {
    scrubX._x = scrubX._x + stepValue;
    } else {
    isPlaying = 0;
    playBTN.onRelease = function() {
    scrubber.activeNow = 0;
    isPlaying = 1;
    home.play();
    pauseBTN.onRelease = function() {
    scrubber.activeNow = 0;
    isPlaying = 0;
    home.stop();

    try:
    var numOfFrames:Number = 84; // number of frames in the timeline to scrub
    var widthOfScrubber:Number = 500; // width in pixels of scrubber bar
    var widthOfScrubberSlider:Number = 25; // width in pixels of scrubber slider
    var startFrame:Number = 1089
    var widthOfScrub:Number = widthOfScrubber - widthOfScrubberSlider;
    var stepValue:Number = Math.round(widthOfScrub / numOfFrames);
    var scrubX:Object = scrubber.scrubberSlider;
    var isPlaying:Number = 1;
    var home = this;
    scrubX._x = 0;
    onEnterFrame = function() {
    if (scrubber.activeNow == 1 && isPlaying == 0) {
    var frameNum = startFrame-1+Math.round(scrubX._x / stepValue);
    gotoAndStop(frameNum);
    } else if (scrubber.activeNow == 1 && isPlaying == 1) {
    var frameNum = Math.round(scrubX._x / stepValue);
    gotoAndPlay(frameNum);
    } else if (scrubX._x <= widthOfScrub && scrubber.activeNow != 1 && isPlaying == 1) {
    scrubX._x = scrubX._x + stepValue;
    } else {
    isPlaying = 0;
    playBTN.onRelease = function() {
    scrubber.activeNow = 0;
    isPlaying = 1;
    home.play();
    pauseBTN.onRelease = function() {
    scrubber.activeNow = 0;
    isPlaying = 0;
    home.stop();

  • How to compress the frame/buffer . Encoder ???

    I have get the frame/buffer by using codec. (FrameAccess.java)
    I found the buffer is too large,so I want to compress them .
    How can I do it ?? could you guys give me a solution ??
    Thanks

    coutinue
    After compressing the frame/buffer, I wrap them (aout 1 second) as a package, and then transfer the package by UDP.
    SO, I have to compress the frame/buffer.

  • When trying to frame a text box, I can't figure out how to color the frame.

    When trying to frame a text box, I can't figure out to change the color of the frame.

    Could you please tell us what software you are using?

Maybe you are looking for

  • Exception handling design issue

    I have a class that's a low level building block of my application. It takes as its single constructor argument a String that needs to be in a known format. At present the constructor takes this String and checks it, throwing an Exception if it's not

  • Upgrade Exchange server 2013 to CU7 error

    Dear Microsoft Team I have Exchange server 2013 SP1 and upgrade it to CU5 it is working normal But wen I try to Upgrade it to CU7 I got this error massage Error: The following error was generated when "$error.Clear();           $maxWait = New-TimeSpa

  • Slow render speed with new Mac Pro / NVIDIA 8800

    I bought a new Mac Pro to replace a dual G5 because I have a number of Motion projects to finish quickly. My local dealer recommended the NVIDIA 8800 as it has 512 mb RAM (versus 128 on my old machine). I'm finding that the render time is worse than

  • Printers disappeared from printer Utility

    Not only have my printers disappeared from the printer utility window I also get the error message "server-error-service-unavailable I have tried the fixes on the OS X support page such as: Repairing permissions on the startup drive; verifying the /t

  • Tools for database..

    Hi All I am presently working on Workbrain, a web-based program, to capture time information of employees. The database is embedded in the website and I cant use PL/SQL Developer or TOAD with the website. Is there any tool which we can use with datab