Setting a Class Period Time?

I was wondering if their was any way that i could set a certain time period to be a certain number.
Not very clear! Explanation: What i mean is, say my class period is between 10:35 and 11:30, and i am typing a paper at that time. I was wondering if I could do something like the time and date, because i can have it auto-fill out the date for me, but is there any way i can set 7:56-8:40 to fill in: Period 1, and 8:46-9:41 to fill in: Period 2, and so on.
If there is any way i could do that please tell me,
Thanks, Cheesytoe

jelly,
It's unclear to me if you want the precise time filled in or the range of time for, say, period 1. Please clarify.
-Dennis

Similar Messages

  • How to set property classes at runtime.

    Well, as the subject line says my question is plain and simple. I don't see any property for this in SET_ITEM_PROPERTY built-in.
    Currently a form has 10 subclassed blocks and views. These blocks have almost similar/definite number of items. At a time only one block with its canvas will be shown to the user. Instead of using so many sub-classed objects, I would like to use only one block and canvas. Now I am looking get getting just property classes from the 10 child forms, which I am looking forward to apply to the common block and items. Any other ideas for the same also appreciated.
    Thanks,
    -- Raam.

    alsalamu alykom
    I think there is no way to set property classes at runtime.
    u must loop through the objects

  • Am i able to set a class object to session?

    Hi,
    i want to store some session data in a web application. I understand session can be set by this way:
    session.setAttribute('student', name);
    session.setAttribute('teacher', name2);
    However the method above stores one a value in a session. I want to store many data in a session. I have code in this way for learning purposes. This is what i'm doing picking from bits and pieces from the internet. Please advise if whether i'm on the correct track.
    I have a student class
    public class Student {
        String name;
    public String getName() {
              return name;     
    public String setName(String name) {
              this.name = name     
    I have a teacher class
    public class Teacher{
          String name;
          public String getName() {
              return name;     
          public String setName(String name) {
              this.name = name     
    I create a SchoolSessionBean class to store this object into a session
    public class SchoolSessionBean {
           private Student student;
              private Teacher teacher;
           public SchoolSessionBean {
           public Student getStudent() {
             return student;
           public void setStudent(Student student) {
             student = student;
            public Teacher getTeacher() {
             return teacher;
           public void setTeacher(Teacher student) {
             teacher = teacher;
    }Ok. Now i want this SchoolSessionBean class to store in a session. This SchoolSessionBean class also stores the data for the student and teacher.
    Inside this class, this is what i coded to store the SchoolSessionBean into a session
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    public class createSession{
         Student student = new Student();
         Teacher teacher = new Teacher();
         student.setName("John");
         teacher.setName("Dave");
         HttpSession session = request.getSession();
         SchoolSessionBean schoolSessionBean = (SchoolSessionBean)session.getAttribute("schoolSessionBean");
         schoolSessionBean.setTeacher(student);
         schoolSessionBean.setUsagerDetails(teacher);
    }I have not create the jsp but if on the jsp, can i get the session of the schoolSessionBean anywhere, on any page of the jsp and get the values from the student and teacher class using the codes below?
    Can i use the codes below to retrieve the values of the names on any page of the jsp?
    These codes are implemented on JSPS.
    SchoolSessionBean schoolSessionBean = (SchoolSessionBean)session.getAttribute("schoolSessionBean");
    String name1 = schoolSessionBean.getStudent().getName();
    String name1 = schoolSessionBean.getTeacher().getName();Edited by: leeChaolan on Mar 24, 2009 9:11 AM

    Oh i see. So if i want to set the class to a session, can i do it this way as shown below? I plan to try it tonight to see if it works. But just at the mean time, i like to seek some advice on my codes.
    SchoolSessionBean schoolSessionBean = (SchoolSessionBean)session.getAttribute("schoolSessionBean");
         schoolSessionBean.setTeacher(student);
         schoolSessionBean.setUsagerDetails(teacher);Thanks

  • Class Loader Time in VisualGC 3.0-Display

    Hello,
    I�m monitoring my application with visualgc 3.0 under jdk1.5_09.
    I�m wondering why the Class Loader Time-Panel always shows activity even the amount of loaded classes remains nearly constant.
    What is shown is this panel??? Does the classloader check if a certain class is allready loaded and is this activity also shown in the panel? Or does it show only activity if a new class is really loaded?
    Please help me understanding this tool.
    Thank you very much!!
    Greeting
    Gregor

    hello dear
    Where is the jboss.jar mentioned?The error is due to unavialibility of the class.
    So please
    1.set jboss.jar,it is avialable at %Jboss_HOME%/server/defult/lib/jboss.jar.
    2. make sure that ur bean jar file on the client class path
    hope it will slove ur problem
    regards
    sachin

  • OK - I can set the Class Path. Now - what else?

    Dear all,
    I read with interest the many posts in this forum debating whether to use an IDE for your Java development, or to use some other (more primitive????) means of crafting code - notepad for example. As I understand things:
    If I use notepad and the command line to build, run, and compile my classes, then I will hopefully come to learn and understand how to set my class path correctly, and gain an insight into the environment in which I work - an insight moreover, that I might not happen upon if I leave an IDE to do all this for me. Ok - fine, I can use my IDE, but also do some testing on the command line to fill this gap in my knowledge.
    If I use an IDE to help me build my UIs, then it is more than likely that I will progress through life without a profound knowledge or understanding of layout managers, cell renderers, event handelers etc. OK - this is fine too, and I have decided to craft my UI 'by hand' because I want a broad appreciation of Swing and anyway, after the initial pain (akin, I imagine, to child birth), it's not so bad really.
    Now I feel I am cooking. I understand my environment, and the more esoteric features of Swing; I use my IDE to fashion my code - it's cool and helps me with code completion, and direct access to the API documentation as I type, and it does a whole bunch of refactoring stuff too.
    I feel as if I am getting the best from both worlds now.
    Would anyone argue against an approach such as this?

    ChuckBing wrote:In general, a good approach. You're correct, using the IDE will make life easier.
    What you have to watch out for is using it as a crutch. If it ever does something that you can't do, or don't know why it's doing "that", then you aren't learning. The next time "that" has to be done, if the IDE isn't available to do "that" for you, you're dead.
    Then you'll be posting the "how do I do that outside the IDE" question here.
    Make a promise to yourself: You'll learn why and what the IDE does, and read the API's - A lot!Yes, I agree Chuck. I am not comfortable with a tool doing something for me which I don't understand; which is one of the reasons I build the UIs by hand.
    I also become somewhat downcast when I see people in the forums requesting code so they can simply paste it into their aplpications. Learning can be painful, but it is a necessary pre-requisiite to knowledge in my view - so copy/paste can be a most harzardous thing.
    I am hoping this thread will be a small guide to new folk.
    Thank you for your input,
    Steve

  • Change Timer Class Delay time

    Is it possible to update the Timer Class Delay time while it
    is running. I want to update it using the slider component however
    it doesn't seem to update. I even stop the timer on the THUMB_PRESS
    event of the slider that restart it after it is changed. Doesn't
    seem to work that way either. Any Ideas?

    I figured it out. Instead of setting a variable speed in the
    event handler function for the slider I direclty changed the timer
    delay variable to equal the slider value. I feel dumb now but it
    works great.

  • WindowsUpdate.log - Setting AU scheduled install time

    In the WindowsUpdate.log file, there's a line that goes something like this:
    2009-09-10 08:58:12:094  292 dd8 AU Setting AU scheduled install time to 2009-09-11 07:00:00
    Can someone please explain to me how WSUS determines the scheduled install time?
    I set these policies yesterday (Sept.9) and rebooted my PC to get the new policy. To me, that should mean the install time should have been today, Sept.10 at 3am. Since my PC wasn't turned on, it should have automatically installed the updates this morning when I logged in, right? Instead, I am prompted to 'install 2 updates'.
    In my case, I'm logged in to my PC as a local administrator and have WSUS set to:
    Configure Automatic Updates: Enabled. 4 - Auto Download/Install at 3am every day.
    Reschedule Automatic Updates scheduled installations: Not configured
    No auto-restart with logged on users for scheduled automatic updates installations: Enabled
    Automatic Updates detection frequency: Not configured
    Allow Automatic Updates immediate installation: Not configured
    Delay Restart for scheduled installations: Enabled. 30 min
    Re-prompt for restart with scheduled installations: Not configured
    Allow non-administrators to receive update notifications: Not configured

    I checked the log further and found that WSUS initally set the install date to this morning, as expected:
    2009-09-09 10:22:34:801  480 ea8 AU AU setting next detection timeout to 2009-09-09 19:22:34
    2009-09-09 10:22:34:801  480 ea8 AU Setting AU scheduled install time to 2009-09-10 07:00:00
    It appears to have installed a WSUS client update and queued the others:
    2009-09-10 06:57:13:880 2260 1250 Setup Installing setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~amd64~~7.4.7600.226"
    Can someone confirm this is the case - it installs prerequisites first and waits a certain time period before automatically applying the rest?
    Additionally, does the RescheduleWaitTime only apply if the computer is rebooted? What about a log off?

  • HT1178 i am setting u a new time capsule. i already have a wifi setup in my office. now i want to use this time capsule just as a wireless backup machine. do i still need to attached a DSL cable, or it can connect to my existing wifi and start working ?

    i am setting u a new time capsule. i already have a wifi setup in my office. now i want to use this time capsule just as a wireless backup machine. do i still need to attached a DSL cable, or it can connect to my existing wifi and start working ?

    You probably can, but this type of configuration is not recommended or supported by Apple.
    Two cautions if you want to try this:
    1)  The Time Capsule has to be configured to "Join" your existing wireless network in this type of setup...and to do that, you must know the exact type of wireless security that your network is using.
    2)  Backups are likely going to take twice as long. The wireless signal must travel from your computer to the wireless router and then from the wireless router back to the Time Capsule.  Two "hops"......even if the computer is located close to the Time Capsule.
    If you want to try this, we can tell you how....but with no guarantees on your results....since this is not officially supported.

  • I have an external hard drive set up as a Time Machine backup on my IMac. I want to add a second external hard drive and put my Aperture Photo Library on it. Is there a way to have the photos on this second hard drive automatically back up to the Time Mac

    I have an IMac with an external hard drive set up as  a Time Machine for automatic backups. I want to add a second external hard drive and load my Aperture Photo Library on to it so that the library can be shared by both me and my wife. Is there a way to automatically backup the photo library that will be on the second hard drive to the Time Machine hard drive?

    Open System Preference > Time Machine
    Click Options....
    Ckick on external disk in list and hit the - button below the list to remove from the Exclusion list
    Allan

  • TS3297 when I press the iTunes button on my ipod touch I get the message 'cannot connect to iTunes store' .  My wifi is working fine, I can connect to safari & you tube, no parental setting in place, and time and date are correct. Can anyone help please?

    When I press the iTunes button on my ipod touch I get the message 'cannot connect to iTunes store' .  My wifi is working fine, I can connect to safari & you tube, no parental setting in place, and time and date are correct. Can anyone help please? I have restored my ipod to factory settings and rest it.

    I also tried moving the date forward by a year and then moving it back to normal and it still doesn't work.  i can't find an automatic update of time zones on my itouch to turn this off.

  • I just got the iPhone 5 and noticed that the message alerts will only alert once . I have it set up as 3 times and its not working . Please help. I'm running 6.0.2 and I really starting to get ****** off with apple products

    I just got the iPhone 5 and noticed that the message alerts will only alert once . I have it set up as 3 times and its not working . Please help. I'm running 6.0.2 and I really starting to get ****** off with apple products

    Instead of getting annoyed, read the User's Guide and try basic troubleshooting.

  • I have two time capsules, one for work and one for home, how do I set up the work time capsule to only back up my work files?

    I have two time capsules, one for work and one for home, how do I set up the work time capsule to only back up my work files?  Also, how do I add co-workers to my work time capsule and wife to my home time capsule?  Thank you!

    You cannot have two different TC setups.. at least until Mountain Lion.. it did introduce some changes but I am not sure if you can setup two different configurations for TM.. you can use two different devices to back up to. I doubt this will help you.
    You might be better using a real backup software.. superduper, CCC, chronosync etc.
    The TC by default is available to any Mac in the network to do backups. TM will sort itself out and put each computer on a different backup. These are kept in separate sparsebundles.. so that is all fine.

  • On the initial set up for apple tv it just sits there trying to set the date and time . it is a wireless setup and the ipaddress and router address is correct . I can't get by this screen

    On the initial set up for apple tv it just sits there trying to set the date and time . it is a wireless setup and the ipaddress and router address is correct . I can't get by this screen. The setting is on automatic and I have picked a city in my time zone yet it still tries to set a time and date but fails.
    thanks

    Make sure router is up to date. Try ethernet to rule out any wifi issues. Reboot ATV and router.

  • How can I set my date and time to ebay network time server?

    In the system preferences I would like to set the date and time to ebay UK time?
    I thought a quick google would be bring up the server and I can't find it.
    At the bottom of every ebay page there is a link to official ebay time
    But its not a live feed of time to get it to the second.
    I want it to be accurate so that I can use applescript to snipe bargins.
    Many Thanks
    Matt

    Just trying to go along the free route. I found Garage Buy   This doesn't work to well but lets you create an applescript and enters the auction into ical. Then you can set ical to run the script once it gets closer to the time.
    Ical only lets you set a time of a minute before the date. So you have to edit the script to add a Delay 59 to have it run 1 second before. From a few refreshes of the time page it looks like ebay time is a second behind, that could be easily be due to time to load the page. anyway i'll opt for a delay of 57secs and give that a try.

  • I'm having problems with iPhoto and the facebook set-up.  Every time I attempt to do so it says an error has occured and try again later.  I have not seen a solution posted.  Therefore, how does one contact Apple to solve the problem?  I'm new to the worl

    I'm having problems with iPhoto and the facebook set-up.  Every time I attempt to do so it says an error has occured and try again later.  I have not seen a solution posted.  Therefore, how does one contact Apple to solve the problem?  I'm new to the world of iMac but I find it a bit frustrating trying to solve basic issues/problems:(

    For what it's worth, you posted this in 2011, and here in 2014 I am still having this same issue. Over the last two days, I have had to unlock my apple account 8 times. I didn't get any new devices. I haven't initiated a password reset. I didn't forget my password. I set up two factor authentication and have been able to do the unlocking with the key and using a code sent to one of my devices. 
    That all works.
    It's this having to unlock my account every time I go to use any of my devices. And I have many: iMac, iPad, iPad2, iPad mini, iPhone 5s, iPod touch (daughter), and my old iPhone 4 being used as an ipod touch now.  They are all synced, and all was working just fine.
    I have initiated an incident with Apple (again) but I know they are just going to suggest I change my Apple ID. It's a simple one, and one that I am sure others think is theirs. I don't want to change it. I shouldn't have to. Apple should be able to tell me who is trying to use it, or at least from where.
    Thanks for listening,
    Melissa

Maybe you are looking for