Current time format

Hello there,
I have a silly question to ask,
the following line:
String time = calendar.get(Calendar.HOUR)+":"+calendar.get(Calendar.MINUTE)+":"+calendar.get(Calendar.SECOND);
results in for ex: 9:3:38
Is there a way of changing the format to: 21:03:38 please??
Thanks.

This is what I did,
Date now = new Date();
GregorianCalendar calendar = new GregorianCalendar();
now = calendar.getTime();
DateFormat fmt = DateFormat.getTimeInstance(DateFormat.FULL, Locale.UK);
String time = fmt.format(now);
This is the output:
TIME 22:00:15 o'clock BST
Is there a way of getting rid of "o'clock BST"??
Thanks

Similar Messages

  • Show time in current time format

    Hi!
    jdk1.3
    windows2000
    I want to show time in java in current time format
    e.g if I set in Windows (Regional Settings->Time) time format to 12 h format , then I want java show me time in this format
    if I set in Windows time to 24 h. format, then I want java show me time in 24 hours format.
    What I can do?
    Thank you.

    Hi!
    jdk1.3
    windows2000
    I want to show time in java in current time format
    e.g if I set in Windows (Regional Settings->Time) time
    format to 12 h format , then I want java show me time
    in this format
    if I set in Windows time to 24 h. format, then I want
    java show me time in 24 hours format.
    What I can do?
    Thank you.haha just did this a few hours ago hey this should get you started
    http://java.sun.com/j2se/1.3/docs/api/java/text/SimpleDateFormat.html
    anyway it will be much easier and faster if u just type 'date/time' in forum search lots of similar questions this type

  • Anyone know how to get current time using Java?

    Hi,
    do anyone know how to use system.currentTimeMillis() to get the current time?
    I know that system.currentTimeMillis() get the time between current time and midnight, January 1, 1970 UTC. but how to use it to get the current time format?
    Thank you very much.

    Hi,
    do anyone know how to use system.currentTimeMillis()
    to get the current time?
    I know that system.currentTimeMillis() get the time
    between current time and midnight, January 1, 1970
    UTC. but how to use it to get the current time format?
    Thank you very much.
    long timeInMillis = System.currentTimeMillis();
    Calendar c = Calendar.getInstance();
    c.setTime(timeInMillis);
    Date d = c.getTime();And format using SimpleDateFormat:
    SimpleDateFormat sdf = new SimpleDateFormat("dd-mm-yyyy HH:mm:ss");
    String formattedDateString = sdf.format(d);

  • How to generate current time in the format yyyy-mm-ddThh:mm:ssZ in the xslt

    Hello,
    i am tring to generate current time in the format yyyy-mm-ddThh:mm:ssZ in my xlst file.
    the following info are necessary,
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:java="http://xml.apache.org/xslt/java" exclude-result-prefixes="java"
    version="1.0">
    <xsl:attribute name="generationDate"><xsl:value-of select="java:format(java:java.text.SimpleDateFormat.new('yyyy-mm-dd hh:mm:ss'), java:java.util.Date.new())"/></xsl:attribute>
    but java SimpleDateFormat doesnt support yyyy-mm-ddThh:mm:ssZ.
    thanks in advance.

    Hi wwuest,
    I use the following code to generate such a date format :
              try {
                   SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
                   Date date = sdf.parse(strDate);
                   sdf.applyPattern("yyyy-MM-dd'T'hh:mm:ss");
                   strDate = sdf.format(date);
              } // catching the parse exceptionMaybe you could try this method and see if it pass through xsl with :
    new SimpleDateFormat("yyyy-MM-dd").applyPattern("yyyy-MM-dd'T'hh:mm:ss'Z'")Bye

  • Conditional formatting based on current time.

    I need to format column A, based on the value in column C relative to the current time. If the current time is > column C the cell in column A needs to turn Red. If the current time is <= column C the cell in column A needs to turn Green.
    The following formula work fine, until I closed and reopened my sheet days later. It no longer works.
    =AND(C1<=(MOD(NOW(),1)))
    I have my cells formatted to 13:00 time.
    I was using =MOD(NOW(),1) In cell A1 as a reference point, but found a way around using that. A1 is empty if needed.
    Any help is greatly appreciated.

    It appears the sheet is working properly now if I update the variable cells values. Refreshing/recalculating (F8) the workbook does not update the sheets results; only re-entering the same value produces the correct result. Do you know why this is?
    The sheet is going to be used by a flight department to manage pilot duty days and flight time requirements. So It is imperative that it functions properly and consistently. Thank you for your help.

  • Current Time Stamp  in  int format

    Hi
    I want the current time stamp in the following way:
    Say is 3:30 pm now then 15.5 or say its 4:00 pm then 16.0 or 10:00 am as 10...how can i get this..thank you

    in other case you can try something
    with t as(
    select to_timestamp('5:00 AM', 'hh:mi PM') ts from dual union all
    select to_timestamp('5:10 AM', 'hh:mi PM') ts from dual union all
    select to_timestamp('5:20 AM', 'hh:mi PM') ts from dual union all
    select to_timestamp('5:30 AM', 'hh:mi PM') ts from dual union all
    select to_timestamp('5:40 AM', 'hh:mi PM') ts from dual union all
    select to_timestamp('5:50 AM', 'hh:mi PM') ts from dual union all
    select to_timestamp('5:59 AM', 'hh:mi PM') ts from dual union all
    select to_timestamp('5:00 PM', 'hh:mi PM') ts from dual union all
    select to_timestamp('5:10 PM', 'hh:mi PM') ts from dual union all
    select to_timestamp('5:20 PM', 'hh:mi PM') ts from dual union all
    select to_timestamp('5:30 PM', 'hh:mi PM') ts from dual union all
    select to_timestamp('5:40 PM', 'hh:mi PM') ts from dual union all
    select to_timestamp('5:50 PM', 'hh:mi PM') ts from dual union all
    select to_timestamp('5:59 PM', 'hh:mi PM') ts from dual
    select round(to_char(ts,'hh24')||','||ltrim((to_char(ts,'mi')/60),','),2) this
    from t
    THIS                  
    5                     
    5,17                  
    5,33                  
    5,5                   
    5,67                  
    5,83                  
    5,98                  
    17                    
    17,17                 
    17,33                 
    17,5                  
    17,67                 
    17,83                 
    17,98    

  • Get Current Time in Eastern Time Zone

    Hi,
    I would like to fetch the current time but in ET timezone (and also i want to handle
    daylight thing automatically).
    So can anyone tell me on this .
    Requirement is to fetch value in ET timezone even your db resides in India or Canada or Germany.
    Regards,
    Sandeep

    You can use current_timestamp at time zone tz_offset('EST'):
    SQL> set linesize 132
    SQL> column ct format a45
    SQL> column ctz format a45
    SQL> ALTER SESSION SET TIME_ZONE = 'Europe/Berlin';
    Session altered.
    SQL> select current_timestamp ct, current_timestamp at time zone tz_offset('EST') ctz from dual;
    CT                                            CTZ
    11-JUL-08 10.20.53.002549 PM EUROPE/BERLIN    11-JUL-08 03.20.53.002549 PM -05:00
    SQL> ALTER SESSION SET TIME_ZONE = 'Canada/Mountain';
    Session altered.
    SQL> select current_timestamp ct, current_timestamp at time zone tz_offset('EST') ctz from dual;
    CT                                            CTZ
    11-JUL-08 02.21.02.344091 PM CANADA/MOUNTAIN  11-JUL-08 03.21.02.344091 PM -05:00
    SQL> SY.

  • Printing current time and date on a pdf document

    I wish for a pdf document to print the current time and date in the same place at the foot of each page, to the following format:
    Aug 04 2009, 5:11 pm.
    How do I do this please? Annoyingly I have managed it in the past, but when I open up my old documents and paste the relevant field into my new document, it either prints the old date/time or else prints the present date/time, but then doesn't refresh the next time I try to print - ie it stays at one date/time.
    I'd like to start again from scratch so that I have a better idea of how it works!!
    Regards
    Tony

    Eureka!
    I now have the answer, and hopefully this will help anybody else with a similar problem.
    In Acrobat:
    Create a text field and place it in the chosen place on the pdf form. Label it "datebox" in the General tab of Text Field Properties, and apply your character styles in the Appearance tab.
    Under the "Advanced" menu, go to "Document Processing" and then "Set Document Actions"
    Click on "Document Will Print" and then hit the "Edit" button. In the "JavaScript Editor" paste the following:
    var myfield=getField("datebox");
    var date=new Date();
    date=util.printd("mmm dd yyyy, h:MM tt", date);
    myfield.value=date;
    Hit OK.
    You have now given the instruction that whenever you print, the field named "datebox" will print the current time and date in the following format:
    Aug 05 2009, 9.37 am
    Regards
    Tony

  • List "View" with current time in column

    Hi.
    I know that list view does not support fields calculated on page load. But I have to realize such functionality.
    Can someone provide options for realizing this?
    "Hack" some internal SQL query, inject JS on a view page, use .NET code somehow?
    Using JS seems as the best solution, but how can I do this?
    Thanks.

    Hi,
    According to your post, my understanding is that you wanted to display the current time in colum.
    The following code snippet for your reference.
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    function date(format, timestamp) {
    var that = this,
    jsdate, f, formatChr = /\\?([a-z])/gi,
    formatChrCb,
    // Keep this here (works, but for code commented-out
    // below for file size reasons)
    //, tal= [],
    _pad = function(n, c) {
    n = n.toString();
    return n.length < c ? _pad('0' + n, c, '0') : n;
    txt_words = ["Sun", "Mon", "Tues", "Wednes", "Thurs", "Fri", "Satur", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
    formatChrCb = function(t, s) {
    return f[t] ? f[t]() : s;
    f = {
    // Day
    d: function() { // Day of month w/leading 0; 01..31
    return _pad(f.j(), 2);
    D: function() { // Shorthand day name; Mon...Sun
    return f.l().slice(0, 3);
    j: function() { // Day of month; 1..31
    return jsdate.getDate();
    l: function() { // Full day name; Monday...Sunday
    return txt_words[f.w()] + 'day';
    N: function() { // ISO-8601 day of week; 1[Mon]..7[Sun]
    return f.w() || 7;
    S: function() { // Ordinal suffix for day of month; st, nd, rd, th
    var j = f.j();
    if (j < 4 || j > 20) {
    return (['st', 'nd', 'rd'])[j % 10 - 1];
    else {
    return 'th';
    w: function() { // Day of week; 0[Sun]..6[Sat]
    return jsdate.getDay();
    z: function() { // Day of year; 0..365
    var a = new Date(f.Y(), f.n() - 1, f.j()),
    b = new Date(f.Y(), 0, 1);
    return Math.round((a - b) / 864e5);
    // Week
    W: function() { // ISO-8601 week number
    var a = new Date(f.Y(), f.n() - 1, f.j() - f.N() + 3),
    b = new Date(a.getFullYear(), 0, 4);
    return _pad(1 + Math.round((a - b) / 864e5 / 7), 2);
    // Month
    F: function() { // Full month name; January...December
    return txt_words[6 + f.n()];
    m: function() { // Month w/leading 0; 01...12
    return _pad(f.n(), 2);
    M: function() { // Shorthand month name; Jan...Dec
    return f.F().slice(0, 3);
    n: function() { // Month; 1...12
    return jsdate.getMonth() + 1;
    t: function() { // Days in month; 28...31
    return (new Date(f.Y(), f.n(), 0)).getDate();
    // Year
    L: function() { // Is leap year?; 0 or 1
    var j = f.Y();
    return j % 4 === 0 & j % 100 !== 0 | j % 400 === 0;
    o: function() { // ISO-8601 year
    var n = f.n(),
    W = f.W(),
    Y = f.Y();
    return Y + (n === 12 && W < 9 ? 1 : n === 1 && W > 9 ? -1 : 0);
    Y: function() { // Full year; e.g. 1980...2010
    return jsdate.getFullYear();
    y: function() { // Last two digits of year; 00...99
    return f.Y().toString().slice(-2);
    // Time
    a: function() { // am or pm
    return jsdate.getHours() > 11 ? "pm" : "am";
    A: function() { // AM or PM
    return f.a().toUpperCase();
    B: function() { // Swatch Internet time; 000..999
    var H = jsdate.getUTCHours() * 36e2,
    // Hours
    i = jsdate.getUTCMinutes() * 60,
    // Minutes
    s = jsdate.getUTCSeconds(); // Seconds
    return _pad(Math.floor((H + i + s + 36e2) / 86.4) % 1e3, 3);
    g: function() { // 12-Hours; 1..12
    return f.G() % 12 || 12;
    G: function() { // 24-Hours; 0..23
    return jsdate.getHours();
    h: function() { // 12-Hours w/leading 0; 01..12
    return _pad(f.g(), 2);
    H: function() { // 24-Hours w/leading 0; 00..23
    return _pad(f.G(), 2);
    i: function() { // Minutes w/leading 0; 00..59
    return _pad(jsdate.getMinutes(), 2);
    s: function() { // Seconds w/leading 0; 00..59
    return _pad(jsdate.getSeconds(), 2);
    u: function() { // Microseconds; 000000-999000
    return _pad(jsdate.getMilliseconds() * 1000, 6);
    // Timezone
    e: function() { // Timezone identifier; e.g. Atlantic/Azores, ...
    // The following works, but requires inclusion of the very large
    // timezone_abbreviations_list() function.
    /* return that.date_default_timezone_get();
    throw 'Not supported (see source code of date() for timezone on how to add support)';
    I: function() { // DST observed?; 0 or 1
    // Compares Jan 1 minus Jan 1 UTC to Jul 1 minus Jul 1 UTC.
    // If they are not equal, then DST is observed.
    var a = new Date(f.Y(), 0),
    // Jan 1
    c = Date.UTC(f.Y(), 0),
    // Jan 1 UTC
    b = new Date(f.Y(), 6),
    // Jul 1
    d = Date.UTC(f.Y(), 6); // Jul 1 UTC
    return ((a - c) !== (b - d)) ? 1 : 0;
    O: function() { // Difference to GMT in hour format; e.g. +0200
    var tzo = jsdate.getTimezoneOffset(),
    a = Math.abs(tzo);
    return (tzo > 0 ? "-" : "+") + _pad(Math.floor(a / 60) * 100 + a % 60, 4);
    P: function() { // Difference to GMT w/colon; e.g. +02:00
    var O = f.O();
    return (O.substr(0, 3) + ":" + O.substr(3, 2));
    T: function() { // Timezone abbreviation; e.g. EST, MDT, ...
    // The following works, but requires inclusion of the very
    // large timezone_abbreviations_list() function.
    /* var abbr = '', i = 0, os = 0, default = 0;
    if (!tal.length) {
    tal = that.timezone_abbreviations_list();
    if (that.php_js && that.php_js.default_timezone) {
    default = that.php_js.default_timezone;
    for (abbr in tal) {
    for (i=0; i < tal[abbr].length; i++) {
    if (tal[abbr][i].timezone_id === default) {
    return abbr.toUpperCase();
    for (abbr in tal) {
    for (i = 0; i < tal[abbr].length; i++) {
    os = -jsdate.getTimezoneOffset() * 60;
    if (tal[abbr][i].offset === os) {
    return abbr.toUpperCase();
    return 'UTC';
    Z: function() { // Timezone offset in seconds (-43200...50400)
    return -jsdate.getTimezoneOffset() * 60;
    // Full Date/Time
    c: function() { // ISO-8601 date.
    return 'Y-m-d\\TH:i:sP'.replace(formatChr, formatChrCb);
    r: function() { // RFC 2822
    return 'D, d M Y H:i:s O'.replace(formatChr, formatChrCb);
    U: function() { // Seconds since UNIX epoch
    return jsdate / 1000 | 0;
    this.date = function(format, timestamp) {
    that = this;
    jsdate = (timestamp === undefined ? new Date() : // Not provided
    (timestamp instanceof Date) ? new Date(timestamp) : // JS Date()
    new Date(timestamp * 1000) // UNIX timestamp (auto-convert to int)
    return format.replace(formatChr, formatChrCb);
    return this.date(format, timestamp);
    $(function() {
    $('.ms-noWrap').text(date('l, F jS, Y, h:i:s A'));
    </script>
    Note: You should change the class name to fit your environment.
    http://jsfiddle.net/licson0729/jHHsm/
    More reference:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/580b9c50-f945-4931-b68f-da68d84e766e/how-to-display-current-date-time-in-share-point-using-jquery
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Data services with SQL Server 2008 and Invalid time format variable

    Hi all
    Recently we have switched from DI on SQL Server 2005, to DS(Date Services) on SQL Server 2008. However I have faced an odd error on the query that I was running successfully in DI.
    I validate my query output using a validation object to fill either Target table (if it passes), or the Target_Fail table (if it fails). Before sending data to the Target_Fail table, I map the columns using a query to the Target_Fail table. As I have a column called 'ETL_Load_Date' in that table, which I should fill it with a global variable called 'Load_Date'. I have set this global variable in the script at the very first beginning of the job. It is a data variable type:
    $Load_Date = to_char(sysdate(),'YYYY.MM.DD');
    When I assign this global variable to a datetime data type cloumn in my table and run the job using Data Services, I get this error:
    error message for operation <SQLExecute>: <[Microsoft][ODBC SQL Server Driver]Invalid time format>.
    However I didn't have this problem when I was running my job on the SQL Server 2005 using Data Integrator. The strange thing is that, when I debug this job, it runs completely successfully!!
    Could you please help me to fix this problem?
    Thanks for your help in advance.

    Thanks for your reply.
    The ETL_Date is a datetime column and the global variable is date data type. I have to use the to_char() function to be able to get just the date part of the current system datetime. Earlier I had tried date_part function but it returns int, which didn't work for me.
    I found what the issue was. I don't know why there were some little squares next to the name of the global variable which I had mapped to the ETL_Date in the query object!!! The format and everything was OK, as I had the same mapping in other tables that had worked successfully.
    When I deleted the column in the query object and added it again, my problem solved.

  • Java always returns 15 minutes greater than the current time.

    Hi,
    I am using Microsoft Windows Server 2003R2,Standard X64 edition with Service Pack 2 and jdk1.6.0-03.
    Java always returns time 15 minutes greater than the current system time.
    eg:
    SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    System.out.println("Now time: "+simpleDateFormat.format(new Date()));
    System.out.println("Now time: "+new Date());The output of the program is :
    Now time: 2008-12-22 18:47:04
    Now time: Mon Dec 22 18:47:04 NPT 2008
    When my actual system time is 6:32 PM or (18:32)
    I have checked the current time with other programming languages like python and it always returns the actual date and time.
    Note: To my observation java is always utilizing a time which is 15 minutes greater than the current time even for its log.
    Thanks,
    Rajeswari (Msys)

    I think a more practical time machine would be one that actually travels back in time rather than forward (by 15 minutes). Sounds like it needs some more work.
    Anyway, I suggest changing the system time on your computer to some other value (say, 2 hours ahead), then running the program again. If its off by 2 hours and 15 minutes, its getting the time from your computer. However, if its still off by only 15 minutes (from your wristwatch's time), then its getting the time form somehere other than the computer clock.

  • How to put the current timer in the frame

    I am doing one application and i am using frame. I want to show the current time( hour and minute). But i don't know how to implement it. Please help me to solve my problem. Below is the sample code of my program. How to put the timer in the bottom part.
    //AdminMenu.java
    import java.io.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class AdminMenu extends JFrame{
    private JLabel lblmenu;
    private JLabel lblvideo;
    private JLabel lbladmin;
    private JButton cmdaddvideo, cmddeletevideo, cmdeditvideo;
    private JButton cmdaddadmin, cmddeleteadmin, cmdchangepass;
    private Container c;
    private GridBagLayout gdlayout;
    private GridBagConstraints gdconstraints;
    private Color colorValues[] =
    { Color.black, Color.blue, Color.red, Color.green };
    public AdminMenu()
    super("Administration Menu");
    JMenu fileMenu = new JMenu( "File" );
    fileMenu.setMnemonic( 'F' );
    JMenu openMenu = new JMenu ("Open");
    openMenu.setMnemonic('O');
    fileMenu.add( openMenu );
    JMenuItem exitItem = new JMenuItem( "Exit" );
    exitItem.setMnemonic( 'x' );
    exitItem.addActionListener(
    new ActionListener() {
    public void actionPerformed( ActionEvent event )
    System.exit( 0 );
    } // end anonymous inner class
    ); // end call to addActionListener
    fileMenu.add( exitItem );
    // create menu bar and attach it to MenuTest window
    JMenuBar bar = new JMenuBar();
    setJMenuBar( bar );
    bar.add( fileMenu );
    setSize(300,250);
    setLocation(350,200);
    this.setResizable(true);
    show();
    //---------------------- Main -------------------------------
    public static void main(String args[])
    AdminMenu app = new AdminMenu();
    app.setDefaultCloseOperation(
         JFrame.EXIT_ON_CLOSE );
    Thanks for helping me

    e.g. use a thread that invokes new Date() (every minute), format the Date with SimpleDateFormat and print the result String on a Label that you can put on your frame ...

  • Current date format

    Hello-
    This seems like it should be so obvious and simple.  I want the current date to pop up on a form letter.  However, my only choice seems to be the format of 1/11/11.  This isn't very professional looking, so I would like it to be 'January 11, 2011'.  Why can't I override the format on the Calculated - Read Only or Runtime Property of the Object Value Type section???
    Sorry if this is an old question - seems so silly.
    Thanks for any info!!

    Thanks Geo - that worked!
    Even added the current time in a separate field using:
    Num2Time(Time(), "hh:MM:SS A")
    Is there a way to output the date AND time in the same form field?
    I tried entering:
    Num2Date(Date(), "D MMM YYYY") Num2Time(Time(), "hh:MM:SS A")
    But it did not work...

  • How to display the current time in a UIX page

    Hi All,
    another UIX question....
    A requirement of a customer is to display to current data and time in every page.
    It should be done in a <header>. So i'm writing a new (template based) renderer for that element. How can i display the current time and date on it?
    Thanks in advance for any help...
    Regards,
    Robert Willems

    Hi Robert -
    When you say you are writing a template-based Renderer, do you mean that you are creating a custom look and feel and replacing the header Renderer? If so, I'd recommend instead simply creating your own template (not template-based Renderer), and reference your template directly from your uiXML pages where you want to insert the timestamp.
    You'll probably want to write a method data provider which calls System.currentTime(), convert the result to a date, and then use Java's date formatting capabilities (see java.text.format.DateFormat) to produce a user presentable String that you can return from your data provider.
    For more info (and samples) on templates and data binding, see the "Templates and Data Binding" section of the "Includes and Templating in ADF UIX" help topic:
    http://tinyurl.com/5b7bf
    Andy

  • How to save file as "current date-current time"

    Hello,
    I'm trying to rename a file as from file.mov to "current date-current time"movie.mov, So the final product should be something along the lines of 08-18-08-12:59:08movie.mov (or whatever format the current date/time is in osx). Any ideas on how I would go about this? Thanks again!

    Hello Vb,
    This script *shows the created date of a file*. Maybe you can do something with it. With a small change it get the date from the finder add adds it to the file.
    set selectedFile to (choose file)
    tell application "Finder"
    set modDate to the modification date of selectedFile
    end tell
    display dialog "That file was last modified on: " & modDate
    This scripts shows *how long ago the file was created*:
    --Part 1:
    set selectedFile to (choose file)
    tell application "Finder"
    set modDate to the modification date of selectedFile
    --Part 2:
    set curDate to the current date
    --Part 3:
    if (the year of modDate) ≠ (the year of curDate) then
    set ageInYears to (the year of curDate) - (the year of modDate)
    display dialog "The file was changed " & ageInYears & " years ago."
    --Part 4:
    else
    if (the month of modDate) ≠ (the month of curDate) then
    set ageInMonths to (the month of curDate) - (the month of modDate)
    display dialog "The file was changed " & ageInMonths & "months ago."
    --Part 5
    else
    if (the day of modDate) ≠ (the day of curDate) then
    set ageInDays to (the day of curDate) - (the day of modDate)
    display dialog "The file is " & ageInDays & "days old."
    else
    display dialog "The file was changed today."
    end if
    end if
    end if
    end tell

Maybe you are looking for

  • How can I set up a Dell AIO 922 printer on my Macbook Pro?

    I'm running OS X 10.9.2, and I've downloaded a lexmark 5200 series driver like others have said to do, but when I try to add a printer, nothing shows up.

  • How to stop a DIA process ?

    hi all, In SM50, there is one DIA has been running for long hours. I have tried deleting it from SM50 --> Process --> Cancel Without Core. I also tried to delete its session from SM04. But all failed. any suggestion ? regards, kent

  • Why Do the App Switcher and Dock Hide Running Apps?

    I've come to realize-to my great annoyance-that the behavior of the command-tab app switcher has changed. If I have an app launched that has no documents currently open, the app doesn't appear in the app switcher or the dock. The only way I can see i

  • Material Group in ALV

    Hi to all         i have a problem in ALV, when i entered the material group 01, it takes the material from the material group 01 as well as other material group(with the values has null).i like to know how to delete the materials from other group if

  • Drag and drop dont pause in a published video

    Hi, i have a Project with 3 slides (not responsive) the second one is with drag and drop, it works fine when i preview in browser but when i publish it as a video it dont pause in drag and drop. When i publish it as html5 it works fine but not as vid