Abt USB drive Disabling and enabling

how to enable and disable USB mass storage devies in Mac os 10.4 tiger and Mac os 10.5????
pls i need an answer.... so many people is using my macs usb ports plss provide some solution

dear sir
thanks 4 that link bt i already been dr..
sir do u know anything abt
""" iousbfamily308.4.0log.dmg """"""
i thnk this can end ma search bt only aft ur response....
and i must say i also hate to switch on ma windows machine bt wat to do i need to burn quality vcds that an impossible task in mac .toast and and other encoding techniques in mac are really not up to standard if u consider it for vcds..for dvds thy are splendid..i can use compressor bt it takes a **** a lot of time if want to make a really quality vcds...
so i use Tmpeg installed win xp for that purpose with 1gb ram c2d system

Similar Messages

  • How to disable and enable a java bean area's visability?

    I have a large javabean area on my initial canvas when first dispalying my form.
    When I use the SHOW_CANVAS('canvas name') to display another canvas, everything looks fine except that the javabean from my previous canvas is still visible and covering up portions of this new canvas.
    So I tried using the set_property visible for the javabean area in the form and it only got rid of the surrounding edge of the javabean area.
    Last I made some set_custom_property values to send to the bean that would then use java calls to enable and disable the beans visability.
    But once the beans visibility was disabled in Java then it wouldn't come back after the calls to enable the visibility and refresh the bean were made through Java calls.
    Is there any other ways of disabling and enabling a java bean area's visability?
    Thanks,
    Michelle

    Hello,
    Maybe the bean is always display because of its particular paint() method ?
    Anyway, without any reflexion, I could suggest you to set the bean item width and height to 1 pixel when you don't want to display it. (Set_Item_Property)
    Francois

  • I recently had to disable and enable all add-ons on Firefox. Now when I google something, when I hover over the website preview and click 'cached' it won't highlight the key terms anymore. How can I fix this?

    I recently had to disable and enable all add-ons on Firefox. Now when I google something, when I hover over the website preview and click 'cached' it won't highlight the key terms anymore. How can I fix this?

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • USB PORTS DISABLED AND WONT WORK FOR ANYTHING

    MacBook Pro  OS X (10.6.8)
    the other day i had plug in a remote helicopter to our computer and came back and same the error message:
    "Because a USB device was drawing too much power from your computer, one or more of your USB devices have been disabled.* To prevent damaging your computer, the USB device drawing too much power has been disabled. Other devices may also have been disabled. When you disconnect the device drawing too much power, your other USB devices will be enabled again"
    First I unplugged the helicopter and tried plugging in my phone to charge....NOTHING! so i unplugged it and tried my ipod....NOTHING! maybe the cord? so i switched cords nope same stupid ****. I reset the computer (even doing a SMC reset). nothing works! Nothing shows up in Disk Utility when plugged in either. I've looked for videos, other forum, blogs, articles, plus i can't even use Apple Tech support over the phone cause my plan has expired and Apple loves charge so much for something they could fix real fast!
    please help me i'm still trying everything as we speak!
    Mike

    Disconnect all peripherals from your computer.
    Resetting your Mac's PRAM and NVRAM

  • Time machine backup from USB drive connected and backing up to Time Capsule

    Hi all forum virgin here, so be gentle.
    I'll get straight to it. Much net trawling hasn't resulted in a definitive answer on this which surely I'm not alone in
    I have: MBP networked to TC (where TM resides) and USB drive connected.
    A- I simply want to TM backup not only MBP but USB drive on network as well?
    As far as I can see there is no way of selecting this and after TM back has finished the only way I can check is
    to enter TM (fancy space screen view) and obviously idrive doesn't appear in finder view.
    I have tried connecting to MBP and obviously TM backs it up too and I can see in Enter TM. But I need this
    drive on network so a further 2 things here:-
    B- when I remove from MBP and TM backs up again will it see it's not there and delete as a change?
    C- will it keep in previous backups if I cycle back to that particular one?
    Andy help here would be most welcome

    Slymon2000 wrote:
    B- when I remove from MBP and TM backs up again will it see it's not there and delete as a change?
    Sooner or later, yes, as LaPastnague says.  It depends on when the backups are done.  The first backup of each day is kept for a month;  all others are deleted after 24 hours.  After a month, the first backup of the week is kept as long as there's room, and the others deleted.
    Obviously not a reliable solution. 
    A better method might be to use a different app to back it up to the TC's internal HD, but that presents another problem.  See #Q3 in Using Time Machine with a Time Capsule for an explanation and some possible workarounds.
    The 3rd-party apps CarbonCopyCloner and ChronoSynch can do network backups (others probably can, too).
    So you might be able to "reserve" some space on the TC's HD and use one of those apps.  As LaPastnague says, though, that will be relatively slow.
    If there isn't enough room on the TC's internal HD, you could get another USB drive and connect it to the TC also (via a powered USB hub) and back up to it.  That will be even slower, though.

  • SP with input parameters to disable and enable indexes

    I need to build a stored proc script with input paramters to disable indexes and enable indexes of specific tables.
    Parameter would be tablename,schemaname,a value input which will determine if it is for disabling index or enabling index
    I will have a reference table which would hold the specific tables
    Below is the ddl script and sample data for reference
    USE [test]
    GO
    /****** Object:  Table [dbo].[TestingIndex]  DDL  Script Date: 01/27/2014 22:38:39 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[TestingIndex](
    [tablename] [varchar](30) NULL,
    [schemaname] [varchar](10) NULL,
    [Flag] [varchar](1) NULL
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    sample data
    tablename
    schemaname
    Flag
    tableabc
    abc
    y
    tabledef
    def
    y
    tableghi
    ghi
    y
    All I want to do is disable all the indexes of the tables which are present in my reference table by looping through the reference tables.
    Similarly I want to do enable all the indexes of the diabled table using the reference table
    Any help would be appreciated and best way to do it thinking all pros n cons.
    Mudassar

    New code with changes
    USE [TEST]
    GO
    /****** Object: StoredProcedure [dbo].[usp_indexes] Script Date: 1/28/2014 10:11:55 AM ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE PROCEDURE [dbo].[usp_indexes1]
    @ref reftable READONLY,
    @input int
    AS
    BEGIN
    ---Declare variables
    DECLARE @tblnm VARCHAR(30), @schnm VARCHAR(10), @flag BIT, @sql VARCHAR(MAX)
    ---Declare cursor
    DECLARE cursor_index CURSOR
    FOR SELECT tablename, schemaname, flag FROM @ref
    --Open cursor
    OPEN cursor_index
    FETCH NEXT FROM cursor_index INTO @tblnm, @schnm, @flag
    WHILE @@FETCH_STATUS = 0
    BEGIN
    if @input =1
    BEGIN
    SET @sql = 'ALTER INDEX ALL ON '+@schnm+'.'+@tblnm+' DISABLE '
    print @sql
    EXEC sp_execute @sql;
    END
    else
    BEGIN
    SET @sql = 'ALTER INDEX ALL ON '+@schnm+'.'+@tblnm+' REBUILD '
    print @sql
    EXEC sp_execute @sql;
    ALTER INDEX ALL ON dbo.Test1 DISABLE
    END
    FETCH NEXT FROM cursor_index INTO @tblnm, @schnm, @flag
    END
    CLOSE cursor_index
    DEALLOCATE cursor_index
    END
    GO
    result when I execute it gives below message
    (3 row(s) affected)
    ALTER INDEX ALL ONdbo.Test1DISABLE
    Msg 214, Level 16, State 2, Procedure sp_execute, Line 1
    Procedure expects parameter '@handle' of type 'int'.
    ALTER INDEX ALL ONdbo.Test3DISABLE
    Msg 214, Level 16, State 2, Procedure sp_execute, Line 1
    Procedure expects parameter '@handle' of type 'int'.
    ALTER INDEX ALL ONdbo.Test4DISABLE
    Msg 214, Level 16, State 2, Procedure sp_execute, Line 1
    Procedure expects parameter '@handle' of type 'int'.
    DECLARE @ref reftable
    INSERT INTO @ref
    SELECT * FROM testingindex
    EXEC usp_indexes1 @ref,1
    but when I go n check indexing status no tables  have been disabled using the below query it shows still enabled
    select sys.objects.name as 'table',
    sys.indexes.name as 'index',
    is_disabled = case is_disabled
    when '1' then 'disabled'
    when '0' then 'enabled'
    end
    from sys.objects join sys.indexes
    on sys.objects.object_id = sys.indexes.object_id
    where sys.objects.name in('Test1','Test3','Test4' )
    below are my table schema and index script (similar for 3 tables i m using for testing)
    CREATE TABLE [dbo].[Test1](
    [YEAR] [varchar](10) NULL,
    [MONTH] [varchar](10) NULL,
    [MONTH_VAL] [varchar](10) NULL
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    USE [TEST]
    GO
    /****** Object: Index [NonClusteredIndex-20140128-112203] Script Date: 1/28/2014 11:23:48 AM ******/
    CREATE NONCLUSTERED INDEX [NonClusteredIndex-20140128-112203] ON [dbo].[Test1]
    [YEAR] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
    GO
    Mudassar

  • Disable and enable on Apex 4.2.1 tabular form

    Hi,
    I have a requirement on Apex 4.2.1 tabular form where It gets rows dynamically based on the master record.
    when page loads for the first time all the rows on the tabular form should disable and based on check all rows it should enable all the rows
    or if I check particular row it should enable that row. is this possible with dynamic action. or else how can i achieve this ??
    Thanks

    user10755387 wrote:
    Hi,
    I have a requirement on Apex 4.2.1 tabular form where It gets rows dynamically based on the master record.
    when page loads for the first time all the rows on the tabular form should disable and based on check all rows it should enable all the rows
    or if I check particular row it should enable that row. is this possible with dynamic action. or else how can i achieve this ??
    You cannot disable them instead make them read-only, but the problem comes if you have any form controls like select lists because they are already read-only
    Create a dynamic action as follows:
    Event: Page Load
    True Action: Execute JavaScript Code
    Code:
    //replace the REGION_STATIC_ID with your tabular form's region static id
    $('#TF').find('.uReport.uReportStandard').find('tbody').find('td[headers!="CHECK$01"] > :input').attr("readonly", true).css("background-color", "#F2F2F2");
    $('td[headers="CHECK$01"] > input').click(function () {
         if ($(this).is(':checked')) {
              $(this).parent('td').parent('tr').find('td[headers!="CHECK$01"] > :input').attr("readonly", false).css("background-color", "");
         else {
              $(this).parent('td').parent('tr').find('td[headers!="CHECK$01"] > :input').attr("readonly", true).css("background-color", "#F2F2F2");
    });

  • Disable and enable field at runtime in sap crm 2007

    Dear experts!
       I created 2 new fields on Opportunity type by EEWB. The first field is checkbox type, is called FIELD1. The second is dropdown list type, is called FIELD2. My problem is: In general, if FIELD1 is not checked, FIELD2 is disalbe. When i checked FIELD1, FIELD2 is enable, enable to choose a value in dropdown list value of FIELD2. But, i don not know how to do it.  Can you help me resolve this problem?
       Thanks alot!
       Longndtb.

    Thanks Amar Nath and sijokjohn85 for your answer!
       But maybe i have not described clearly to you understand, so your solution has not resolved my problem. I will describe more detail as following:
       - I create 2 transaction type ZOP01 and ZOP02 are BUS200111 object type. And using EEWB to generate 2 fields type input field are ZZFN01 and ZZFN02 on those transaction type. Because 2 Trans type are common component BT111H_OPPT, so 2 fields ZZFN01 and ZZFN02 will display on Web UI together when i create either of 2 trans type. Problem is if i create new opportunity type ZOP01, only ZZFN01 is enable, ZZFN02 is disable. and if i create new opportunity type ZOP02, only ZZFN02 is enable, ZZFN01 is disable. Your solution to resolve this problem. But, i done it, and my thread do not question about  this.
       - My problem is: I create 2 field are ZZFN01 and ZZFN02 on transaction type ZOP01. ZZFN01 is checkbox type, ZZFN02 is dropdown box. (i do not question: How to make ZZFN01 is check box and ZZFN02 is dropdown box, i done it). I want that: when ZZFN01 is not checked, ZZFN02 is disable and when i checked the ZZFN01 then, ZZFN02 goes from disable to enable, immediately? I create method GET_I_ZZFN02, in this method, i put some code lines to check ZZFN01 and return to PA_RETURN_ZZFN01. if (PA_RETURN_ZZFN01 = ' ', then make ZZFN02 is disable. If (PA_RETURN_ZZFN01 = 'X', then make ZZFN02 is enable). when i create new opportunity type ZOP01, the ZZFN01 is not checked, so ZZFN02 is disable, of course. Next, i check ZZFN01, how to method GET_I_ZZFN02 recheck the ZZFN01 to make ZZFN02 is enable? This is my problem, and i question about this! So, can you help me?
       Thanks for your concern!
       Longndtb.

  • Aperture not automatically Pushing new Photostream photos without disabling and enabling again

    Hi I have an iPhone 4 runing iOS 5.0.1 with Photostream enabled.
    My mac also has Photostream enabled on the same account.
    Aperture 3.2.2 also has Photostream enabled on the same account.
    When I take a photo with my iPhone, it does not automatically come up in Photostream, after waiting some time with a strong and tested Wifi connection.
    Photos only appear in Aperture's Photostream when going to Aperture>Prefrences and disabling and re-enabling Photstream.
    Both checkboxes are ticked underneath 'enable photostream'

    I have the same setup as you. Mac with Lion 10.7.2,  iPhone 4 and Aperture 3.2.2. I havn't observed the photostream much but a couple of times I had Aperture open and took some screenshots on my iPhone. It took a bout 10 minutes for them to show up in Aperture's Photo Stream folder. The last time I took 4 screenshots and only 3 showed up in Apertures Photo Stream. The next day I opened Aperture and the 4 was there too. Seems to me to be a little hit and miss.

  • Imac usb ports disabled and nothing is connected

    iMac 27inch Late 2007 USB Ports Disabled Again!
    Has happened before and took forever to fix it. Nothing specific fixed it last time and nothing I know was the direct cause. Each time different OS, different location, different year, different cables etc etc.
    Now, reset everything, moved everything, changed everything - still nothing. No USB ports work. iMac still has pop up "USB devices disabled..."
    Taking into Apple unless someone can tell me what 10 pages of google hasn't - what a bloody stress and waste of time!

    Disconnect all peripherals from your computer.
    Resetting your Mac's PRAM and NVRAM

  • Disable and Enable Wi-Fi on Touch 2G (8GB) and 3G (32GB) at will

    My daughter would like to password disable the wi-fi component only on her kid's 2G and 3G and enable it only when they are supervised.
    I have looked at threads for "lockout wi-fi" and "disable wi-fi" but didn't see anything after 5 pages and did not find anything on my own 3G 64GB that would let me do this. Can this be done on the iPod Touch?

    There is a setting in Restrictions that can block the use of Safari, YouTube, iTunes Store, and App Store. Go into Settings/Restrictions and then make changes and use a passcode to prevent her from going back in and changing the settings.
    Another way (and maybe more subtle and perhaps easier) is to control wi-fi access at home using your router's security settings -- just allow/disallow the MAC address of the Touches. That won't help when she takes the Touches to other locations, but at least at home you can gate the access by going into the router's administration (refer to the manual).

  • Disabled and enable clips look the same

    Is there a way to change the preferences so that disabled clips show up dark in my timeline? Because right now they are showing up bright regardless of whether they are disabled or enabled?

    I know that's how it's supposed to work but for some reason mine isn't. It does show up that way on my laptop though.
    screenshot(s)
    http://i114.photobucket.com/albums/n243/peetiewonder/disabledenabled_zps6bfa6044 .png

  • Drives disabled and incompatible in Rapid Storage Technology screen. Help!

    I have a Lenovo U310 that has a 32GB SSD cache with the 500GB HDD. My windows did not shut down properly and upon reboot, it went to Reading Packed Metadata into memory... then it reboots again. F2 and F12 does nothing. In fact, I tried all the Fn keys
    After many reboots I get "Failed to read packed metadata"  then "there was an error initializing cache. Proceeding without it" 
    Then it shows
    RAID VOLUME
    0  FFS       RAID0(stripe)    128KB   8GB   Normal
    1  CACHE  RAID(cache)    128KB  21GB  DISABLED
    PHYSCIAL DEVICES
    0  Samsung.........29GB  CACHE DISK (0,1)
    1  ST500 ......      465GB DISABLED
    Then it asks me to press Ctrl-I, which bring me to the Intel  main menu.which shows:
    RAID VOLUMES
    none defined
    PHYSICAL DEVICES
    0  Samsung ..... 29GB  INCOMPATIBLE
    1  ST500          465GB  INCOMPATBILE
    Any way to recover? How can I get access to my main drive because there are files that I want to copy  
    Even the system restore button on Lenovo doesn't work.  (it gets the same repeated reboot problem) 

    hi albertle,
    It's possible that the RAID drivers or the RAID controller itself is malfunctioning that's why you're getting the error. If you ain't getting any response under Windows, can you try to:
    1. Download a Windows 8 Enterprise ISO (90day trial) and follow this guide on how to create a bootable flashdrive.
    2. Insert the bootable flashdrive on the lenovo machine, restart it and repeadtly tap Fn+F12 to get a boot menu and choose USB to boot from the Windows 8 installation disk. If you don't see any USB option, press Fn+F2 instead to boot into the BIOS, navigate to the Boot tab and set USB HDD as the first boot device.
    3. If you manage to get to the Windows 8 installation screen, click Repair your computer > Troubleshoot > Advanced Options > Command Prompt and from there, you can follow this guide on hwo to backup files on your PC.
    If you're still unable to get something, you may need to remove the bottom cover, take the HDD out and use a 2.5" SATA enclosure to get your important data out of the machine (see page 38 of the hardware maintenance manual on how to remove the HDD)
    Hope this helps
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • IE 11 Won't open PDF unless I disable and enable the Adobe add-on?

    I'm using IE 11 under Windows 7, whenever I try to open a pdf in the explorer it prompts me if I want to open or save?  If I disable the add-on and re-enable it works fine - I don't even have to restart the explorer - and it works fine from that point on until I reboot my computer.  After rebooting I have to go through the process again to get it to work.  Does anyone have any suggestions on how to correct this?  I'm using Adobe Reader XI (11.0.10).  Thanks for any help....

    This is probably the proprietary PDF viewer in Firefox at fault.
    In Firefox type "about:config" (minus the quotes) in the address bar. You'll see a warning about making chnages. Click "It's OK. I'll be careful" and open the configuration page.
    There's a search at the top. Type "js" (again, minus the quotes).
    In the results, you'll see pdfjsviewerdisabeld witha value of "false".
    Right click it to toggle it to "true" and close the configuration page.
    Click Firefox>Preferences and under the Applications tab, locate Adobe Acrobat PDF document in the list (or Portable Document Format).
    Change it to "Use Adobe Reader (Default)"
    Click OK and restart Firefox.

  • How to disable and enable a Hardware Card on my Mac

    Hi all,
    I have a system with2 BlackMagicDesign (BMD) Decklink cards in it. One HD Extreme and one HD Extreme 3D+ card.
    I use it to capture multiple video streams at once and it works perfectly. I can choose to input and output card for audio, etc...
    But I have software that can use a BMD Decklink card as 3th monitor or VideoOut Monitor.
    That software always chooses the HD Extreme Card, and I cant choose it manually...
    I need the software to use the Decklink 3D+ card (because it has a HDMI 1.4 out and works in Stereo3D)
    If I remove the second card, all works perfectly, but I want to avoid to do that...
    In Windows you can easily disable hardware....
    But, can we do that in MacOSX 10.7??
    thx for your hrlp,
    Steven.

    Don't know if this will work for your specific setup or not, but SwitchResX is a unique utility for controlling video configurations (including enabling/disabling multiple monitors).

Maybe you are looking for

  • MDX Generation Issues (using Evaluate) in OBIEE Analysis Report

    Hello Everyone, I am trying to use Evaluate function in MDX (on a OBIEE 11g Analysis report) to restrict the number of values that i am pulling from the Essbase cube. The MDX Evaluate syntax looks something like this EVALUATE('TOPCOUNT(%1.members,100

  • Predictive Analysis error message "[Sybase][ODBC Drivers][Sybase IQ]Syntax error near ',' on line 1

    Hello, I have a custom R component with a function that reads data from a hard configured file. No database operations but I get this ODBC error that, I suppose, originates from PA talking to the IQ server it runs. How can I find more about what PA t

  • Copy option in iBooks app has disappeared

    Hello, I just discovered that the copy option in iBook app disappeared (in the same book). Not the first time, in the past had to reinstall the application to appear again but this time not served. This happened to anyone else? Thanks! Marco

  • Creating Video Podcasts for download by clients

    Hi there, I'm new to ipods & have recently bought an ipod touch. Now as I look through itunes & podcasts, I notice people creating photo slideshows, etc for clients to be able to download as podcasts from within itunes. Could someone point me in the

  • Pleas Update Bbm ( Z10 ) Difficult and complicated to use

    HI IBM Pleas Update Bbm ( Z10 ) Difficult and complicated to use Dear blackberry support center we are facing many problems in the application of BlackBerry Messenger, Select All, copy the message (a copy of the message with the sender's name and thi