Trying to create a calendar in a new window???

I have a button that when clicked on should open up a new frame/window and
using labels create a schedule from monday to tuesday. I managed to get the
new window to come up but i am unable to add any labels to it. Anyone know
what I am doing wrong?
here is where i think the problem is
String [] days = {"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday"};
JFrame lunchCal = new JFrame("Lunch Schedule");
lunchCal.pack();
lunchCal.setVisible(true);       
lunchCal.setSize(600,400);
lunchCal.setLocation(100,100);
JPanel lunchPanel = new JPanel();
lunchCal.add(lunchPanel);
lunchPanel.setLayout(new GridLayout(5,5,10,10));
for(int j=1;i<6;i++) {
    lunchPanel.add(new JLabel(days[j]));
}here is the entire program in case the problem is not evadent from the above code
import javax.swing.*;
import javax.swing.table.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
public class Waits3 implements ActionListener {
    //labels
    private static String title = "Kappa Alpha Waits Scheduler";
    private static String author = "Written by: Todd Schuman";
    final JLabel titleLabel = new JLabel(title);
    final JLabel authorLabel = new JLabel(author);
    //panels and buttons
    public JPanel mainPanel, titlePanel, buttonPanel, displayPanel;
    JButton addButton, lunchButton, dinnerButton, potsButton;
    //arrays
    public String [] names = new String[40];
    public Integer [] points = new Integer[40];
    public String [] status = new String[40];
    public String [] days = {"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday"};
    //table
    public Object[][] dataModel= new Object[names.length][3];
    public JTable table;
    public Waits3() throws IOException{
     //add sub panels
     titlePanel = new JPanel();
     buttonPanel = new JPanel();
     displayPanel = new JPanel();
     //add components to panels
     addComponents();
     //create main panel
     mainPanel = new JPanel();
     mainPanel.setLayout(new BorderLayout());
     mainPanel.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
     //Add sub panels to main
     mainPanel.add(titlePanel,BorderLayout.NORTH);
     mainPanel.add(buttonPanel,BorderLayout.WEST);     
     mainPanel.add(displayPanel,BorderLayout.CENTER);
    public void addComponents() throws IOException{
     //set up the buttons and labels
     addButton = new JButton("Add/Subtract Points");
     addButton.addActionListener(this);
     lunchButton = new JButton("Lunch Schedule");
     lunchButton.addActionListener(this);
     dinnerButton = new JButton("Dinner Schedule");
     dinnerButton.addActionListener(this);
     potsButton = new JButton("Pots Schedule");
     potsButton.addActionListener(this);
     //set up title panel
     titlePanel.setBorder(BorderFactory.createEmptyBorder(30,30,30,30));
     titlePanel.setLayout(new GridLayout(2,1,10,10));
     //set up button panel
     buttonPanel.setBorder(BorderFactory.createCompoundBorder(
           BorderFactory.createTitledBorder("Please chose an option"),
           BorderFactory.createEmptyBorder(20,20,20,20)));
     buttonPanel.setLayout(new GridLayout(4,1,10,10));
     //set up display panel
     displayPanel.setBorder(BorderFactory.createCompoundBorder(
           BorderFactory.createTitledBorder("Display"),
           BorderFactory.createEmptyBorder(30,30,30,30)));
     displayPanel.setPreferredSize(new Dimension(500,500));
     //add labels
     titlePanel.add(titleLabel);
     titlePanel.add(authorLabel);
     //load the array
     loadArray();
     for(int i=0;i<names.length;i++) {
         if(names[i] == null)
          break;
         dataModel[0]=new Integer(i);
     dataModel[i][1]=names[i];
     dataModel[i][2]=points[i];
     //add buttons
     buttonPanel.add(addButton);
     buttonPanel.add(lunchButton);
     buttonPanel.add(dinnerButton);
     buttonPanel.add(potsButton);
public void actionPerformed(ActionEvent e) {
     Object whichChoice = e.getSource();
     //run approiate action for button
     if(whichChoice == addButton) {
     addPoints();
     else if(whichChoice == lunchButton) {
     lunch();
     else if(whichChoice == dinnerButton) {
     dinner();
     else if(whichChoice == potsButton) {
     pots();
void addPoints() {
     displayPanel.add(potsButton);
     //create and setup table from arrays
     String[] columnNames = {"Index", "Name", "Points"};
     table = new JTable(dataModel,columnNames);
     JScrollPane scrollPane = new JScrollPane(table);
     //add to display panel
     displayPanel.add(scrollPane);
     //prompt for user to edit
     String pointMsg = JOptionPane.showInputDialog(null, "Please chose the index number of the person who's points you would like to change","Select name",JOptionPane.PLAIN_MESSAGE);
     //convert it to an Integer value for ease
     Integer index=Integer.valueOf(pointMsg);
     //make sure its not null
     if(pointMsg == null || pointMsg.equals("")) {
     JOptionPane.showMessageDialog(null,"You must pick a index number","Error Message",JOptionPane.ERROR_MESSAGE);
     return;
     //check the range
     else if((index.compareTo(Integer.valueOf("0"))) < 0 || (index.compareTo(Integer.valueOf(Integer.toString(points.length)))) > 0) {
     JOptionPane.showMessageDialog(null,"You must chose a index listed from the table","Error Message",JOptionPane.ERROR_MESSAGE);
     return;
     //confirm edit operation
     else {
     int multiple = JOptionPane.showConfirmDialog(null,"Change "+names[index.intValue()]+"'s point total?","Is this correct?",JOptionPane.YES_NO_CANCEL_OPTION,JOptionPane.QUESTION_MESSAGE);
     if(multiple == JOptionPane.CANCEL_OPTION || multiple == JOptionPane.NO_OPTION) {
          return;
     else if(multiple == JOptionPane.YES_OPTION) {
          //collect data for change
          String newVal = JOptionPane.showInputDialog(null,"What would you like to set it at?","Changing Point Total",JOptionPane.PLAIN_MESSAGE);
          //update array index
          points[index.intValue()]=new Integer(newVal);
          //update tableModel
          dataModel[(index.intValue())][2]=new Integer(newVal);
          //refresh the table
          table.repaint();
void lunch() {
     JFrame lunchCal = new JFrame("Lunch Schedule");
     lunchCal.pack();
     lunchCal.setVisible(true);
     lunchCal.setSize(600,400);
     lunchCal.setLocation(100,100);
     JPanel lunchPanel = new JPanel();
     lunchCal.add(lunchPanel);
     lunchPanel.setLayout(new GridLayout(5,5,10,10));
     for(int i=1;i<6;i++) {
     lunchPanel.add(new JLabel("test"));
void dinner() {
     JFrame dinnerCal = new JFrame("Dinner Schedule");
     dinnerCal.pack();
     dinnerCal.setVisible(true);
     dinnerCal.setSize(600,400);
     dinnerCal.setLocation(100,100);
void pots() {
     JFrame potsCal = new JFrame("Pots Schedule");
     potsCal.pack();
     potsCal.setVisible(true);
     potsCal.setSize(600,400);
     potsCal.setLocation(100,100);
void loadArray() throws IOException {
     BufferedReader in = new BufferedReader(new FileReader("Brothers.txt"));
     String temp=null;
     int i=0;
     while((temp=in.readLine()) != null) {
     StringTokenizer st = new StringTokenizer(temp);
     names[i]=st.nextToken();
     points[i]=Integer.valueOf(st.nextToken());
     status[i]=st.nextToken();
     i++;
     in.close();
     sortArray();
void sortArray() {
     //sort the array by # of points
     Integer hold;
     String temp=null;
     for(int j=0;j<(names.length-1);j++) {
     if(names[j] == null)
          break;
     for(int k=j+1;k<names.length;k++) {
          if(names[k]==null)
          break;
          if((points[j].compareTo(points[k]))<0){
          hold=points[j];
          points[j]=points[k];
          points[k]=hold;
          temp=names[j];
          names[j]=names[k];
          names[k]=temp;
          temp=status[j];
          status[j]=status[k];
          status[k]=temp;
public static void main(String[] args) throws IOException{
     try {
     UIManager.setLookAndFeel(
          UIManager.getCrossPlatformLookAndFeelClassName());
     }catch (Exception e) { }
     //set frame title
     JFrame frame = new JFrame("Waits Program");
     Waits3 app = new Waits3(); // call constructor
     frame.setContentPane(app.mainPanel);
     //Finish setting up the frame
     frame.addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
          int close = JOptionPane.showConfirmDialog(null,"Save changes?","Save?",JOptionPane.YES_NO_CANCEL_OPTION,JOptionPane.QUESTION_MESSAGE);
          if(close == JOptionPane.NO_OPTION)
               System.exit(0);
          else if(close == JOptionPane.YES_OPTION) {
               //save
               System.exit(0);
          else {
               //return to program
     frame.pack();
     frame.setVisible(true);

The code looks alright except that you have made lunchCal a frame and have set it visible(true), then you have added a JPanel, and the way you've added the labels looks alright. This might be stating the obvious, but I would have included
lunchPanel.setVisible(true);
at the end of that block.
or if that's not the problem, I would take your code back a step and simplify the JLabel adding by doing,
JLabel sun = new JLabel("Sunday");
JLabel mon = new JLabel("Monday");
etc.
Then maybe stick in a position check -System.out.println("The JLabels have been instantiated");
then after the setLayout,
lunchPanel.add(sun);
lunchPanel.add(mon);
etc,
another check - System.out.println("The labels have been added to lunchPanel");
then I would do ,
lunchPanel.setVisible(true);
lunchCal.add(lunchPanel);
another check - System.out.println("The lunchCal should be visible and the lunchpanel should be visible with the labels displayed").
the system checks will help to tell where you code is fialing in this block.
If that works, then just help answer somebody elses question in return!!! cheers, Oz.

Similar Messages

  • IPhoto crashes when trying to create a calendar

    Hello,
    My iPhoto application crashes when trying to create a calendar.  Actually, it just freezes. 
    Any suggestions?  I'm running 10.7 on a MacBook Pro.

    what version of iPHoto?
    Try Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - rebuild your iPhoto library database
    LN

  • While trying to sync my calendar to my new mac, I lost all my calendsr events on my iPhone. Best guess is I calends't set up icloud on my phone first and my computer delted them. Is there any way to recover them from iCloud?

    While trying to sync my calendar to my new mac, I lost all my calendar events on my iPhone. Best guess is I didn't set up icloud on my phone first and my computer deleted them. Is there any way to recover my calendar from iCloud?

    Your music will only be where you put it.
    Did you copy all of your music from your backup copy of your old computer to your new one?

  • How do I get my IPhone contacts and calendars (Outlook created msg files) to my new Windows 7 LT running Windows Live Mail (free) that doesn't recog. Outlook files??

    How  do I get my Iphone contacts and calendars (Outlook created msg file) to my new Windows 7 LT running Windows Live Mail (free) that doesn't recognize Outlook files??
    Is there a good free converter of msg files to windows live mail file?
    This  is not fun

    Did you try the iPhone syncing options in iTunes?
    Click on your iPhone in iTunes, and check under the Info section where you can choose which app to sync with. Is Windows Live Mail an option?

  • I am trying to install Photoshop Elements on my new Windows 8 computer (I recently upgraded my windows 7 computer where Photoshop was working fine on before).  It says the serial number is invalid.  Do older versionsnot work on Windows8, or do I need to u

    I am trying to install Photoshop Elements on my new Windows 8 computer (I recently upgraded my windows 7 computer where Photoshop was working fine on before).  It says the serial number is invalid.  Do older versionsnot work on Windows8, or do I need to uninstall it from my old computer first?

    You are allowed to have two activated installations.  If you happened to have one on this Windows 8 machine before, it is possible that the activation used for it was never deactivated (did you deactivate it before you upgraded Windows?).  Talk to Adobe support thru chat.  They might be able to resolve this with you:
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • Trying to apply an update to Firefox, new window says 'connecto the update server..' but it never connects.

    When turning on the computer, I am advised that an update to Firefox is available and it is highly recommended that I update.
    But trying to apply an update to Firefox, new window says 'connecto the update server..' but it never connects.

    Hello jwmoss, If there is an issue with update or permissions the better and easiest way is to download and install firefox:
    1. Download a copy of the latest firefox from http://www.mozilla.org/en-US/firefox/all.html
    2. '''''Trash''''' the current Firefox application to do a clean install.
    3. Install the version that you have downloaded.
    Do not select to remove your personal data, your profile data is stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder], so you won't lose your bookmarks or other personal data.
    see also: [https://support.mozilla.org/en-US/kb/install-firefox-mac?redirectlocale=en-US&redirectslug=Installing+Firefox+on+Mac#os=mac&browser=fx18 Installing Firefox on Mac]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Palm Desktop 6.2 automatically shuts down when trying to create/edit calendar events

    Hi,
    I have a Palm Pre and PD 6.2 installed on my computer. Right now I have Win 7 on 32 bits installed but I have encountered this issue also on Win XP 32 bits SP3, Win7 64 bits, on my machine and also on other machines.
    PD shuts down automatically when I do any of the following actions:
    -Calendar - Right Click - New Event - PD Shuts Down 
    -Calendar - Left Click to create event - Type some text in - Then click outside the event slot - Then right click on the event - Click on Edit or Repeat - PD Shuts Down 
    -Calendar - Import an existing event - Then right click on the event - Click on Edit or Repeat - PD Shuts Down 
    My PD6.2 is clean. I have re-installed my OS on my machine for many times. Just right after the install when I go to Calendar and I try to create/edit and event it shuts down. I have tried on some other machines. I have tried also on WinXP - same results.
    I have trying to remove the datebook.mdb file out of Documents\PalmOSDesktop\Devicename\Datebook, but still with no luck.
    The only thing that comes to my mind is that the installation might be corrupt, but I'm not doing anything abnormal, I install PD following the recommended settings. I have downloaded PD 6.2 from Palm's web site also. I just don't know what to do.
    I hope that someone has an answer to this.
    Thank You
    Post relates to: Pixi p120eww (Sprint)

    You are correct this is a result of a corrupt install. Is there anything that could be connecting the installs of Palm Desktop? Like the same CD being used, same download file, or the same data?
    Here is the instructions for a clean uninstall:
    You should first make a copy of your data. If you have Palm Desktop 4.2 and lower you can copy your user folder by going to C:\Program files\Palm or PalmOne. Once in here look for your username and right click on it and copy it. Then open up My Documents and Pasting it in here. If you have Palm Desktop 6.2.2 go to My Documents/Documents --> Palm OS Desktop. Copy the folder(s) in here and Paste them in My Documents/Documents
    Now you will need to uninstall Palm Desktop. First go to Control Panel and in XP go to Add and Remove documents, in Vista Programs and Features. Then look for Palm Desktop and uninstall it. Then go to C:\Program files\Palm or C:\Program files\PalmOne and delete this folder. If you have Vista you will need to go to here:
    C:\Program files\Palm
    C:\Users\[Vista Login Name]\appdata\local\virtualstore\Program Files\Palm or PalmOne
    C:\Users\[Vista Login Name]\appdata\Palm or PalmOne
    *Note you may need to view hidden folders to get to appdata. To do that go into your Control Panel and open folder options. Go to view tab and uncheck hide hidden files.
    One this is done you will need to delete some registry keys from your registry.
    Word of warning, going here and deleting the wrong thing can cause your PC from starting up, crashing and deletion of programs and data. If you feel you are unsure of your self see if you have a friend that can help you or a PC technician that you can pay to help you. This will show them everything they need to delete. To help against this we need to do a backup.
    Go to start and run type "regedit" without quotes
    Highlight MY COMPUTER, go to File --> export. Should pop up with a Save As box. Current location is fine should be in My Documents. In the file name on the bottom type "backup[todaysdate]" i.e. backup07072008. Next, the hard part.
    Easiest way to make sure your doing the right one highlight the key i.e. Palm Quick Install, and press delete on your keyboard. It will ask you are you sure. Say yes. Do the same thing for all keys below.
    If you make a mistake, stop what you are doing. And call a PC technician. BUT do not turn off your computer.
    The Registry keys are as follows (Note: some of these Registry keys will not be here but if they are, delete them)
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Palm Quick Install
    * HKEY_CURRENT_USER\Software\U.S. Robotics\PalmOne File Transfer
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Pilot Desktop
    * HKEY_CURRENT_USER\Software\Palm
    * HKEY_CURRENT_USER\Software\Palm, Inc.
    * HKEY_CURRENT_USER\Software\PalmDesktopAutorun
    * HKEY_CURRENT_USER\Software\PalmOne
    * HKEY_CURRENT_USER\Software\PalmSource
    * HKEY_LOCAL_MACHINE\Software\PalmSource
    Next reboot your computer
    Then reinstall your palm desktop from the CD and do a hotsync. If it asks you for a username and you synced your device before, put in 'test" if you did not sync before create a hotsync name.

  • Why does my iPhoto keep quitting while i'm trying to create a calendar?

    Why does my iPhoto keep quitting while i'm trying to create a calendar

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, look under User Diagnostic Reports for crash reports related to the crashed process. The report name starts with the name of the process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post other kinds of diagnostic report — they're very long and not helpful.

  • Trying to Create a Catalog file using WSIM (Windows System Image Manager)

    I have been looking online for a solution to htis problem for days and come up with nothing so any help would be amazingly helpful.
    I have created a Windows 8.1 image which I would like to role out to all users within my company but when trying to create a catalog file I am getting an erorr message saying "Windows SIM was unable to generate a catalog."  It says "Mounting
    Windows Image file......This might take a few minutes" and then fails after 6-7mins.
    When opening the log file I get this:
    10:00 : Cannot obtain read/write access for F:\sources\install.wim.
    In order to generate a catalog file, you must have read/write access to the Windows image file and its containing folder.
    10:13 :
    10:13 : Windows SIM was unable to generate a catalog. For troubleshooting assistance, see the topic: 'Windows System Image Manager Technical Reference' in the Windows OPK or Windows AIK User's Guide.
    10:13 :
    10:13 : System.InvalidOperationException: The operation failed to complete. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.ArgumentNullException: String reference not set to
    an instance of a String.
    Parameter name: source
       at System.Globalization.CompareInfo.IsPrefix(String source, String prefix, CompareOptions options)
       at ?A0xfe36268f.ConvertToNtPath(String path)
       at Microsoft.ComponentStudio.ComponentPlatformInterface.CbsSessionAdaptor..ctor(String bootDrive, String imageWinDir, String servicingPath)
       at Microsoft.ComponentStudio.ComponentPlatformInterface.OfflineImageImpl.InitializePackages()
       at Microsoft.ComponentStudio.ComponentPlatformInterface.OfflineImageImpl..ctor(OfflineImageInfo imageInfo)
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle._InvokeConstructor(Object[] args, SignatureStruct& signature, IntPtr declaringType)
       at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
       at Microsoft.ComponentStudio.ComponentPlatformInterface.Cpi.PlatformImplementation.CreateOfflineImageInstance(OfflineImageInfo imageInfo)
       --- End of inner exception stack trace ---
    The one image that did work (LiteTouchPE_x64.wim) was from the OS I imported to Microsoft Workbench but the components are different to any that I have seen online when looking on how to do this.
    I have made sure that the architecture is x64 and tried from ISO files I have on the system already but get the same error.
    This is the first project I have been involved in and only ever done IT support before this.
    Thanks for your help in advance.

    Yes I am trying to capture a reference image that I have created on another machine and then reploy this through MDT. I am trying to open the Unattend.xml file because the "Capture and Sysprep" fails on the reference machine when trying to run
    Sysprep. When I try to open the Unattend.xml file in MDT I get the error below:
    Performing operation "generate" on Target "Catalog".
    Starting: "C:\Program Files\Microsoft Deployment Toolkit\Bin\Microsoft.BDD.Catalog35.exe" "D:\Windows8.1 TEST3\Operating Systems\Windows8.1 x64\Sources\install.wim" 1 > "C:\Users\*****\AppData\Local\Temp\3\Microsoft.BDD.Catalog.log"
    2>&1
    No existing catalog file found.
    PROGRESS: 0: Starting.
    PROGRESS: 0: Creating mount folder: C:\Users\*****\AppData\Local\Temp\3\IMGMGR_install_Windows 8.1 Enterprise_njegg3ph.con.
    PROGRESS: 5: Creating temp folder: C:\Users\*****\AppData\Local\Temp\3\IMGMGR_install_temp_qj0x3ga5.obv.
    PROGRESS: 10: Mounting Windows image: D:\Windows8.1 TEST3\Operating Systems\Windows8.1 x64\Sources\install.wim. This might take a few minutes.
    ERROR: Unable to generate catalog on D:\Windows8.1 TEST3\Operating Systems\Windows8.1 x64\Sources\install.wim: System.ComponentModel.Win32Exception: The process cannot access the file because it is being used by another process
       at Microsoft.ComponentStudio.ComponentPlatformInterface.WimImageInfo.PreCreateCatalog()
       at Microsoft.ComponentStudio.ComponentPlatformInterface.OfflineImageInfo.CreateCatalog()
       at Microsoft.BDD.Catalog.Program.DoCatalog()
    Non-zero return code from catalog utility, rc = 2002

  • New session is creating in ECC on each new window open

    Hi Experts,
    I have configured Transaction iViews to call the t-codes in ECC. I have only one portal user logged in one machine, but on right clicking on the link opening the new window without re login.
    But in the AL08 transaction I could see number of sessions created (equivalent to number of windows opened) which is creating the memory bottleneck .
    Is there any way  either restricting in opening the new window, or limit the number of sessions per user in EP/ECC.
    Thanks
    Murthy.

    Hi Puneet,
    Thanks for the reply.
    This note says to create service of type Web GUI. So for for what ever the Transaction iView I have, I have to create services first and then service iViews for all.
    Instead  of that either we can change the standard WebGUI service, so for all the Transaction iView of type Web GUI Html these properties applies, or if we can create a new service and specify the transaction iView to use the newly created service instead of WebGUI. But I don't know where to set this.
    For now I have added the below parameter to the WebGUI.
    ~WEBGUI     =1
    ~THEME =     sl
    ~RECORD=     1
    ~WEBGUI_SIMPLE_TOOLBAR =     160
    ~SINGLETRANSACTION=     1.
    Through this it will not let me open the window with right click.
    I haven't log any OSS message yet.
    Thanks
    Murthy

  • Creating Hyperlinks that open a new window

    Hi,
    I'm creating a website for an art group I belong to.
    On the member's gallery page  - here - I have each artists name and a link to a website if they have one. I would like the link to open the site in a new window rather than directing the visitor away from the site (leave our site open in a window behind)  But I don't see an option for that when I make the hyperlink. Is this possible?   Or is this something that the development team should consider in future updates?
    Thanks,
    Elaine

    Hi Elaine
    You can enable the option for opening the page in new tab or page.
    Thanks,
    Sanjit

  • IPhoto keeps crashing when Trying to create a calendar

    I'm trying to put together a 2011 calendar for family. Every time I click on Create, Calendar I get the "Loading" page and then it crashes. Have to force quit to get out and try again.
    Any ideas??

    Welcome to the Apple Discussions. Backup the library and try the two fixes below in order as needed:
    Fix #1
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your User/Library/Preferences folder.
    2 - delete iPhoto's cache files that are located in the User/Library/Application Support/Caches/com.apple.iPhoto folder.
    3 - reboot, launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding the the Option key. You'll also have to reset the iPhoto's various preferences.
    Fix #2
    Launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library. Select options #1, #2 and #6.
    Click to view full size
    OT

  • Trying to create backup of BOOTCAMP with New Disk Image

    Hi.
    I am trying to automate backing up my BOOTCAMP partition. I thought automator might do it. I have it done but I have 2 problems.
    1) It prompts me for my password before it starts. Other folders don't ask me, how can I stop automator asking me when it is making disk image from BOOTCAMP?
    2) I get an error message Error code 28. See below. I have run this twice and get the same error message, same place each time. What is the problem.
    Thanks for your help. Much appreciated.
    !http://www.silverstoneschoolsparking.co.uk/grandprix/bootcamp%20automator%20err or.jpg!

    Thanks JGG.
    However, I see that development of Winclone has stopped which is a little concern.
    Also I do not see how to automate it. Is that possible?
    Can Winclone be added to Automator somehow, or back to the original question why is New Disk Image not happy creating an image of Bootcamp? I also tried selecting all the files/folders within Bootcamp instead of bootcamp itself, but that also fell over with same error message but at a different file.
    I use Carbon Copy Cloner for backing up Macintosh HD on a schedule, but I really want something which can back up Bootcamp on a schedule, or by using automator. How can this be achieved? Thanks
    Lee

  • Create links which opens in new window

    I have created a document which contains external links (http). When I convert the document to pdf and open the pdf document in browser the link open in the same window in which pdf is opened.
    How can I make them open in new browser window.

    Try this suggestion in Ted's blog -- Opening PDFs in a New Browser Window.
    It works for PDFs as well as URLs.

  • I am trying to install Lightroom 4 on a new Windows 64bit machine and keep getting "Error 1935.

    I am trying to install Lightroom 4 on a Windows 64 bit machine and keep getting "rro 1935. An error occurred on installation of Assembly component 643587C0-E0C..."

    http://helpx.adobe.com/creative-suite/kb/error-1935-assembly-component-microsoft.html
    Mylenium

Maybe you are looking for