Component to move through list?

anybody know of a component that allow you to page through a long drop down list quicker? like a next for forward button? thanks

Chioma2
A couple of solution paths come to mind.  If you want to move the entire list into a file folder, just do an export of the list to Excel, and then save the Excel spreadsheet to the desired folder.  If you want to take list items and turn each
item into a separate file, and then store all of these in a folder, then PowerShell would answer.  Using PowerShell, you can create a script that:
Connects to the list
Reads the entire list into a local object.
Reads each row in the local list object, and then writes the desired row fields to a text file.
Additionally, you can enter all sorts of filters and logic that enable you to write out just what you want to write out and even perform some analysis on the data.  This would be very simple to develop.  Just let me know, and I can provide additional
details.

Similar Messages

  • Watch movies through tv using AV component -infos

    hey guys i would like to know if i could watch movies through my tv with my ipod touch 4g using the component AV cable. As i read some posts around internet there seem to be some problems either with the compability of the tv or the ios version. is it true?any infos around the subject gladly accepted. and finally i heard that movies purchased from itunes arent "supported" from the cable and cant be shown.True?and what about these that are transfered through pc (via itunes)? thnx in regard!

    Apple says no here for both composite and component for 4G:
    iPhone, iPad, iPod: TV out support
    This say VGA or Digital A/D (HDMI) only for 4G
    iOS: About Apple Digital AV Adapters
    . Note the 4G only outputs TV out for apps that specifically support TV out

  • How can I set firefox to stack my tabs one after the other so that I do not have to move through tabs using the buttons at the ends

    when I open multiple tabs which do not fit the tab strip I have to move through tabs using scroll buttons. is there any way way I can stack the tabs on each other or suggest me a add-on which can help me achieve this

    You can consider to access the tabs via the list all tabs button.
    You see the "List All Tabs" button in current Firefox versions if there are that many tabs open that you get the Tab bar scroll buttons appearing.
    * Permanent List-all-tabs Button: https://addons.mozilla.org/firefox/addon/permanent-listalltabs/
    The Custom Tab Width extension adds CSS rules to adjust the tab width settings as set by the browser.tabs.tabMinWidth and browser.tabs.tabMaxWidth prefs on the <b>about:config</b> page.
    * Custom Tab Width: https://addons.mozilla.org/firefox/addon/custom-tab-width/
    You can achieve the same with code in userChrome.css.
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #tabbrowser-tabs ~ #alltabs-button { visibility:visible!important; }
    .tabbrowser-tab[fadein]:not([pinned]) { min-width: 100px !important; max-width: 250px !important; }
    </nowiki></pre>

  • Having trouble playing movies through the iPod

    Does the iPod have to be in a certain mode to play movies through a component cable

    Assuming that a compatible cable is being used to output the video to a capable TV, you also need to make sure the TV Out setting is enabled from under Video -> Video Settings -> TV Out.
    See this article to determine if you are using the correct cable for your model iPod.
    http://support.apple.com/kb/ht1454
    B-rock

  • Audio of Movies through iTunes

    Does anyone know why:
    a) when watching a movie through iTunes, you can't elect to send the audio to an arport express with speakers as you can with music and
    b) why when using airfoil to achieve this, there is a sync problem between audio and visual of a second or so, audio being the last to arrive?
    Any help or thoughts would be gratefully received
    17" iMac G5, Mac mini 1.66 intel core duo, Macbook   Mac OS X (10.4.8)  

    Dave:
    Yep that is the exact isse I am seeing, it's really odd. There's no reason it shouldn't work, I mean it tries to work and I assume the video out is virtually the same as any iPhone.
    Speaking of, playing previews in iTunes with my iPhone 4 pr 3G using the same component cables, works perfectly.
    Sounds like a weird bug to me. Is there any place I could report this issue?
    Thanks guys for confirming the issue for me.

  • Trying to move a list of form variables to session variables of the same name

    I am trying to move a list of form variables to session variables of the same name and I am having a lot of trouble.
    I have never had to post of this forum with a language question in all the 10 years I have been using ColdFusion. I was a qa Engineer @ Allaire/Macromedia back when it was going from one to the other. I have a pretty good grasp of the language.
    I have software that runs off a list. The fieldnames are variable and stored off in an array. It's survey software that runs off a "meta file". In this example; I have the number of fields in the survey set to 12 in the "metafile". I have each field declared in that file in array Session.SurveyField[1] and the above loop works fine. I include this "metafile" at the start of the process.
    I cfloop around a struct and it works wherever I have needed to use it; such as here - writing to the database for example;
    <CFQUERY NAME="InsertRec" DATASOURCE="Survey">
    INSERT into #variables.SurveyTableName#
    (EntryTime
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    ,#Session.SurveyField[arrayindex]#
    </cfloop>
    <!--- EXAMPLE OF WHAT THE ABOVE GENERATES
    ,q01_name,q02_AcadTechORNA,q03_Water,q04_FirstAid,q05_CPR,q06_LifeGuard,q07_AED
    ,q08_ProjAdv,q09_Color,q10_SantaClaus,q11_Supervisor,q12_SupervisorOpinion --->
       VALUES
        ('#EntryTime#'
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset thisname = "Session." & Session.SurveyField[arrayindex]>
    ,'#evaluate(variables.thisname)#'
    </cfloop>
    <!--- EXAMPLE OF WHAT THE ABOVE GENERATES
    ,'#Session.q01_name#','#Session.q02_AcadTechORNA#','#Session.q03_Water#','#Session.q04_Fi rstAid#'
    ,'#Session.q05_CPR#','#Session.q06_LifeGuard#','#Session.q07_AED#','#Session.q08_ProjAdv# ',
    ,'#Session.q09_Color#','#Session.q10_SantaClaus#','#Session.q11_Supervisor#','#Session.q1 2_SupervisorOpinion#' --->
    </CFQUERY>
    NOW HERE'S THE PROBLEM: I am running into trouble when trying to move the form variables to session variables of the same name. It is the only part of the software that I still need the datanames hard coded and that is a roadblock for me.
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset thissessionfield = "Session." & Session.SurveyField[arrayindex]>
    <cfset thisformfield = "Form." & Session.SurveyField[arrayindex]>
    <cfset #thissessionfield# = #evaluate(thisformfield)#>
    </cfloop>
    I have tried it with or without the "evaluate"; same result. It doesn't give an error; it just ignores them (session variables look as such in the next page in the chain)
    q01_name=
    q02_acadtechorna=
    q03_water=
    q04_firstaid=
    q05_cpr=
    q06_lifeguard=
    q07_aed=
    q08_projadv=
    q09_color=
    q10_santaclaus=
    q11_supervisor=
    q12_supervisoropinion=
    Note: they exist because I CFPARAM them in a loop like the above at the start of the procedure) - and this works just fine!
    <cflock scope="Session" type="EXCLUSIVE" timeout="30">
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset dataname = "Session." & Session.SurveyField[arrayindex]>
    <cfparam name="#variables.dataname#" default="">
    </cfloop>
    </cflock>
    I EVEN tried exploiting the Form.Fieldnames list using CFLoop over the list and the same sort of logic within and it still gives me nothing....
    Here's the FORM.FIELDNAMES value
    "Q01_NAME,Q02_ACADTECHORNA,Q03_WATER,Q04_FIRSTAID,Q05_CPR,Q06_LIFEGUARD,Q07_AED,Q08_PROJAD V,Q09_COLOR,
    Q10_SANTACLAUS,Q11_SUPERVISOR,Q12_SUPERVISOROPINION"
    Here's the logic; SAME RESULT - The session variables don't get set.
    <cfoutput>
    <cfloop list="#Form.FieldNames#" index="thisfield">
    <!--- <br>#thisfield# --->
    <cfscript>
    thisSESSIONfield = "Session." & thisfield;
    thisFORMfield = "Form." & thisfield;
    #thisSESSIONfield# = #thisFORMfield#;
    </cfscript>
    </cfloop>
    </cfoutput>
    The CFPARAM in a loop with variable output name works just fine; so does the post (which I included above) as does the SQL Create, Param Form Variables, Param Session Variables, etc.
    THIS even works for moving BLANK to each session variable, to zero them all out at the end of the process;
    <cflock scope="Session" type="EXCLUSIVE" timeout="30">
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset thislocalfield = Session.SurveyField[arrayindex]>
    <cfscript>
    thissessionfield = "Session." & thislocalfield;
    </cfscript>
    <cfset #thissessionfield# = "">
    </cfloop>
    </cflock>
    Expanding on that code, you would think this would work, but it doesn't;
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset thislocalfield = Session.SurveyField[arrayindex]>
    <cfscript>
    thissessionfield = "Session." & thislocalfield;
    thisformfield = "Form." & thislocalfield;
    </cfscript>
    <!--- debug --->
    <!--- <cfoutput>#thissessionfield# = "#evaluate(thisformfield)#"</cfoutput><br> --->
    <cfoutput>
    <cfset #thissessionfield# = "#evaluate(thisformfield)#">
    </cfoutput>
    </cfloop>
    And see that debug code in the middle? To add insult to injury... When I uncomment that it shows me this. So it certainly looks like this should work....
    Session.q01_name = "Me"
    Session.q02_AcadTechORNA = "N/A"
    Session.q03_Water = "Yes (certificate expired)"
    Session.q04_FirstAid = "Yes (certificate is current)"
    Session.q05_CPR = "No"
    Session.q06_LifeGuard = "Yes (certificate expired)"
    Session.q07_AED = "Yes (certificate expired)"
    Session.q08_ProjAdv = "Yes (certificate expired)"
    Session.q09_Color = "Gray"
    Session.q10_SantaClaus = "Yes"
    Session.q11_Supervisor = "Da Boss"
    Session.q12_SupervisorOpinion = "Not a bad thing"
    There must be some simpler way to do this. This way won't work against all odds even though it seems so much like it should.
    So I end up having to hardcode it; still looking for an automated way to set these #@%$*@!## session variables over the list from the form variables of the same @#@!$#%$%# name. Do I sound frustrated???
    No matter what I do, if I don't HARDCODE like this;
    <cfset Session.q01_name = Form.q01_name>
    <cfset Session.q02_AcadTechORNA = Form.q02_AcadTechORNA>
    <cfset Session.q03_Water = Form.q03_Water>
    <cfset Session.q04_FirstAid = Form.q04_FirstAid>
    <cfset Session.q05_CPR = Form.q05_CPR>
    <cfset Session.q06_LifeGuard = Form.q06_LifeGuard>
    <cfset Session.q07_AED = Form.q07_AED>
    <cfset Session.q08_ProjAdv = Form.q08_ProjAdv>
    <cfset Session.q09_Color = Form.q09_Color>
    <cfset Session.q10_SantaClaus = Form.q10_SantaClaus>
    <cfset Session.q11_Supervisor = Form.q11_Supervisor>
    <cfset Session.q12_SupervisorOpinion = Form.q12_SupervisorOpinion>
    I always get this from my next page because the session variables are empty;
    You must answer question 1.
    You must answer question 2.
    You must answer question 3.
    You must answer question 4.
    You must answer question 5.
    You must answer question 6.
    You must answer question 7.
    You must answer question 8.
    You must answer question 9.
    You must answer question 10.
    I tried duplicate as well, but I can not get the above to work...
    Can anyone help me do this thing that one would think is simple????

    I think if you use structure array syntax you should get the results you want.
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
          <cfset session[Session.SurveyField[arrayindex]] = Form[Session.SurveyField[arrayindex]]>
    </cfloop>
    Or probably even easier.
    <cfset session = duplicate(form)>

  • HT201667 I rented a movie through itunes on my ipad and wanted to watch it with friends on a digital projector, but it wouldn't allow me to do it.  Is there any way around this?

    I  rented a movie through itunes on my ipad and wanted to watch it with friends on a digital projector, but it wouldn't allow me to do it.  Is there any way around this?

    The issue was that a dialogue box came up which said that I couldn't play this movie on another device.  I tried playing the same movie on an Tv with an HDMI connection attached to an adapter to the IPad and that worked.  I wonder if the problem is that the digital projector has a VGA connection.

  • When I play a movie through iTunes, audio has no issues but video stutters and skips

    Hey everyone,
    I have a Dell 17R, Windows 8 64 bit, intel i7-3630QM at 2.4 GHZ, 8gb ram, Nvidia GT-650M at 1920x1080 using driver 320.49
    When I play a movie in iTunes, the audio works flawlessly but the video will be smooth for a few seconds, stutter and then skip small 2-3 second spots. I haven't noticed that the parts skipped are any more graphically intense than other spots and there is no discernable pattern.
    In the past, I have been able to play movies through iTunes with absolutely no problem but when I downloaded this most recent one a few days ago all of my movies have been experiencing the same issue.
    When I stream other videos from other sources I do not experience the same problems as I do when I use iTunes. Streaming 1080P over youtube or a similar services is no issue.
    I have updated my video drivers to the latest version as well.
    I am at a loss, any suggestions would be appreciated.
    Thanks!

    Hi there,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    Troubleshooting iTunes for Windows Vista or Windows 7 video playback performance issues
    http://support.apple.com/kb/TS1718
    -Griff W.

  • I bought a movie through my ATV and I am now trying to find it in my IPad. My problem is it only brings up music in the cloud and when I go to look on iTunes to renown load it, it wants me to buy it again. Anyway to get them on my IPad?

    Hello all,
    I recently bought a movie through my ATV. While I was working I tried looking for it on my IPad to watch , but was unable to locate it. I searched under the purchased section, but was only able to find my music. I went back onto ITunes to try an redownload it and it wanted me to purchase it again. There was also no warning with the movie eevn when I looked again about it not being available with the ICloud. With my tv shows such as The Walking Dead it would let me redownload it through ITunes. Anybody else have this problem?

    I also live in the United States so redownloading shouldn't be a problem.

  • I rented a movie through iTunes and it downloaded but won't play.

    I rented a movie through iTunes and it downloaded but won't play. It is present in the videos app but doesn't load the picture for the movie. When I go to play it, it just opens and then closes. There is an iCloud icon that suggests the movie has not Been downloaded and when I click it it says that the movie has already been rented but not downloaded and that I need to go to downloads to manage it. It is not present in my iTunes download page however. And when I go to rent it again all I get is a watch button that directs me back to the videos app with no way to watch it.

    Hi Refvoxa,
    Thanks for visiting Apple Support Communities.
    If you are not able to play or download a movie rental on your iPad, first restart your device:
    Restarting your device
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider.
    Press and hold the Sleep/Wake button until the Apple logo appears.
    Note: Reset your device only if you are unable to restart it.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    After your iPad restarts, try resuming the download again:
    If your download was interrupted using your iPhone, iPad, or iPod touch
    From the Home screen, tap the iTunes app.
    For iPhone or iPod touch, tap More > Downloads. For iPad, tap Downloads.
    Enter your account name and password if prompted.
    Tap the blue download arrow to resume.
    iTunes: How to resume interrupted iTunes Store downloads
    http://support.apple.com/kb/HT1725
    If the movie still does not appear in Downloads, and can't be played, I recommend reporting the issue with your purchase:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933
    Regards,
    Jeremy

  • Where are my purchased movies through iTunes stored on my PC?  I need to back-them up on a hard drive and then I want to play them on my iPad

    where are my purchased movies through iTunes stored on my PC?  I need to back-them up on a hard drive and then I want to play them on my iPad

    They're in the iTunes folder, in iTunes Media or iTunes Music depending on when your iTunes was first installed. The iTunes folder by default is in My Documents/Music.
    Regards.

  • Can you view movies through the mini-DVI output?

    Anyone know if you can watch rented movies on a TV with the mini-DVI output to video?

    Anyone have any feedback on whether or not you can output rented movies through the mini-DVI to watch on a television?

  • What cable do I need to be able to watch a movie through my regular LCD TV?

    what cable do I need to be able to watch a movie through my regular LCD TV?
    I've haven't got any of the other cables for my Retina display, and I've tried connecting my Mac to my TV via HDMI cable, but no sound comes out and apprently I need another cable...?

    Your HDMI output port should be carrying the audio signal to your television. If it's not, you can use a Thunderbolt->HDMI adapter that does carry sound, such as this one from Monoprice.
    Clinton

  • HT204291 I have iOS 6.0 installed. Im trying to mirror a rented movie from ipad to TV via apple TV. I can hear the movie through TV but not picture (which is still on ipad)

    I have iOS 6.0 installed. Im trying to mirror a rented movie from ipad to TV via apple TV. I can hear the movie through TV but not picture (which is still on ipad)

    Restart you iPad http://support.apple.com/kb/HT1430
    Restart your Apple TV http://support.apple.com/kb/HT3180
    Make sure AirPlay Mirroring is enabled http://support.apple.com/kb/HT5209

  • Does it always take hours to download a movie through the apple tv when you rent from I tunes

    Does it always take hours to download a movie through apple tv when renting a movies through itunes?

    This is dependent on your network connection. Check www.speedtest.net
    6mbps is required for instant HD rentals
    You can switch to SD in the settings if on a slower connection

Maybe you are looking for

  • Selecting (and resizing, for example) a layer under the top layer via the Program Monitor

    Hello all. Using CS5 I am in the timeline and have selected layer 1 which is a video layer Layer 2 is a title layer. I want to manually resize layer 1, via the Program Monitor. But when I go to the Program Monitor and select it Layer 2 (the title lay

  • Several instances in one server from test purposes

    Hello, I would like to ask for your experience when dealing with installation of several software packages in one server. I'm not sure of my host specs (I deal more with software), just that it's an IBM something (I pray for multi processor but lets

  • Swift compiler annoyances

    I wonder who else has trouble with the new Swift compiler. I know its "brand new" (but according to Apple it's not beta) but to me it feels like a late alpha version. Apple is (one of) the most valuable companies in the whole world. I can't understan

  • Sapgui 46D - ABAP Objects

    I’m a starter, completely new to SAP ABAP Objects. Just installed the 2 CD’s delivered with the book “ABAP Objects” from Horst Keller and Sascha Krüger. Installed on a stand alone portable Windows XP Pro service pack 2. No other links to SAP or inter

  • Mac 10.8 Color laserjet cp1215

    I have HP color laserjet CP1215 printer (USB) and tried to find a driver for my new MacBook air (OS10.8). I didn't find any. What can I do to print to this printer from my Mac?