MaxW and maxH Not working with interactive image

I do not understand why designer is totally ignoring my max settings and is letting the images grow to thier full size.  If I only expand H it creates a image field as large as the image is, but the image stays the same size and its always off center.
Basically i want somone to be able to click on the image field and insert thier own image and have the image grow until it fits the box perfectly.  Also is there a way to center images inside imagefields?
here is the code I am using.

I do not understand why designer is totally ignoring my max settings and is letting the images grow to thier full size.  If I only expand H it creates a image field as large as the image is, but the image stays the same size and its always off center.
Basically i want somone to be able to click on the image field and insert thier own image and have the image grow until it fits the box perfectly.  Also is there a way to center images inside imagefields?
here is the code I am using.

Similar Messages

  • Elements 10 canvas not working with tiff images; works fine with jpegs. What to do?

    Elements 10 canvas not working with tiff images; works fine with jpegs. What to do? It does not allow me to add a colored canvas, only a blank canvas.

    Perhaps some of the tiffs are already layers.
    In other words, since jpegs don't support layers, they all ways open with one locked background layer, but the tiff format does
    support layers so the tiffs don't have to have a locked background layer and can already be a regular layer that supports transparency.
    For the tiffs you could add a new color fill layer below and use the color you want the enlarged canvas to be.
    On pse 10 look at the bottom of the layers panel for the new adjustment of fill layer icon

  • S10-3t bluetooth and wireless not working with windows 8

    S10-3t bluetooth and wireless not working with windows 8. I tried everything but doesn't work at all. I don't know where to find the new drivers that are comatible with windows 8 ???!!! please help me to solve this problem because i tried everything....

    Do you still have your windows7 install files ? 
    ( installation image is usually in LENOVO_PART OKRBackup/Factory ) ? I lost them :\
    if yes I fear you have to enable it in win7 and then use it in win8
    http://rzr.online.fr/q/lenovo# g470 s103t (Please Contact me if your s10-3T is booting win7 or support bluetooth, 3g)
    Lenovo S10-3t | Model Name : 0651 | Mfg Date: 2010/06/08
    Lenovo G470 | Model Name : 20078 | M fg Date: 11/03/23 | BIOS: 40CN23WW(V2.09) 06/20/2011 | CPU: i5-2410M | Linux version 3.3.4lenovog470+ (root@lap) (gcc version 4.6.3 (Debian 4.6.3-4) ) #8 SMP Tue May 1 10:23:48 CEST 2012
    OS:GNU/Linux/Debian

  • HT4623 Why do my iPhone cords for my 5 say it is not certified and may not work with this device? It's the same cord that came with my phone. The only difference is the iOS7 update.

    Why do my iPhone cords for my 5 say it is not certified and may not work with this device? It's the same cord that came with my phone. The only difference is the iOS7 update.
    Maps took me to the completely wrong side of town for a long standing business in town.

    Hello margmcarlson,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Troubleshooting iPhone, iPad, and iPod touch accessories
    http://support.apple.com/kb/TS2634
    Restore iPhone, iPad, or iPod touch to its factory default state. You should rarely need to use this step with an accessory issue.
    Best of luck,
    Mario

  • Mistakenly opened all the folders in my library of music and the Finder stopped working. Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing they reappear

    mistakenly opened all the folders in my library of music and the Finder stopped working.
    Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing will reappear

    mistakenly opened all the folders in my library of music and the Finder stopped working.
    Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing will reappear

  • Iphone and ipad not working with USB3?

    for some 3 months now, when I connect my iphone or ipad to the pc nothing happens.
    I tried to look it up in the device manager and it said: Apple Mobile Device USB Driver is an older USB device and might not work with USB3.0
    Plug the device into an available USB2.0 port and click next. Otherwise, click cancel.
    Anyone had the same problem? Any solution that doesn't require being a computer engineer?
    Thanks

    nothing else connected,
    I used to simply plug the iphone or ipad and a folder will open giving me choices of what to do (open the device, copy pictures...) nothing happens anymore on both ipad iphone, I can't access them to copy the pictures, videos...

  • Drag and Drop not working with spark HGroup with code

    Can anyone tell me why my HGroup won't fire the dragEnter dragDrop and DragOver events?
    Here is the sample code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import mx.core.IUIComponent;
                import mx.events.DragEvent;
                import mx.managers.DragManager;
                private function dragEnterHandler(e:DragEvent):void {
                    DragManager.acceptDragDrop(e.currentTarget as IUIComponent);
                private function dragOverHandler(e:DragEvent):void {
                    DragManager.showFeedback(DragManager.COPY);
                //user drops src onto target, so re-parent the src to the target
                private function dragDropHandler(e:DragEvent):void {
                    var img:Image = e.dragInitiator as  Image;
                    var newImg:Image = new Image();
                    newImg.load(img.source);
                    var grp:HGroup = e.currentTarget as HGroup;
                    grp.addElement(newImg);
                private function mouseDownHandler(e:MouseEvent):void {
                    DragManager.doDrag(e.currentTarget as IUIComponent, null, e);
            ]]>
        </fx:Script>
        <s:layout>
            <s:HorizontalLayout />
        </s:layout>
        <s:Panel width="50%" height="100%" title="Drag me">
            <mx:Image source="http://www.google.com/intl/en_ALL/images/logo.gif" mouseDown="mouseDownHandler(event);" />
        </s:Panel>
        <s:Panel width="50%" height="100%" title="to Here">
            <s:HGroup width="100%" height="50%" dragEnter="dragEnterHandler(event);" dragDrop="dragDropHandler(event);"  dragOver="dragOverHandler(event);" />   
            <s:HGroup width="100%" height="50%" dragEnter="dragEnterHandler(event);" dragDrop="dragDropHandler(event);"  dragOver="dragOverHandler(event);" />   
        </s:Panel>
    </s:Application>

    Derek,IE11 is having some compatibility issues with the share point.Apart from IE11,it should work on IE10,9 and Firefox and chrome as well.
    Please check the links below that explains the issues with IE11 and the functionality of Drag and drop and limitations as-well.
    1.Since SharePoint 2013 fully support IE 32-bit version above 7, there might be compatibility issue with other browsers. I’d recommend you use IE 8,9,10 32-bit for optimal Performance.
    2. Open the same document library in Internet Explorer as this functions does not work with Firefox or Chrome by default
    3. Make sure the IE (Internet Explorer) Version should be 32-bit and not a 64-bit
    http://expertsharepoint.blogspot.de/2014/08/issues-with-sharepoint-2013-and.html
    http://expertsharepoint.blogspot.de/2013/12/how-to-upload-multiple-documents-in.html
    http://expertsharepoint.blogspot.de/2013/12/sharepoint-server-2013-drag-and-drop.html
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • Appletv remote app and airplay not working with iphone 4S

    I have the latest appleTV.  I have the remote app loaded onto my ipad3 and iphone 4S.  The app is not working with iphone 4S, nor do I get the airplay icon, hence I can't mirrior my phone on appleTV.  It used to work.  I have deleted and reloaded the app, and still nothing.  It worked fined until a month ago or so.  I have enabled home sharing.
    The app and airlplay are working just fine with the ipad3.  I have the ipad and appleTV hooked up to my router using 5Ghz, and the iphone only connects to the 2Ghz network on the same router.  I don't think this is the issue, because it worked before.
    Also, when I click on the remote app on the iphone, to add an itunes library, a code pops up on the phone, which I enter into itunes on my Win7 PC.  Nothing seems happed on the computer when I enter the code.  Could this have anything to do with recent appleTV or itunes updates?  Any possible solutions?

    It seems like I am having the same problem.
    I have the latest AppleTV 1080, imac 27", ipad, ipad2, 2 iphone 4, all with the latest iOS. After I have the AppleTV connected, a few problems showed up:
    (1) ipad plus iphones cannot airplay photo to AppleTV. After the play button and the grey screen displayed "the playing msg on AppleTV", nothing happened. it is the same for ipad/iphone.
    (2) iMac not Airplay to AppleTV
    (3) Airplay Mirroring not working
    The following are done:
    - Home sharing enabled
    - To test the devices are connected. I set a passowrd for Airplay and the ipad/iphone both requested for it so they are network and devices are ok

  • Photoshop CS2 will not work with RAW images in the Minolta DimAge A2.  It use to work fine

    I have used Photoshop CS 2 with my DimAge A2 for over 5 years in the RAW format.  Now it will not work with RAW with my camera.  I am using Vista 64.Any answers ?  Thanks

    It would seem to me that you have probably had to reinstall Photoshop CS 2.  If that is the case, then you should download and install Camera Raw 3.7.  The version that was on your install disk was updated several times.  And one of those updates probably included support for your camera.  Install ACR 3.7 and see if that helps.

  • Drag and Drop not working with IE11,Firefox or Chrome on Windows 7 x64 SP1

    Hello,
     I am trying to use drag and drop on my system but it is not working. other's within my department have no issues, but they are using IE10. I also have SharePoint Designer 2013 installed.
    Any suggestions?
    Thanks,
    Derek

    Derek,IE11 is having some compatibility issues with the share point.Apart from IE11,it should work on IE10,9 and Firefox and chrome as well.
    Please check the links below that explains the issues with IE11 and the functionality of Drag and drop and limitations as-well.
    1.Since SharePoint 2013 fully support IE 32-bit version above 7, there might be compatibility issue with other browsers. I’d recommend you use IE 8,9,10 32-bit for optimal Performance.
    2. Open the same document library in Internet Explorer as this functions does not work with Firefox or Chrome by default
    3. Make sure the IE (Internet Explorer) Version should be 32-bit and not a 64-bit
    http://expertsharepoint.blogspot.de/2014/08/issues-with-sharepoint-2013-and.html
    http://expertsharepoint.blogspot.de/2013/12/how-to-upload-multiple-documents-in.html
    http://expertsharepoint.blogspot.de/2013/12/sharepoint-server-2013-drag-and-drop.html
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • Download/Upload and Properties not working with Netstorage

    I had applied some authorized updates to a SLES 11, SP2, (OES 11.1, PATCHLEVEL=1) running eDirectory 8.8 SP7, server and rebooted a week ago.
    I didn't notice anything wrong initially and thus was living in stupid comfort! :O
    I was able to get to the Novell "Welcome" web page, and I can get into iMonitor and Remote Manager, but when I try iManager, I get "Error 503 Service Unavailable".
    After looking and trying various postings in the Novell forum unsuccessfully, I loaded iManager on a Linux Desktop and I am working with that, but I can't help think that is somehow related to my netstorage problem.
    I am able to successfully login to netstorage and I can navigate around to folders OK.
    Local users have a mapped drive and they are working OK with the nss volume.
    However, then I log in as admin and select a folder and choose Properties, I get "Error 500 Server Error" and if I try it again after that I get "Error 503 Service Unavailable"
    And, when anyone tries to use the other options, such as Upload or Download, nothing happens.
    I verified that Apache2 is running and that tomcat6 is running.
    Below is the catalina.out file for chucks-n-giggles.
    May 16, 2013 1:09:49 PM org.apache.catalina.core.AprLifecycleListener init
    INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/lib64/jvm/java-1_6_0-ibm-1.6.0/jre/lib/amd64/default:/usr/lib64/jvm/java-1_6_0-ibm-1.6.0/jre/lib/amd64:/usr/lib
    May 16, 2013 1:09:49 PM org.apache.coyote.http11.Http11Protocol init
    INFO: Initializing Coyote HTTP/1.1 on http-8080
    May 16, 2013 1:09:49 PM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 788 ms
    May 16, 2013 1:09:49 PM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    May 16, 2013 1:09:49 PM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/6.0.18
    May 16, 2013 1:09:50 PM org.apache.coyote.http11.Http11Protocol start
    INFO: Starting Coyote HTTP/1.1 on http-8080
    May 16, 2013 1:09:50 PM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 1092 ms
    Thanks for your time!
    Stan

    Originally Posted by Demaximis
    I looked at the /var/log/apache2/error_log right after I tried to bring up the properties of one of the netstorage folders and this is what I see:
    [Fri May 17 08:47:27 2013] [error] (111)Connection refused: proxy: AJP: attempt to connect to 127.0.0.1:9009 (localhost) failed
    [Fri May 17 08:47:27 2013] [error] ap_proxy_connect_backend disabling worker for (localhost)
    [Fri May 17 08:47:27 2013] [error] proxy: AJP: failed to make connection to backend: localhost
    Does this point to where the issue is?
    I'm not 100% sure if that's the culprit or not. I didn't think netstorage used an odd port like that.
    I vaguely remember encountering this before a long time ago.
    Out of curiosity, is the actual server name (like: oes11sp1.abc.com) in your /etc/hosts
    AND
    is that the same DNS name you are using to access the netstorage server?
    In our case, we use a different DNS name vs. what the server name really is and we have to adjust the /etc/hosts correctly for some of the internal components to work.
    Also, when you installed OES11, did you accidentally leave the checkbox checked to add the local host definition to the /etc/hosts?

  • MyDAQ fails Self-Test and will not work with any software

    I cannot get the myDAQ to communicate properly. I did everything I could to make sure that the device was detected by the computer. It shows up in Device Manager under Data Acquistition Devices as NI myDAQ and in NI MAX as "myDAQ1", but I receive errors when trying to use it with any NI program.
    Trying to self-test or reset the device in MAX gives these errors:
    -The self test failed. -88705 The specified device is not present or is not active in the system. The device may not be installed on this system, may have been unplugged, or may not be installed correctly.
    -There was a problem resetting the device. Error code: 80040383.
    It also gives this error when trying to use the Elvis Oscilloscope:
    -Error -200324 occurred at ELVISmx_DAQmx Create Channel (AI-Voltage-Basic).vi:1 
    Possible reason(s):
    NI-DAQmx is unable to communicate with the device. Make sure the device is present in and accessible to the system, is not currently being reset, and is not reserved by another driver such as Traditional NI-DAQ (Legacy).
    I have uninstalled and reinstalled and repaired all installed NI products twice. I updated to NI-DAQmx 9.8.0 and am using NI Elvis 4.5. I have checked  NI Device Loader and mDNS Responder Service in Services and everything is running properly. I have also tried Reset Configuration Data in NI MAX several times. I turned Fast Startup off as suggested in one article. I have tried plugging it into every single USB port on my computer; all 8 of them. The blue led is on when plugged in, but I cannot figure out why it will not work with any of the software. I am running Windows 8 Pro 64-bit. Also, it completely works on the school computers running Windows 7 without any problems. I would like to have it functioning with all the NI software purchased, but all I want to do is use the oscilloscope software for now. It has honestly been way too much work and a huge loss of time for something that should work out of the box. Please help me resolve this, thanks.
    Attachments:
    ni_support.zip ‏341 KB

    Hi chaka123,
    I had already read that article so it wasn't anything I hadn't tried. I did, however, uninstall both NI DAQmx and NI ELVISmx, ran the registry cleaner and then plugged my device in. Now it shows up as USB Flash Firmware Updater. This is actually what it showed the first time I plugged this in out of the box. After much troubleshooting I was finally able to get it to at least recognize it as a myDAQ. This is problem I know others have had.
    To answer your questions:
    Does the Test Panels work at all?
    I am not sure, I didn't try it before uninstalling. Now the Test Panels isn't an option because it is recognized as the Flash Firmware Updater.
    Have you tried to delete the device in MAX?
    Once again, I cannot because it shows up as Flash Firmware Updater.
    Which is the color of the icon on the left side of “myDAQ1”?
    It was green before the uninstall. Now it shows the USB symbol.
    I tried deleting the driver. When I plugged the device back it, Windows started automatically trying to load a driver for it. Now it shows as NI myDAQ with a yellow exclamation symbol. In MAX it shows as NI myDAQ with a USB symbol. Under Driver Details it says "Windows does not have a driver associated with your device." 
    What folder can I manually point Device Manager to in order to load the correct driver?
    Attachments:
    devicemanager.PNG ‏40 KB

  • Importing Raw images in Lightroom the image is vertical lines and can not work with it

    Nikon 300S. It is set to NEF(RAW) + JPEG fine. When I import to Lightroom I get message "There was an error working with the photo? Does anyone know why or how to correct? And when I try to open it in Develop the image is a series of vertical lines with different colors.

    I have a Nikon 300S. It is set to NEF(RAW) + JPEG fine. When I import to Lightroom I get message "There was an error working with the photo? Does anyone know why or how to correct?

  • I have a 2010 Macbook pro with the option to 'pinch' on the track pad to zoom on the screen, and its not working with this new beta version of firefox i downloaded.. but it's working on the rest of my laptop. Is there some way to turn it on?

    When I try to pinch in and out on the trackpad it's not working, but then it will work on my desktop when I minimize firefox.

    First, back up all data immediately, as your boot drive might be failing.
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Reset the System Management Controller.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Check your keychains in Keychain Access for excessively duplicated items.
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • WRT610N disconnects and does not work with Vista or media center extenders like the DMA2200

    Linksys and all other router manufacturers advertise the greatness of the wireless 5ghz band (especially with 802.11n), but I’m beginning to have my doubts.  It is true that the 5Ghz band is hardly being used so you'll have virtually no one to compete with.  However, the 5Ghz distance in no way compares to 2.4Ghz, and as a matter of fact, I find it to be quite terrible.  At approximately 20 feet away, both my Linksys DMA2200 and HP notebook barely get 1 bar using the 5Ghz N band with my WRT610N router.  In comparison, while using my 2.4Ghz WRT54g router, I get 5 full bars at that range, and at least 2 bars from anywhere else in my house.  
    I have all Linksys equipment in my house as I have been impressed with all of their 2.4Ghz in the past.  However, I’ve recently upgraded everything to dual-band N equipment and found numerous flaws in each of the new devices, plus none of them really even play well together.  My setup is: Linksys 610n router, DMA2200 media center extender, and a WUSB600N Dual-Band Wireless-N USB Network Adapter for my laptop – all of which are currently using the most up-to-date firmware. Other devices include a WRE54G extender and  Nintendo Wii. 
    Problem  #1) The LELA software with the new N devices doesn't even recognize that my DMA2200 is a media center extender.  Using LELA, I should be able to select my media extender and allocate more bandwidth for streaming media.  However, since my extender only shows up as an “unknown network device” those options are greyed out.  I tried to manually change the device to a media center, but still no go.  I suppose you can manually allocate bandwidth in the router setup somewhere, but considering these are all Linksys products, it’s absolutely ridiculous that an option specifically incorporated in the LELA software for a Linksys Media Extender does not work!!!   
    Problem #2) If you are only using one system with the router, the router might actually work as intended.  For most of us though there are going to be at least 2 or more systems connected to the router (wired, wireless, or a combination of the two) such as a PS3, Wii, laptop, PC, media extender, Xbox, etc.  If that’s the case, you’re probably screwed because you WILL experience frequent dropouts… ESPECIALLY if just one those clients is a VISTA machine.   Check the Linksys forums and you will find that this seems to be a problem with all of the new Linksys routers (610N, 310N, and 110). 
    Here is a Microsoft article that explains the issue
       http://support.microsoft.com/kb/928233/en-us 
    Problem #3) Because of  problem #2 I will never be able to get rid of the dropouts since my network is using one of Linksys’s media center extenders.  The DMA2200 is essentially a VISTA PC to some extent and accepts DHCP requests the same as a VISTA PC.  Since it is not really a PC though, there is no registry modification that can be done to alleviate the VISTA problem (not that the registry mod really works anyways).  So as long as I try to use my DMA2200 wirelessly with my WRT610N router, the frequent dropouts will occur and there’s nothing I can do about it.  This is REALLY TERRIBLE since the DMA2200 is specifically designed to be used with the WRT610N router in order to take advantage of the 5Ghz band and wireless N transfer rates.  You absolutely need 5Ghz wireless N to efficiently stream HDTV WIRELESSLY, but if you lose your connection every 10 minutes, it is impossible to watch any type of streaming media. 
    Problem #4) As mentioned already, when the “N” 5Ghz range is working on the WRT510N router, the distance sucks compared to standard 2.4Ghz G, N or mixed mode networks.  You can try to make it better by strictly using N products, disabling the 2.4ghz band all-to-gether, and using the wider 40mhz frequency, but it doesn’t really help.  The higher 5Ghz band is a more concentrated signal and therefore simply does not reach as far as the lower 2.4ghz band.  I wonder why all of these new products state that the 5Ghz range will increase your distance, when in fact it actually makes it worse?   
    So… basically, this router does nothing that it claims too and is basically rendered useless on any network with a VISTA machine.  This has not been addressed by any Linksys firmware updates or VISTA software updates so there is no reason to even consider using this router if you you’re using VISTA or some type of VISTA Media Center Extender such as the Linksys DMA2200.  
    Although, I’ve always sworn by Linksys in the past, the amount of wasted time, frustration, and horrible support has really changed my view about them.  I’ve reverted back to my old trustworthy WRT54g router and had to run cable through my house so that I wouldn’t have to box my DMA2200 extender up and let it collect dust in the attic.  It’s really disappointing that I spent all this money to buy this equipment specifically because they’re supposed to work together, but in fact they don’t.  Plus what’s the point of having top notch wireless equipment if you have to run cables in order for them to work? 
    Message Edited by bobbodavis on 11-15-2008 07:37 PM

    I have fixed all the IP adresses to avoid the DHCP problem but I still have problems.
    I have sereval scenarioes:
    1. MC < 1Gb wire > WRT610N < 5.0n WIFI > MX
    I can see HDTV on this one but it disconnects
    2. MC < 1Gb wire > WRT610N < 2.4b/g WIFI > MX
    No HDTV and disconnections
    3. MC < 2.4b/g WIFI > WRT610N < 2.4b/g WIFI > MX
    No HDTV but no disconnections - but very slow and streaming like youtube
    4. MC < 100Mb wire > WRT610N < 2.4b/g WIFI > MX
    No HDTV but nice picture - testing for disconnections right now - 30+ min.
    Result:
    This test was very good. Stabil streaming, no disconnects for an hour. Won't support HDTV but the rest seem to work fine.
    5. MC < 100Mb wire > WRT610N < 5.0n WIFI > MX
    Not tested yet - looking forward to this - might bring me HDTV.
    Result:
    This gives HDTV but there is a problem with stability on the streaming but very difficult to see on the picture. Testing for disconnects - now tested for 30 min. - no disconnects.
    This looks really promissing.
    I am pretty sure that the WRT610N have a problem in the switching part of the router specially when it has to switch from 1G to WIFI. I bought the WRT610N to get HDTV on WIFI and Cisco markets the DMA and WRT610N as a perfect match. But it definately have problems - i still do not understand their silence about this.
    I will come back with the last results when I have them
    /John
    Message Edited by Infraxpert on 01-05-2009 04:38 PM
    Message Edited by Infraxpert on 01-05-2009 05:35 PM

Maybe you are looking for

  • Iphoto no longer works after my yosemite "upgrade".

    A little help here Apple.

  • My audigy 2 nx sob stor

    hey guys.. creative distributors are still selling the audigy 2 nx in india and it was the only external soundcard availible here so i've bought it, and had it shipped in.. and am now trying to install it. no one seems to have posted anything on this

  • BAPI or FM to get Material Price

    Is there a readily available BAPI or Function Module that can get me a meterial's price based on it's pricing procedure?

  • Adobe Premiere Elements 8 and Window7 Ultimate 64 bit

    hello, sorry i can't not english. I have a problem. I have install windows7 ultimate 64 bit and adobe premiere elements 8. When closed adobe premiere elemts 8 won't the prozess in the taskmanager closed. When closed ape8 reserved this programm in the

  • Why i can't send the parameter

    Sorry for my question, i want to send a parameter in my jsp file when a is pressed. but in fact, the back-bean can't get the parameter . <h:commandButton action="#{Product.deleteAction}" value="delete" > <f:param name="Deleteid" value="#{Product.id}"