Trying to understand how beans work.

I can't seem to figure out how beans work. Or more specifically how to target different parts of a bean. I think not knowing the terminology is a big part of this confusion too.
For instance. I have a jsp file and a bean. the jsp has a form input that submits to itself. the bean gets the info that was typed in and displays is in the <%= etcetc %> tag. Now, what im trying to do is also submit that value to my mysql db. This has created numerous problems for me. For one, i don't really know how to check if it's working (other than actually looking at the DB table). The other problem is how do i target that part of the bean to tell it to do that function (again, the terminolgy eludes me).
I'll post all of the code. There is a good chance that the DB code wont work. I'm really just hoping someone can explain to me
how i call the DB function from the JSP file.
I mean, is this even possible? Or do i need seperate beans for everything?? It seems kind of silly to not be able to do this.
ok, so here is the code.
JSP:
<!-- JSP Directives -->
<%@ page errorPage="myError.jsp?from=hello.jsp"%>
<jsp:useBean id="simpleBean" scope="page" class="jspbook.ch3.simpleBean"/>
<!-- Set bean properties -->
<jsp:setProperty name="simpleBean" property="fname"/>
<html>
<head>
     <title>Hello</title>
</head>
<body>
<center>
     <b><%= simpleBean.welcomeMsg() %></b>
</center>
<table align="center">
     <tr>
          <td>
               <form name="sdfsdf" action="test.jsp" method="post">
               <input type="text" name="fname" value="">
               <input type="submit" name="submit" value="submit">
               </form>
          </td>
     </tr>
</table>
</body>
</html>and here is the bean
package jspbook.ch3;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
public class simpleBean implements java.io.Serializable {
   private String emplid;
   private Connection con = null;
   private ResultSet rs = null;
   private PreparedStatement st = null;
   /* Member Variables */
   private String lname;
   private String fname;
  public simpleBean()
        try
          Class.forName("org.gjt.mm.mysql.Driver");
          Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/stm?user=root&password=");
    catch(Exception e)
          System.out.println(e.getMessage());
      /* Initialize bean properties */
    setLname("");
    setFname("");
  /* Accessor Methods */
  public String getLname() {
    return lname;
  public void setLname(String _lname) {
    lname = _lname;
  public String getFname() {
    return fname;
  public void setFname(String _fname) {
    fname = _fname;
  /* Display personalized message */
  public String welcomeMsg() {
    return "Hello " + fname + " " + lname +
      ", welcome to the wonderful world of JavaBeans!";
      public void insert()
       try
            String s1="insert into commstream (commTitle) values('"+fname+"')";
            st = con.prepareStatement(s1);
            st.executeUpdate();
            st.clearParameters();
            st.close();   
       catch(Exception m)
}So there it is. If someone can explain the fundamentals to me, that would be great. What would also be great is if someone can make the above code work :)
I've checked online tuts/specs on this, but to be honest im just not grasping it.

iPhoto is a relational database program
In the strongly recommended managed library (you have chosen to ignore this recommendation and use a referenced library) imported photos are copied to the iPhoto library and stored in the originals folder, a thumbnail jPEG is created and places in the data folder and when any modification is made (including autorotation) a modified version of the photo is created and placed in the modified folder. iPhoto updates its database entries to reflect everything it does.
It is critical that you do not make any modifications of any sort to the content or structure of the iPhoto library - doing so is likely to corrupt the library and cause you to lose data.
When you use the referenced mode which you are doing (and which is not recommended) you are taking total responsibility for the original photos which included not moving or modifying them while iPhoto is referencing them
Unfortunately, all pictures from a certain import has duplicated in iPhoto.... so I "moved to trash" all pictures from that import
Did you do this with the iPhoto trash? or did you use the finder to modify the contents of the iPhoto library.
If I "move to trash", I assumed it got rid of whatever index (and preview cache) to that particular JPEG. I was actually surprised it did not delete the actual JPEG but I'm ok with that.
again - iPhoto trash or finder trash. If you move a photo to the iPhoto trash and empty it all traces of that photo in the iPhoto library will be removed - nothing will be done to any file outside of the iPhoto library -- ever
LN

Similar Messages

  • Trying to understand how BTRFS works

    Hello,
    I read most if not all of the articles, presentations and podcasts about Btrfs at https://btrfs.wiki.kernel.org/index.php/Main_Page and other sites. All is very nice. I had to read some of the information a couple of times though to more or less understand and I'm not sure if I really do.
    I'm trying to explain BTRFS in my own words, but wonder if it is correct. What about the following:
    The storage space of a BtrFS file system is comprised of file data blocks and metadata blocks. The BtrFS metadata is organized in a B-tree fashion and describes the version and location of data on disk. The BtrFS file system uses a copy-on-write (CoW) storage strategy. An existing file under BtrFS is never initially overwritten. Instead, when modifying a file, data blocks are copied, modified and written anywhere on disk according to metadata to prevent overwriting of data required by snapshots. When a file under Btrfs is modified, data is not necessarily overwritten. Modified data blocks of files can be written anywhere on disk according to metadata and requirement to maintain existing snapshots. A snapshot does initially not impose additional storage space until data blocks are modified.
    Is this correct? And if not, where am I wrong please?
    Thanks!
    Edited by: Dude on Oct 16, 2012 10:38 AM

    Dude wrote:
    Thanks for the feedback. Actually that's one of the parts I'm not sure if I understand it correctly. It is my understanding that Btrfs works on the data block level, which I think is the smallest amount of data that can be allocated. Similar to Oracle database. So in order to modify data, the whole block needs to be written. For example, let's say I change a the word "teh" to "the" in a file. Doesn't it have to read the whole block, modify the content, and check the metadata before writing the complete block?Yes. But it does tight packing, so it probably wouldn't write an entire block out for "the" -- it would just squash it into one of the leaves of the b-trees.

  • Trying to understand how pics are stored

    I'm new to Mac (iMac Core i5 27") and trying to understand how pictures are stored. I've searched and found some posts that are relevant, but I really wanted to try and confirm a couple of things that still aren't clear to me.
    First question is: Are the pictures in Events, Photos and Albums all the same photos?
    Second question: If I import pictures from my external drive into iPhoto, are they stored on the iMac hard drive in the Pictures folder, and just viewed in iPhoto?
    Thanks!

    First question is: Are the pictures in Events, Photos and Albums all the same photos?
    Yes. Iphoto works on a Library bsis. Every photo is in the Library. Events and Photos are both views of the Library. Albums reference photos in the Library. A photo can be in many Albums and use no extra disk space.
    If I import pictures from my external drive into iPhoto, are they stored on the iMac hard drive in the Pictures folder, and just viewed in iPhoto?
    Yes, by default. There are other options - for instance, iPhoto integrates with almost every app on your Mac, you can store the Library on an external etc etc. If you tell us what you'd like to achieve we may be able to help you.
    Regards
    TD

  • I am new to mac and am trying to understand how to do something i did in Word. In Word you can set up document so that you have 2 pages per 8.5 x 11 landscape page. Each page is treated as a separate page. Can this be done in word for mac 2008?

    I am new to mac and am trying to understand how to do something i did in Word. In Word you can set up document so that you have 2 pages per 8.5 x 11 landscape page. Each page is treated as a separate page. Can this be done in word for mac 2008?

    Suggest you ask on the Microsoft Mac forums since it's their software you have a question about:
    http://answers.microsoft.com/en-us/mac

  • Trying to understand how iPhoto keeps track of pictures...

    I am trying to understand how iPhoto stores & organizes pictures.
    I moved JPEGs from a portable drive to my hard drive, set iPhoto's preferences to not copy pictures when importing them, then imported them. Unfortunately, all pictures from a certain import has duplicated in iPhoto.... so I "moved to trash" all pictures from that import and tried importing again since the JPEGs were still where I moved them to. When importing, it said they were duplicated .
    I am confused. If I "move to trash", I assumed it got rid of whatever index (and preview cache) to that particular JPEG. I was actually surprised it did not delete the actual JPEG but I'm ok with that.
    Can someone help explain this behavior?
    Thanks
    -Ed

    iPhoto is a relational database program
    In the strongly recommended managed library (you have chosen to ignore this recommendation and use a referenced library) imported photos are copied to the iPhoto library and stored in the originals folder, a thumbnail jPEG is created and places in the data folder and when any modification is made (including autorotation) a modified version of the photo is created and placed in the modified folder. iPhoto updates its database entries to reflect everything it does.
    It is critical that you do not make any modifications of any sort to the content or structure of the iPhoto library - doing so is likely to corrupt the library and cause you to lose data.
    When you use the referenced mode which you are doing (and which is not recommended) you are taking total responsibility for the original photos which included not moving or modifying them while iPhoto is referencing them
    Unfortunately, all pictures from a certain import has duplicated in iPhoto.... so I "moved to trash" all pictures from that import
    Did you do this with the iPhoto trash? or did you use the finder to modify the contents of the iPhoto library.
    If I "move to trash", I assumed it got rid of whatever index (and preview cache) to that particular JPEG. I was actually surprised it did not delete the actual JPEG but I'm ok with that.
    again - iPhoto trash or finder trash. If you move a photo to the iPhoto trash and empty it all traces of that photo in the iPhoto library will be removed - nothing will be done to any file outside of the iPhoto library -- ever
    LN

  • Need a Little Help with Understanding How Layers Work in PSE

    I have PSE version 5 and I am using it on a PC with Windows XP.
    As I get more into editing photos, I am enjoying it, but confusion is also starting to set in.  My question is about layers.  When I go to edit a photo for web/email use only, I start by resizing it to 72 ppi and then reducing the pixel dimensions quite a bit.  Then after that I normally go through this process of editing the photos by using normally about three different commands.  One is Levels, then I may go to Shadows/Highlights, and then my last command is always sharpening.  I used to do this all on one layer, but then finally learned to put each one of these editing features on their own layer so I can make changes/deletions without too much trouble.
    When I started doing the separate layers, I was just making a copy of the background layer each time and then touching that particulay layer up with Levels, Sharpen or Shadows/Highlights.  But I noticed that depending on the order in which the layers were placed, some changes would be obscured.  If I put the Levels layer on top, and then the Sharpen layer and the Shadows/Highlight layer below that, the sharpen effect and the shadows/highlights effects were no longer there.  I could only see the levels effect.  The photo was still not sharp and so on.  If I put the Sharpen level on top, then the photo showed the sharpen effects, but now the Levels and Shadows/Highlights effects were no longer visible.
    So then I started to make a copy of the background initially, do a levels adjustment here, then, instead of making a copy of the original background layer again, I would make a copy of the layer that now has the levels changes on it.  Then do the sharpen effect on this layer.  This way I had all the changes on one layer as long as I put that layer as the top layer.  But then I realized that I once again fI didn't have a layer with only one fix on it.   Finally, I started to use an adjustment layer for Levels, put this as the top layer, make a copy of the background layer, do shadows/highlights, copy background layer again, do sharpen, and this seems to work a little better.  But even with this way, depending on what order I place the sharpen and shadows/Highlights layers, one of them still seems to get obscured by the layer above it.
    Can someone help me to understand how layers work in this regard.  I am obviously a little confused here.
    Thanks,
    Lee

    You really aren't working efficiently. First of all, do your editing on a full sized version of the photo, since you have more data for PSE to work on and will get better results. Use save for web to make your web/email copy when you are totally done. You can resize it down on the right side of the save for web window.
    Duplicating a regular layer makes an opaque layer that obscures the layers below it. It's best to start off by not working on your original image, so that you don't have to worry if you mess up. If you're working on a copy, you can work right on the background layer, or only duplicate the layer once and apply your changes to that. So you'd apply both shadows/highlights and sharpening to the same layer.
    Finally, you should use an adjustment layer for levels. Layer>New Adjustment Layer>Levels. This will put levels on a transparent layer above your image, but you will need to click the layer below it to get back to a pixel layer to apply other changes (you can't sharpen an adjustment layer, for example).

  • How works lync when I made a video conferences with someone in my same building?I want to understand how lyncs works, when I made video conferences with someone in my same building, if my call go to to server and then go to the person I´m calling. Or if L

    I want to understand how lyncs works, when I made video conferences with someone in my same building, if my call go to to server and then go to the person I´m calling.
    Or if Lync realizes that we are in the same building so it never leaves, so it don’t generate traffic. My concern is the bandwidth consumption.
    Please a I need the information.
    thanks

    In addition, you can refer to the following link about the media connection in different scenarios:
    http://www.shudnow.net/2010/12/06/lync-server-2010-port-ranges-and-audiomedia-negotiation/
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    Lisa Zheng
    TechNet Community Support

  • I want to understand how crypto works.

    Hi, I want to understand how crypto works and all. where i can start with. i really dont know anything about crypto. i need to understand how DC and keys and algorithims work together and how they work. pls suggest me where and with what i can start.

    Since you asked on the Java Cryptography forum, I would recommend beginning with this book:
    Beginning Cryptography with Java
    David Hook
    ISBN: 978-0-7645-9633-9
    http://www.wrox.com/WileyCDA/WroxTitle/productCd-0764596330.html

  • Not understanding how Wifi Works

    Good morning all, so I'm not understanding how Wifi works on the 3GS. It seems to behave differently then on the 3G. If I send a video to some one and hit the sleep awake button it never goes through. It seems to only send it if I keep the screen active, and I'm not understanding how keeping wifi on drains the battery if everytime I hit the sleep button it disconnects it. It's kind of annoying, because before you could shoot off an email and it would go right through. I have noticed though that if it's on 3G it does go through. Has any one else noticed this? Thanks!

    I notice sometimes when I am connected to WiFi that after I wake up the phone it takes a couple seconds to reconnect to WiFi so it does seem like the phone turns the WiFi off at some point while sleeping or at least goes into some sort of standby maybe. I don't think I have had an issue of it turning off after you hit sleep until it was done sending though. I would think that if the WiFi does turn off while asleep that it would have a sleep time after a certain amount of inactive time and not the second the screen is off.
    I'm interested in finding this out as well. I havent had this issue but I do send a lot of large attachments and may need to know this for future reference.
    Message was edited by: Ray Golob

  • Trying to understand how MIDI Clock works in Logic

    Hi,
    I'm syncing a Roland MC-909 Groove Box with Logic.  I'm also using a MOTU MIDI Express interface.  The MC-909 syncs to Logic, thus it is in Slave mode. Under Preferences->Sync->MIDI Sync Project Settings, I've discovered something odd, and I'm trying to understand it.  It could be just a lack of understanding regarding the MIDI Spec.
    Under MIDI Clock, I necessarily need to set the destination to the MC-909.  I cannot use 'All'  or else the MIDI Express starts playing back at 8x the tempo set in Logic.  Not sure why this happens but its probably something weird with the MOTO interface.  Anyway in Logic, MIDI Time Code (MTC) is disabled, Song Position Pointer (SPP) is disabled, and MMC is disabled.
    So basically I'm only sending MIDI Clock to the MC-909.  Here's what is wierd:  As I locate to different places in the Arrange window (not in play mode), the MC-909 is locating to the correct time offset within the pattern!  This basically guarantees that you can start the Logic song anywhere, and the MC-909 will start playing back the pattern at the right time.  I don't understand how this can be happening given that I've disabled SPP in Logic.  The only sync communication between Logic and the MC-909 is MIDI Clock, but I don't believe that MIDI Clock is even capable of transmitting offset information that specifies the time-offset into a drum machine pattern, Does it?  Or is Logic sending SPP info as I click on different locations in the Arrange window?
    Another point, is that if I select to transmit MIDI Clock to another device other than the MC-909, but still using the MOTU MIDI Express, then the MC-909 plays back synchronously (i.e. its getting MIDI Clock from Logic, even though Logic isn't sending MIDI Clock to the MIDI port connected to the MC-909), but it does not track the pattern offset described in the previous paragraph.  The only way I can get the pattern offset to work, is if I select the MIDI Clock to be sent to the MIDI port connected to the MC-909.
    I would like to figure this out because I'm thiinking about buying an external MIDI synchronizer, but I don't want to lose the ability to have logic specify the offset into the pattern on the MC-909
    Thanks,

    Hi,
    I'm syncing a Roland MC-909 Groove Box with Logic.  I'm also using a MOTU MIDI Express interface.  The MC-909 syncs to Logic, thus it is in Slave mode. Under Preferences->Sync->MIDI Sync Project Settings, I've discovered something odd, and I'm trying to understand it.  It could be just a lack of understanding regarding the MIDI Spec.
    Under MIDI Clock, I necessarily need to set the destination to the MC-909.  I cannot use 'All'  or else the MIDI Express starts playing back at 8x the tempo set in Logic.  Not sure why this happens but its probably something weird with the MOTO interface.  Anyway in Logic, MIDI Time Code (MTC) is disabled, Song Position Pointer (SPP) is disabled, and MMC is disabled.
    So basically I'm only sending MIDI Clock to the MC-909.  Here's what is wierd:  As I locate to different places in the Arrange window (not in play mode), the MC-909 is locating to the correct time offset within the pattern!  This basically guarantees that you can start the Logic song anywhere, and the MC-909 will start playing back the pattern at the right time.  I don't understand how this can be happening given that I've disabled SPP in Logic.  The only sync communication between Logic and the MC-909 is MIDI Clock, but I don't believe that MIDI Clock is even capable of transmitting offset information that specifies the time-offset into a drum machine pattern, Does it?  Or is Logic sending SPP info as I click on different locations in the Arrange window?
    Another point, is that if I select to transmit MIDI Clock to another device other than the MC-909, but still using the MOTU MIDI Express, then the MC-909 plays back synchronously (i.e. its getting MIDI Clock from Logic, even though Logic isn't sending MIDI Clock to the MIDI port connected to the MC-909), but it does not track the pattern offset described in the previous paragraph.  The only way I can get the pattern offset to work, is if I select the MIDI Clock to be sent to the MIDI port connected to the MC-909.
    I would like to figure this out because I'm thiinking about buying an external MIDI synchronizer, but I don't want to lose the ability to have logic specify the offset into the pattern on the MC-909
    Thanks,

  • Understanding how interfaces work

    I am new and trying to understand the magic of interfaces. I understand that you can declare an interface as follows: public interface MyInterface {
          public abstract thisHereMethod();
    } But what I don't understand is how the compiler properly finds the right class from which I am drawing method thisHereMethod() from? How does it make an exact association with the "right class?"
    Someone told me that it all works with namespace association. However, if that's true, what if you have two or more classes within the same namespace which all happen to have the same identifyer, yet different functionality. How does the compiler know which of these classes I'm trying to draw this method from?
    I would really appreciate an explanation if someone out there knows. Thanks for your help in advance!

    jverd. I think I'll have to read over what you wrote
    a couple of times to really understand all the
    implimentations and instantiations that must take
    place, but I think I'm getting closer to
    understanding. I do appreciate your explanation.
    Thank you very much.No problem. You sound like you're still not really sure how to create, implement and use interfaces. For a fairly straightforward example, take a look at the Comparable interface.
    http://java.sun.com/j2se/1.3/docs/api/java/lang/Comparable.html
    The basic idea is this: You define an interface, giving it some methods for which all implementors must provide the workings. You also provide documentation explaining what the interface is for and what an implementor's general semantics should be.
    When somebody goes to implement the interface, the compiler checks to make sure all the requried methods are present, but only high quality coding, testing, and review can ensure that the intended semantics are preserved.
    Looking at Comparable again, the idea is that if a class wants to declare that any two instances can be compared to each other and that the concept of less than, equal to, greater than applies, then that class can declare "implements Comparable" on the class declaration line. It must then provide the required compareTo method, if it doesn't, the compiler will complain. It should also implement compareTo as per the contract laid out in the API docs. If it doesn't, users of the class (that is, people) will complain.
    Switch perspective now to a class that's using your class, which implements Comparable. There will be a method somewhere that takes a Comparable as an argument. You can pass a reference to your class to any of those methods. Your class is a Comparable, just as it is a MyClass and is an Object, etc.
    What's the use of a method that takes Comparable without knowing anything about what the actual class is? Sorting is a big one that pops to mind. If you're writing a sort routine, like quicksort or mergesort, one part of sorting is comparing two of the elements being sorted. You need to know which one is larger so you know if they're in the right order. The actual comparison is type specific. That is, how you compare two Strings is different from how you compare to Floats is different from how you compare two MyEmployeeClass objects. Except for the details of how to compare (String: compare character by character. Float: compare numerically. MyEmployeeClass: compare by employee ID or name or hire date or whatever you decide is appropriate)--except for that bit, the rest of the sort is identical. So, why write one sort routine for String, one for Float, one for MyEmployeeClass. All you need to do is write the sort algorithm with a step that says "if the comparison routine for the two items says that #1 is greater than #2, then switch them" and then make sure that whatever you're sorting has a valid comparison routine. The declaration of your sort method might look like this:
    public Object[] sort(Comparable[] sortMe) {}and within the body of sort...
    if (sortMe[ i ].compareTo(sortMe[j]) < 0) { /* out of order, so switch them */ }The sort algorithm doesn't have to know anything about your class--exceept that it has a compareTo method with the proper signature. Your class implements Comparable, to say that it can be used by any bit of code that expects a Comparable. The callers of compareTo only need to know that your class is a Comparable (implements Comparable), and thus is guaranteed to have that method. The VM then uses the vtable of whatever object compareTo is being invoked upon to find the correct compareTo. This vtable is bound to each class at compile time and to each object of that class at instantiation time.
    Is it making any more sense yet?

  • I need help understanding how this works. AS 2.0

    Its my first time here and i only started learning flash today. I aint too great with maths and i was showed this piece of code that makes a triangles point follow the cursor. It involved mathimatical things ( which i aint so great at) and the guy said "You dont need to know how it works, just how to use it." well i copied his code and it worked, but i have no idea how to use it in other rotation apart from the one he taught us. I dont even understand how to redo his code i saved it to a word document and anytime i wanted to make something rotate something in that fashion i would refer to that. But i dont want to have to do that, i want to know how to use it, dont have to understand it, but use it for other rotation matters. If you are going to help, please try to be a bit simmple i explaining it, cause im new. Dont get me wrong i aint thick but i can find it a bit hard to follow some things, that is i my current problem.
    here is the rotation code:
    onEnterFrame = function()
    hero._rotation = getmouse(hero);
    getmouse = function(mc:MovieClip):Number
    dy = _ymouse-mc._y;
    dx = _xmouse-mc._x;
    rad = Math.atan2(dy,dx);
    rotate = rad*180/Math.PI
    return rotate+90
    also if it helps, here is the video i was watching: http://www.youtube.com/watch?v=w3OfrpbNhHs
    please if you can, explain how the entire thing works.
    thanks for any help given in advance.

    Hi,
    Here's a short primer.  It may not be sufficient but here goes.
    1st, move the closing bracket at the end and put it on the third line.  This makes the code more efficient
    onEnterFrame = function(){                               // this causes Flash to repeatedly
                                                                              execute the next line at the
                                                                              frame rate you selected
                                                                              for your document
           hero._rotation = getmouse(hero);               // this tells Flash to rotate a
                                                                              movie clip (named hero) based
                                                                              on the function getmouse()
    };                                                                     // putting the }; here makes the
                                                                              code more efficient and readable
    getmouse = function(mc:MovieClip):Number{   // This is the function called with
                                                                             mc referring to hero that was
                                                                             passed from the second line.
         dy = _ymouse-mc._y;                                // dy means delta y which subtracts
                                                                            the y position of the movieclip
                                                                            from the mouses y position
         dx = _xmouse-mc._x;                               // dx = delta x (same as above line
                                                                            but on the x axis)
                                                                         // once you have the x and y sides
                                                                            you male a triangle.
                                                                            Now use trig to find the angle
         rad = Math.atan2(dy,dx);                           // the computer works in radians
                                                                            the arc tangent atan2 will give the
                                                                            angle in radians
         rotate = rad*180/Math.PI                            // you want to convert the radians to
                                                                            degrees, that's what this line does
         return rotate+90                                         // this returns the value of rotate back
                                                                            to the calling function in line 2.
                                                                            the +90 determines which part
                                                                        // of the hero movie clip is facing the
                                                                           mouse.
    If you put the mouse cursor over any of the green reserved words above in the Actions panel you will get a desctription of what these do.
    hope that helps.

  • I just dont understand how to work photo shop HELP ME

    my mom bought this for me and im reading the directions and trying to figure out how it works i just dont get it at all!!! i dont know why, im good at using computers i just nvr grasped the concept of how to work this
    if you have a helpful hint please comment  thank you

    Adobe TV has a whole selection of free videos that should help you to get started.
    http://tv.adobe.com/show/learn-photoshop-elements-8/
    You can also find lots of videos using Google...
    http://www.google.com/search?hl=en&client=opera&hs=6js&rls=en&q=Photoshop%20Elements%208&u m=1&ie=UTF-8&tbo=u&tbs=vid:1&source=og&sa=N&tab=wv
    or YouTube
    http://www.youtube.com/watch?v=F1ZEEPNaqQ0
    If you just search for Photoshop Elements (without limiting it to Photoshop Elements 8 as I did) you will get even more results...most if not all things should work in version 8. (Version 8 user interface will look different and may have additonal features as each version gets new goodies.)

  • How much does this cost? & I still can't understand how this work

    How much does this cost? & I still can't understand how this work

    Hello mkopti,
    ePrint is a free feature include on most of our wireless printers that are e-all-in-one enabled. It allows you to register your printer on HP's website http://www.eprintcenter.com and create an account. Once an account has been created you can enable the web services feature, after connecting to a valid network with internet access, which will print off a registration code you can use to add the printer to your account and customize an email address for the printer. This allows you to print to the printer from virtually anywhere simply by sending an email to the printers email address and when it is received it will print.
    Most of these printers are also Airprint enabled meaning you can print locally from the same network on the iPad, iPod, and iPhone (version 4.3.2 and higher) by using the built in "Print" command in the idevices.
    If you have any other questions or need clarification feel free to reply to this post and I will try to answer any questions you have.
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • Trying to understand how SCVMM does networking

    I'm having trouble conceptualizing networking in VMM.
    I thought up the following hypothetical network to try to understand how it would be implemented in VMM:
    A company with: - Locations in NY and CA - 3 branches\buildings in each location - Each building has 3 floors with a different sub-net on each floor - One Hyper visor in each building - VMM being used to distribute IPs instead of DHCP
    I came up with the following diagram: 
    I'm still confused about a few things. Given this infrastructure what would my "VM Networks" look like? If I have one hypervisor in each building plugged into the same switch array as the computers on each floor I don't need a router right?
    If I have a switch+vlan installed on each floor, and those switches plug into a core switch which my hyper-visor is also plugged into VMM will take care of routing traffic between those VMs on different lan segments right?

    iPhoto is a relational database program
    In the strongly recommended managed library (you have chosen to ignore this recommendation and use a referenced library) imported photos are copied to the iPhoto library and stored in the originals folder, a thumbnail jPEG is created and places in the data folder and when any modification is made (including autorotation) a modified version of the photo is created and placed in the modified folder. iPhoto updates its database entries to reflect everything it does.
    It is critical that you do not make any modifications of any sort to the content or structure of the iPhoto library - doing so is likely to corrupt the library and cause you to lose data.
    When you use the referenced mode which you are doing (and which is not recommended) you are taking total responsibility for the original photos which included not moving or modifying them while iPhoto is referencing them
    Unfortunately, all pictures from a certain import has duplicated in iPhoto.... so I "moved to trash" all pictures from that import
    Did you do this with the iPhoto trash? or did you use the finder to modify the contents of the iPhoto library.
    If I "move to trash", I assumed it got rid of whatever index (and preview cache) to that particular JPEG. I was actually surprised it did not delete the actual JPEG but I'm ok with that.
    again - iPhoto trash or finder trash. If you move a photo to the iPhoto trash and empty it all traces of that photo in the iPhoto library will be removed - nothing will be done to any file outside of the iPhoto library -- ever
    LN

Maybe you are looking for

  • Where can I get new charger for Satellite Pro L500-1D4?

    Hi, I would like to get a new charger for Toshiba. My first charger got lost and the second charger that I bought from ebay 3 months ago for 10,- has stopped working. Where can I get a charger from? I googled and I found couple of wesbites e.g. http:

  • Can't download netscape

    I get to the point where I am supposed to drag the download into the applications folder, but it won't drag. What's a girl to do?

  • Wrong margin length when printing from JRC

    Hi, I have problem with printing reports using JRC with null margins. Everytime when I chose 0 as a  margin (i have tested it with left margin), after printing the margin is bigger then 0. If the report is printig from Crystal Report all margins are

  • Suggestions for smartband

    I tried the smartband during a match of badminton and I start to wondering if all of my steps actually was recorded. Does this work as some pedometers, that they don't count if you just take for ex. 5 steps. You have to do more steps to get them reco

  • Does pse4 have pattern maker in filters?

    If so, I can't find it. How, then, would I create a pattern and save it, so that I can apply it (instead of using the clone stamp, for example). Thanks.