Trying to connect playbook to verizon mobile broadband usb modem--can't get it to work

Does anyone have any suggestions for gettting the mobile broadband usb modem to work with my playbook?  it took me a while to find a connector to connect the mini usb to the type A usb, but now that i've got it, i couldn't get it to work at all.   Has anyone gotten something like this to work? 

This is the instructions for tethering from a BlackBerry handheld device.
Article ID: KB26141 How to setup Bluetooth Internet Tethering on the BlackBerry PlayBook tablet
If you want to tether to another device, I don't know how.
1. If any post helps you please click the below the post(s) that helped you.
2. Please resolve your thread by marking the post "Solution?" which solved it for you!
3. Install free BlackBerry Protect today for backups of contacts and data.
4. Guide to Unlocking your BlackBerry & Unlock Codes
Join our BBM Channels (Beta)
BlackBerry Support Forums Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • Why is Windows 8.1 causing my Verizon Mobile Broadband USB Pantech modem to auto connect/

    Why is Windows 8.1 causing my Verizon Mobile Broadband USB Pantech modem to auto connect? If I turn it off in Windows Settings I can not get service. As I am on a 5 GB plan I do not want my internet running at all times nor do I want o have to disconnect from the internet every time I turn my computer on.

        mebpapa,
    Hmm. That is a bit conflicting. After all, we don't want you to have to worry about usage running up or having to get disconnected each time you get on the computer. Ultimately, this is a software functionality of Windows 8.1 however. Have you noticed a high increase of usage when the auto connect is left on or are you just taking precautionary measures?
    EvanO_VZW
    Follow us on Twitter @VZWSupport

  • Huwaei mobile broadband USB modem

    Hi,
    I did a search but I couldn't really find a topic relating to this issue directly; I recently purchased a mobile broadband contract, and they supplied me with a Huwaei USB modem, and it has been near useless, disconnecting and slow, with all graphics compressed and low quality (I assume as a kind of speed optimiser).. and these are all the things I can live with really, to be expected of dial up PPP style connections unfortunately (brings back memories!) but it is some other issues that are bugging me:
    When I disconnect and directly quit the Huwaei app, I get a kernel panic and an error log on rebooting relating to the mobile device, almost 100% repeatable. If I disconnect, then switch to another app, say even Finder, then back and quit, it is fine! Its a very consistent problem. It seems cause various strange kernel type problems and flakiness, which I've never experienced on this computer before.
    It also does this strange thing when it will disconnect, and give me a waiting for PPP termination message, before powering down completely, despite having a full battery. I'm 80% sure my battery is fine, although I am looking into this one.
    If any one else has had any probs with mobile broadband, it'd be good to hear what and if/how you found solutions!
    cheerrs
    Message was edited by: davo123

    Hi. I never had a problem with errors and so forth (as of yet). My problem with the e160 Huwaei usb modem is that it comes and goes. Right now 'sweat as' but in an hour or so I bet its a different story. I usually get 60% good use out of it (functioning properly). I have an old HP laptop running XP(my parentsz) and it runs consistently good on that. Now that laptop is 5 years old. My imacs bearly 2 years. I have XP on parallel's on my imac so I can run both operating programs and still when its bad on leopard it still bad in XP on my imac. But I go to my parents laptop same time, same house and its all good on the HP XP laptop so its not the network. F@#kin weird as. Its just weird how its sweat now and later it will be **** house. Anyone with some answers out there or anyone with the same problem I am dying to find out.

  • Trying to create HTML5 Video Playlist in Edge Animate - I can't get it to work. Please help!?!?

    Hi All,
    I am creating an interactive site through Edge Animate and am in the process of trying to create a HTML 5 Video Playlist to function within Edge Animate.
    Current Process - Example:
    I have 3 videos that need to be played on a certain page.
    I created a symbol and dragged the videos to the stage and hidden them within that symbol's timeline.
    I then use thumbnail images in a side playlist to either .remove(); .hide(); a video and .show(); the next.
    However when I do a hide / show option, the video continue to plays in the background if I don't also create an if/else statement to pause it.
    My concern with pausing it is that it will continue to load and dramatically slow down the load time of the site.
    References:
    I found this which looks very helpful but don't know how to add this to edge composition.
    http://demosthenes.info/blog/909/Create-An-Automatic-HTML5-Video-Playlist
    Please help or put me in the right direction to create a playlist would be hugely... AMAZINGLY.. helpful.
    Thanks,
    Jason

    Hi Joe,
    Thank you so much for your help on this one. It is hugely appreciated!!
    I have been working frantically to implement your solution to get this working. I used the 'change src' method.
    I have added all my code below in case anyone wants the solution in the future.
    Could you please help below as I am now totally stuck with the <track> and 'event listener issues' !!
    Issue #1:
    I am having major problems with loading the 'closed captions' track element.
    Everything I click for the video to change source / to the next video, the closed caption track adds to the video and doesn't 'unload' the previous one. You then end up with multiple different subtitle tracks on the video screen
    - The closed captions / subtitles are not showing up in Google Chrome either?
    Issue #2:
    I can't get the event listener in edge animate to work for 'playing' and 'ended'. Can you please help and point me in the correct direction??
    Screenshot (showing what happens after the 3rd video is loaded)
    This is the Code I am currently using in the "Creation Complete" of this Symbol.
    SET UP OF VIDEO PLAYER AND FIRST VIDEO
    var vid = sym.$("video_Chapter5");
    vid.html('<video id="ch5video" width="100%" height="auto" margin= "0 auto"  \
    position ="relative"  poster="video/video1_poster.jpg"  controls="controls" </video> \
    <source id ="videomp4src" src="video/Video_mp4_1.mp4" type="video/mp4" </source> \
    <source id ="videoogvsrc" src="video/Video_ogv_1.ogg" type="video/ogv" </source> \
    <source id ="videowebmsrc" src="video/Video_webm_1.ogg" type="video/webm" </source> \
    <track id ="trackvtt" kind="subtitles" src="video/Video_1_Script.vtt" srclang="en" label="English" hidden </track>');
    VARIABLE IDS
    $(document).ready(function() {
      var videoID = 'ch5video';
      var sourceID1 = 'videomp4src';
      var sourceID2 = 'videoogvsrc';
      var sourceID3 = 'videowebmsrc';
      var trackID = 'trackvtt';
      var vid1mp4 = 'video/Video_mp4_1.mp4';
      var vid2mp4 = 'video/Video_mp4_2.mp4';
      var vid3mp4 = 'video/Video_mp4_3.mp4';
      var vid4mp4 = 'video/Video_mp4_4.mp4';
      var vid1ogv = 'video/Video_ogv_1.ogv';
      var vid2ogv = 'video/Video_ogv_2.ogv';
      var vid3ogv = 'video/Video_ogv_3.ogv';
      var vid4ogv = 'video/Video_ogv_4.ogv';
      var vid1webm = 'video/Video_webm_1.webm';
      var vid2webm = 'video/Video_webm_2.webm';
      var vid3webm = 'video/Video_webm_3.webm';
      var vid4webm = 'video/Video_webm_4.webm';
      var script1vtt = 'video/Video_1_Script.vtt';
      var script2vtt = 'video/Video_2_Script.vtt'; 
      var script3srt = 'video/Video_3_Script.vtt'; 
      var script4vtt = 'video/Video_4_Script.vtt';   
      var newposter1 = 'video/video1_poster.jpg';
      var newposter2 = 'video/video2_poster.jpg';
      var newposter3 = 'video/video3_poster.jpg';
      var newposter4 = 'video/video4_poster.jpg';
    VIDEO PLAYLIST THUMBNAIL BUTTONS - TO CHANGE VIDEO IN PLAYER
      sym.$('btn1').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid1mp4);
      sym.$('#'+sourceID2).attr('src', vid1ogv);
      sym.$('#'+sourceID3).attr('src', vid1webm);
      sym.$('#'+trackID).attr('src', script1vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter1);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn2').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid2mp4);
      sym.$('#'+sourceID2).attr('src', vid2ogv);
      sym.$('#'+sourceID3).attr('src', vid2webm);
      sym.$('#'+trackID).attr('src', script2vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+trackID).load();
      sym.$('#'+videoID).attr('poster', newposter2);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn3').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid3mp4); 
      sym.$('#'+sourceID2).attr('src', vid3ogv); 
      sym.$('#'+sourceID3).attr('src', vid3webm);
      sym.$('#'+trackID).attr('src', script3srt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter3);
      sym.$('#'+videoID).get(0).play();
      sym.$('btn4').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid4mp4);
      sym.$('#'+sourceID2).attr('src', vid4ogv);
      sym.$('#'+sourceID3).attr('src', vid4webm);
      sym.$('#'+trackID).attr('src', script4vtt);  
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter4);
      sym.$('#'+videoID).get(0).play(); 
    EVENT LISTENER FOR PLAYING - TO CREAT BACKGROUND /LIGHT BOX SCREEN
    sym.$('#'+videoID).get(0).addEventListener('playing', function () {
    sym.getSymbol("backscreen_Ch5").$("backscreen").show();
    sym.getSymbol("backscreen_Ch5").play("play");
    EVENT LISTENER FOR ENDED - TO PLAY NEXT VIDEO IN SERIES
    sym.$('#'+videoID).get(0).addEventListener('ended', function () {
    //code to play next video

  • Tried to connect my ipod to TV through USB. Can play music but the TV cant detect video files

    Hi. I have an ipod nano 4th generation. I am obsessed with Doctor Who but unfortunately I do not have BBc America. I watch from itunes on my PC. I would like to sync the shows on the ipod and watch on TV. I am aware i can purchase apple's A/V cable, but i have found that my TV also has a USB port. I plugged in my ipod and four menus came up, "video" "pictures" "music" and "settings". I can play music but the Tv wont find the video files on the ipod.
    Thanks!!!!

    iTunes Match on your computer can give you the same higher quality files. 
    Run iTunes on your computer.  Show your music library by Song in list view.  Add the columns for Bit Rate, Kind, and iCloud Status to the list view.
    Any song that is shown as Matched for iCloud Status, that is NOT already 256 kbps (or higher) for Bit Rate can be downloaded from iCloud at 256 kbps AAC.  For example, if you have an old album from a music CD that you ripped years ago at 128 kbps MP3, and it is "matched" by iTunes Match, you can replace the lower quality files you have now with 256 kbps Match AAC audio file (which is shown for Kind).
    To do so, select the song, or a set of songs, on the library list.  Press Delete.  Confirm you want to delete the song (but do NOT check the box to delete song from iCloud) and choose to move song file to the Trash.  The songs remain on your iTunes library list, with a "cloud" download button next to the song name. 
    Click that button to download the song from iCloud.  Because the song is Matched, you get the replacement as a 256 kbps AAC audio file, instead of the original 128 kbps MP3 file (or whatever lower quality format it was before).
    You can go through your iTunes music library, and replace lower quality Matched songs with higher quality versions, thanks to iTunes Match.

  • HT201210 I updated my iphone4 to ios6. My iphone can't be connected to itunes on my computer. How can I get it to work

    I updated my iphone4 to ios6 operating system. Now I'm trying to sync my phone to itunes on my computer and the message I get is "the iphone 'janice' cannot be connected. Please help

    You might want to try posting in your native language.  Then again, digging up a 6 month old posting rarely serves a useful purpose.

  • I am trying to sync my mac to a roland vs2480 and can't get it to work. Anyone have experience with this?

    I am trying to sync my mac to my Roland vs2480 and need to know how to make it work. I have a video I am trying to score and it has a smpte time code. How do you get that time code to the smpte "in" on the vs2480? I tried using an audio out signal from the video and sent it to the smpte in jack via rca cables but, it doesn't seem to recognize any signal. any insignt would be greatly appreciated.

    Video formats supported: H.264 video up to 1080p, 60 frames per second, High Profile level 4.2 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format
    from
    http://www.apple.com/ipad-air/specs/
    it don't matter if your ipad is not the air if what you attempt to sync with it can't be played on the ipad because it don't support the format it will inform you

  • Trying to measure frequency with the cFP-CTR-502. Can't get tutorial to work!

    Hello,
    I am trying to measure the frequency of a
    signal that I'm counting using the cFP-CTR-502. I can successfully
    count pulses but I what I really need to know is the RATE of counts
    (counts/s or the frequency). I have found some Labview programs that
    supposedly do this that I've downloaded from ni.com (link below). The
    concept makes sense of using a gate and output but the programming is
    crazy - at least the program in the link below is. 
    1. Is there an easier way to measure the frequency of counts?
    2. Why will the program from the link below ( frequency_measurement__ctr_.vi
    ) not work on my system? I get an error everytime I run it. Could I be
    missing some VI's necessary for it to run? Or is it from another
    LabView version that is not compatible?
          The
    entire error is:   -32810 occured at FieldPoint initialization failed.
    Possible causes, 1. Missing or corrupt configuration file; 2. Failed to
    create call backs. : FP Open.vi
          Link for program: http://sine.ni.com/devzone/cda/epd/p/id/4682
    Thanks in advance for all your help and time!
    Sam T

    Sam,
    Have you tried the example titled Frequency Measurement.vi that ships with LV?

  • When connecting my HP 7150 to a router I can not get it to work. Is there anything I need to do?

    The router has a usb port and when I install the usb plug into it I get no where, it won't work , any sugestions?

    Error 20, 21, 23, 26, 28, 29, 34, 36, 37, and 40
    These errors typically occur when security software interferes with the restore and update process. Use the steps to troubleshoot security software issues to resolve this issue. In rare cases, these errors may be a hardware issue. If the errors persist on another computer, the device may need service.
    Also, check your hosts file to verify that it's not blocking iTunes from communicating with the update server. See the steps under the heading "Blocked by configuration (Mac OS X / Windows) > Rebuild network information > Mac OS X > The hosts file may also be blocking the iTunes Store." If you have software used to perform unauthorized modifications to the iOS device, uninstall this software prior to editing the hosts file to prevent that software from automatically modifying the hosts file again on restart.

  • I'm trying to have existing Exchange accounts setup on my new iMac and can't get it to work.

    I have existing Exchange accounts setup on my iPhone and iPad to access my work email.  I'm trying to do the same on my new iMac and can't get it to work.  I have it setup the same as my iPad and it asks me for my password over and over...any suggestions?
    <Re-Titled By Host>

    Hi mwatts18,
    As a preliminary troubleshooting step, you should reference the information in the following article:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/TS3276
    I would especially suggest that you delete the account and re-add it, making sure that you are entering the correct password when you add the account. Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • User having trouble connecting to VPN using mobile broadband card

    I've got a user with a laptop running Windows 7 who is trying to use an AT&T mobile broadband card to connect to a VPN using the Cisco IPSec VPN client. The card is the Sierra Wireless Momentum 4G. The VPN connection established fine, but no traffic gets passed after that. Other users can connect to the VPN fine (not using mobile broadband, though). Wired and wireless connections from this laptop are able to get to the VPN fine. It's just over the mobile broadband service that this happens. Are there any workarounds for this issue?

    Hi and Welcome to the Community!
    To use the proprietary BB services (including Push email capability, native browser, BBM, etc.), you must have an adequate data plan from your carrier. The carriers host BIS (BlackBerry Internet Service) for their BB users. Typically, BIS is not available via generic data plans. Many carriers call what is necessary The Blackberry Data Plan. Whatever they call it, it is the carrier who delivers BIS to their BB users -- contact them for assistance. Once you have a BIS-capable data plan on your BB (at whatever fees your carrier will charge, btw), your BB-proprietary services will function (e.g., you will have Personal/Internet Email added to the email setup wizard, your BBM will function, etc).
    http://www.blackberryfaq.com/index.php/What_do_I_need_a_Data_Plan_for%3F
    With hundreds of carriers in the world, each with dozens of different data plans, it's impossible to tell you specifically what any service plan might actually provide. Only the carriers can answer that question. The best thing to do is to decide what services you desire, and then talk to your carrier about obtaining (from them) a data plan that enables what you desire.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I'm having trouble with back to my MAC.  I had everything working on my home wifi network but now I am at my daughter's house and trying to connect via a verizon hotspot wifi connection.  I'm wondering if the Verizon hookup is a problem.

    I'm having trouble with back to my MAC.  I had everything working on my home wifi network but now I am at my daughter's house and trying to connect via a verizon hotspot wifi connection.  I'm wondering if the Verizon hookup is a problem.

    I finally figured it out.  Needed to update her Airport firmware and allow guest access, and also changed Sharing preferences to Allow Access for All Users.

  • Trying to connect 2010 Mac mini to alba hd tv but can't get it to work, any theories?

    Trying to connect 2010 Mac mini to alba hd tv but can't get it to work, any theories?

    Welcome to the Apple Community.
    The iPad 1 is only able to do basic AirPlay, many providers of programming have blocked their apps from working with AirPlay.

  • I am trying to connect a second monitor on my system so that I have one to work on and the other that I am projecting. Any ideas on how to do that?

    I am trying to connect a second monitor on my system so that I have one to work on and the other that I am projecting. Any ideas on how to do that?

    connect, then in SystemPreferences/Displays you can set the two as you want.

  • When trying to connect to the itunes store on my MacBook Pro, I get the following error message: "iTunes could not connect to the iTunes Store.  An unknown error occurred (-54) Make sure your network connection is active and try again."

    When trying to connect to the itunes store on my MacBook Pro, I get the following error message: "iTunes could not connect to the iTunes Store.  An unknown error occurred (-54) Make sure your network connection is active and try again."

    I've had the same problem for a month and yet I still cant get iTunes to work, I've heard different solutions but none have worked for me
    This may or may not work for you but its worth a try even though it didnt seem to work for me, Good Luck!
    Control Panel
    Internet Options
    Connections Tab
    Click LAN Settings
    Uncheck "Use A Proxy Server"

Maybe you are looking for

  • Text Edit application for Mac Mini 10.4.11

    I am not sure if everyone is familiar with my "Mac Mini Saga", ( BDAqua certainly is! - by the way, congratulations for passing the 11000 mark! ). Now that the Mini is finally updated to 10.4.11,(without the original install discs), so that the elder

  • Problems with properties files and war files in weblogic 5.1

              I work with WebLogic 5.1 and I'm trying to deploy a web application which gets           a properties file. If I deploy it as an expanded directory hierarchy (with the           properties files into WEB-INF/classes) I have no problems. Whi

  • CS6 won't let me resize large images?

    I'm using Photoshop CS6 to assemble and export a series of extremely high-res tiles. Long story short, they will be used to make up a large map in a mobile app. I have a pretty tight deadline and I've just been stopped in my tracks by an error I get

  • Mac pro 5,1 RAM Upgrade

    I am planning to give my Mac Pro (Mid 2010) another RAM upgrade. As the official Kingston/Crucial DIMMs do not include 16GB DIMMs, I think of choosing Kingston Value RAM: ECC Registered (3x, 16GB, DDR3-1600, DIMM 240). Has anyone here in the forum tr

  • Bypassing proxy

    Hi there, I have an old PowerMac G5 at work (running Leopard) and need to connect to an exchange server via Entourage 2008. For some reason Entourage will not use simple hostnames to access the various components of the exchange server and there is n