Date picker - is there a way to restrict the minuit select list to 1/4 hr

Hi,
When using date picker item with format 'DD-MON-YYYY HH24:MI',
Is there a way to restrict the minuit select list on the calendar to 1/4 hr instead of 00 to 59. Example: 00,15,30,45
Thank you,
Francis

Hold down command key to select multiple songs, then "Get Info", and you will modify all fields at the same time.

Similar Messages

  • My ipod touch is currently running ios 4.2.1 I would like to run ios 5 or 6. When I try to update it on itunes, it tells me my software is up to date. Is there another way to upgrade the IOS?

    My ipod touch is currently running ios 4.2.1 I would like to run ios 5 or 6. When I try to update it on itunes, it tells me my software is up to date. Is there another way to upgrade the IOS?  Do I have to go to Settings>General>reset>Erase all content and settings before I can get the newer ios?  If this is the case, how can I ensure all my content is backed up prior to erasing it all. Is there anyway to check to ensure the backup is complete and comprehensive?  THanks!

    A second generation iPod touch can't be updated past 4.2.1.
    (88824)

  • Is there a way to shorten the "Open With" list?

    Hi -
    This may be a question for Apple because it is a uniquely Apple Finder problem.
    Or maybe some clever 3rd party Apple developer will take this on - because this is an Apple Finder problem (hint).
    Is there a way to shorten the "Open With" list that appears when I right-click on a file?
    Heres why this is important to me.
    1- I'm seeing multiple versions of the same app on the list, like Photoshop CS5, Photoshop CS5.1, Photoshop CS 5.5.  I can't think of any reason why I would ever want to use an older version of Photoshop.  And it's not only Photoshop or even Adobe products.
    2- I see incorrect apps being suggested.  If I right click on an Illustrator file I see that TextEdit is one of the choices.  I get Photoshop as an option to open HTML files.  I see BBEdit as an option to open JPEG files.  These are bizarre associations.  Why are they even on the list?
    3- With so many irrelevant choices the possibility of selecting the wrong application increases and doing so is a waste of time and resources.  Once I accidentally selected a text editor to open a JPEG.  After about 3 minutes of RAM-sucking processing I got a huge file of jibberish text characters that was thousands of lines long.  Waste of time!
    I KNOW I'm not the only one with this question. 
    Is there anyone out there with an answer???
    Thanks,
    JL

    baltwo - thank you for the expert advice. 
    I did as you instructed and the situation is better but I don't believe it's solved. 
    I still get 3 versions of Photoshop when I right click on a PSD.  I also get Dashcode and Textwrangler - which are the oddest associations.  All together I get 25 apps responding to "Open With" on a PSD.  And this is an improvement.
    Do you think I would get even better results if I ran the same command again?
    Thanks again.
    JL

  • Is there a way to restrict the network access of an application?

    Is there a way to restict the network access of an application? In other words, is there a way to guarantee that an application will only operate in offline mode?

    Well, more than just knowing if an application will work in offline mode, I'm interested in whether there's a way to forcibly the revoke network access of an application. For example, I don't think something like an epub reader should have network access and I want to insure it does not communicate to an external server.

  • Is there a way to restrict the number of attempts for a remediated question using advanced actions?

    I have the following slides in my project:
    content slide 1
    content slide 2
    question slide 1
    question slide 2
    Question slide 1 is a question about content slide 1. Question slide 2 is a question about content slide 2. I would like to restrict the total number of attempts to two for each question. If question 1 is answered incorrectly on the first attempt, the learner would be returned to content slide 1 for review. Clicking the next button will take the learner back to the missed quiz question and allow them a second attempt to answer it correctly. If they answer it incorrectly again, it is scored as incorrect and the learner is taken to question slide 2.
    Can this be done or does remediation keep repeating until the learner answers the question correctly?
    If that is the case, can I achieve my objective by using advanced actions? And, if so, can you provide step by step instructions on how to do this?

    I think it could be possible, but giving you step-by-step instructions, sorry, that would take a lot of time. Did you use advanced actions already? My archived blog has a lot of use cases and tutorials, but I think it is not fair to ask on a forum for step-by-step instructions for each use case you want to create.  The most important thing will be to make sure that the user always remains in the Quiz scope, you can use the new system variable cpInQuizScope while testing. There is no system variable for attempts on question level, only one on Quiz level, so you'll have to create a user variable to track the attempts on question level. A big problem is that when you leave a question slide, without using the remediation work flow, the attempts are considered as finished. Personally I would prefer for that reason to not use the default question slides. You could try out a combination of remediation and advanced actions, never did test that?
    Lilybiri

  • Is there a way to restrict the blanket release qty or amount to agreed amt

    Hi,
    We have a requirement to restrict the blanket release qty or amt of the item to the amount that is agreed on the blanket Purchase Order line. Is there a setup at supplier or in purchasing that dictates this
    Thanks,
    user12048986

    Hello,
    I've made a few "forms perso" and I think you can deal with this case, depending of course of the business rules you want to apply.
    If you want to apply the field "COMMITTED_AMOUNT" as a global limit for all your release you can test the following :
    All your code will be done in "Not in Enter-Query Mode"
    1/ Create some variables on the WHEN-NEW-FORM-INSTANCE event : this committed amount, and also the amount already consumed,
    2/ Initialize the variables on the WHEN-NEW-ITEM-INSTANCE event, on the PO_SHIPMENTS.SOURCE_LINE_NUM object,
    condition will be :PO_RELEASES.PO_Release_Id IS NOT NULL
    3/ On the WHEN-VALIDATE-RECORD event of the PO_SHIPMENTS object, you will update your variables depending of the item on the current line by some SQL statement, using the variable.VALUE = (your SQL),
    condition will be :PO_RELEASES.PO_Release_Id IS NOT NULL AND :SYSTEM.RECORD_STATUS IN ('CHANGED', 'INSERT', 'NEW')
    4/ Still on the WHEN-VALIDATE-RECORD event of the PO_SHIPMENTS object, you should in your condition compare the amount already ordered (including your current shipment line) to your limit, then in the action display a message to warn the user.
    On this step I use also a variable XX_NB_MSG_DISP because as the WHEN-VALIDATE-RECORD is trigerred several time during the validation, you will display the message several times :°/
    Then condition will looks like something like this :
    :PO_RELEASES.PO_Release_Id IS NOT NULL
    AND :SYSTEM.RECORD_STATUS IN ('CHANGED', 'INSERT', 'NEW')
    AND :GLOBAL.XX_NB_MSG_DISP = '0'
    AND ((:GLOBAL.XX_ORDERED_AMOUNT > :GLOBAL.COMMITTED_AMOUNT)
    At this point the message is only a warning, but it is already a little piece of code, tell me if you succeed in doing something with those explanations. Honestly I do not have time to do any tests about this...
    You can also use the PO_APPROVE event to do a global control, but this is less user-friendly.
    Hope it helps,
    Take care,
    Xavier

  • Is there a way to access the initialized channel list?

    I am using the CAN Channel vi's.  In a CAN Read vi, I want to access the channel list which was initialized in CAN Init.  I pass the task ref into the CAN Read vi.  I want to grab the channel list and use it to name the data that is coming back from the CAN read for each channel.  I don't see that the Get Names.vi returns the channel list in task ref.  Is there some way to do this?

    Hi,
    The Getnames VI only provides a channel list, not a handle. The init or init start VI provides the handle. See the Channel Monitor VI for more Info in how to use the get names VI to provide a channel list.
    \\Program Files\National Instruments\LabVIEW X.X\examples\nican\Channel-Advanced.llb
    DirkW

  • Is there a way to restore the track selections from my ipod back to iTunes?

    I have over 100Gb of music on my computer and only a 40Gb ipod which is almost full. I have all my files in my library but I have lost the selections for transfer to my ipod. All of the files are still in the ipod but I am terrified to update because I think it will remove them from the ipod.
    Is there a way to allow iTunes to reselect all of the files in my library with the tracks listed in my ipod?
    Many Thanks
    Andy

    Thanks for the info...guess I will just keep downloading the ones she deletes for now. I will set the restriction for the apps because that will be the next thing she will accidentally delete. Maybe they will make an app for disabling the delete function for the videos/music at some point. Thanks again for you help.

  • Is there any way to manage the "open in" list?

    I noticed that certain apps were no long appearing on my "open in..." list when access from Mail or Safari to use a different app to read a PDF. The GoodReader FAQ noted that iOS may only allow for 10 entries, and counseled deleting apps to trim the list. Is there any way to manage which apps appear or in what order?

    I'm familiar with scrolling, though that is not presented as clearly as it could be. My issue is with an unpublished and unalterable limit to the number of apps that show up on that list, and the lack of a means to customize it.

  • Is there a way to restrict the cursor at the end of a line in the source code editor??

    In the source code editor, the cursor will always follow where I click. But I wanna restrict it at the end of a line, just like other text editors do. Is there a option or sth? I can't put up with it any longer.
    Solved!
    Go to Solution.

    Hello morphe!
    The source editor in the LabWindows/CVI environment is constructed under the concept of virtual space.
    At the moment, in the current version of LabWindows/CVI, this is the default behavior, which cannot be changed from the editor preferences dialogs.
    Best regards,
    - Johannes

  • While fetching the Audit Log Programmatically last Downloaded document is not fetched from Auditing Log. To update the events it is taking 5 to 10 mins. After that i can fetch the data. Is there any way to refresh the log to be reflected immediatly?

    SPAuditQuery wssQuery = new SPAuditQuery(SPContext.Current.Web.Site);
    wssQuery.RestrictToUser(SPContext.Current.Web.CurrentUser.ID);
    wssQuery.AddEventRestriction(SPAuditEventType.View);
    wssQuery.RestrictToList(list)       
    //set the query date range
    wssQuery.SetRangeEnd(DateTime.Now);
    wssQuery.SetRangeStart(DateTime.Now.AddMinutes(-30));// To get the last 30 Mins of data
    SPContext.Current.Web.Site.Audit.Update();
    SPContext.Current.Web.Update();                     
    SPAuditEntryCollection auditCol = SPContext.Current.Web.Site.Audit.GetEntries(wssQuery); 

    From your response, I understood that, The coding is okay. So no need to change the code.
    I am not sure what/How to be validated the Lag. Can you please suggest more on detail ?
    One more thing observed based on the below steps
    1. Downloaded 3 documents sequentially
    2. Gave pause for 15 seconds
    3. Downloaded next 2  documents sequentially
    4. Executed my above mentioned program
    Result : Fetched only first 3 documents, documents which are downloaded after pause is not retrieved
    5. Generated the custom report (or ) Do new Download
    Result : I can See 5 Documents (In case of 5th step is new download, I can See 5 Documents instead of 6 documents)
    6:  Executed my above mentioned program
    Result : I can See 5 Documents (In case of 5th step is new download, I can See 5 Documents instead of 6 documents)
    Conclusion: Most recent download event is pushed by other relevant(Custom Report Generation or Download or Page Refresh) event
    Am i Missing anything to obtain the proper result ?

  • Is there a way to restrict the ports used by Toplink for making jdbc

    connections? For example we want to restrict Toplink from using ports below 5000
    This is when Toplink makes an outward connection to an oracle server
    ** Urgent **
    Please help

    When using JDBC you give the port in your JDBC URL, i.e.
    jdbc:oracle:thin:@myserver:1521:orcl
    Or do you mean a different port? Maybe check your JDBC driver documentation or forum.
    James : http://www.eclipselink.org

  • Is there any way to get the PivotTable Field List to appear in an embedded Excel Web Apps spreadsheet?

    The PivotTable Field List shows up fine when using Excel Web Apps normally. It doesn't appear to be accesible via the javascript API and the main
    Excel Web App cannot be embeded in a frame. Any ideas?

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Excel, this issue is more related to Excel Web app develop. I recommend you post the question to the MSDN forum for Excel
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Thanks
    George Zhao
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click "[email protected]"

  • Is there a way todynamically change the Database of the ApplicationModuleIM

    Hi,
    I am working for the Coast Guard, and we have 4
    different environment each with their own database. One
    for Development, QA, Staging, and Production. Each
    environment has its own database with its own copy of
    the application data.
    Is there a way to change the DataURL of the
    Application Module before it connects to the database,
    so I can modify the URL to point to Development Database
    on my Server, QA Database when on the QA Server, etc.
    The closest thing I have found is a procedure that is
    called directly after the connection is established, I
    have not been able to find a similar function that is
    called before the connection is established.
    Mark Daly

    To whom it may concern:
    I have Finally figured out how to do this. The problem
    is not overriding connection behavior in the application
    module, but rather overriding behavior in the Default
    Application Pool.
    Create a class that inherits from ApplicationPoolImpl
    and over ride this function
    public void initialize(String name,
    String applicationModuleClassName,
    String connectString,
    Hashtable env)
    The DataURL is contained in both the Connect String, and
    the Env Hashtable. Update them at this point to your new
    DataURL, and the application will open the database
    connection to the alternate location.
    Now the only problem is getting your application to use
    your connection pool, instead of the default, this is
    easily done by changing the configuration of the
    Application Module. You left click on the Application
    Module, choose configuration, then click edit, then find
    the property label “Custom Application Pool
    Implementation class” replace it content with the
    correct import path to your Pool, then click OK to save
    the changes, and your are done, the application module
    should be using your pool, instead of the default pool.
    This is useful code when you have a separate database
    for development, QA, Staging, and Production.
    Mark Daly

  • Is there any way to click the System Message Box button  through code?

    Hi,
    Is there any way to click the System Message Box button through code?
    Is there any way to restrict the System Message Box ?
    The requirement is, i need to open the MRP Wizard form in MRP.it s run automatically.after completion of the wizard is there finish button.after clicking of the finish button, there have a system message. i want to click on "Yes" button through coding.
    when system message box open.my code is stopped.if i press yes code is running.   
    Thanks in advance.

    Thanks for replay
    bellow given the code
    i am using, when i call the finishMrp function its going to take the itemId from XML and click to the finish button.
    There have a system message .when system message fair my debugging stopped. Please give me any idea.
    Public Function Execuate() As Boolean
    Dim strSQL As String
      Dim objRS As SAPbobsCOM.Recordset
        Dim intLoop As Integer
        Dim objForm As SAPbouiCOM.Form
        objForm = objAddOnCentral.objApplication.Forms.ActiveForm
        objRS = objAddOnCentral.objCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
        strSQL = "SELECT U_MRPCode From [@ACSYMRPLIST]"
        objRS.DoQuery(strSQL)
        If objRS.EoF Then
        Throw New Exception("No MRP Scenario Scheudled")
        Return False
        End If
    For intLoop = 1 To objRS.RecordCount
                objForm.Freeze(True)
                If intLoop = 1 Then
                initializeMRPRun()
                System.Windows.Forms.Application.DoEvents()
                Else
                reinitialize()
                System.Windows.Forms.Application.DoEvents()
                End If
                MRPRun(objRS.Fields.Item("U_MRPCode").Value)
                System.Windows.Forms.Application.DoEvents()
                objForm.Freeze(False)
                objRS.MoveNext()
            Nex
            finishMRPRun()
            Return True
        End Function
       Private Sub finishMRPRun()
            Dim strResource As String
            Dim objXML As New XmlDocument
            Dim objXMLNode As XmlNode
            Dim objXMLNodeList As XmlNodeList
            strResource = System.Reflection.Assembly.GetExecutingAssembly().GetName().Name & "." & "AutoStart.xml"
            objXML.Load(System.Reflection.Assembly.GetExecutingAssembly.GetManifestResourceStream(strResource))
            objXMLNodeList = objXML.SelectNodes("/AutoMRPScript/FinishMRP/Instruction")
            For Each objXMLNode In objXMLNodeList 'objXML.ChildNodes.Item(1).ChildNodes
                Select Case objXMLNode.Attributes("OPType").Value
                    Case "2"
                        systemMessageactiveFormButton(objXMLNode)
                End Select
            Next
        End Sub
    Private Sub systemMessageactiveFormButton(ByVal Instruction As XmlNode)
            Dim objForm As SAPbouiCOM.Form
            objForm = objAddOnCentral.objApplication.Forms.ActiveForm
            objForm.Items.Item(Instruction.Attributes("ItemID").Value).Click()
        End Sub
    Edited by: Badulla Sk on Dec 31, 2009 11:24 AM
    Edited by: Badulla Sk on Dec 31, 2009 11:25 AM

Maybe you are looking for

  • Premiere CS4 Audio Effects Only Work On Latter Half Of Each Audio Clip

    I'm currently working with Premiere CS4 on a Windows 7 PC and running into some audio issues when exporting the video. In the timeline when I playback the preview the audio sounds fine but when I export it the audio effects I applied in Premiere only

  • Integrating Flash Media Server with other formats

    I would like to create a standard screen/player that can play any of the following formats: windows media files, all flash files, quick time files, real player files. So, for example, lets say I want to manipulate the screen to be an exact aspect rat

  • How can I resolve error -54

    I keep getting an error in tunes saying, "The itunes library file cannot be saved. An unknown error has ocurred. (-54) How can i resolve it?

  • ITunes keeps backing up apps despite I chose "Don't Back Up"

    My iPhone5 does NOT ever sync with iTunes on my mac. I only use iTunes to back up. I am trying to save disk space on my mac and do not want iTunes to back up anymore apps since I can easily redownload them from app store. When I click "Back Up Now" i

  • Ethernet requiring username/password

    I am living in China and I was given a ethernet modem which requires a username/password to be entered. I'm assuming that I need to create a 802.1x connection, but I cannot figure out how to create a new profile. I am running Lion on a Macbook Pro, p