Open the browser window - works does not correctly.

I click on the thumbnail on my site, I get an enlargement in a new window. Unfortunately, the home page itself redirects also to the enlarged image. You can see it at www.real9.com

I want the home page to stay where it is, but the biggest window to open it in a new window. I used the browser open in Dreamweaver window to define this link toward the top, but its actually not what I want too.

Help would be very appreciated, I tried to fix this problem, but without success.

Thank you.

On Sunday, April 8, 2007 21:01:21 + 0100, djinn
wrote:

> In fields for the link rather than a link to the file or image - enter
> this...
>
> javascript:;

It's a way to manipulate. My preference is to leave the link in
It and add a false return after the OnClick. In this way the
link will always work if JavaScript is not available.

To implement your onclick for the link looks like this:

onclick = "MM_openBrWindow (' pics/inside_large.jpg ',' LargePicture ',' width is 640, Height = 480')" "

Change to:

onclick = "MM_openBrWindow (" images/inside_large.jpg ',' LargePicture ',' width = 640, height is 480'); Re false round»

Attention back to the line. It's all on one line.

Gary

Tags: Dreamweaver

Similar Questions

  • call to the Ajax process work does not correctly

    Hi guys Apex.

    I am new to apex and need a little help with a bug in my next javascript.

    I have an anonymous pl/sql block that shows me a list of products, so that the user can enter a few quantityes on those desired.

    I got another part of HTML that contains the JavaScript in this region, I check the quantity selected by the user (account product id and quantity entered) and the end of the page, there are 2 buttons.

    The first is to generate totals of runing, it works perfectly.

    The second add the products in the Collection (calling a callback procedure Ajax ADD_PRODUCTS) and finally in the same process of button, I save the order until the final table on my db, the latter a speech to another process to recall Ajax calles RECORD.

    The bug that I have is that the process is not save the entire products on my database, a few times for example if I get quantities for 10 products, the process saves me only 8 or 7, it's a random outcome.

    I looked at the code and seems that the problem is on my ADD_PRODUCTS process, because on my javascript where I call him, I have displayed on the screen, the total order quantity and runnign and it shows perfect, always.

    I use the Application Express 4.2.2.00.11 on DB SE

    next is:

    1 - Javascript

    2 - ADD_PRODUCTS ajax

    3 - RECORD Ajax

    Thanks for the tips,

    MJ

    -------

    1 JavaScript

    -------

    < ! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 / / IN" "http://www.w3.org/TR/html4/strict.dtd" > ""

    < html >

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf - 8 ">

    Totalizar < title > < / title >

    < script type = "text/javascript" >

    $(function () {})

    () $("#Calculate").click

    Mueve el valor al campo of amount

    function () {}

    var total = 0;

    var total_qty = 0;

    () $("input[name=f_qty]").each

    function () {}

    var amount = $(this) .val ();

    var productId = $(this).parents('tr') .find ("input [name = f_prod_id]") .val ();

    If (amount! == ") {}

    price var = $(this).parents('tr') .find ("input [name = f_unit_price]") .val ();

    var prodtotal = (quantity * price);

    Total = total + prodtotal;

    total_qty = total_qty + 1;

    }

    }

    );

    $('#printHere').html (decimalizer (total));

    $('#printHereqty').html (total_qty);

    }

    );

    funcion para formatear el resultado one shark 2 decimal places

    function decimalizer (input) {}

    var Test1 = 0;

    var test2 = 0;

    entry = Math.round(input * 100);

    If (input / 100 == Math.round(input / 100)) {}

    Test1 = 1;

    } ElseIf (entry / 10 == Math.round(input / 10)) {}

    Test2 = 1;

    }

    If (test1 == 1 & & test2 == 0) {}

    return (input / 100 + ".") 00');

    } ElseIf (test1 == 0 & & test2 == 1) {}

    return (input / 100 + '0');

    } else {}

    return (input / 100);

    }

    }

    -Starts process of application del pedido.

    Apply el Pedido

    () $("#Save").click

    -Add products to the collection

    function () {}

    () $("input[name=f_qty]").each

    function () {}

    var amount = $(this) .val ();

    var productId = $(this).parents('tr') .find ("input [name = f_prod_id]") .val ();

    If (amount! == ") {}

    $("#P1_CANTIDAD_PEDIDO").val (quantity);

    $("#P1_PRODUCT_ID").val (productId);

    Apex. Server.Process ("ADD_PRODUCTS", {}

    pageItems: ' #P1_CANTIDAD_PEDIDO, #P1_PRODUCT_ID.

    });

    }

    }

    );

    PlaceOrder();

    });

    -Add los productos end has the Collection-

    function placeorder() {}

    Apex. Server.Process ("SAVE", {pageItems: "#P1_CODIGO_CLIENTE, #P1_TIPO_CLIENTE"});

    var total = 0;

    var total_qty = 0;

    Alert ('Medal created');

    Poner en 0 las cantidades digitadas

    () $("input[name=f_qty]").each

    function () {}

    var amount = $(this) .val ();

    If (amount! == ") {}

    $(this) .val ('');

    }

    }

    );

    $('#printHere').html ((total));

    $('#printHereqty').html (total_qty);

    }

    });

    < /script >

    < / head >

    < body >

    < div id = "total" > < / div >

    < p >

    < strong > ORDER TOTAL:

    < span id = "printHere" > < / span >

    < facilities >

    < /p >

    < p >

    < strong > ORDER PRODUCTS:

    < span id = "printHereqty" > < / span >

    < facilities >

    < /p >

    < p align = "center" style = "" clear: both; ">"

    < button type = "button" style = "' make-weight: bold;background-color:lightgray;margin-left:auto;margin-right:auto;display:block;margin-top:0%;margin-bottom:0%" id = 'Calculate' > total 120 Hz < / button > "

    < /p >

    < p align = "left" style = "" clear: both; ">"

    < button type = "button" style = "' make-weight: bold;background-color:lightgray;margin-left:auto;margin-right:auto;display:block;margin-top:5%;margin-bottom:5%" id = "Save" > order < / button > "

    < /p >

    < / body >

    < / html >

    -------

    2 ADD_PRODUCTS

    -------

    Start

    apex_collection.add_member (p_collection_name = > 'ORDER',)

    p_c001 = >: P1_PRODUCT_ID,.

    p_c003 = > sib_precio_cte_prod ('001 ', ' 1776',: P1_PRODUCT_ID).

    p_c004 = >: P1_CANTIDAD_PEDIDO

    );

    END;

    -------

    3 SAVE

    -------

    declare

    number of l_order_id;

    l_count number;

    l_customer_id varchar2 (30): =: P1_CODIGO_CLIENTE;

    Start

    -Insert a row into the table Order Header

    insert into cab_orders (customer_id, order_total, order_timestamp, user_name)

    values (l_customer_id, upper(:APP_USER), null, systimestamp) back into l_order_id order_id;

    commit;

    insert into det_order (order_item_id, order_id, product_id, unit_price, quantity)

    Select null, l_order_id, to_number (c001), to_number (c003), to_number (c004) from apex_collections where collection_name = "ORDER";

    commit;

    -The value of the P1_numero_orden order point which was placed just

    : P1_numero_orden: = l_order_id;

    -Truncate the collection once the order has been placed

    apex_collection.create_or_truncate_collection (p_collection_name = > 'ORDER');

    l_count: = APEX_COLLECTION. COLLECTION_MEMBER_COUNT (p_collection_name = > 'ORDER');

    : P1_cantidad_registros: = l_count;

    end;

    It is no doubt a few classic miss the A in AJAX. When execute you a loop on the orders you make an ajax call for each, and after the loop, you trigger the placeorder ajax call. However, it might be that ajax add_products calls have not finished yet at the point where you call the placeorder call. This would explain the apparently random quantity of the entered orders: orders may simply not have made it in time to the collection.

    Another you're not processing orders where the quantity has not been met, but this probably isn't the cause since you mention that you have filled with quantities.

    The solution is to: have / do these add_order synchronous requests or B / keep them asynchronous and learn something new, called promises

    A crash the browser because do you wait before the end of his run - but it's maybe not really noticeable so would find you acceptable.

    apex.server.process("ADD_PRODUCTS", {
        pageItems: "#P1_CANTIDAD_PEDIDO,#P1_PRODUCT_ID"
    },
    {async: false})
    

    B is more interesting. You have a variable amount of ajax calls and want to wait until they have all completed in order to do something else. Promise interfaces provide this feature in the async environment and jquery has its own implementation of it. I suggest Googling it and read on this topic - its very interesting and it will be part of the future (alone, today!)

    $("#Save").click(
        // ----- Agregar los productos a la collection
        function () {
            //array to hold all the ajax requests
            var requests = Array();
            $("input[name=f_qty]").each(
                function () {
                    var quantity = $(this).val();
                    var productId = $(this).parents('tr').find("input[name=f_prod_id]").val();
                    if (quantity !== '') {
                        $("#P1_CANTIDAD_PEDIDO").val(quantity);
                        $("#P1_PRODUCT_ID").val(productId);
                        requests.push(
                          apex.server.process("ADD_PRODUCTS", {
                              pageItems: "#P1_CANTIDAD_PEDIDO,#P1_PRODUCT_ID"
                          })
                        );
                    };
                };
            );
            //when all ajax calls are completed act on the done callback
            var defer = $.when.apply($, requests);
            defer.done(function(){
              placeOrder();
            });
        });
    

    Here are some links with relevant information on this solution:

    Apex.Server.process JavaScript APIs

    The return value of this function is a jqXHR object. This is required to use the interface of the promise! Once again at the apex, the hats of the team for this great new feature ajax

    jQuery.Ajax. jQuery API Documentation

    Documentation on the jquery ajax function. It contains information about the jqXHR object and shows all the options available. For reference.

    Wait until any jquery ajax request are done? -Stack overflow

    jQuery when troubleshooting with a variable number of arguments - Stack Overflow

    StackOverflow questions / answers lets get this solution. More info in them!

    jQuery.when () | jQuery API Documentation

    When interface $ you see used

    https://developer.Mozilla.org/en-us/docs/Web/JavaScript/reference/Global_Objects/function/apply

    Information about using "apply" If you've not seen before. It has been used in the solution of SO due to the variable number of arguments - very interesting!

  • Several digital signatures by the same person works does not correctly

    I was tasked to automate our voluntary process.  I converted the forms to PDF using Adobe DC forms.  My problem is that there are several signature lines, even if only one person is signing the documents (think of a mortgage application).  Whenever I digital sign a form page, asked me to save him.

    How can I have a volunteer sign multi-page PDF without saving each time?  I then want the signed form sent via e-mail.

    Thank you

    Donna

    You must use a stamp for this.

  • with firefox 43 yahoo and yahoo mail doesn't work does not correctly

    With the help of win 7 and firefox 43.0.1, I have 4 computers and now all have problems with yahoo and yahoo mail doesn't work does not correctly. Loading sites, but most of the features are missing and clicking on what whether changes to the lists of text. I have disabled flash / anti-spam etc., cleared cookies and cache and even firefox loaded down once again and have upgraded, no help. I'm forced to use IE now.

    I tried Yahoo support, they said try Firefox... In any case, it's Firefox and I found a solution using the 'Refresh Firefox' button. Whatever the problem was fixed on two of my computers so far. Got to update my setting again but it's 10 m, compared to the 10 hours I spent trying all that is nothing.

    Thanks for the help!

  • Everytime I open the creative cloud it does not load. Is there anything I can do about it.

    Everytime I open the creative cloud it does not load. Is there anything I can do about it.

    Untitled.jpg

    Hi Priscilla,.

    Please refer to the threads below where this issue has been addressed:

    New application Cloud Creative unusable: it is empty!

    Creative cloud is empty window why?

    Re: Empty opening creative cloud app

    Kind regards

    Sheena

  • Bluetooth doesn't work does not correctly after the installation of Windows Vista Home Premium Service Pack 2 (SP2) on Dell laptop

    I searched this forum and almost all resources on the net for days now nothing works.  Give the message to a thread more appropriate that I couldn't find one that is truly representative and am a newb at this.

    Summary of the problem: Bluetooth connectivity does not work properly after the window Vista Home Premium Service Pack 1 and 2 installation (SP 1 and 2).

    My system:

    Laptop Dell Inspiron E1705, 32-bit Winows Vista Home Premium SP2, Dell Wireless Bluetooth 355 Module + EDR 2.0

    * My system was purchased in 2006 with Windows XP, but was not entitled to a free Windows Vista Home Premium Upgrade I did. I installed Windows Service Pack 1 and 2 about a week ago.

    Problem: After downloading and installing the Windows Vista Home Premium Service Pack 1 and 2 (SP 1 and 2), my system does not recognize my Bluetooth (a touch of Sprint also) device known as the HTC Vogue.  I stress that I have not had any problems with this device before downloads.  I can't revert to the pre - SP State 1 and 2 because my system restore does not have these points more.

    I have read several posts on various sites about people having similar problems with Bluetooth connectivity after the Vista SP 1 and 2 facilities.  The problem is obviously the need for an updated driver.  I went to the site to download driver Dell and the Blueooth only updates available are the following. (Note: these drivers all date from 2006 and 2007).

    http://support.dell.com/support/downloads/driverslist.aspx?c=us&cs=RC956904&l=en&s=pub&SystemID=INS_PNT_P4_9400&os=WLH&osl=en&servicetag=&catid=-1&impid=-1&deviceid=12084&libid=5&typeid=-1&dateid=-1&formatid=-1&source=-1&releaseid=R159805&formatcnt=1&vercnt=1

    I had these installed before the SP 1 and 2 have been installed and they worked very well. After the upgrade, these drivers do not work.  They won't recognise BT devices.  I tried to upgrade the drivers by using update Broadcom suggested below it, but an error of following installation to contact Dell.

    http://www.Broadcom.com/support/Bluetooth/update.php

    I contacted Dell via e-mail and on the phone, but they want to charge me $60 for a one time service call just to talk about the problem because my warranty has expired. Provide updated drivers is not a problem of security in my opinion.  Even after explaining the situation, their continuous support to just send me the link to download Driver Dell above with out-of-date drivers.  I guess that's what they are charged to do, they do not have to admit a problem of compatibility.  This obviously the same link they would charge $60 to send.  I explained that I need just a Bluetooth Driver from Dell to at least version 6.3.   Needless to say, I will never buy another Dell product.

    On my end, I tried to uninstall my current drivers and then by installing a newer driver to support Gateway (Version 6.2.1.500 for and Acer).  This allows me to install some parts of this update and the update Broadcom. However, it is not a perfect installation and expires after about 90% saying "this update is not for this system" because it is the gateway not Dell to be provided.  Displays the version of the driver on my computer is Version 6.3.5.430 after doing this, but it is not a complete installation and some features are not available.

    Does anyone have experience with this issue? I would like to have a link with some bluetooth drivers generic Version 6.3 type which will allow me to use the Broadcom link to upgrade to the last version that works with Vista SP 1 and 2.

    Thank you for your help.

    Support FREE from Microsoft for SP2:

    https://support.Microsoft.com/OAS/default.aspx?PRID=13014&Gprid=582034&St=1

    Free unlimited installation and compatibility support is available for Windows Vista, but only for Service Pack 2 (SP2). This support for SP2 is valid until August 30, 2010.

    Microsoft free support for Vista SP2 at the link above.

    See you soon.

    Mick Murphy - Microsoft partner

  • Update KB976902 now the mouse doesn't work does not correctly

    I had the KB976902 recently updated on 2 of the 3 computers and 2 who got now have a mouse that does not correctly.  The computer number 3 does not have the update and still works fine.  All three are almost identical hardware and software and have legitimate versions of windows 7.

    The problem of the mouse made play almost almost impossible. Left click crashes, lag mouse click one or two times when I I try to do a restore from the left eventually drag a shortcut of the thing, I clicked on and don't know how or why.

    I did a restore on a single computer, but it did not help.

    Norton and McAfee applications are notorious for not to uninstall (or upgraded) themselves. Since you are not sure, I'll have to have executed two removal on all of the computers in question tools.

    NB: If a step said to reboot, reboot!

    1. download the Norton Removal Tool, save it to your desktop: ftp://ftp.symantec.com/public/english_us_canada/removal_tools/Norton_Removal_Tool.exe

    1B. download the tool McAfee Consumer Product Removal, save it to your desktop: http://download.mcafee.com/products/licensed/cust_support_patches/MCPR.exe

    2. close all open applications (that is, anything with an icon on the taskbar).

    3. right click on the file saved in # 1 above and select run as administrator to run the utility. DO TAP not your keyboard until the race ends, then restart.

    3B. right-click on the file saved in # 1 b above and select run as administrator to run the utility. DO TAP not your keyboard until the race ends, then reboot again.

    4 reset the IE8 advanced settings by http://windows.microsoft.com/en-US/windows7/Reset-Internet-Explorer-settings

    5. open Internet Explorer 32-bit (only!) to http://support.microsoft.com/kb/971058 & run it in DEFAULT and modes difficulty then AGGRESSIVE. [1]

    6. restart a last time & test.

    ~~~~~~~~~~~~~~~~~~~~~~~~
    [1] full Disclosure: the difficulty operating in AGGRESSIVE mode will remove your update history but not the list of installed updates.

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • PrintScreen of Windows 7 doesn't work does not correctly

    Not sure if it is in the correct category but... I downloaded Windows 7 Pro 64 - bit from my school DreamSpark account and installed on my computer, which is pretty old about 5-6 years.  There should not be anything wrong with the copy of Windows, it is not a debug or whatever it is, it's just the regular retail copy.  Almost everything works fine except for a few small quirks/bugs.  First of all, I can't preview images using the Windows Viewer, it displays simply all the rectangles fully black images.  However, if I open an image to preview in Image Viewer, and then click full screen/slide show then it displays the images as should be in full screen.  And then exit fullscreen Gimme the picture in black and white.  Not a particularly serious issue just annoying really.  In addition, perhaps in relationship I guess, I recently discovered that my Windows PrintScreen does not work.  When I hit PrintScreen, or any variation of the PrintScreen key combination, it captures just a large black rectangle, as if my entire screen showed only in black.  I tried to paste my Clipboard into Paint and Photoshop and both give me a black monitor rectangle size, it's really weird.  I even tried a third-party screen capture software and it's the same thing and I can't find anything even close to relevant on the internet.  Anyone have any ideas, anything is appreciated.

    Another separate problem: when I turn on my computer, it will sometimes, not often but enough times to be meaningful, decide to not turn it on and recognize my keyboard and I have to restart and I hope that he do it again.

    Last thing, I swear (I should probably do different missions).  My computer, as in my windows, does not sleep properly.  Sometimes, he won't in the mode 'sleep' and every time I try and wake him up it gives me a white, white I think, screen instead of the login screen.  If I press space to unlock my computer, because there is no password, it will take me on my desk but he will not recognize my internet connection ethernet or my desktop speakers and I have to restart my computer to get these features.  Once again a lot of what I think are really weird problems.  Any ideas on any of my problems is greatly appreciated.

    HI -.

    Run the Windows 7 Upgrade Advisor to see if any conflicts are listed:

    http://www.Microsoft.com/en-US/Download/details.aspx?ID=20

    Check the support site of your system manufacturer for a BIOS update and other updates to the device driver for Windows 7.

    Kind regards...

    jcgriff2

  • The mouse scroll wheel doesn't work does not correctly?

    Win 7, Microsoft Wireless Mouse 5000
    Everything worked fine but I had to reformat & return my computer again the conditions of the plant.  I have add the correct software for my mouse.  Now, when I use the scroll wheel, it moves the screen a full coming soon page (spreadsheet, word processing, etc.).  The unique thing is that I can say that she does so ONLY with products at Microsoft (Excel & Word so far), with any other software, it seems to work as it should (a few lines at a time).  No one knows what is the cause?  Help please.

    Thanks in advance... Bob

    Hello

    1. have you checked if the problem occurs with a different mouse?
    2. don't you make changes on the computer before the show?


    You can try the steps provide in the supplied knowledge base articles and check if that helps:
    Troubleshoot a wireless mouse that does not correctly
    http://support.Microsoft.com/kb/321122
    Troubleshoot the incidents of the response to the mouse or wireless keyboard
    http://support.Microsoft.com/kb/838398
     
  • Onboard LAN doesn't work does not correctly after installing Windows 8.1

    So for my h9 - 1120t Phoenix office I decided to replace Windows 7 with Windows 8.1.

    The transition went very well, but I'm having a problem with the onboard LAN. I'm going to stay connected to the internet for about 10 minutes, then the computer disconnects and will not detect at all connections.

    I also used a USB LAN adapter and a job without problem so I think that there is a conflict of driver with Windows 8. Is there a way to fix this?

    Go to the Device Manager
    Click right Wi - Fi adapter
    Click Properties - to open the Properties window
    Click the power management tab
    Remove checkbox allow the computer...

    You may also need to change the access point/router settings

    Checkurtech

  • Why is to speak the text doesn't work does not correctly?

    I get a circle turning for a while and no results. He used to work. I have the latest OS 9.2.1. I can see the memory. I have hard reset (home + power on button). I have reset the settings. Nothing helps.

    Hi, PBoesmans.

    Please visit Apple support communities.

    I understand that the option to dictate does not work with Messages on your iPhone 5.  Because force applications to close no has not solved the problem, please go through the troubleshooting steps below.

    Help with Siri

    • If "Hey Siri" does not work, make sure that "Hey Siri" is turned on under settings > general > Siri.
    • Could Siri say, "Sorry, I have problems connecting to the network", or "Try again in a few moments." It is probably a problem with the network. Check your Internet connection and try again later.
    • If Siri is not available or responding to questions, see the next section.

    If Siri is not available, or do not understand or answer questions

    After each step, see if you still need help:

    1. Make sure that your iOS device has an Internet connection via Wi - Fi or cellular data.
    2. On your iOS device, make sure that Siri is enabled in settings > general > Siri.
    3. Restart your iPad, iPhone or iPod touch.
    4. On your iOS device, go to settings > general > Siri and turn off Siri. Then turn on again.
    5. Ensure that the microphones on your device are not blocked. For example, if your device has a protection case, remove it.
    6. If you use an iOS device, try to use Siri with headphones. If the works of Siri, get more help with the microphones on your device.
    7. Contact Apple support.

    Use Siri on your iPhone, iPad or iPod touch

    See you soon

  • How I would get the background of the body element to open the browser window wide

    How I would get the background of the body element to open wide the browser window? I've heard that using an HTML tag or CSS rule that I can put across a background which is placed in the body element without using javascript is that true?

    You could, but why, (she also would work properly, as it is)?

    This size not your background image and that only the window correspond to your design, not your design to adapt to the window. If you want your design to fit a window much easier and not javascript dependent way would be to use page css liquid layouts, (as I said earlier, the background image will not develop unless you use values of %).

    For liquid layouts testing - http://www.adobe.com/devnet/dreamweaver/articles/bk_dwcs4_mastering_css.html

    PZ

  • WIFI doesn't work does not correctly after driver update

    I have a DESIRE 4 laptop 1023tu with operating system Windows 8 PRO. My WIFI works does not properly after the update drievr.

    Problems...

    1. When you try to connect to a wifi hotspot the quick adapter turns off and allows the card instantly

    2. after connected, sometimes no internet access and the problem turns off only after reconnecting to the netwrok after setting off.

    If the update doesn't work not for you then do as I explained in my previous post and roll back to the previous driver. This philosophy can be applied to all updates.

    If there is no pressure or emerging reason to update to your PC or laptop works just great... do not update. (this is especially true when it comes to an update of the BIOS)

    For your question #2, the problem could be your wireless (modem, router or access point) which causes the connection dropped.

    Best regards
    ERICO

  • Touch Pad doesn't work does not correctly? HP-Envy-15Q004TX

    Hello
    It is the first HP product I've ever owned, I'm pretty happy with the laptop, outside of windows 8.1 However, is not the concern of this post. My mouse pad stops working when I press a key, as in if I press 'W', while trying to move the mouse on the screen then followed mouse stops. So it is impossibe to play all kinds of games and making it really difficult to do anything else and it's just embarrassing. The only button that does not affect this is the key of the SIFT.

    I have no idea what to do, y at - it a setting or something like that or I'm just miserable?

    Thank you

    puffm wrote:

    Hello
    It is the first HP product I've ever owned, I'm pretty happy with the laptop, outside of windows 8.1 However, is not the concern of this post. My mouse pad stops working when I press a key, as in if I press 'W', while trying to move the mouse on the screen then followed mouse stops. So it is impossibe to play all kinds of games and making it really difficult to do anything else and it's just embarrassing. The only button that does not affect this is the key of the SIFT.

    I have no idea what to do, y at - it a setting or something like that or I'm just miserable?

    Thank you

    Hello

    Try to disable the check of Palm, this might help you: Touchpad PalmCheck - turn on or off in Windows

    Thank you

  • Why is one of my 4 5893 Modules doesn't work does not correctly?

    Hello

    This is the configuration of my HW and SW:

    LabView 2013 SP1

    1 x cRIO 9076

    4 x NI 9853 CAN Modules

    CAN0 - 1000 Kbps, entry timeout = 0, OutputTimeOut = 10000, Module clock: 20 MHz

    CAN1 - 500 Kbps, entry timeout = 0, OutputTimeOut = 10000, Module clock: 20 MHz

    I worked on a program for a test system, where each Module 9853 control two devices (CAN0 and CAN1), the same type of systems is controlled by other 9853 3 Modules in parallel.

    So basically, I use exactly the same functions for each module. So far, everything has worked correctly on module 1, but now that I started to test all other modules I have the problem that Module 3/CAN0 does not correctly read the information.

    While watching the FPGA façade, I see that each 10000ms one value is read, but only on that ONE module (frames are sent every 1ms from my unit)

    I tested the HW itself using the included examples and it works correctly, the only difference is that the example used only 2 Modules, one to send data and the other to receive it.

    I included my FPGA program as an image, I really don't think there is a problem with my RT SW, because all the other modules are working properly. Basically, my SW FPGA bed CAN Modules and puts the information in a FIFO, if there is an error (no information), it will make a loop once more and check again.

    Thanks for your help

    I solved the problem, it was an error of configuration on my side.

    The entry for Module3 CAN1 time-out was set up NOT as 0ms and 10000ms as I thought! , so that was my reading for DUT3 loop run only every 10000ms.

Maybe you are looking for

  • Impossible to empty the entire iCloud!

    Hello to you all. I'm having a problem with iCloud is not not able to clear the entire space after deleting. I delete all my back ups of my three devices and after 'turn back up' to clear all but iCloud gives me only 1.4 GB of free space and 3.6 GB o

  • beep the speaker

    Hello I have a compaq PC running XP with service pack 2 and an AMD processor. I used safe mode to create a new password because I wasn't able to connect with my old password. After I stopped and turn on my computer, there is a sound coming from the s

  • Re the ultimate software for windows 7

    My windows 7 is not genuine I can spend in windows 10 and if so how?

  • OFR AP Accelerator project

    Hi allI am a newbie in this world and would work on project Oracle AP invoice. I read the following documentation and now have a more of how this process works.Project Solution Oracle APThe designer user's GuideHowever, I still need two or three clar

  • How to fix the error in the 'applications' Section in Adobe Creative cloud?

    I downloaded and reinstalled Adobe Creative Cloud several times and it says: error in Section Download Apps all the time and I can't fix it! Someone knows what to do?