Why owb can't work normal?

during install owb 3.0 for winnt/2000,it warning me that i
should install oracle 8.17 server/client,oem2.2 ect,i have
install all these component success,and then i install the owb
normal,it can not run but just appear a dos window for one
second,then nothing heppen.

What does "work" mean to you?  Because the code will operate but maybe not like you expect.  In addition to using run continuous (which you should never do) you also have multiple controls with the same label.  This makes explaining the issue difficult but I'll do my best.
You have the a-b control as a double, and the a-b control as a U8.  The U8 only has values from 0-255 so if your subtraction has a result other then these 256 values you will not get what you expect.  It also has no fractional component and any subtraction that has a fractional component won't give you the value you expect either.
Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

Similar Messages

  • I want to install my Quadro FX 560 to my MAC PRO, but it can't work normall

    I installed my Quadro FX 560 to my MAC PRO, but it can't work normally.
    I can't find any drivers of Quadro FX 560 for MAC OS, and I am using MAC OS 10.4.7.
    Would you like to give me the Quadro FX 560 driver for MAC OS??
    My display card come from my old PC...but not use any more...
    So I want to replace GeForce 7300 to Quadro FX560..
    Mac Pro   Mac OS X (10.4.7)  

    Would you like to give me the Quadro FX 560 driver for MAC OS??
    You will need to firstly check whether it is compatible with your Mac and operating system, and then get the required software from the manufacturers of the Quadro.

  • Vbox, mount share file can't work normal

    hi,everyone.
    i use virtualbox and has install virtualbox-additions.
    i exec "pacman -Syu" today and then i find that when i mount share file ,it doesn't work normal.
    i exec "mount -t vboxsf share /mnt" ant "cd /mnt"  then "ls " it show that a.c .but when i "vim a.c" ,it said that Segmentation fault.i want to umount /mnt ,it said
    umount: /mnt/: device is busy.
            (In some cases useful info about processes that use
             the device is found by lsof(8) or fuser(1))
    what can i do next, someone can help me ?
    thx.

    hello  
    I don't understand , i need your help, can you answer this : http://forums.adobe.com/thread/452883
    many thanks for your help.
    lionceau,

  • Why EBELP can not show normal in Table Control ?

    Dear All,
        I used table control in screen. And put some fields such as Material, PO, PO item,
    When user input the material, and pressed enter, then can call the PO and PO item into internal table. At screen, the PO can show normal, but the PO item show is u20180u2019.but the internal table have value.
    Why the PO item canu2019t show normal?
    Please help me?

    I set the EBELP in table control farmat is NUMC and CHAR also can't show normal
    I know it ,it must set the FIELD module check.
    Edited by: sun on Apr 11, 2009 3:56 AM

  • Why DataScroller can't work properly

    Everyone:
    In my jsp,there is a DataScroller.But it can't work properly. Sometimes, it can't scroll. Sometimes, it can scroll to the second set only other than scroll to all the other sets.
    Why? Had someone faced this problem? How can you solve it?
    Thank you!

    Compiling HelloWorld.java requires the class file run.class. So when you enter 'javac HelloWorld.java' it looks for run.class or run.java. If it can not find either it will not compile.
    Solution : Add a dot (.) to your classpath. This tells the compiler to look in the current directory for the run.java file. You can compile if you noved run.java to the jdk(?)\classes directory because that directory is in your class path.
    To add the dot you can use:
    set CLASSPATH=.;%CLASSPATH%

  • When Windows 8.1 wakes up from sleeping, the PAC Proxy can't work normally

    Hi,
    I'm using Toshiba WT8 Win8 Tablet.
    When my tablet waked up from sleeping, the PAC Proxy can't normally work on the Modern UI IE, when I reconnect the WiFi, it will be ok without any other action.
    Windows 8.1 and all drivers are up-to-date.  No any anti-virus software. 
    There is a post I asked 4 days ago but can't solve my problem: https://answers.microsoft.com/en-us/windows/forum/windows8_1-networking/windows-81-wake-up-from-sleep-lost-pac-proxy/a19efe8e-70e4-4eed-a614-f11f62562a68?rtAction=1425959337664

    Hi,
    According to your another thread, your current Tablet system is Windows 8.1, isn't it? When this probelm occurs, could desktop IE works properly using PAC Proxy?
    In addition, open Device Manager to check Wireless adapter driver settings, make sure " Allow the computer to turn off this device to save power " is unchecked.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • EO based pon_auction_headers_all can't  work  normal

    Hi all
    I created an EO named PonAuctionHeaderEO which based on pon_auction_headers_all.
    The table pon_auction_headers_all doesn't include the "LAST_UPDATE_LOGIN" attribute.
    So it cause ERROR when I commit my page.
    PonAuctionHeaderEO must include setLastUpdateLogin() method.
    How to deal with this ?
    Thanks
    Mandy

    Answered via support.

  • Why the multiple selection can't work in sub screen

    hi experts:
         when i try to use the sub-screen in the report,why the multiple selection function(SO_BCTXT) can't work normally in screen 1095:
    the coding as below.will reward points if solve this issue
    the main program in Subscreen:
    PROCESS BEFORE OUTPUT.
    module status_1005.
      CALL SUBSCREEN area INCLUDING sy-repid lv_tab_number.
    PROCESS AFTER INPUT.
      MODULE cancel AT EXIT-COMMAND.
      CALL SUBSCREEN area.
      MODULE user_command_1005.
    module user_command_1005 input.
      my_ok = ok_code.
      clear ok_code.
      case my_ok.
        when 'TAB1'.
          mytabstrip-activetab = my_ok .
          lv_tab_number = 1095.
        when 'TAB2'.
          mytabstrip-activetab = my_ok .
          lv_tab_number = 1096.
        when 'CRET' or 'ONLI'.
          perform get_bc_set
                 using
                    so_chanb[]
                 changing
                    <fs_bcsetfield> .
          leave to screen 0.
      endcase.
    endmodule. 
    in the screen 1095:
    PROCESS BEFORE OUTPUT.
    MODULE %_INIT_PBO_J.
    MODULE %_PBO_REPORT.
    MODULE %_PF_STATUS.
    MODULE %_SO_BCTXT.
    MODULE %_END_OF_PBO.
    PROCESS AFTER INPUT.
    MODULE %_INIT_PAI_J.
    CHAIN.
      FIELD  SO_BCTXT-LOW.
      FIELD  SO_BCTXT-HIGH.
      MODULE %_SO_BCTXT.
    ENDCHAIN.
    FIELD !INCBCTY1 MODULE %_INCBCTY1 .
    FIELD !INCBCTY2 MODULE %_INCBCTY2 .
    FIELD !INCBCTY3 MODULE %_INCBCTY3 .
    FIELD !INCBACT MODULE %_INCBACT .
    FIELD !INCBINAC MODULE %_INCBINAC .
    FIELD !INCLMAND MODULE %_INCLMAND .
    FIELD !INCLOPTI MODULE %_INCLOPTI .
    CHAIN.
      FIELD  SO_BCTXT-LOW.
      FIELD  SO_BCTXT-HIGH.
      FIELD INCBCTY1 .
      FIELD INCBCTY2 .
      FIELD INCBCTY3 .
      FIELD INCBACT .
      FIELD INCBINAC .
      FIELD INCLMAND .
      FIELD INCLOPTI .
      MODULE %_BLOCK_1095001.
    ENDCHAIN.
    CHAIN.
      FIELD  SO_BCTXT-LOW.
      FIELD  SO_BCTXT-HIGH.
      FIELD INCBCTY1 .
      FIELD INCBCTY2 .
      FIELD INCBCTY3 .
      FIELD INCBACT .
      FIELD INCBINAC .
      FIELD INCLMAND .
      FIELD INCLOPTI .
      MODULE %_END_OF_SCREEN.
      MODULE %_OK_CODE_1000.
    ENDCHAIN.
    in the main report
    selection-screen begin of screen 1095 as subscreen.
    enquire Data
    data l_text       type as4text.
    selection-screen begin of block b1 with frame title text-024.
    select-options :
      so_bctxt     for l_text .
    selection-screen skip 1 .
    parameters:
      incbcty1    type c as checkbox default abap_true ,
      incbcty2    type c as checkbox default abap_true ,
      incbcty3    type c as checkbox default abap_true .
    selection-screen skip 1 .
    parameters:
      incbact      type c as checkbox default abap_true ,
      incbinac     type c as checkbox default abap_true .
    selection-screen skip 1 .
    parameters:
      inclmand     type c as checkbox default abap_true ,
      inclopti     type c as checkbox default abap_true .
    selection-screen end of block b1.
    selection-screen end of screen 1095 .

    Hiii
        In main program you have dclared subscreen area.
    now First of all you have to declare a selection screen in your main program
    selection-screen begin of screen 1005 as subscreen.
    SELECT-OPTIONS s_bukrs1 for  v_bukrs.   "whatever you want in selection screen
    selection-screen end of screen 1005.
    IN PBO of your main screen (not in 1005) write
    call subscreen SUB1 including sy-repid '1005'.
    where SUB1 is your subscreen area name. And remember don't touch PBO or PAI of your 1005 screen, otherwise it will give you error. Yuo can just put text in layout of 1005 screen. but don't disturb other things.

  • Add row in Memu Event can't work

    1:I create a Master UDO
    2:Regist UDO with a child table
    3:use UDO form generator tool to generate a UDO form with xml file
    4:I use load from xml funtion to call form.
    5. Add a buttom name "Add row" and have code with Add a row for matrix 
    I have two problems
    one is,
    I can add row by press "Add row" button and I can delete a row by UDO default menu("delete Row CtrlK"). My problem is why the default menu(Add Row CtrlI) don't work? May I write code for add a row by myself?
    The other is
    When I add menueven sub(catch menueven) in program ,my "Add row" buttom can't work normally. If I remove the menueven sub from my program, the  "Add row" buttom work fine. Why? somebody help me.

    Hi Glen,
    In my case, I developed own functionality to add row for a matrix.
    I don't use 'add row' menu event actually.
    And I don't know about menu event sub problems without any source code.
    Regards,
    Hyunil.

  • Why I can not...

    Why I can not open normally PC-made Word-documents in my iMac with AppleWorks 6? Is it possible? I have Mac OS X 10.6.8.

    You will have to check to see if opening and saving in a .doc or .docx format is permitted in AppleWorks.  Since AppleWorks is legacy software it probably is not supported.

  • The adobe flash player work normal on IOS6.0

    Hi,guys,i have a zen-cart store about RGB LED Strips,recently when i use ipad browse my website,if seems the flash player can't work normal,what happened?

    Flash is dead.  Use jQuery instead.
    http://wowslider.com/
    http://nivo.dev7studios.com/
    http://basic-slider.com/
    Nancy O.

  • May be slightly simple question from a new Mac user: Why can't I quit safari? I cannot quit it from top menu bar neither to do it from dock? All other apps are working normally.

    May be slightly simple question from a new Mac user: Why can't I quit safari? I cannot quit it from top menu bar neither to do it from dock? All other apps are working normally.

    Or you can actived the right button on your magic mouse and click on they icon in the dock. then you select "stop" and it's out of your dock.
    Greetings
    *update: Sorry, my mistake! I didn't read your message correct! Sorry for the inconvience!

  • Why I can't open google maps on Safari? Everything have been working normally with my computer. But this problem with google maps I can't fix

    Why I can't open google maps on Safari? Everything have been working normally with my computer. But this problem with google maps I can't fix

    Do you have an example? I develop Google maps for Web pages and haven't had problem with Safari and its extensions, only FF which I took out all the addons and plug-ins, but it wouldn't surprise if the Google map code doesn't display the map or information for the map or doesn't work with newer versions of Safari.

  • Preview can no longer see my Canon MP540 scanner, though it had been working normally up to a few days ago.

    I am unable to scan from 'Preview'  to my Canon MP540 printer, though scanning does work using the Canon solutions menu.  'Preview' was working normally up to a few days ago and I do not understand why the 'import from scanner' option is no longer available.  Any ideas?

    Hi,
    Most computers with front and back Firewire and indeed USB ports have different controllers for them inside.
    A look in the system Preferences should confirm this (Listed as Buses at least)
    My USB layout
    Often Shutting down the computer with all periferals unplugged (cable wise) and waiting 15 minutes will get the ports and controllers to reset.
    It may pay to try this.
    Where the App is should not matter in this context.  (It does for Updating purposes)
    Is this a camera that can play back other media/Devices and convert it in to DV for onward Firewire connection to the computer ?
    Sometime they store in one format and can output in another. This allows them to act as DV converters.
    This may bear some impact on the settings on the camera.
    You said the Computer has 400/800 ports.
    Do you mean it has one of each ?
    Or do you mean you are using an Adapter and running some devices at 400 and some at 800 ?
    It is likely that the camera is neither (System Profiler should tell you)
    You seem to be clearly saying nothing has changed from when it worked
    I am just exploring ideas.
    Is there any chance the Scratch disk is nearly full and is sending lots of data back and forth to see what it can drop/lose?
    Has the app that uses it been shut down recently.
    Have you increased the number of Undos that it can do ? (This will store more Scratch data)
    Have you stored anything else on that disk that is in use or takes up a large portion of the space ?
    9:03 PM      Sunday; April 24, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.7)
    , Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously
    >

  • Why the capture audio program can't work in the phone?

    Our capture audio program witch used MMA can run normally on the WTK simulator, but when we down the program into Motorola V303, it can�t work! The document says V303 support JSR-135, why it can�t capture audio by use MMA? The program also can�t work in Nokia 6600! Please give some suggestions!

    Hiii
        In main program you have dclared subscreen area.
    now First of all you have to declare a selection screen in your main program
    selection-screen begin of screen 1005 as subscreen.
    SELECT-OPTIONS s_bukrs1 for  v_bukrs.   "whatever you want in selection screen
    selection-screen end of screen 1005.
    IN PBO of your main screen (not in 1005) write
    call subscreen SUB1 including sy-repid '1005'.
    where SUB1 is your subscreen area name. And remember don't touch PBO or PAI of your 1005 screen, otherwise it will give you error. Yuo can just put text in layout of 1005 screen. but don't disturb other things.

Maybe you are looking for

  • How can i Change Text Color in table

    How can i change the text color i table, the true becoming GREEN, and the text in Fals becoming RED. Someone can help me to resolve this problem with a sample, because when i run the program all text becoming green in (TRUE) and than when i chang it

  • BPM is in Process (Not completed after 3 days also)

    Dear All, I have an existing scenario, which was working fine. The scenario is File to IDoc, wherein picking up a file and splitting into multiple IDocs. The BPM is working out; able to send IDocs but not all the ones. The bpm is still in process it

  • How to make my website logo show as the new Yosemite favourites icon?

    I've been searching high and low for the answer to this question so I hope someone maybe able to help me. When you click in the address bar in safari using Yosemite you get the icons from the websites that you have as a favourite. Some, like Facebook

  • Insert from scanner - all menu items grayed out (Acrobat XI)

    I can create documents from the scanner (e.g. Edit > Create > PDF from Scanner), but I cannot insert pages directly from the scanner (e.g. Tools > More Insert Options > Insert from Scanner). Any suggestions why that might be the case? I am running Ve

  • BRF plus with WebDynpro ABAP

    Hi Experts, Please suggest some documents or  blogs on BRF plus in Webdynpro ABAP.  Also are there any prerequisites before starting with BRF plus. Thanks and Regards Pranav