Still need Help for what Firewire to get for Envy h8-1534 PC Help please

I bought a 3 port PCI Express Card from Belkin and it does not engage the software installation ? Can someone help me on this is there a difference in WIndows 8 or 8.1 as concerns the firewire help please. HP used to be so easy plug and play !
Shold I have only got 1 slot ?
Model number h2n64aa#aba

Hi,
It's NOT compatible with Windows 7 therefore may NOT compatible with Windows 8 & 8.1:
    http://h30434.www3.hp.com/t5/Desktop-Hardware/Belkin-firewire-express-card-F5U504-Not-compatible-wit...
Can't find driver for it:
  http://www.driversguru.com/manufacturer/Belkin-pid-R%3E4191840%3E4192032%3E4201214
You may need a right one.
Regards.
BH
**Click the KUDOS thumb up on the left to say 'Thanks'**
Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Similar Messages

  • New ipod passcode locked out. tried other steps still need help please

    Hi passcode locked out of daughters new ipod. we backed up on computer this morning or rather it automatically backed up when plugged into itunes as directed from other posts i was reading. Then I tried to restore but it said I needed to turn off "find my ipod" which I cant because I need the passcode to get to settings. I then tried the home button power off but when i get to itunes restore ipod it tells me I need passcode. pleae help what step am I missing? go s l o w l y please I am new to mac after 20 years on pc and need help in steps that are not intuitive to me.

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        

  • Question-still need help please

    After encountering an odd problem yesterday while uploading photos that forced me to manually shut down the computer, I could not reboot. I ran the disk utility, and it indicated repairs were made. But it still would not reboot. So I reinstalled Mac OS X, and now the computer will not accept my user name/password. Any suggestions on what I'm doing right or what I might do differently?
    Thanks,
    John

    You may have to start the computer from the Installer boot disc and choose
    from the menu options (not reinstall, again) to reset the Admin password.
    It could be the same one you had before, if you like.
    Did you do an Archive and Install -or- an Erase and Install?
    How full is the hard disk drive? After it seems OK for awhile
    you may decide if anything of value is in the old system and
    if not, you could delete it. You may have to start up in SafeBoot
    and run the built-in Disk Utility's "repair disk permissions" and
    restart; there are some things other things you can do to help it.
    Hard saying why the computer acted up. If the drive is getting
    more than 70% full, you should be looking to archive files off
    the machine's hard disk drive and then reduce its load.
    How long have you had this computer, and what is its configuration?
    PS: it would have been nice if you could have started a new
    thread earlier on and kept the topic of your computer in there.
    I see an earlier thread where the error message was a launchd
    message, and that may have been helpful to know all the story.
    re: http://discussions.apple.com/message.jspa?messageID=7178754#7178754
    edited.

  • Earlier Post - still need help please!

    Earlier I said I was getting the message (The document “7/11Diverticulitis.pdf” could not be opened. Acrobat cannot open files in the “Adobe PDF document” format).  Several people made suggestions. I tried all of them. #1 I renamed the files and tried. #2 I made sure I selected acrobat 9 as the application I wanted to use while opening a document. #3 I tried to delete and reinstall. I cannot install it for some reason the process does not auto install from my CD?  Now what, I have already dumped my prior Adobe Acrobat 9 pro into the trash and emptied it!  I am so confused.  I use alot of pdf files as I have gone paperless. Before I created and read them with ease. Why would this happen just because I upgraded to a new computer. Again I am on OSXversion 10.6.8 Thanks for anything you can do to help!!

    You may have to start the computer from the Installer boot disc and choose
    from the menu options (not reinstall, again) to reset the Admin password.
    It could be the same one you had before, if you like.
    Did you do an Archive and Install -or- an Erase and Install?
    How full is the hard disk drive? After it seems OK for awhile
    you may decide if anything of value is in the old system and
    if not, you could delete it. You may have to start up in SafeBoot
    and run the built-in Disk Utility's "repair disk permissions" and
    restart; there are some things other things you can do to help it.
    Hard saying why the computer acted up. If the drive is getting
    more than 70% full, you should be looking to archive files off
    the machine's hard disk drive and then reduce its load.
    How long have you had this computer, and what is its configuration?
    PS: it would have been nice if you could have started a new
    thread earlier on and kept the topic of your computer in there.
    I see an earlier thread where the error message was a launchd
    message, and that may have been helpful to know all the story.
    re: http://discussions.apple.com/message.jspa?messageID=7178754#7178754
    edited.

  • A complete novice- still need help please!

    I am a complete novice, any help would be appreciated. I have written this short programme to display two buttons in a window on screen and with a little help from Lee i have incorporated the ColorButton subclass (see below for code).
    import java.awt.*;
    import java.awt.event.*;
    public class ButtonExample extends WindowAdapter{
    private Frame mainFrame;
    private Panel topPanel;
    private ColorButton buttonOne;
    private ColorButton buttonTwo;
    // constructor
    public ButtonExample(){
    mainFrame = new Frame("Button Test Example" );
    topPanel = new Panel();
    buttonOne = new ColorButton("I'm button one");
    buttonTwo = new ColorButton("I'm button two");
    mainFrame.setSize( 300, 75 );
    mainFrame.addWindowListener(this);
    topPanel.setLayout( new FlowLayout() );
    topPanel.add(buttonOne);
    topPanel.add( buttonTwo);
    mainFrame.add( topPanel );
    mainFrame.setVisible(true);
    // close the frame when clicks the close button
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    // Main program started
    public static void main( String args[] ){
    new ButtonExample();
    I am trying to familiarise myself with subclasses and want to create a subclass of java.awt.Button to override the background and foreground colours and have come up with this
    import java.awt.*;
    import java.awt.event.*;
    public class ColorButton extends Button{
    public ColorButton(){
    super();
    setBackground (Color.red);
    setForeground (Color.yellow);
    On modifying the main programme to incorporate ColorButton it will not change the background color, only the Button color and will not display text in the buttons themselves, any suggestions would be appreciated

    If you use the constructor:
    buttonOne = new ColorButton("I'm button one");you have to write it:
    class ColorButton extends Button {
       public ColorButton(String text) {
          super(text);
    }

  • I still need help with the Dictionary for my Nokia...

    I still need help with the Dictionary for my Nokia 6680...
    Here's the error message I get when trying to open dictionary...
    "Dictionary word information missing. Install word database."
    Can someone please provide me a link the where I could download this dictionary for free?
    Thanks!
    DON'T HIT KIDS... THEY HAVE GUNS NOW.

    oops, im sorry, i didnt realised i've already submitted it
    DON'T HIT KIDS... THEY HAVE GUNS NOW.

  • HT1222 I am trying like **** to download itunes 10.6.3 (64 bit - Windows 7) and I keep getting "the installer was interrupted before the requested operations for iTunes could be completed.  Your systems has not been modified."  I NEED HELP, PLEASE!

    I am trying like **** to download itunes 10.6.3 (64 bit - Windows 7) and I keep getting "the installer was interrupted before the requested operations for iTunes could be completed.  Your systems has not been modified."  I NEED HELP, PLEASE!

    I got it figured out myself... yaaaaay for me!

  • Still Need Flash for Android 4.0

    I don't know what's going on or why it's now labeled that it's not available for my country on Google Play, but I still need it for my NEW Android Tablet.
    Much like other things in life, we still need what we still need.  How do I get it downloaded for my Galaxy Tab 2?  Even the description left at Google Play says it's for up to Android 4.0.  That's what I have.  Yet it won't allow me to download/install it. 
    Without it, I cannot play any video's from specific web sites, like Amazon.  So what are people like me supposed to do?  I know the file still has to exist somewhere, so why can't I still get it in some archived form like older versions of Flash for PC's??

    Hopefully this FAQ will help:
    How do I manually install Flash Player on my Android device?

  • Still need help with case sensitive strings

    Hello guy! Sorry to trouble you with the same problem again,
    but i still need help!
    "I am trying to create a scrypt that will compare a String
    with an editable text that the user should type to match that
    String. I was able to do that, but the problem is that is not case
    sensitive, even with the adobe help telling me that strings are
    case sensitive. Do you guys know how to make that comparison match
    only if all the field has the right upper and lower case letters?
    on exitframe
    if field "t:texto1" = "Residencial Serra Verde"then
    go to next
    end if
    end
    |----> thats the one Im using!"
    There were 2 replys but both of them didnt work, and the
    second one even made the director crash, corrupting even previously
    files that had nothing to do with the initial problem..
    first solution given --
    If you put each item that you are comparing into a list, it
    magically
    makes it case sensitive. Just put list brackets around each
    item.
    on exitframe
    if [field "t:texto1"] = ["Residencial Serra Verde"] then
    go to next
    end if
    end
    Second solution given--
    The = operator is not case-sensitive when used on strings,
    but the < and > operators are case-sensitive.
    So another way to do this is to check if the string is
    neither greater than nor less than the target string:
    vExpected = "Residencial Serra Verde"
    vInput = field "t:texto 1"
    if vExpected < vInput then
    -- ignore
    else if vExpected > vInput then
    -- ignore
    else
    -- vExpected is a case-sensitive match for vInput
    go next
    end if
    So any new solutions??
    Thanks in advance!!
    joao rsm

    The first solution does in fact work and is probably the most
    efficient way
    of doing it. You can verify that it works by starting with a
    new director
    movie and adding a field named "t:texto1" into the cast with
    the text
    "Residencial Serra Verde" in the field. Next type the
    following command in
    the message window and press Enter
    put [field "t:texto1"] = ["Residencial Serra Verde"]
    You will see it return 1 which means True. Next, make the R
    in the field
    lower case and execute the command in the message window, it
    will return 0
    (true).
    Now that you know this works, you need to dig deeper in your
    code to find
    what the problem is. Any more info you can supply?

  • I already verify my app id but when i signed in my apple id it is still need to verify?? i try to verify again but when i click verify now then it said i verified it already but when i signed in it again..... it still need to verify. what should i do

    i already verify my app id but when i signed in my apple id it is still need to verify?? i try to verify again but when i click verify now then it said i verified it already but when i signed in it again..... it still need to verify. what should i do???

    That usually means that y ohave to add a valid payment to your account. Unless you initially set up the account withoeur a credit card
    Creating Apple ID without credit card: Apple Support Communities
    You need a valid payment method even for free stuff

  • After my iphone4S update to 7.0.6, it have a problem that keep searching network then no service show on display. Can't call. I have try check sim card, reset network settings, and restore my iphone. Still not working at all. Need help please.

    After my iphone4S update to 7.0.6, it have a problem that keep searching network then no service show on display. Can't call. I have try check sim card, reset network settings, and restore my iphone. Still not working at all. Need help please.Urgent.TQ

    Izit software or hardware? Confuse:(
    Only can use wifi now.
    Any way thanks guys for ur suggestion:) amishcake and simes

  • Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. Then I playing game I can se

    Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. When I playing game I can see what someone else trying connecting to my game And I don't know what to do.So if you can help me please? I don't wanna lose my game. 

    Hello Vaidas Vaidas,
    It sounds like you are noticing someone else is accessing your Clash of Clans data by playing the game and you have tried to reset your Apple ID password. If you are following the steps outlined in this article:
    Apple ID: Changing your password
    http://support.apple.com/kb/ht5624
    What is preventing you from changing your password? Any error messages or prompts?
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • I need help please. I have 6 apps updates shown on on the upper right corner of the app store icon. When i tried to open the apps store and go to updates, the apps that need to be updated were not appearing therefore i have no idea what those apps

    I need help please. I have 6 apps updates shown on on the upper right corner of the app store icon. When i tried to open the apps store and go to updates, the apps that need to be updated were not appearing therefore i have no idea what those apps are so that i can update them. Please give some solutions please

    isthisonetaken wrote:
    I'm having this problem. It started yesterday. I have 2 updates, but when I open the App Store, they won't appear.
    Do you have apps purchased with a differnt AppleID?
    For example, mine shows 12 updates but only 2 show up as being available.
    The others are on my daughters account.
    I log out of my iTunes account and log in with hers and those updates show up.

  • I had a problem with my itunes so i had went on itunes website and reinstall itunes for windows and after it complete it said that the feature yoy are trying to use is on a network resource that is unavailable i need help please!!!!!!!!!

    had a problem with my itunes so i had went on itunes website and reinstall itunes for windows and after it complete it said that the feature yoy are trying to use is on a network resource that is unavailable i need help please!!!!!!!!!

    first, head into your Add/Remove programs and uninstall your QuickTime. if it goes, good. if it doesn't, we'll just attend to it when we attend to itunes.
    next, download and install the revo uninstaller http://http://www.revouninstaller.com/revo_uninstaller_free_download.html. use it to clear any existing itunes and/or QuickTime installation configuration information from the PC.
           next download itunes. it worked for me hope this is helpful!!
        oonce you get into the revo uninstallergo thru to delete itunes hit uninstall on the itunes icon then you will go thru to it will tell u the same nmessage about the feature and network hit cancell then go thru and hit scan (make sure bthe advance scan button is pushed) this will take awhile but go thru the list and hit everything associated with itunes. hit delete then install itunes again. it worked for me hope it works for you!

  • Still need help with flash player download

    I'm still having a problem with the flash player, please read my last post below:
    "I've tried everything here & still can't download the flash player. Anytime I try to download it asks me to install ADM add-on and then when I click on that, my computer freezes. How do I enable this add-on without my computer freezing? Can anyone help pls?"

    Thanks a lot for your help, it is truly appreciated.
    Date: Thu, 29 Oct 2009 18:52:38 -0600
    From: [email protected]
    To: [email protected]
    Subject: Still need help with flash player download
    You can set Flash Player to check for updates on the Global Settings Manager panel:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager05.htm l
    >

  • How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    Si vous avez utilisé la commande Save As Template depuis Pages, il y a forcément un dossier
    iWork > Pages
    contenant Templates > My Templates
    comme il y a un dossier
    iWork > Numbers
    contenant Templates > My Templates
    Depuis le Finder, tapez cmd + f
    puis configurez la recherche comme sur cette recopie d'écran.
    puis lancez la recherche.
    Ainsi, vous allez trouver vos modèles personnalisés dans leur dossier.
    Chez moi, il y en a une kyrielle en dehors des dossiers standards parce que je renomme wxcvb.template quasiment tous mes documents Pages et wxcvb.nmbtemplate à peu près tous mes documents Numbers.
    Ainsi, quand je travaille sur un document, je ne suis pas ralenti par Autosave.
    Désolé mais je ne répondrai plus avant demain.
    Pour moi il est temps de dormir.
    Yvan KOENIG (VALLAURIS, France)  mercredi 23 janvier 2011 22:39:28
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

Maybe you are looking for