Need help managing bandwidth with a WRV210

At our office there are two IT guys me and Chris. I use a desktop PC and Chris uses a laptop. We have a T3 line connected to a Linksys WRV210, which is updated to the latest firmware, and a small staff with about 8 desktop computers total. I started noticing that I was having issues downloading files from the internet. It would take sometimes 30 minutes to download a 5mb driver file. Come back after lunch the same file would download in 3 minutes. Also during certain times of the day I could do a bandwidth test and it might show high and then later it would be slower than dial up.
One common event I began to pickup on was the absence of Chris. When he would leave the office (and usually take his laptop with him). The internet was fine. However, almost immediately upon his return the internet would come to a crawl. I have asked him if he is downloading anything thinking maybe that was the issue. Of course he said he was not and that the internet was fine on his computer.
Then one day as I walked by his desk I saw Limewire running on his computer (a file sharing program). I am pretty sure now that this is the source of our bandwidth problem. I want to be able to block or at least allocate how much bandwidth gets used for things such as file sharing programs. The hard part is we are not an enterprise level business and therefore cannot afford appliances that cost thousands of dollars. Add that to the fact that file sharing programs are notorious for being tricky to manage let alone block and you can see my dilemma. Can someone please recommend a way to control or prevent Chris from killing our bandwidth? I want to use our router since he does not have the admin password or a key to the room it is in (my office). His laptop is currently using the wireless and is setup for DHCP. However, I need to know he cannot simply get around any efforts by simply using a static IP address. Keep in mind he is not the average user and is a very skilled tech.

Thank you for your reply. I did some more research on it and found that Limewire supports PnP and will auto switch to using other ports if the main ports (6346-6347) are blocked. In my efforts to stop him I even forwarded 6346-6347 to an IP for our network copier hoping it might interfere with it and so far it has not. I'm not sure that Limewire is not going to be easy to block.  Based on what I've read it may even use port 80 if all other ports are blocked.

Similar Messages

  • FREE TRIAL ON PAGEMAKER INSTALLED, BUT REQUIRES STUFFIT FOR FINAL STEP.  CAN'T SEEM TO MANAGE THIS STEP. NEED HELP MANAGING THE FINAL STEPS BEFORE PAGEMAKER IS USEABLE.  THANK YOU

    HAVE INSTALLED PAGEMAKER, BUT BECAME CONFUSED WHEN "STUFFIT" SEEMED TO BE REQUIRED FOR NEXT STEP.  NEED HELP IN FINAL STEPS IN DOWNLOADING PAGEMAKER FOR USE.

    >I would like to purchase a new mac with the appropriate operating system that will
    run pagemaker 7.  If not, I understand that my current mac, Mac OS X, version
    10.6.8, processor 2.8 GHz Intel Core i7, Memory 4GB 1067 MHz DDR3 will not support
    either Pagemaker 7 or InDesign.  My question is what package can I purchase that
    will satisfy one or both of these needs?  Thank you for any guidance.
    R_Kelly  created the discussion
    "FREE TRIAL ON PAGEMAKER INSTALLED, BUT REQUIRES STUFFIT FOR FINAL STEP. 
    CAN'T SEEM TO MANAGE THIS STEP. NEED HELP MANAGING THE FINAL STEPS BEFORE PAGEMAKER
    IS USEABLE.  THANK YOU"
    To view the discussion, visit: https://forums.adobe.com/message/6607524#6607524
    >

  • Need help to start with some file and text manipulation

    Hello script mavens,
    I need help with starting a script that does the following:
    -within a base folder it takes an inventory (list?) of all the files (which happen to be image files).
    -creates a new folder inside the base folder and calls it imagesX where X increases by one every time the script is run
    -moves all the files into the images folder
    -within the base folder it creates a new text file and calls it imagesX.js
    -writes a "//-" into imagesX.js
    -then writes the list of filenames into the imagesX.js twice, separated by an empty line, and adds a semicolon to the end of each filename and saves imagesX.js
    -from a folder a level above the base folder it copies a file called index.html into the base folder and renames in indexX.html
    -in indexX.html it replaces a string "replaceThis" with "imagesX.js"
    The task is more complex but this would help me tremendously do the rest.
    If I am asking for too much on this forum please let me know

    This should get you started.
    The description of how you want to write the data isn't clear, but the rest should work (untested):
    property imageNum : 0 -- last used ImageNumber
    -- within a base folder it takes an inventory (list?) of all the files (which happen to be image files).
    -- get the folder:
    set baseFolder to (choose folder)
    -- now get the files within it:
    tell application "Finder"
    set fileList to every file of folder baseFolder as alias list
    end tell
    --creates a new folder inside the base folder and calls it imagesX where X increases by one every time the script is run
    tell application "Finder"
    set imageNum to imageNum + 1
    set newImageFolder to make new folder at baseFolder with properties {name:"images" & imageNum}
    -- moves all the files into the images folder
    move every file of folder baseFolder to newImageFolder
    --within the base folder it creates a new text file and calls it imagesX.js
    set textFile to (open for access file (baseFolder as text) & "images" & imageNum & ".js" with write permission)
    --writes a "//-" into imagesX.js
    write "//-" to textFile
    -- then writes the list of filenames into the imagesX.js twice, separated by an empty line, and adds a semicolon to the end of each filename and saves imagesX.js
    -- need more info here
    -- a blank line between each instance of the file name? or all file names, blank line, all file names again?
    -- an example, please
    close access textFile
    --from a folder a level above the base folder it copies a file called index.html into the base folder
    --and renames in indexX.html
    --in indexX.html it replaces a string "replaceThis" with "imagesX.js"
    -- the easiest way of doing this is to read the file and write a new copy with the changes - that's easier than changing it in situ:
    set indexHTML to (read file "index.html" of folder (container of baseFolder))
    set {oldTIDs, my text item delimiters} to {my text item delimiters, "replaceThis"}
    set indexHTML to text items of indexHTML
    set my text item delimiters to "imagesX.js"
    set indexHTML to indexHTML as text
    set my text item delimiters to oldTIDs
    set indexFile to (open for access file ("index" & imageNum & ".html") with write permission)
    write indexHTML to indexFile
    close access indexFile
    end tell

  • NEED HELP IN MATRIX WITH GROUP REPORT

    Dear All,
    I need small help in MATRIX WITH GROUP REPORT In Report Builder Test Report
    In my report, having periods as rows and location as columns as shown below,
    1) LOC-A
    JAN-10 FEB-10
    ITEM-GROUP -1 1 2
    ITEM-GROUP-2 3 4
    ITEM-GROUP 3 5 6
    2) LOC- B
    MAR-10 APR-10
    ITEM-GROUP -1 7 8
    ITEM-GROUP-2 9 10
    ITEM-GROUP-3 11 12
    But comming to my requirement, the periods should be in fix in matrix as shown below
    1) JAN-10 FEB-10 MAR-10 APR-10
    LOC-A
    ITEM-GROUP -1 1 2
    ITEM-GROUP-2 3 4
    ITEM-GROUP 3 5 6
    LOC- B
    ITEM-GROUP -1 0 0 7 8
    ITEM-GROUP-2 0 0 9 10
    ITEM-GROUP-3 0 0 11 12
    I am unable to get this kind of output format
    Please kindly waiting for reply from our team....
    Regards
    krishna.P

    For the periods, create a seperate dummy query and then use it as column group in the multi query matrix.

  • Need help  Pagination Suppourt with DataGrid

    Hi ,
    When i do a search Operation , the data from Database is huge and i think if i display all of them at a Time it will be a performance and response Time issue .
    So the question i am asking is that , can any body please give me a basic idea as how to implement Pagination with DataGrid Results ??
    Need help with Datgrid and Pagination suppourt .
    Thnaks in advnace .

    Hi Kiran,
    Try referring to the below link...
    http://www.flexicious.com/
    Thanks,
    Bhasker Chari.S

  • Replaced hard drive in compaq presario cq62, need help recovering it with out disks

    Recently replaced the hard drive in my notebook due to failure of original.  Need help recovering it without disks

    If you are wanting to install the original copy of Windows it came with, you will need a set of recovery disks.
    Otherwise, you can purchase a copy of Windows to install and download the appropriate drivers from http://goo.gl/hOm3. Just make sure the copy of Windows that is installed is at least the same family of Windows to ensure that drivers are available.
    What is the exact model of the notebook and product number?
    NOTE: Do not provide the serial number.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Need help from somebody with the "MSI KT6 Delta-FIS2R" motherboard

    Hi everybody!
    I really need some help from somebody with the MSI KT6 Delta-FIS2R motherboard (the one with onboard LAN, Audio, RAID, S-ATA and IEEE1394 firewire). You see. I've got this board myself but it's been destroyd. Some values for the onboard devices in my board has been overwritten so that windows no longer recognizes the onboard LAN and Audio controller anymore. I really need some help from somebody with this board.
    I need to see what the values for the onboard devices should be. I hope someone can help me by sending me a repport from the Everest home edition: http://www.lavalys.com/products/overview.php?pid=1&lang=en
    If anyone could do me this favour, I would be VERRY thankfull

    Quote from: HYSTERIAH on 12-November-05, 06:24:20
    I really need some help from somebody with the MSI KT6 Delta-FIS2R motherboard
    HYSTERIAH,
    With 76 Replies and 277 Views on your original thread, it looks to me like people have been trying to help you.
    So there is no confusion, I am locking this thread so all your help and advice you receive will be in the same place, so people do not need to jump between threads to keep track of what has already been suggested for this mobo of yours.
    Richard

  • Love the X2 except for 3 main issues which I need help or clarification with

    Hi Everyone, I have pretty much copied and pasted my post from the Motorola forums (with a few minor edits) over here as I do need a little bit of help or insight on my issue.
    I have scoured through the Droid X section trying to find solutions to my problems and I haven't been able to get a solid answer anywhere (here or on other Android/X2 forums).
    I have an X2. I really like this phone. It is solid and has crystal clear sound quality. However, ever since I have had it I have seen intermittent issues pop up and I would like to get some feedback on them or get things put into perspective that it is a known glitch in the interface between the Android OS and the hardware. I bought the phone at Best Buy and every time I bring it in (either back to Best Buy or a Verizon store), as the issue is intermittent, they won't replace the phone. The people at Best Buy have told me to "do a battery pull every morning" which completely offends me as I never had to do anything so drastic with my original Droid until it finally decided to reboot on me every 2 hours (this is when I upgraded to the X2). I had to pick it up from Best Buy as I needed a functional phone immediately and no Verizon store in the area had the X2 in stock.
    The first (and most important issue)... Every once in a while, even though I have full signal, when somebody calls me, my phone will not ring or vibrate. It will ring the full six times on their end but does not show up on my phone as ever receiving or missing the call. After the six rings on their end, it goes to voicemail and after they leave the message, only the voicemail indicator shows up. Over the past month this has happened multiple times (once or twice a week). Those who don't leave messages have had to hunt me down because they thought I had left my phone elsewhere as it never rang or notified me of an incoming call.
    The next two issues are still important to me but they are more of an inconvenience than anything else.
    Sometimes (yes, this is intermittent too but it happens daily), when I wake my phone from sleep, all of the antennas seem to be off and it takes a good second or two to show back up in the status bar (3G, Bluetooth, etc). My question is, have all of the non-CDMA antennas "gone to sleep"? The signal bar for the actual cell service are still there, just not the other services (3G/1X) or wireless settings (Bluetooth/WiFi) for a couple seconds.
    Lastly (and this may be a direct link to the previous question), when I use the "Google Talk" application, the messages I send go through very quickly, but sometimes I do not get replies for a long time after they are sent (30 minutes to and hour later). If I wake the phone, sometimes a previously sent message will come through, and when I check the chat log in Gmail itself, the message was sent from quite a while back (15 minutes to an hour).
    I know I am brand new to your community, and I am sorry to have to burden you all with a post like this as my initial post. However, I have always liked and used Motorola phones with Verizon/GTE (all the way back to the MicroTAC series of the early 90s) without issues or incidents for the most part. As my original Droid was starting to act up I decided to jump on the X2 as it was just released. I understood that it was not going to initially come with Gingerbread and I said I would be patient for the update to come and hopefully it would bring a new level to the phone itself as well as solve some (if not all) of the issues. However, now that it is past my return date, and there is no update as of yet, I do require assistance.
    Thanks in advance for any assistance or insight,
    Tuan

    Thanks for the replies everyone.
    The responses I received over at the Moto forums said the same thing about the battery saver mode. However, I have had the same issue with the radios shutting off during the day while it is in "Nighttime savings mode" so I'm just thinking it's an oddball glitch with the phone's power management settings and clock. I have recently changed the battery mode to "Performance Mode" from Nighttime Savings" as I have the phone plugged into the charger at night anyways. I'm hoping that will take care of both my radio and gtalk issues.
    @Wildman: I have heard the same thing about the GB update from a Verizon rep very recently myself. I am still going to hope for an update sometime in the near future, but I do recall the first update for my Original Droid was months down the line from the release day.
    @Droiddude: Are you just cycling the power? Or are you actually doing physical battery pulls? If cycling the power works for you it would lessen the burden of pulling that Incipio case (Verizon Double Cover) off my phone every time to do battery pulls. It's a great case but wow it's a tight/snug fit.
    @vereyezuhn: I understand that there are possible dead areas in which my main issue may occur. I even have a prepaid phone for the times I am in a Verizon dead zone. However, when my issue occurs, I will be in the same spot for a while. I will receive all my calls, miss one in the manner I have spoken, then receive the following calls normally (SMS/MMS does not seem to be affected either as I seem to receive all of those). This is why I have this specific issue. I have recently cleared the phone's cache partition as well as update the PRL using *228 option 2. We will see over time if this eliminates the issue or at least makes it much more rare.

  • Need help managing two iphones, two iTunes accounts, and one music library

    We have digitized all our music and it's successfully set up on an external hard drive. This is all great for me, as my iphone is synced to my iTunes account, so everything is set.
    Problem is my husband set up his own iTunes account with his iphone and now he wants to access the music on our home computer/iTunes account.
    So what we have is:
    USER A =
    computer + digital hard drive w/music (managed by iTunes account A)
    iTunes account A
    iphone A (synced with iTunes account A)
    USER B =
    iTunes account B
    iphone B (synced with iTunes account B)
    iTunes account B = very few music files + lots of Aps
    What we want is for USER B to be able to access the computer + digital hard drive w/music (managed by iTunes account A), but retain his Aps that he's purchased for his iphone.
    I hope this is clear. Can someone tell us the best way to accomplish getting USER B access to our home music collection?
    Thanks!

    My problem is similar, except for 3 different devices: IPod Nano, Old style Shuffle, and Iphone 3Gs.
    To answer one post as to "why" different accounts... 1 pre-teen user; wife/husband have (maybe) a 10 song overlap in the library, and I have tons of apps.
    Ok, all I want to do is play the same stuff on my home computer as on my work computer. There are 3 I-tunes accounts on my home computer (mine is one). My apps/movies and music don't show up on this computer, even though it has been authorized. I have synced the phone, but no changes, even after adjusting the prefs. Oh, and this is a side note, my Outlook calendars are not playing well together either. My home Outlook is "stand alone" while my work calendar is accessed by others all the time and both appts and email are "pushed" to my phone. (This is not a big deal, however)
    All I want is to be able to use my home computer to get MY movies and songs onto my I-phone (from the home computer)-- and download new stuff, that once I put on my phone will transfer to my work computer when I plug sync my phone and work computer together.
    Honestly, I don't need my wife's stuff or my kid's stuff, nor do I need for them to have my stuff. I don't care if we do share, I just don't want to chew up the memory on my phone with "Kidz Bop Vol 1-99", etc.
    My work computer is my primary for my Itunes. If you are still with me, please help. Thanks!

  • Backup DC past tombstone and need help replacing it with another DC with the same name and IP

    Hey Everyone
    We have a single domain in a forest with 2 DCs with AD integrated DNS configured. The primary DC with all the FSMO roles is a VM (Server 2008 R2) and the backup DC is a physical server (Server 2008 non-R2).
    The backup DC's hardware is very old and has been giving us a lot of issues where the system would intermittently BSOD, freeze, black screen only etc. and as a result, the server was turned off for a very long time, definitely beyond the default tombstone
    lifetime of either 60 or 180 days.
    We want to replace this bad backup DC with another physical server which became available as a spare and is much newer and in a working condition hardware wise. We also wish to ultimately give it the same name (FQDN) and IP to basically make it an outright
    replacement for the current bad backup DC.
    My questions are:
    1.) If we are in a position where the bad server could possibly physically boot and start the operating system and have network connectivity, will we be able to use DCPROMO as one would normally do to demote this DC, or will it have to be done forcefully,
    while keeping in mind as I said that the DC is way past the tombstone lifetime period?
    2.) If it has to be done forcefully, I am aware that the meta data needs to be cleaned up in AD on the working primary DC, although I have never performed such a process before. If this is done, are there any other things I need to look out for or do
    before I attempt to replace it with the other server which I will set up wit the same name (FQDN) and IP, then add to the domain, and then lastly promote as per normal using DCPROMO?
    I know we will have to upgrade the scema to 2012RM as the replacement backup DC will be running this newer operating system.
    Anything else you wish to add or point out to me would be highly appreciated. Thank you in advance.
    Regards,
    CTV

    Hi,
    I would suggest please do the metadata cleanup using the script and then remove object from below DNS console and then run the repadmin /syncall /Aed
    https://gallery.technet.microsoft.com/scriptcenter/d31f091f-2642-4ede-9f97-0e1cc4d577f3
    Repeat running the vbs script till the wrong/unnecessary dc’s are removed.
             Cross check the removal – dsa.msc [ad users and computers] > Domain Controllers OU
     Adsiedit.msc
     Expand domain partition, select OU=Domain Controllers, make sure only the necessary domain controllers are listed.
     Delete the incorrect domain controllers.
    Dnsmgmt.msc [Dns Management]
          Expand the forward lookup zones\_msdcs folder
    i.      Make sure only the actual domain controllers are listed, delete wrong Alias recordsremove wrong name server records
    ii.      Select the container [forward lookup zones\_msdcs.domain.com\dc\_sites_\sitename\_tcp] > delete incorrect _ldap and _kerberos records are listed.
    iii.      Select the container [forward lookup zones\_msdcs.domain.com\dc\_tcp] and delete incorrect _ldap and _kerberos records
    iv.      Expand the [forward lookup zones\_msdcs.domain.com\domains\guid\_tcp] and delete incorrect _ldap entries
    v.      Select [forward lookup zones\_msdcs.domain.com\gc] – delete incorrect HostA records
    vi.      Expand the [forward lookup zones\_msdcs.domain.com\gc\_sites\sitename\_tcp] – delete incorrect _ldap entries
    vii.      Select the [forward lookup zones\_msdcs.domain.com\gc\_tcp] – delete incorrect _ldap entries
    viii.      Select the [forward lookup zones\_msdcs.domain.com\pdc\_tcp] – delete incorrect _ldap entries
          Expand the forward lookup zones\domain.com folder
    i.           
    Delete Host(A) records of dc’s which are non-existant.
    ii.           
    Correct the NameServer (NS) records
    iii.           
    Follow steps similar to ’ A ii ‘ >> ‘ A viii’
             Dssite.msc [Sites and Services]
          Expand the [Sites\Sitename\Servers] – delete incorrect server’s
    B.      Delete incorrect subnet configurations [Sites\Subnets]
          Delete incorrect site links [Sites\IP]

  • Need help big time with pop-up window!

    This is probably an easy answer, I'm not a programmer or a back end guy whatsoever, I'm a graphic designer trying to make his way through a project for a client.
    I'm working up a Flash template, and I need to make a simple pop up window that will view a more detailed version of an image.  The template has a pop up window system where you add your photo to a certain frame of a movie clip.  The problem is, the pop ups have scroll bars built in, and for the life of me I couldn't figure out how to get rid of them, so I duplicated one of the movie clips that looked like it housed the framework of the pop up and deleted the scroll bar (I didn't delete any of the scroll bar code because I had no idea what I was doing).  It actually kind of worked, but the pop up window is a bit too wide and doesn't look right.
    You can view my hack job here...
    http://truetilldeathhq.com/main8_v7/main8_v7.html
    Stay on the "Print" page and click the first "01" button and an ad for Ford will come up.  Click the "Detailed View" button in the description to see the pop up window.
    My question is, there MUST be an easier way to make a pop up window than the workaround I'm using with the template.  What I'm trying to do is have a pop up for each sample of the work (all images would be the same size) for the first four buttons, and then for the "Online Banners" page, have the pop up open up to the dimensions of the particular banner ad and play the swf.  The pop ups shouldn't have scroll bars, only a title and the button to close the window.
    To view the template files, you can download them at:
    http://truetilldeathhq.com/main8_v7/main8_v7.fla
    The "descripton" movie clips have the descriptions and the "Detailed View" links in the frames, and the movie clips I not so gracefully butchered to get the pop up to work were TM_page_content_scroll (where you're supposed to put an image in a certain frame and then put the # of that frame in the Actionscript of the "Detailed View" button), and the TM_main_cont_page2 and TM_pop_up_main3, which were the ones I duplicated.
    If ANYONE can offer even the slightest bit of help, I gratefully appreciate it.  I've been working on this thing for like 15 hours a day and I can't even think straight at this point, thanks!

    I admit to not having read everything you wrote... there's just too much of it. But...
    Hashtable (and HashMap, which you should really be using unless you have some external constraint requiring the use of Hashtable) map each key to a single value object.
    That is, you can map from the key string "4996" to one single other object. And then you can also map from a different key to a different object.
    In you put() method, you add a mapping from "4996" to "good", and then you replace that mapping with one from "4996" to "home". There is only ever one value associated with a given key.
    To map multiple values to a single key, you need the value object to be a collection of some kind (or an array). So, you could map your string "4996" to a List, and that list could contain the strings "good", "home", etc.

  • Need help displaying images with List component for Flash CS4 (ActionScript 3.0)

    Hi folks:
    I am an inexperienced user of Flash CS4 Pro (v10.0.2). I am attempting to use the List component with ActionScript 3.0 to make a different image display when a user clicks each item in a list.
    I did find a tutorial that showed me how to make different text display using a dynamic text box and the following ActionScript:
    MyList.addEventListener(Event.CHANGE, ShowSelectedItem);
    function ShowSelectedItem(event:Event):void {
        ListText.text=MyList.selectedItem.data;
    ...where My List is the instance of the List component and ListText is the dynamix text box. In this case, the user clicks an item in the list, defined by the label value in the dataProvider parameter of the List component, and text displays as defined in the data value in the dataProvider parameter.
    However, as I mentioned to start, what I really want to do is make images display instead of text. Can anyone provide me the steps to do this?
    I appreciate your help (in advance)!!
    Cindy

    Hi...thanks for responding! I was planning on using images from the Library, but if there is a better way to do it, I'm open. So far, I just have text in the data property. This is part of my problem. I don't know what I need to put in the data value for an image to display. Do I just put the image file name and Flash will know to pull it from the Library? Do I need to place the images on the stage on different frames? I apologize for the "stupid user" questions, but as you can tell, I'm a newbie.
    Appreciate your patience and any help you can offer!
    Cindy

  • Need help integrating flash with asp

    i am creating a dynamic site that pulls all of its content
    from and access database. i would like to make the entire page in
    flash. i have never used flash to pull any content from a datbase
    before. does any one know how to do this ? or know of a good
    tutorial? i can only seem to find tutorials for flash 8 or flash 5,
    nothing for mx2004.
    it seems like every thing i try doesnt work and no one knows
    how to help me.
    feeling very discouraged,
    -furley

    Flash has nothing to do with getting data from an Access
    database.
    You need to focus on either ASP or ASP.Net, a scripting
    language for the
    server script either JScript or VBScript, middleware usually
    ADO or ADO.Net
    and finally SQL. All of these items go together in a server
    side script that
    could work with non-Flash or Flash client interfaces. You
    should find many
    tutorials on the internet with these items as it has been
    done for nearly a
    decade.
    You also can use ColdFusion.
    For Flash, you need to learn LoadVars Actionscript class if
    you plan to
    communicate data in the URL Variables format or XML
    Actionscript class if
    you want to use XML data format. It will not really matter to
    Flash what is
    on the server side as it will only be sending and receiving
    data in either
    of those two data formats (URL Variables or XML).
    If you want to look at some Using VBScript, ASP, ADO and an
    OLEDB Connection
    examples I use for seminars in Web database you can take a
    look here:
    http://www.hosfordusa.com/ClickSystems/courses/webdb/.
    However they lack
    Flash example but would work "as is" with a Flash example.
    Once you look at some of those options, you can then form
    more specific
    questions for this forum and especially with using the
    LoadVars and XML
    Actionscript classes or the XML connector Flash component.
    Lon Hosford
    www.lonhosford.com
    Flash, Actionscript and Flash Media Server examples:
    http://flashexamples.hosfordusa.com
    May many happy bits flow your way!
    "professorfurley" <[email protected]> wrote
    in message
    news:[email protected]...
    i am creating a dynamic site that pulls all of its content
    from and access
    database. i would like to make the entire page in flash. i
    have never used
    flash to pull any content from a datbase before. does any one
    know how to do
    this ? or know of a good tutorial? i can only seem to find
    tutorials for
    flash
    8 or flash 5, nothing for mx2004.
    it seems like every thing i try doesnt work and no one knows
    how to help
    me.
    feeling very discouraged,
    -furley

  • I really need help from someone with CS5

    HELP me. I am in a begining flash class and I need to submit an assignment as CS4, one which I made it with CS5 and my trial ran out before I could save it down. I am in the procces of recieving an educational discount but my deadline is tonight and they keep rejecting the proof I send in! I would be forever indebted to you!

    for whatever reason they only have CS4 and. This is such a ridiculous problem but if I don't solve it in 2 and a half hours I fail the class. And of course I know no one with CS5 either

  • I need help in understanding with DAQ card best fits my purposes

    I need a direct face-to-face meeting with an applications engineer.

    Hello Akwan,
    National Instruments has a whole technical department to help you choose the best equipement for your applications. Application Engineers will help you with any problems you have regarding devices you already have. Call (888) 280-7645 and a Technical Representative will assist you with your choice.
    Thank you for calling National Instruments
    Serges Lemo
    Applications Engineer
    National Instruments

Maybe you are looking for

  • Due date in Detail Aging report

    Dear all, I would like to ask if it is possible to add the Due date for each document displayed in the Detailed Customer Receivable Againg report ? I tried, but it seems impossible to do so, even I set the field as System Variable (as the Due date in

  • Accessibility testing crashes Acrobat

    We're using JAWS and NVDA to test PDFs for section 508 compliance. When we exit JAWS, Windows presents a Data Execution Prevention message:"To help protect your computer, Windows has closed this program: Adobe Acrobat 9.3" With NVDA, after exiting th

  • Significance of price in the accounting view

    hello gurus, what is significance of price in the accounting view and how is it different from the price that we enter in the info record?

  • I have a new Window 7 version computer,  I cannot download Adobe Reader.  error 1316.A

    I have a new Window 7 Version Computer.   When I try to download Adobe Reader.  I get an error 1316.A.  What am I doing wrong.    Is this compatable with Widows 7?

  • Set up email key on E61 for several mailboxes

    Hi, is there any way I can configure the email key on my E61 to connect to more than one mailbox and download new emails? I have three which are more or less equally likely to have important new mails at any time. Thank you very much! Regards, Hendik