Filter a input statement

Hi all,
I have a smal problem. I am buidling a servlet that puts text into a database some of the users like to use a ' intp the text that the enter into that database. The problem is i have to put the ' into the database but when i am trying the sql command looks like this:
INSERT INTO PRODINFO (INFO) (this is some info and i like to use a ' in my info)
The database is trying to insert 2 parts of text and generates a error.
How do i put a ' into the database is there a wildcard. And how do i filter this out and place the wildcard in place?
Thanks already.
Johan.
[email protected]

Use a prepared statement and pass in the string value via the input parameters like this.....
String sql = "INSERT INTO PRODINFO (INFO) (?)";
PreparedStatement ps = conn.prepareStatement(sql);
ps.setString(1,"the text");
ps.executeUpdate();
Jon.

Similar Messages

  • Applying filter to all states in animation

    Hi, im new to fireworks for animating.
    I have a bunch of images (about 150) in an animations and i wanted to apply a color fill filter to all states. What is the most effective way to do this?
    Thank you

    One way to apply filters to multiple states is by onion skinning. It basically makes all objects clickable at once, regardless of what states they're on.
    Click on the small button in the lower left corner of the States panel. Make sure that "No Onion Skinning" is unchecked, and "Multi-State Editing" is checked. Also, if you want to apply the effect to all of your states, check "Show All States" as well.
    Now, while you are in the first state of animation, switch to the Select Behind tool (hit 0 to toggle from the regular selection tool). Hold down Shift and repeatedly click on the canvas to select objects from consecutive states. You can check if it works by looking at the radio buttons on the rightmost side of each state in the States panel. With each click, the radio button in the next state gets marked.
    When you're done with the selection, set the live filter as you normally would with a single object, and it will automatically apply to all selected objects in all states.
    It's still a tedious method when there are a lot of objects involved, like in your case. Not only it's a lot of individual selections, but also rapid clicking will be registered as a double-click, changing the Select Behind tool to one of the marquee tools.
    There might be a more efficient way, but it requires some experience with blend modes. The steps are the following:
    Make a new layer, right-click it and select "Share Layer to States". Make sure that this layer is the topmost layer in the stack.
    Draw a rectangle with solid fill, no stroke. Make sure it that  it spans the entire animated area.
    With the rectangle selected, play around with the Blend modes (in the upper left corner of the Layers panel), until you get the color effect you're looking for. The color change will affect the entire animation, just as if you applied a color fill to all objects. The final look will depend on the rectangle's initial color, the blend mode, and the colors of the underlying objects.
    Good luck!
    SiamJai
    Innovative Fireworks Tutorials

  • Maintain Report Input State on Validation

    Good Morning Everyone,
    I have a report region for which I need to maintain input state during validation. I made several attempts to effect this using page and region caching, NULL'ing out the request object (if that means anything), etc. I have searched the forum and Google for answers, but chances are that I perhaps just don't know what to search. Here is a quick run-down. I have a report region with 4 inputs per row (2 drop downs, 2 text fields). The user enters data and then submits the page. When a validation fails, it gives the appropriate message, but overwrites all inputs (rather than caching the user's input and re-displaying). This forces the users to re-enter alllll thaaat daaatta rather than just fixing the couple problems that caused the validation failure. I know this is probably some simple setting or requires a couple processes; I just haven't solved the problem after 3 days of tinkering. Does anyone have any suggestions (simple or otherwise). Really, all I need is to be pointed in the right direction. Sorry for the lengthy post. Thanks.
    V/R,
    Erik
    Edited by: user593880 on Jul 12, 2011 7:08 AM

    What version of Apex? Is it a manual tabular form?
    In previous versions or in a manual tabular form if you want to keep the changes, you will need to display the validation error on an error page, or create a workaround using collections.
    Retaining tabular form values to keep user inputs
    Tabular Form Validation - Values Reset

  • Apparent altered DIO line input state on 4351 when using driver instead of NI MAX

    Hi,
    I'm using an NI4351 PCI DAQ card with the Ni435x driver and LabWindows/CVI v5.5 (on Windows 98) to capture digital logic states on the DIO lines. I first used NI's MAX utility to establish a virtual DAQ input channel from 'Data Neighborhood'. When I tested this channel from the utility by connecting the DIO line to 5V or GND via a 10K resistor, the respective logic levels were registered. In LabWindows, I use the 'NI435X_Init' and 'NI435X_Configure_Digital_Lines' driver functions to respectively initalize the DAQ card and set one of the DIO lines as an input, with the rest being set as outputs. However, I cannot read the input line using 'NI435X_Read_Line' unless I directly connect th
    is channel to 5V or GND (i.e. without a 10K resistor), but 'NI435X_Write_Line' works fine. It would appear that the input state of the DIO line is different to that established by NI MAX. Is there something other than the initialize function that should be called? I tried the following linemask combinations to set the port lines, by using F or 1 to represent an output and 0 to represent an input:
    NI435X_Configure_Digital_Lines(DAQ_session, 0x0FFFFFFF) // DIO 0 set as input, the rest as outputs
    NI435X_Configure_Digital_Lines(DAQ_session, 0x01111111) // DIO 0 set as input, the rest as outputs
    I am unsure which format, if either, is correct and would be grateful for any help on this anomaly. Thanks.

    Hi Kevin,
    Yes, if I connect an input channel directly to 5V, the software reads a logic high and continues to read this level even when I disconnect the channel and leave it "floating". The state changes to logic low only when I connect the channel directly to GND and then it stays at this level, even if I disconnect it from GND. In other words, the states seem to 'latch'. Nothing happens if I connect via the 10K resistor - the channel simply remains at the logic level it was last set to after I momentarily connected it directly to 5V or GND.

  • In how many ways we can filter this select statement to improve performance

    Hi Experts,
    This select statement taking 2.5 hrs in production, Can we filter the where condition, to improve the performance.Plz suggest with coding ASAP.
    select * from dfkkop into  table t_dfkkop
               where   vtref   like 'EPC%'        and
                   ( ( augbd      =  '00000000'   and
                       xragl      = 'X' )
                               or
                     ( augbd between w_clrfr and  w_clrto )  )  and
                       augrd      ne '03'         and
                       zwage_type in s_wtype .
    Regards,
    Sam.

    if it really takes 2.5 hours, try the followingtry to run the SQL trace and
    select *
              into table t_dfkkop
              from dfkkop
              where vtref like 'EPC%'
              and augbd = '00000000' and xragl
             and augrd ne '03'
             and zwage_type in s_wtype .
    select *
              appending table t_dfkkop
              from dfkkop
              where vtref like 'EPC%'
             and augbd between w_clrfr and w_clrto 
             and augrd ne '03'
             and zwage_type in s_wtype .
    Do a DESCRIBE TABLE after the first SELECT and after the second,
    or run an SQL Trace.
    What is time needed for both parts, how many records come back, which index is used.
    Siegfried

  • Filter Question - compound statement "OR" clause

    Hi
    I am trying to filter records which contain multiple conditional statements; (all comparisons are on DATE values)
    Example:
    If column_A is NULL OR ( columnA=ColumnB )
    I tried this: which worked for the first condition
    FILTER (1=(@COLTEST(COLUMN_A,NULL)) ;
    And then tried to add the second clause
    FILTER (1=(@COLTEST(COLUMN_A,NULL)) OR 0=@STRCMP(@IF(@COLTEST(COLUMN_A,NULL),0,COLUMN_A), @IF(@COLTEST(COLUMN_B,NULL),0,COLUMN_B))) );
    I've tried CASE, EVAL and just a straight OR as well with no success. Unfortunately the 'where' clause has multiple compound statements.
    Does anyone have any tips for this?
    Thanks

    I think there is an extra closing bracket at the end. Also, give spaces after the @ functions. Could you try the below?
    FILTER ( 1 = (@COLTEST(COLUMN_A,NULL)) OR 0 = @STRCMP ( @IF (@COLTEST (COLUMN_A,NULL),0,COLUMN_A), @IF (@COLTEST (COLUMN_B,NULL),0,COLUMN_B) ));

  • Filter in MDX Statement

    I have a very basic MDX statement which contains a FILTER statement:
    WITH
    SET [Selected Discipline] AS STRTOSET(@Disciplines, CONSTRAINED)
    SET [Selected Department] AS STRTOSET(@Departments, CONSTRAINED)
    SET [Selected Departments] AS IIF(@Disciplines = @Departments,
    FILTER(
    DESCENDANTS([Selected Discipline], [Employee].[DISC - DEPT - EMP].[Department], AFTER),
    NOT INSTR([Employee].[DISC - DEPT - EMP].CurrentMember.UNIQUE_NAME, "Freelance")),
    DESCENDANTS([Selected Department], [Employee].[DISC - DEPT - EMP].[Department], AFTER))
    SET [TTM] AS { LastPeriods(12, StrToMember(@SelectedMonth, CONSTRAINED)) }
    SELECT
    [Measures].[Employee Hours],
    [Measures].[Employee Hours %]
    } ON COLUMNS,
    NON EMPTY CROSSJOIN(
    [Selected Departments],
    [Employee].[Employee Bill Rate].[Employee Bill Rate].ALLMEMBERS,
    [Employee].[Employee Level].[Employee Level].ALLMEMBERS,
    [TTM]) ,
    FILTER ([Employee].[Manager Name].[Manager Name].Members ,
    NOT InStr([Employee].[Manager Name].CurrentMember.MEMBER_NAME, "O-Tern"))
    DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS
    FROM [OLSON BI]
    WHERE (
    [Employee Hours Time Category].[Time Category].&[Client Facing],
    [Employee Hours Time Category].[Utilization Category].&[PRODUCTION])
    CELL PROPERTIES VALUE, BACK_COLOR, FORE_COLOR, FORMATTED_VALUE, FORMAT_STRING, FONT
    When running the query, I get the "Failed to parse the query to detect if it is mdx or dmx".
    THe qqy=uery is basic enough, but for the life of me can't figure out what is wrong????
    Any suggestions woud be greatly appreciated!!
    Thanks
    A. M. Robinson

    I literally have the exact same query running in a different report and it runs fine.
    Also, your FILTER is in a SET statement - mine is not. That is the major difference between my query and yours.
    SELECT
    [Measures].[Employee Hours],
    [Measures].[Employee Hours %]
    } ON COLUMNS,
    NON EMPTY CROSSJOIN(
    [Selected Departments],
    [Employee].[Employee Bill Rate].[Employee Bill Rate].ALLMEMBERS,
    [Employee].[Employee Level].[Employee Level].ALLMEMBERS,
    [TTM]) ,
    FILTER ([Employee].[Manager Name].[Manager Name].Members ,
    NOT InStr([Employee].[Manager Name].CurrentMember.MEMBER_NAME, "O-Tern"))
    If I remove the filter statement from this query and run it WITH the same parameters it runs fine - and has been running fine for literally over a year. The introduction of this FILTER statement is causing an issue.
    So either the filter is in the wrong place or it's not formed properly.
    I can provide a couple of examples of queries that are the ecact same with parameters and run fine, and when a FILTER is introduced they still run fine.
    A. M. Robinson

  • Low Pass Filter Counter Input Compact DAQ

    Hello,
    I need to put a 10kHz Low pass filter on a counter input.
    I have a CDAQ 9178
    and a 9421 Digital Input module
    Acording to the documentation and my own experience I can't enable the filter on the Digital input card.
    Is there another way to do this?  I need to filter the signal in hardware.
    Thanks
    Dan

    Your filter might work, however it is build to filter power lines, with current rating 6A and powerline voltage. You pay a lot for a box with screw terminals and a lot of copper and high rated capacitors.
    Have you tried a simple RC lowpass (costs less than 50 cent, even when purchased in a pharmacy ) ? R=1500Ohm, C=10nF gives a coarse 10kHz first order lowpass. The C fits between the ground and input terminals of your DAQ, the R in the signal line to the input.
    Output impedance of your source?
    If you explain more of your application, type of signal, we might find other solutions.
    Greetings from Germany
    Henrik
    LV since v3.1
    “ground” is a convenient fantasy
    '˙˙˙˙uıɐƃɐ lɐıp puɐ °06 ǝuoɥd ɹnoʎ uɹnʇ ǝsɐǝld 'ʎɹɐuıƃɐɯı sı pǝlɐıp ǝʌɐɥ noʎ ɹǝqɯnu ǝɥʇ'

  • Metadata: Filter By Update State

    If your file has been modified externaly or by another LR catalog, you will notice that LR recognize them and let you choose these option :
    Metadata File Needs To Be Updated
    Metadata Was Changed Externally
    Error Saving Metadata
    If you have a lot of pictures, this is not simple to find only the modified files. You can select all files and click the update button, but then the entire pictures will be scanned and somehow rewritten (jpg, xmp, ...), this process is too unfriendly.
    Filtering the picture by the state of the metadata would be really simple and fine when working with more than one catalog, computer or software.

    Flash,
    This is a much needed feature that I some time ago sent in a feature request.  A new feature request might be in order - you can file one at https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform if you would like.
    Jeff

  • SQL Statement - Reading Input Field

    I have a simple SQL statement which takes an input value and searches for it in the database. I am wondering what is the syntax in Visual Composer to pass the input value using a form to the SQL statement. In other words how can I read the value of the search field of the input form in the SQL Query.
    Example: select * from Table WHERE Description LIKE <b><Search Term></b>
    I would like to know the syntax to read the Search term from the input form.
    Any help will be greatly appreciated.

    In the current version of VC input fields are available only for dataservices based on relational templates in BI Query Wizard(Not created in the SQL editor).
    You can select "All data" template for a single table or "Freeform" if you would like to do something more complex and provide a filter via input field.
    Best regards,
    Natalia

  • Error adding fps controller filter

    Hello
    The encoder is working fine untill I enable the sound then I get the above error.
    I have tried two sound cards but the error remains.
    It seems a strange error as fps I presume is frames per second what has that to do with sound.
    Any help please.

    Hello thanks for getting back to me
    The capture card is a pinnacle studio dc10
    The audio card is a dell sound blaster ct5807 / 0088 gf  pci
    My computer uses a amd athlon xp2600 1.92ghz with 512mb ram
    running xp professional service pack 3
    Here is the log without the audio enabled
    and the second log is with the sound enabled
    Thanks
    VIDEO ONLY LOG
    =================================================================
    File: C:\Program Files\Adobe\Flash Media Live Encoder 3\FlashMediaLiveEncoder.exe
    Description: Adobe® Flash® Media Live Encoder
    Copyright: © 2008 - 09 Adobe Systems Incorporated. All Rights Reserved. Adobe, the Adobe logo, and Flash are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. All other trademarks are the property of their respective owners. <AdobeIP#0000716>
    Version: 3.0.1.5963
    =================================================================
    Thu Mar 25 2010 16:38:47 : Selected video input device: Pinnacle DCxx MJPEG Capture Filter
    Thu Mar 25 2010 16:38:47 : Selected audio input device: Creative Sound Blaster PCI
    Thu Mar 25 2010 16:38:53 : Primary - Connected to FMS/3,0,4,423
    Thu Mar 25 2010 16:38:53 : Primary - Network Command: onBWDone
    Thu Mar 25 2010 16:38:56 : Primary - Stream[g1lwx] Status: Success
    Thu Mar 25 2010 16:38:56 : Primary - Network Command: onFCPublish
    Thu Mar 25 2010 16:38:56 : Primary - Stream[g1lwx] Status: NetStream.Publish.Start
    ==========================================================
    <?xml version="1.0" encoding="UTF-16"?>
    <flashmedialiveencoder_profile>
        <preset>
            <name>Custom</name>
            <description></description>
        </preset>
        <capture>
            <video>
            <device>Pinnacle DCxx MJPEG Capture Filter</device>
            <crossbar_input>0</crossbar_input>
            <frame_rate>15.00</frame_rate>
            <size>
                <width>640</width>
                <height>480</height>
            </size>
            </video>
        </capture>
        <encode>
            <video>
            <format>VP6</format>
            <datarate>200;</datarate>
            <outputsize>640x480;</outputsize>
            <advanced>
                <keyframe_frequency>5 Seconds</keyframe_frequency>
                <quality>Good Quality - Good Framerate</quality>
                <noise_reduction>None</noise_reduction>
                <datarate_window>Medium</datarate_window>
                <cpu_usage>Dedicated</cpu_usage>
            </advanced>
            <autoadjust>
                <enable>true</enable>
                <maxbuffersize>1</maxbuffersize>
                <dropframes>
                <enable>true</enable>
                </dropframes>
                <degradequality>
                <enable>false</enable>
                <minvideobitrate></minvideobitrate>
                <preservepfq>false</preservepfq>
                </degradequality>
            </autoadjust>
            </video>
        </encode>
        <restartinterval>
            <days></days>
            <hours></hours>
            <minutes></minutes>
        </restartinterval>
        <reconnectinterval>
            <attempts></attempts>
            <interval></interval>
        </reconnectinterval>
        <output>
            <rtmp>
            <url>rtmp://fms.batc.tv/live/g1lwx</url>
            <backup_url></backup_url>
            <stream>g1lwx</stream>
            </rtmp>
        </output>
        <metadata>
            <entry>
            <key>author</key>
            <value></value>
            </entry>
            <entry>
            <key>copyright</key>
            <value></value>
            </entry>
            <entry>
            <key>description</key>
            <value></value>
            </entry>
            <entry>
            <key>keywords</key>
            <value></value>
            </entry>
            <entry>
            <key>rating</key>
            <value></value>
            </entry>
            <entry>
            <key>title</key>
            <value></value>
            </entry>
        </metadata>
        <preview>
            <video>
            <input>
                <zoom>100%</zoom>
            </input>
            <output>
                <zoom>100%</zoom>
            </output>
            </video>
            <audio></audio>
        </preview>
        <log>
            <level>100</level>
            <directory>C:\Documents and Settings\Mike\Desktop\New Folder</directory>
        </log>
    </flashmedialiveencoder_profile>
    ==========================================================
    DumpGraph [003AE598]
        Filter [0150E01C] Output Video Renderer
              Pin [0150E3FC] Input [Input] Connected to pin [0118C6F8]
        Filter [014F501C] Input Video Renderer
              Pin [014F53FC] Input [Input] Connected to pin [011877D0]
        Filter [0BA80050] Mux
              Pin [0BA800B0] FLV4 [Input] Connected to pin [011874E0]
              Pin [0BA808D0]  audio [ Input] This pin is not Connected
              Pin [0BA80B48]  out [ Output] This pin is not Connected
        Filter [0118C008] VP62_FL8 Compressor
              Pin [0118C028] Input [Input] Connected to pin [0126FCD8]
              Pin [0118C6F8] Preview [Output] Connected to pin [0150E3FC]
              Pin [011874E0] Output1 [Output] Connected to pin [0BA800B0]
              Pin [01187038]  Output2 [ Output] This pin is not Connected
        Filter [011876C8] Input RGB
              Pin [011876E0] Input [Input] Connected to pin [01271AE8]
              Pin [011877D0] Output [Output] Connected to pin [014F53FC]
        Filter [0126F558] FPS Controller Encoder
              Pin [0126F568] Input [Input] Connected to pin [0126EDA0]
              Pin [0126FCD8] Output [Output] Connected to pin [0118C028]
        Filter [01271428] YV12
              Pin [01271440] Input [Input] Connected to pin [014FC2EC]
              Pin [01271AE8] Output [Output] Connected to pin [011876E0]
        Filter [0126EC98] Resize
              Pin [0126ECB0] Input [Input] Connected to pin [0126EB40]
              Pin [0126EDA0] Output [Output] Connected to pin [0126F568]
        Filter [014FC0C4] MJPEG Decompressor AL/BS
              Pin [014FC204] XForm In [Input] Connected to pin [014FC39C]
              Pin [014FC2EC] XForm Out [Output] Connected to pin [01271440]
        Filter [0126E480] YV12 0003
              Pin [0126E498] Input [Input] Connected to pin [014FA854]
              Pin [0126EB40] Output [Output] Connected to pin [0126ECB0]
        Filter [003AE0F4] MJPEG Decompressor AL/BS 0004
              Pin [014FA76C] XForm In [Input] Connected to pin [01186E18]
              Pin [014FA854] XForm Out [Output] Connected to pin [0126E498]
        Filter [01186698] FPS Controller Resize
              Pin [011866A8] Input [Input] Connected to pin [014F200C]
              Pin [01186E18] Output [Output] Connected to pin [014FA76C]
        Filter [014FDE6C] Video Tee
              Pin [014FDED4] Input [Input] Connected to pin [003AE93C]
              Pin [014FC39C] Output1 [Output] Connected to pin [014FC204]
              Pin [014F200C] Output2 [Output] Connected to pin [011866A8]
              Pin [015050D4]  Output3 [ Output] This pin is not Connected
        Filter [003AF74C] SOURCE
              Pin [003AE93C] ~Capture [Output] Connected to pin [014FDED4]
              Pin [003AFB64]  Preview [ Output] This pin is not Connected
    DumpGraph [003AE598]
        Filter [0150E01C] Output Video Renderer
              Pin [0150E3FC] Input [Input] Connected to pin [0118C6F8]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7E-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB32
    Not temporally compressed
    Sample size 1228800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 32 bpp c:0
    Image size 1228800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [014F501C] Input Video Renderer
              Pin [014F53FC] Input [Input] Connected to pin [011877D0]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7D-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB24
    Not temporally compressed
    Sample size 921600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 24 bpp c:0
    Image size 921600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [0BA80050] Mux
              Pin [0BA800B0] FLV4 [Input] Connected to pin [011874E0]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {34564C46-0000-0010-8000-00AA00389B71}  Unknown GUID Name
    Temporally compressed
    Variable size samples
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 12 bpp c:34564c46
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
              Pin [0BA808D0]  audio [ Input] This pin is not Connected
              Pin [0BA80B48]  out [ Output] This pin is not Connected
        Filter [0118C008] VP62_FL8 Compressor
              Pin [0118C028] Input [Input] Connected to pin [0126FCD8]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 12 bpp c:32315659
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
              Pin [0118C6F8] Preview [Output] Connected to pin [0150E3FC]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7E-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB32
    Not temporally compressed
    Sample size 1228800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 32 bpp c:0
    Image size 1228800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
              Pin [011874E0] Output1 [Output] Connected to pin [0BA800B0]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {34564C46-0000-0010-8000-00AA00389B71}  Unknown GUID Name
    Temporally compressed
    Variable size samples
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 12 bpp c:34564c46
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
              Pin [01187038]  Output2 [ Output] This pin is not Connected
        Filter [011876C8] Input RGB
              Pin [011876E0] Input [Input] Connected to pin [01271AE8]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 12 bpp c:32315659
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
              Pin [011877D0] Output [Output] Connected to pin [014F53FC]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7D-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB24
    Not temporally compressed
    Sample size 921600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 24 bpp c:0
    Image size 921600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [0126F558] FPS Controller Encoder
              Pin [0126F568] Input [Input] Connected to pin [0126EDA0]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 12 bpp c:32315659
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
              Pin [0126FCD8] Output [Output] Connected to pin [0118C028]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 12 bpp c:32315659
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [01271428] YV12
              Pin [01271440] Input [Input] Connected to pin [014FC2EC]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7E-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB32
    Not temporally compressed
    Sample size 1228800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 32 bpp c:0
    Image size 1228800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
              Pin [01271AE8] Output [Output] Connected to pin [011876E0]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 12 bpp c:32315659
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [0126EC98] Resize
              Pin [0126ECB0] Input [Input] Connected to pin [0126EB40]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 12 bpp c:32315659
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
              Pin [0126EDA0] Output [Output] Connected to pin [0126F568]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 12 bpp c:32315659
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [014FC0C4] MJPEG Decompressor AL/BS
              Pin [014FC204] XForm In [Input] Connected to pin [014FC39C]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {47504A4D-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_MJPG
    Not temporally compressed
    Variable size samples
    Source rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Target rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Size of BITMAPINFO structure 40
    640 x 480, 24 bpp c:47504a4d
    Image size 512000
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 400000, 25 fps
              Pin [014FC2EC] XForm Out [Output] Connected to pin [01271440]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7E-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB32
    Not temporally compressed
    Sample size 1228800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 32 bpp c:0
    Image size 1228800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [0126E480] YV12 0003
              Pin [0126E498] Input [Input] Connected to pin [014FA854]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7E-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB32
    Not temporally compressed
    Sample size 1228800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 32 bpp c:0
    Image size 1228800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
              Pin [0126EB40] Output [Output] Connected to pin [0126ECB0]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 12 bpp c:32315659
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [003AE0F4] MJPEG Decompressor AL/BS 0004
              Pin [014FA76C] XForm In [Input] Connected to pin [01186E18]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {47504A4D-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_MJPG
    Not temporally compressed
    Variable size samples
    Source rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Target rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Size of BITMAPINFO structure 40
    640 x 480, 24 bpp c:47504a4d
    Image size 512000
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 400000, 25 fps
              Pin [014FA854] XForm Out [Output] Connected to pin [0126E498]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7E-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB32
    Not temporally compressed
    Sample size 1228800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 32 bpp c:0
    Image size 1228800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [01186698] FPS Controller Resize
              Pin [011866A8] Input [Input] Connected to pin [014F200C]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {47504A4D-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_MJPG
    Not temporally compressed
    Variable size samples
    Source rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Target rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Size of BITMAPINFO structure 40
    640 x 480, 24 bpp c:47504a4d
    Image size 512000
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 400000, 25 fps
              Pin [01186E18] Output [Output] Connected to pin [014FA76C]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {47504A4D-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_MJPG
    Not temporally compressed
    Variable size samples
    Source rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Target rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Size of BITMAPINFO structure 40
    640 x 480, 24 bpp c:47504a4d
    Image size 512000
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 400000, 25 fps
        Filter [014FDE6C] Video Tee
              Pin [014FDED4] Input [Input] Connected to pin [003AE93C]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {47504A4D-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_MJPG
    Not temporally compressed
    Variable size samples
    Source rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Target rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Size of BITMAPINFO structure 40
    640 x 480, 24 bpp c:47504a4d
    Image size 512000
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 400000, 25 fps
              Pin [014FC39C] Output1 [Output] Connected to pin [014FC204]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {47504A4D-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_MJPG
    Not temporally compressed
    Variable size samples
    Source rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Target rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Size of BITMAPINFO structure 40
    640 x 480, 24 bpp c:47504a4d
    Image size 512000
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 400000, 25 fps
              Pin [014F200C] Output2 [Output] Connected to pin [011866A8]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {47504A4D-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_MJPG
    Not temporally compressed
    Variable size samples
    Source rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Target rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Size of BITMAPINFO structure 40
    640 x 480, 24 bpp c:47504a4d
    Image size 512000
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 400000, 25 fps
              Pin [015050D4]  Output3 [ Output] This pin is not Connected
        Filter [003AF74C] SOURCE
              Pin [003AE93C] ~Capture [Output] Connected to pin [014FDED4]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {47504A4D-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_MJPG
    Not temporally compressed
    Variable size samples
    Source rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Target rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Size of BITMAPINFO structure 40
    640 x 480, 24 bpp c:47504a4d
    Image size 512000
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 400000, 25 fps
              Pin [003AFB64]  Preview [ Output] This pin is not Connected
    Thu Mar 25 2010 16:38:56 : Session Started
    Thu Mar 25 2010 16:38:56 : AutoAdjust feature is enabled
    Thu Mar 25 2010 16:38:57 : Video Encoding Started
    Thu Mar 25 2010 16:39:12 : AutoAdjust feature is disabled
    Thu Mar 25 2010 16:39:12 : Video Encoding Stopped
    Thu Mar 25 2010 16:39:12 : Session Stopped
    Thu Mar 25 2010 16:39:12 : Primary - Network Command: onFCUnpublish
    Thu Mar 25 2010 16:39:12 : Primary - Stream[g1lwx] Status: NetStream.Unpublish.Success
    Thu Mar 25 2010 16:39:12 :
    ================== Encoding Statistics ====================
                            Current                        
                                           Input              Output
                 Time    Bit Rate     Drops      fps     Drops      fps
    Audio  :                                 
    Video 1:   0:00:12    133 Kbps         0    13.00         0    14.00
                            Average                         
                                           Input              Output
                 Time    Bit Rate     Drops      fps     Drops      fps
    Audio  :                                 
    Video 1:   0:00:12    161 Kbps         0    16.06         0    16.18
    ===========================================================
    Thu Mar 25 2010 16:39:30 : Primary - Network Status: NetConnection.Connect.Closed status
    Thu Mar 25 2010 16:39:30 : Primary - Disconnected
    AUDIO ENABLED LOG
    =================================================================
    File: C:\Program Files\Adobe\Flash Media Live Encoder 3\FlashMediaLiveEncoder.exe
    Description: Adobe® Flash® Media Live Encoder
    Copyright: © 2008 - 09 Adobe Systems Incorporated. All Rights Reserved. Adobe, the Adobe logo, and Flash are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. All other trademarks are the property of their respective owners. <AdobeIP#0000716>
    Version: 3.0.1.5963
    =================================================================
    Thu Mar 25 2010 16:39:35 : Selected video input device: Pinnacle DCxx MJPEG Capture Filter
    Thu Mar 25 2010 16:39:35 : Selected audio input device: Creative Sound Blaster PCI
    Thu Mar 25 2010 16:39:40 : Primary - Connected to FMS/3,0,4,423
    Thu Mar 25 2010 16:39:40 : Primary - Network Command: onBWDone
    Thu Mar 25 2010 16:39:49 : Failed with error 80004005:ConnectWithCategory(m_pCaptureGraphBuilder, pFilterVideo, pFilterFpsController, pguidCategory)
    ==========================================================
    <?xml version="1.0" encoding="UTF-16"?>
    <flashmedialiveencoder_profile>
        <preset>
            <name>Custom</name>
            <description></description>
        </preset>
        <capture>
            <video>
            <device>Pinnacle DCxx MJPEG Capture Filter</device>
            <crossbar_input>0</crossbar_input>
            <frame_rate>15.00</frame_rate>
            <size>
                <width>640</width>
                <height>480</height>
            </size>
            </video>
            <audio>
            <device>Creative Sound Blaster PCI</device>
            <crossbar_input>0</crossbar_input>
            <sample_rate>22050</sample_rate>
            <channels>1</channels>
            <input_volume>75</input_volume>
            </audio>
        </capture>
        <encode>
            <video>
            <format>VP6</format>
            <datarate>200;</datarate>
            <outputsize>640x480;</outputsize>
            <advanced>
                <keyframe_frequency>5 Seconds</keyframe_frequency>
                <quality>Good Quality - Good Framerate</quality>
                <noise_reduction>None</noise_reduction>
                <datarate_window>Medium</datarate_window>
                <cpu_usage>Dedicated</cpu_usage>
            </advanced>
            <autoadjust>
                <enable>true</enable>
                <maxbuffersize>1</maxbuffersize>
                <dropframes>
                <enable>true</enable>
                </dropframes>
                <degradequality>
                <enable>false</enable>
                <minvideobitrate></minvideobitrate>
                <preservepfq>false</preservepfq>
                </degradequality>
            </autoadjust>
            </video>
            <audio>
            <format>MP3</format>
            <datarate>48</datarate>
            </audio>
        </encode>
        <restartinterval>
            <days></days>
            <hours></hours>
            <minutes></minutes>
        </restartinterval>
        <reconnectinterval>
            <attempts></attempts>
            <interval></interval>
        </reconnectinterval>
        <output>
            <rtmp>
            <url>rtmp://fms.batc.tv/live/g1lwx</url>
            <backup_url></backup_url>
            <stream>g1lwx</stream>
            </rtmp>
        </output>
        <metadata>
            <entry>
            <key>author</key>
            <value></value>
            </entry>
            <entry>
            <key>copyright</key>
            <value></value>
            </entry>
            <entry>
            <key>description</key>
            <value></value>
            </entry>
            <entry>
            <key>keywords</key>
            <value></value>
            </entry>
            <entry>
            <key>rating</key>
            <value></value>
            </entry>
            <entry>
            <key>title</key>
            <value></value>
            </entry>
        </metadata>
        <preview>
            <video>
            <input>
                <zoom>100%</zoom>
            </input>
            <output>
                <zoom>100%</zoom>
            </output>
            </video>
            <audio></audio>
        </preview>
        <log>
            <level>100</level>
            <directory>C:\Documents and Settings\Mike\Desktop\New Folder</directory>
        </log>
    </flashmedialiveencoder_profile>
    ==========================================================
    DumpGraph [003AE598]
        Filter [011901C8] FPS Controller Resize
              Pin [011901D8]  Input [ Input] This pin is not Connected
              Pin [01190948]  Output [ Output] This pin is not Connected
        Filter [0150401C] Input Video Renderer
              Pin [015043FC] Input [Input] Connected to pin [011877D0]
        Filter [0150E01C] Meter Render
              Pin [0150E3FC] Input [Input] Connected to pin [0118C008]
        Filter [01272768] Mux
              Pin [012727C8]  FLVx [ Input] This pin is not Connected
              Pin [01272FE8] MP3 [Input] Connected to pin [01277D48]
              Pin [01273260]  out [ Output] This pin is not Connected
        Filter [003AF74C] SOURCE
              Pin [003AE93C]  ~Capture [ Output] This pin is not Connected
              Pin [003AFB64]  Preview [ Output] This pin is not Connected
        Filter [011876C8] Input RGB
              Pin [011876E0] Input [Input] Connected to pin [0BCA1DA8]
              Pin [011877D0] Output [Output] Connected to pin [015043FC]
        Filter [01274AE8] Audio Encoder Tee
              Pin [01274AF8] Input [Input] Connected to pin [0BCA0558]
              Pin [01277D48] Output1 [Output] Connected to pin [01272FE8]
              Pin [012762F8]  Output2 [ Output] This pin is not Connected
        Filter [01188398] Audio Monitor
              Pin [01188410] Input [Input] Connected to pin [014F20E4]
              Pin [0118C008] Channel 0 [Output] Connected to pin [0150E3FC]
        Filter [0BCA16E8] YV12
              Pin [0BCA1700] Input [Input] Connected to pin [014FC2EC]
              Pin [0BCA1DA8] Output [Output] Connected to pin [011876E0]
        Filter [0BCA0050] Audio Encoder
              Pin [0BCA0058] PCM [Input] Connected to pin [014F200C]
              Pin [0BCA0558] MP3 [Output] Connected to pin [01274AF8]
        Filter [014FC0C4] MJPEG Decompressor AL/BS
              Pin [014FA76C] XForm In [Input] Connected to pin [014FC39C]
              Pin [014FC2EC] XForm Out [Output] Connected to pin [0BCA1700]
        Filter [01505B84] Audio Tee
              Pin [01505BEC] Input [Input] Connected to pin [012760B8]
              Pin [014F200C] Output1 [Output] Connected to pin [0BCA0058]
              Pin [014F20E4] Output2 [Output] Connected to pin [01188410]
              Pin [015050D4]  Output3 [ Output] This pin is not Connected
        Filter [014F9FB4] Video Tee
              Pin [014FA01C]  Input [ Input] This pin is not Connected
              Pin [014FC39C] Output1 [Output] Connected to pin [014FA76C]
              Pin [0150EE64]  Output2 [ Output] This pin is not Connected
        Filter [01275990] Filler
              Pin [01275998] In [Input] Connected to pin [014F19AC]
              Pin [012760B8] Output [Output] Connected to pin [01505BEC]
        Filter [014F157C] Audio Resample
              Pin [014FC204] Input [Input] Connected to pin [003AF524]
              Pin [014F19AC] Output [Output] Connected to pin [01275998]
        Filter [003AF37C] AUDIO SOURCE
              Pin [003AF524] Capture [Output] Connected to pin [014FC204]
              Pin [014F147C]  Stereo Mix [ Input] This pin is not Connected
              Pin [014F137C]  Phone Line [ Input] This pin is not Connected
              Pin [014F127C]  Aux Volume [ Input] This pin is not Connected
              Pin [014F117C]  Video Volume [ Input] This pin is not Connected
              Pin [014F98F4]  Mic Volume [ Input] This pin is not Connected
              Pin [014F99F4]  Line In [ Input] This pin is not Connected
              Pin [01505A84]  CD Audio [ Input] This pin is not Connected
    DumpGraph [003AE598]
        Filter [011901C8] FPS Controller Resize
              Pin [011901D8]  Input [ Input] This pin is not Connected
              Pin [01190948]  Output [ Output] This pin is not Connected
        Filter [0150401C] Input Video Renderer
              Pin [015043FC] Input [Input] Connected to pin [011877D0]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7D-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB24
    Not temporally compressed
    Sample size 921600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 24 bpp c:0
    Image size 921600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [0150E01C] Meter Render
              Pin [0150E3FC] Input [Input] Connected to pin [0118C008]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7D-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB24
    Not temporally compressed
    Sample size 27648
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    96 x 96, 24 bpp c:0
    Image size 27648
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [01272768] Mux
              Pin [012727C8]  FLVx [ Input] This pin is not Connected
              Pin [01272FE8] MP3 [Input] Connected to pin [01277D48]
    Major type {73647561-0000-0010-8000-00AA00389B71}  MEDIATYPE_Audio
    Sub type   {00000055-0000-0010-8000-00AA00389B71}  Unknown GUID Name
    Not temporally compressed
    Sample size 0
    Format type FORMAT_WaveFormatEx
    Subtype Unknown GUID Name
    wFormatTag 85
    nChannels 1
    nSamplesPerSec 22050
    nAvgBytesPerSec 6000
    nBlockAlign 1
    wBitsPerSample 0
    cbSize 12
              Pin [01273260]  out [ Output] This pin is not Connected
        Filter [003AF74C] SOURCE
              Pin [003AE93C]  ~Capture [ Output] This pin is not Connected
              Pin [003AFB64]  Preview [ Output] This pin is not Connected
        Filter [011876C8] Input RGB
              Pin [011876E0] Input [Input] Connected to pin [0BCA1DA8]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 12 bpp c:32315659
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
              Pin [011877D0] Output [Output] Connected to pin [015043FC]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7D-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB24
    Not temporally compressed
    Sample size 921600
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 24 bpp c:0
    Image size 921600
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [01274AE8] Audio Encoder Tee
              Pin [01274AF8] Input [Input] Connected to pin [0BCA0558]
    Major type {73647561-0000-0010-8000-00AA00389B71}  MEDIATYPE_Audio
    Sub type   {00000055-0000-0010-8000-00AA00389B71}  Unknown GUID Name
    Not temporally compressed
    Sample size 1
    Format type FORMAT_WaveFormatEx
    Subtype Unknown GUID Name
    wFormatTag 85
    nChannels 1
    nSamplesPerSec 22050
    nAvgBytesPerSec 6000
    nBlockAlign 1
    wBitsPerSample 0
    cbSize 12
              Pin [01277D48] Output1 [Output] Connected to pin [01272FE8]
    Major type {73647561-0000-0010-8000-00AA00389B71}  MEDIATYPE_Audio
    Sub type   {00000055-0000-0010-8000-00AA00389B71}  Unknown GUID Name
    Not temporally compressed
    Sample size 1
    Format type FORMAT_WaveFormatEx
    Subtype Unknown GUID Name
    wFormatTag 85
    nChannels 1
    nSamplesPerSec 22050
    nAvgBytesPerSec 6000
    nBlockAlign 1
    wBitsPerSample 0
    cbSize 12
              Pin [012762F8]  Output2 [ Output] This pin is not Connected
        Filter [01188398] Audio Monitor
              Pin [01188410] Input [Input] Connected to pin [014F20E4]
    Major type {73647561-0000-0010-8000-00AA00389B71}  MEDIATYPE_Audio
    Sub type   {00000001-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_PCM
    Not temporally compressed
    Sample size 2
    Format type FORMAT_WaveFormatEx
    Subtype MEDIASUBTYPE_PCM
    wFormatTag 1
    nChannels 1
    nSamplesPerSec 22050
    nAvgBytesPerSec 44100
    nBlockAlign 2
    wBitsPerSample 16
    cbSize 0
              Pin [0118C008] Channel 0 [Output] Connected to pin [0150E3FC]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7D-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB24
    Not temporally compressed
    Sample size 27648
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    96 x 96, 24 bpp c:0
    Image size 27648
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [0BCA16E8] YV12
              Pin [0BCA1700] Input [Input] Connected to pin [014FC2EC]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7E-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB32
    Not temporally compressed
    Sample size 1228800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 32 bpp c:0
    Image size 1228800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
              Pin [0BCA1DA8] Output [Output] Connected to pin [011876E0]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {32315659-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_YV12
    Not temporally compressed
    Sample size 460800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 12 bpp c:32315659
    Image size 460800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [0BCA0050] Audio Encoder
              Pin [0BCA0058] PCM [Input] Connected to pin [014F200C]
    Major type {73647561-0000-0010-8000-00AA00389B71}  MEDIATYPE_Audio
    Sub type   {00000001-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_PCM
    Not temporally compressed
    Sample size 2
    Format type FORMAT_WaveFormatEx
    Subtype MEDIASUBTYPE_PCM
    wFormatTag 1
    nChannels 1
    nSamplesPerSec 22050
    nAvgBytesPerSec 44100
    nBlockAlign 2
    wBitsPerSample 16
    cbSize 0
              Pin [0BCA0558] MP3 [Output] Connected to pin [01274AF8]
    Major type {73647561-0000-0010-8000-00AA00389B71}  MEDIATYPE_Audio
    Sub type   {00000055-0000-0010-8000-00AA00389B71}  Unknown GUID Name
    Not temporally compressed
    Sample size 1
    Format type FORMAT_WaveFormatEx
    Subtype Unknown GUID Name
    wFormatTag 85
    nChannels 1
    nSamplesPerSec 22050
    nAvgBytesPerSec 6000
    nBlockAlign 1
    wBitsPerSample 0
    cbSize 12
        Filter [014FC0C4] MJPEG Decompressor AL/BS
              Pin [014FA76C] XForm In [Input] Connected to pin [014FC39C]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {47504A4D-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_MJPG
    Not temporally compressed
    Variable size samples
    Source rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Target rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Size of BITMAPINFO structure 40
    640 x 480, 24 bpp c:47504a4d
    Image size 512000
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 400000, 25 fps
              Pin [014FC2EC] XForm Out [Output] Connected to pin [0BCA1700]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {E436EB7E-524F-11CE-9F53-0020AF0BA770}  MEDIASUBTYPE_RGB32
    Not temporally compressed
    Sample size 1228800
    Source rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Target rectangle ( Left 0 Top 0 Right 0 Bottom 0)
    Size of BITMAPINFO structure 40
    640 x 480, 32 bpp c:0
    Image size 1228800
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 0, 0 fps
        Filter [01505B84] Audio Tee
              Pin [01505BEC] Input [Input] Connected to pin [012760B8]
    Major type {73647561-0000-0010-8000-00AA00389B71}  MEDIATYPE_Audio
    Sub type   {00000001-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_PCM
    Not temporally compressed
    Sample size 2
    Format type FORMAT_WaveFormatEx
    Subtype MEDIASUBTYPE_PCM
    wFormatTag 1
    nChannels 1
    nSamplesPerSec 22050
    nAvgBytesPerSec 44100
    nBlockAlign 2
    wBitsPerSample 16
    cbSize 0
              Pin [014F200C] Output1 [Output] Connected to pin [0BCA0058]
    Major type {73647561-0000-0010-8000-00AA00389B71}  MEDIATYPE_Audio
    Sub type   {00000001-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_PCM
    Not temporally compressed
    Sample size 2
    Format type FORMAT_WaveFormatEx
    Subtype MEDIASUBTYPE_PCM
    wFormatTag 1
    nChannels 1
    nSamplesPerSec 22050
    nAvgBytesPerSec 44100
    nBlockAlign 2
    wBitsPerSample 16
    cbSize 0
              Pin [014F20E4] Output2 [Output] Connected to pin [01188410]
    Major type {73647561-0000-0010-8000-00AA00389B71}  MEDIATYPE_Audio
    Sub type   {00000001-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_PCM
    Not temporally compressed
    Sample size 2
    Format type FORMAT_WaveFormatEx
    Subtype MEDIASUBTYPE_PCM
    wFormatTag 1
    nChannels 1
    nSamplesPerSec 22050
    nAvgBytesPerSec 44100
    nBlockAlign 2
    wBitsPerSample 16
    cbSize 0
              Pin [015050D4]  Output3 [ Output] This pin is not Connected
        Filter [014F9FB4] Video Tee
              Pin [014FA01C]  Input [ Input] This pin is not Connected
              Pin [014FC39C] Output1 [Output] Connected to pin [014FA76C]
    Major type {73646976-0000-0010-8000-00AA00389B71}  MEDIATYPE_Video
    Sub type   {47504A4D-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_MJPG
    Not temporally compressed
    Variable size samples
    Source rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Target rectangle ( Left 0 Top 0 Right 640 Bottom 480)
    Size of BITMAPINFO structure 40
    640 x 480, 24 bpp c:47504a4d
    Image size 512000
    Planes 1
    Pels per metre (0, 0)
    Colours used 0
    AvgTimePerFrame 400000, 25 fps
              Pin [0150EE64]  Output2 [ Output] This pin is not Connected
        Filter [01275990] Filler
              Pin [01275998] In [Input] Connected to pin [014F19AC]
    Major type {73647561-0000-0010-8000-00AA00389B71}  MEDIATYPE_Audio
    Sub type   {00000001-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_PCM
    Not temporally compressed
    Sample size 2
    Format type FORMAT_WaveFormatEx
    Subtype MEDIASUBTYPE_PCM
    wFormatTag 1
    nChannels 1
    nSamplesPerSec 22050
    nAvgBytesPerSec 44100
    nBlockAlign 2
    wBitsPerSample 16
    cbSize 0
              Pin [012760B8] Output [Output] Connected to pin [01505BEC]
    Major type {73647561-0000-0010-8000-00AA00389B71}  MEDIATYPE_Audio
    Sub type   {00000001-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_PCM
    Not temporally compressed
    Sample size 2
    Format type FORMAT_WaveFormatEx
    Subtype MEDIASUBTYPE_PCM
    wFormatTag 1
    nChannels 1
    nSamplesPerSec 22050
    nAvgBytesPerSec 44100
    nBlockAlign 2
    wBitsPerSample 16
    cbSize 0
        Filter [014F157C] Audio Resample
              Pin [014FC204] Input [Input] Connected to pin [003AF524]
    Major type {73647561-0000-0010-8000-00AA00389B71}  MEDIATYPE_Audio
    Sub type   {00000001-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_PCM
    Not temporally compressed
    Sample size 2
    Format type FORMAT_WaveFormatEx
    Subtype MEDIASUBTYPE_PCM
    wFormatTag 1
    nChannels 1
    nSamplesPerSec 22050
    nAvgBytesPerSec 44100
    nBlockAlign 2
    wBitsPerSample 16
    cbSize 0
              Pin [014F19AC] Output [Output] Connected to pin [01275998]
    Major type {73647561-0000-0010-8000-00AA00389B71}  MEDIATYPE_Audio
    Sub type   {00000001-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_PCM
    Not temporally compressed
    Sample size 2
    Format type FORMAT_WaveFormatEx
    Subtype MEDIASUBTYPE_PCM
    wFormatTag 1
    nChannels 1
    nSamplesPerSec 22050
    nAvgBytesPerSec 44100
    nBlockAlign 2
    wBitsPerSample 16
    cbSize 0
        Filter [003AF37C] AUDIO SOURCE
              Pin [003AF524] Capture [Output] Connected to pin [014FC204]
    Major type {73647561-0000-0010-8000-00AA00389B71}  MEDIATYPE_Audio
    Sub type   {00000001-0000-0010-8000-00AA00389B71}  MEDIASUBTYPE_PCM
    Not temporally compressed
    Sample size 2
    Format type FORMAT_WaveFormatEx
    Subtype MEDIASUBTYPE_PCM
    wFormatTag 1
    nChannels 1
    nSamplesPerSec 22050
    nAvgBytesPerSec 44100
    nBlockAlign 2
    wBitsPerSample 16
    cbSize 0
              Pin [014F147C]  Stereo Mix [ Input] This pin is not Connected
              Pin [014F137C]  Phone Line [ Input] This pin is not Connected
              Pin [014F127C]  Aux Volume [ Input] This pin is not Connected
              Pin [014F117C]  Video Volume [ Input] This pin is not Connected
              Pin [014F98F4]  Mic Volume [ Input] This pin is not Connected
              Pin [014F99F4]  Line In [ Input] This pin is not Connected
              Pin [01505A84]  CD Audio [ Input] This pin is not Connected
    Thu Mar 25 2010 16:39:49 : Error adding FPS Controller filter. Error adding FPS Controller filter.
    Thu Mar 25 2010 16:40:05 : Primary - Network Status: NetConnection.Connect.Closed status
    Thu Mar 25 2010 16:40:05 : Primary - Disconnected

  • How do I input multiple numbers to go to multiple variables in one line?

    I was wondering what I had to do to input 5 variables on one line. I have the program running fine, but I'm stuck at the part where it says "The numbers will be input five per line, on four lines".. Aside from poor grammar, it doesn't make any sense to me. Here's the whole question:
    Write code that will fill the array twoDArray(declared in the line of code below) with numbers typed in at the keyboard. The numbers will be input five per line, on four lines. Use the following array declaration:I don't need any immediate help with the array itself, just the input (unless the input is directly related to the array). Just in case, I'm going to post my code. This is still very messy, because I'm not done, and it's might be somewhat sloppy as I'm new to 2d arrays (in java).
    Thanks for the help.
    import java.io.*;
    class darrays
    public static void main(String[] args) throws IOException
    InputStreamReader inStream = new InputStreamReader (System.in);
    BufferedReader stdin = new BufferedReader(inStream);
    int[][] twoDArray = new int[4][5];
    int x,y;
    String input;
    for (x = 0; x <= 3; x++)
         for (y = 0; y<=4; y++)
    input = stdin.readLine ();
    twoDArray[x][y] = Integer.parseInt (input);
    for (x = 0; x <= 3; x++)
         for (y = 0; y<=4; y++)
    System.out.print(twoDArray[x][y] + " ");
    System.out.println("");
    }     

    Slightly off-topic
    When I was learning Basic (good old Kemeny & Kurtz style, when Basic was simply a simplified Fortran, not Bill Gates style) you simply have to write
    READ A, B, C, D, E
    DATA 10, 20, 30, 40, 50
    or something like
    INPUT "A", A: INPUT "B", B etc.
    In Java you are required to handle the mysteries of StringTokenizer...
    Java 1.5 is promising to make it easier:
          Scanner sc = Scanner.create(new File("myNumbers"));
          while (sc.hasNextLong()) {
              long aLong = sc.nextLong();
          }where you get the longs (decimal formatted, separated with blanks) from a text file.
    But not so easy as the good old INPUT statement.
    Even C's scanf is not so easy, because has lots of subtleties
    (when you finally mastered the esoteric art of using char* as strings, you are really fed up of char* strings, because they usually blow up due to buffer overflows or mere programmer errors, and start to use Java instead, even having to master the StringTokenizer and other classes.).

  • Issue with Input Parameters & Variables

    Hello Gurus,
    I have a situation where, when the user enter “Parent Company”   say for ex: ABC, then the over all
    Result should filter by ‘ABC’, and then there is key figure column where I need to consider not equal to ABC and then sum the key figure.
    In HANA, here both variables and Input patemters are mutually exclusive. Is there any way that I can pass the value of the variable to the input parameters without writing the code in Analytical or calculation views.
    If it’s BW-bex, it was very straight forward, I can create the variable for parent company ‘ABC’, put it as global filter, so that whenever the user selects ‘ABC” it should display on ABC data in the out put.
    I can also use the same variable and crate calculated column in BEx and attach the variable to the key figure and say the sum the key figure but exclude the Parent company “ABC’.
    I have tried the projection view and try to put filter on it, but it did not work. My requirement is
    Whenever the user selects ABC, it should display only ABC data, only 10 records out of 100 records and for one key figure column; I need to aggregate but excluding the Parent company “ABC”.
    Can I pass the Variable value to input parameters without writing the code?
    Regards
    Ramakrishnan Ramanathaiah 

    How about the following:
    Assuming you have 2 characteristics (Plant and Parent company) and 1 KF (Net Sales).
    Now let's create a projection with Filter using Input parameter on Parent company (with user input value as ABC), which might give the output as:
    Plant
    comp
    Net Sales
    P1
    ABC
    10
    P2
    ABC
    5
    Now, let's create a second projection with the Calc KF "Net Sales calculated" with the formula as:
    if comp = $input_value$, then 0 else Net_Sales.. this way you can simulate the EXCLUDE functionality.
    Plant
    comp
    Net sales
    P1
    ABC
    0
    P1
    BCD
    15
    P2
    ABC
    0
    Now union both the projections with two diff KFs, Net Sales and Net Sales Calculated.
    Plant
    Net Sales
    Net Sales Calc
    P1
    10
    15
    P2
    5
    0
    Subsequent model depends on your reporting drilldown requirement. If you drilldown Parent company also in the rows, then you will see the split in the values.
    Please try this and let us know if it works or what other issues come up.. we can try resolving the issues..
    Ravi

  • How can i add multiple validations for a single input box in adf?

    hi,
    i want to add multiple validation for a single input text control in adf like number validation and its existence in database.
    MY JDEV VERSION IS 11.1.1.5.0
    pls help !!!!

    Hi,
    1.I want to validate if the value entered is pure integer
    Option 1-
    select the component and in the Property Inspector, in the "Core" category select a "Converter" format, select javax.faces.Number, if the user put a string, adf show a dialog error or message error...
    Option 2-
    or use the Regular expression:-
    http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_validateRegExp.html
    https://blogs.oracle.com/shay/entry/regular_expression_validation
    Also check this:-
    http://docs.oracle.com/cd/E15523_01/web.1111/b31973/af_validate.htm#BABHAHEI
    Option 3-
    Frank in his great book 'Oracle Fusion Developer Guide' shows a example using a javascript for input which is allowed only for numbers. You can manipulate for your requirement.
    Here is the code:
    function filterForNumbers(evt) {
        //get ADF Faces event source, InputText.js
        var inputField = evt.getSource();
        var oldValue = inputField.getValue();
        var ignoredControlKeys = new Array(AdfKeyStroke.BACKSPACE_KEY, AdfKeyStroke.TAB_KEY, AdfKeyStroke.ARROWLEFT_KEY, AdfKeyStroke.ARROWRIGHT_KEY, AdfKeyStroke.ESC_KEY, AdfKeyStroke.ENTER_KEY, AdfKeyStroke.DELETE_KEY);
        //define the key range to exclude from field input
        var minNumberKeyCode = 48;
        var maxNumberKeyCode = 57;
        var minNumberPadKeyCode = 96;
        var maxNumberPadKeyCode = 105;
        //key pressed by the user
        var keyCodePressed = evt.getKeyCode();
        //if it is a control key, don't suppress it
        var ignoreKey = false;
        for (keyPos in ignoredControlKeys) {
            if (keyCodePressed == ignoredControlKeys[keyPos]) {
                ignoreKey = true;
                break;
        //return if key should be ignored
        if (ignoreKey == true) {
            return true;
        //filter keyboard input
        if (keyCodePressed < minNumberKeyCode || keyCodePressed > maxNumberPadKeyCode) {
            //set value back to previous value
            inputField.setValue(oldValue);
            //no need for the event to propagate to the server, so cancel
            //it
            evt.cancel();
            return true;
        if (keyCodePressed > maxNumberKeyCode && keyCodePressed < minNumberPadKeyCode) {
            //set value back to previous value
            inputField.setValue(oldValue);
            evt.cancel();
            return true;
    2.I want to check if the value exists in my respective DB You must be having EO or VO if you want to validate with database in that case use the solution suggested by Timo.
    Thanks
    --NavinK                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Filter error

    Hi, I´m just learning and developing my first filter for After Effects I found something really weird.
    I´m just making an easy zoom in and zoom out effect using 2 imput images, it seems to work OK in Pixel Bender.
    this is my code:
    <languageVersion : 1.0;>
    kernel TwoImagesZooming
    <   namespace : "blablabla";
        vendor : "Meh";
        version : 1;
        description : "zoom in zoom out with 2 images";
        displayname : "Pixel Displacement Complex";
        category : "AE filter category";
    >
        input image4 src;
        input image4 src2;
        output pixel4 dst;
        parameter float ZoomA
        <
        minValue:0.0;
        maxValue:1.0;
        defaultValue:1.0;
        >;
        parameter float ZoomB
        <
        minValue:0.0;
        maxValue:1.0;
        defaultValue:0.0;
        >;
        void
        evaluatePixel()
            pixel4 dst2 = sampleNearest(src,outCoord()/float2(DisplacementA, DisplacementA));
            pixel4 dst3 = sampleNearest(src2,outCoord()/float2(DisplacementB, DisplacementB));
            dst=dst2+dst3;
    but when I taste it in AE (CS4 by the way), it shows me these error:
    Can Somebody help me to find whats going on....Please

    Hi,
    The error gives a hint what might be going on.
    In below two calls you are diving outCoord() with DisplacementA & DisplacementB. If any of them is zero, you will get "division by zero" error.
    pixel4 dst2 = sampleNearest(src,outCoord()/float2(DisplacementA, DisplacementA));
    pixel4 dst3 = sampleNearest(src2,outCoord()/float2(DisplacementB, DisplacementB));
    To fix it, you should make sure values of DisplacementA & DisplacementB are never zero. There are several ways of doing that: either you can set minValue of those parameters to be greater than zero or you can do things differently if their value is zero.
    Hope that helps.

Maybe you are looking for

  • Dynamic include in a custom tag, called from a jsp

    Hello, I would like to be able to dynamically include other jsp's from within a custom tag that I create. is this possible? in a jsp page i would just write <%@ include file="file.jsp" %> and all would be ok... but if i do an out.println( "<%@ includ

  • AS3+PHP Game Development Speed

    Dear All, I'm an As2 game developer but my new prj need to done with as3.So one thing that I want to make sure is  " Will the game speed slow if I place the contents and imgaes into the stage as in AS2 ?" As I planned to use OOP class.And confused th

  • PL/SQL Function Returning Query Error / ORA-01858: a non-numeric char.....

    I'm trying to write a PL/SQL function to dynamically return a query with varying # of columns. I've done this type of thing before wiith much success, however this is the first time I'm using a cursor for loop within a function to accomplish my task.

  • Is there a way to stop a query just after the cursor/plan is produced by CBO?

    Following suggestions of Kerry Osborne&#8217;s Oracle Blog &raquo; Blog Archive &raquo; Explain Plan Lies &#8211; Kerry Osborn- on the lies of "Explain plan" (and of "set autotrace on"  too) I'd like to try to stop a query/DML before actually it star

  • CLAF - How to just change the color-scheme of default laf of Oracle EBiz

    How to change the color scheme of the default oracle ebusiness suites laf? When we tried the CLAF UI, there is no option to extend the oracle-desktop.xss. It gives only the base-desktop (which is different from the default Oracle Ebusiness laf). Have