New to dreamweaver, help with mdb

hi I am new to dreamweaver and have some html knowledge but no fancy stuff here.  I have setup my website to communicate w/ dreamweaver but my asp pages are not interacting... that is, I cannot see any mdb database info in the "live view."  can someone please help w/ all this dns jargon.  I've searched google but it's too confusing.  i'm sure I can figure this out w/ some help.  thanks!

Hi
Live view will not display dynamic server side data.
To view this you will have to set up an asp testing server, see - http://www.adobe.com/devnet/dreamweaver/articles/setting_up_asp.html.
If you are just starting can I recommend that you consider using php/mysql in place of asp/mdb (or msql), as the php set-up is much better supported in dreamweaver and on this forum.
For more info on setting-up and using both these set-ups, see - http://www.adobe.com/devnet/dreamweaver/application_development.html.
PZ

Similar Messages

  • Hello from a new member and help with random images on refresh

    Hi All,
    I've just joined the forum. In fact I've really only just started to use Dreamweaver. I've covered a lot of ground in the last few weeks and
    have manage to set up a basic site using CSS for layout but now I've hit my first problem.
    On the index page of the site - http://www.hcadesign.co.uk/ there is a large main image which I would like to change each time someone
    visits the site or hits refresh. I've hunted around and found lots of scripts, all using java, that seem to do just this but I'm not having any
    luck getting them to work.
    My pages code is as follows -
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Humphrey Cook Associates - Architects - Interior Designers - Project Managers</title>
    <link href="styles/hca_styles.css" rel="stylesheet" type="text/css" media="screen" />
    </head>
    <body>
    <div id="wrapper">
      <div id="header"><img src="images/header.gif" width="800" height="100" alt="hca_header" /></div>
      <div id="menu">
        <ul>
          <li>About Us</li>
          <li>Residential </li>
          <li>Special Needs Housing</li>
          <li>Hotels</li>
          <li>Conservation</li>
          <li>Interiors</li>
          <li>Offices</li>
          <li>Sustainability</li>
          <li>Commercial</li>
          <li>News</li>
          <li>Contact</li>
        </ul>
      </div>
      <div id="main_image"><img src="images/haydock_atrium_420x300.jpg" width="420" height="300" alt="haydock_atrium" />
      </div>
      <div id="menu_right">
        <h3>Latest News</h3>
        <p>Planning permision finally granted for the proposed 'Villa De France'</p>
        <div id="news_image_01">
          <p><img src="images/news_villa_de_france_90x50.jpg" alt="villa_de_france" width="90" height="50" /></p>
        </div>
        <p>Application submitted for new 30 storey hotel with retail in Tower Hamlets</p>
        <div id="news_image_02"><img src="images/news_alie_St_90x50.jpg" width="90" height="50" alt="alie_street" /></div>
      </div>
      <div id="spacer"></div>
      <div id="bottom_left"><img src="images/riba_logo_127x67.gif" width="127" height="67" alt="riba_logo" /></div>
      <div id="bottom_thumb_01"><img src="images/thumb_beckton_95x67.jpg" width="95" height="67" alt="beckton" /></div>
      <div id="bottom_thumb_02"><img src="images/thumb_edgeworth_link_95x67.jpg" width="95" height="67" alt="edgeworth" /></div>
      <div id="bottom_thumb_03"><img src="images/thumb_tov_bathroom_95x67.jpg" width="95" height="67" alt="haydock" /></div>
      <div id="bottom_thumb_04"><img src="images/thumb_edgeworth_interiors_portrait_95x67.jpg" width="95" height="67" alt="the_old_vicarage" /></div>
    <div id="bottom_right">
      <h1>Architects</h1>
      <h1>Interior Designers</h1>
      <h1>Project Managers</h1>
    </div>
      <div id="footer"></div>
    </div>
    </body>
    </html>
    I've highlighted where the image to be rotated is in red.
    The scripts I've found have generally involved putting something in the <head>, something where the image is to be (but I wasn't sure if it should be
    within the div tag or after img src or what?) and also a seperate *.js file stored in the root directory.
    Anyway I'm not getting anywhere and need some help as I really don't know what I'm doing with javascript.
    Cheers

    Hi and Welcome to the DW Forums. 
    For the sake of clarity, Java is not the same thing as JavaScript. 2 entirely different programming languages.
    Copy and paste the following code into a new, blank HTML page.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Random Banner</title>
    <script type="text/javascript">
    <!--//Random Banner image on Page Reload 
    //store the images in arrays below.
    //First banner is always image [0].
    //If you add more banners images, change the array count (4).
    images = new Array(4);
    images[0] = "<a href='http://www.example.com'>
    <img src='path/first-image.jpg' width=' ' height=' ' alt='some-description' /> </a>";
    images[1] = "<a href='http://www.example.com'>
    <img src='path/second-image.jpg' width=' ' height=' ' alt='some-description' /> </a>";
    images[2] = "<a href='http://www.example.com'>
    <img src='path/third-image.jpg' width=' ' height=' ' alt='some-description'  </a>";
    images[3] = "<a href='http://www.example.com'>
    <img src='path/fourth-image.jpg' width=' ' height=' ' alt='some-description'  </a>";
    index = Math.floor(Math.random() * images.length);
    document.write(images[index]);
    //done
    // -->
    </script>
    </head>
    <body>
    <h1>Random Banner on Page Load.</h1>
    <p>The more images you have in your array, the more random it will seem.</p>
    <p>Change the URLs from example.com to your your own site pages.</p>
    <p>Change path/image to images in your local site folder.</p>
    </body>
    </html>
    Good luck with your project,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web-design.blogspot.com/

  • Ex frontpage user new to dreamweaver help!

    hello all,
    I am very new to dreamweaver MX and have only ever used
    frontpage 2000. I just dont know where to start and was hoping for
    some quick advice.
    In frontpage you could see the navigation pages so you just
    click on one or create a new page. It was very user friendly. I am
    creating a very basic page so my first question is how do i create
    a website? title it "my acting website" and start with an index
    page with a template/title that will go on every page i create.
    Do you recommend any tutorials? if there are any for creating
    a basic website?

    Have you looked at the Dreamweaver help files themselves ? F1
    and do a
    search for ' Templates'
    You need to create a basic dreamweaver template, with all the
    elements that
    will be on every page and declare an editable (an area that
    changes on every
    page - eg: content area) . You then would create 'children'
    pages from
    this template.
    A basic knowledge of html and css would be advantageous to
    you also :)
    You may also want to check out the css tutorials at the Adobe
    site - (last
    link in my sig)...
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    ~ Forum Posting Guidelines ~
    http://www.adobe.com/support/forums/guidelines.html
    CSS Tutorials for Dreamweaver:
    http://www.adobe.com/devnet/dreamweaver/css.html
    "waddsy" <[email protected]> wrote in
    message
    news:evv669$ps1$[email protected]..
    > hello all,
    > I am very new to dreamweaver MX and have only ever used
    frontpage 2000. I
    > just
    > dont know where to start and was hoping for some quick
    advice.
    >
    > In frontpage you could see the navigation pages so you
    just click on one
    > or
    > create a new page. It was very user friendly. I am
    creating a very basic
    > page
    > so my first question is how do i create a website? title
    it "my acting
    > website"
    > and start with an index page with a template/title that
    will go on every
    > page i
    > create.
    >
    > Do you recommend any tutorials? if there are any for
    creating a basic
    > website?
    >

  • New to Mac, Help with Time Machine! Partition External HDD or not?

    Hey Guys I'm a new mac user
    I need help with  time machine
    I wanted to know how time machine works and what all does it back up?
    I have 2 hard drives one is of 1TB and one is of 320gb
    In the 1TB hard drive i store all my music videos and work stuff it is windows formatted
    The 320gb hard drive is mac formatted and I was thinking of making a partition on it one with 250gb for time machine and the remaining 70 gb for mac softwares and files. The ssd of my mac has a capacity of 256gb. I have read for time machine you need at least 2x the space of your ssd on your external hard drive but i don't understand if my ssd is only 256 and can store files worth 256gb why do i need double the space? Secondly if I choose to use the complete 320 gb for time machine will that be okay or even if i choose to partition it to 250gb for time machine will that be fine too? Or will I need to format my 1TB hard disk out of which currently only 300 gb is empty and partition that to 500 gb for time machine?
    I'm really confused every tells me to use time machine but do I need it? And what does it exactly do?
    Your input will be really appreciate thanks

    The reason that you want a partition (or drive) of 2-3 times the size of your boot drive for Time Machine is so that you can keep backups further back than just the current boot drive state - for that you'd need to make a clone of the drive rather than using Time Machine (see -> http://pondini.org/TM/Clones.html).
    For more information for backups in general, see -> Most commonly used backup methods.
    Note that you can't use Time Machine to backup a Windows partition.
    Good luck,
    Clinton
    MacBook Pro (15” Late 2011), OS X 10.??, 16GB Crucial RAM, 960GB M500 Crucial SSD, 27” Apple Thunderbolt Display

  • Urgent: im new and need help with this task!

    I need help with converting the pseudo code to java code, Any help will b greatly appreciated!
    // Declare a variable of type int, called "choice".
    // Generate a random number between 0 inclusive and 7
    // exclusive, and store that number into the variable
    // "choice". (How do you generate a random number? Use the
    // nextInt(int) method inside the random object, which takes
    // a single int parameter. You can read about this method
    // here:
    // http://java.sun.com/j2se/1.5.0/docs/api/java/util/Random.html
    // If "choice" is equal to 0, then create and return a new
    // IBlock object, passing "game" as the parameter to IBlock's
    // constructor.
    // Otherwise, if "choice" is equal to 1, then create and
    // return a new TBlock object, passing "game" as the
    // parameter.
    // Otherwise, if "choice" is equal to 2, then create and
    // return a new OBlock object, passing "game" as the
    // parameter.
    // Otherwise, .... etc ....
    // (please continue to do this for all of the 7 kinds of block
    // that can be created)

    import java.util.*;
    public class Echo{
         public static void main(String[] args)     {
              //System.out.println("enter ur choice");
    Random r=new Random();
    int choice=r.nextInt(6);
         switch(choice)
         case 0:
              IBlock object0=new IBlock("games");
              break;
         case 1:
              TBlock object1=new TBlock("games");
              break;
         case 2:
              OBlock object2=new OBlock("games");
              break;
         case 3:
              LBlock object3=new LBlock("games");
              break;
         case 4:
              JBlock object4=new JBlock("games");
              break;
         case 5:
              SBlock object5=new SBlock("games");
              break;
         case 6:
              ZBlock object6=new ZBlock("games");
              break;
    class TBlock
         TBlock(String s)
              System.out.print("TBlock called"+"\n value passed is "+s);
    class IBlock
         IBlock(String s)
              System.out.print("IBlock called"+"\n value passed is "+s);
    class JBlock
         JBlock(String s)
              System.out.print("JBlock called"+"\n value passed is "+s);
    class OBlock
         OBlock(String s)
              System.out.print("OBlock called"+"\n value passed is "+s);
    class LBlock
         LBlock(String s)
              System.out.print("LBlock called"+"\n value passed is "+s);
    class SBlock
         SBlock(String s)
              System.out.print("SBlock called"+"\n value passed is "+s);
    class ZBlock
         ZBlock(String s)
              System.out.print("ZBlock called"+"\n value passed is "+s);
    }

  • New user needs help with HD choices

    I just found this forum and it looks like something I am going to enjoy.  I have Premiere Pro CS 5.0 and use it to process AVCHD video.  My hardware is made up of Asus P9X79 Pro, i7 3930k, 16 GB memory, and GTX 470 vid card.  I also have an SSD as my main boot drive - it is an OCZ Revodrive.
    I would like help in setting up my hard drives for the Adobe software, so have listed my storage drives along with current usage and ATTO benchmark results:
    Drive 0 - Revodrive - ATTO = 800 - Used for Win 7 -64 Pro and Adobe software
    Drive 1 - WD Black 2TB - ATTO = 140 - Used for MTS file storage
    Drive 2 - WD Black 2TB - ATTO = 140 - Used for Scratch Files
    Drive 3 - Samsung 1TB - ATTO = 60 - Used for Finished files (Encore files and for saving MP4 files for web upload)
    Drive 4 - WD Black 1TB - ATTO = 120 - Used for backup
    Drive 5&6 - 2 each Hitachi 750GB in Raid - ATTO = 180 - Used for backup (Drives are attached to Marvel Raid port on Motherboard)
    I realize that drive #3 is the slowest drive and should probably be used for other things.  I am open to suggestions.

    Happy New Year and wecome to the forum!
    Sounds like a strong system, and it should be just fine for AVCHD video.
    Suggest:
    Boot / OS / programs - Revodrive is fine; you can also assign media cache and media cache DB (CS5 setting) to this drive
    Data drive - create a RAID 0 array from your current drives 1 and 2 - use this for projects and media, and pretty much whatever other data needs you have for your PC
    scratch / output drive - use for current matching 5 & 6 Hitachi's in RAID 0 for scratc and render outputs
    all others - use 3 & 4 for backups
    You should probably run PPBM5 and report the 4 "scores" to the PPBM5 site and also back here to get a reality check that everything is configured and working properly for your system.
    Jim

  • New to MAC  -help with previous systems folder -this should be an easy one!

    My PowerBook G4 (running Leopard) recently crashed due to some corrupt files, per the Genius Bar. I got it up and running with the Leopard upgrade disc as they recommended. Everything went well and on the HD it created a "Previous Systems" folder and everything is in there... (old applications, documents, etc. ... Now what do I do?
    Do I just run the applications (iWork, MS Office, Adobe products, etc.) from that "Previous Systems" folder or should I drag and drop them to the new applications folder, or is it better to delete and reinstall all the programs again? And if I have already opened some of the applications from the Previous Systems" folder will this prevent me from moving them.
    I just want to clean up my laptop and keep it simple... What is the safe and easy thing to do?
    Thanks for all the help... this site is what influenced me to switch from PC to MAC !
    John

    Start with the description in http://docs.info.apple.com/article.html?artnum=301270
    Once you sort that out, see:
    Switching from Windows to Mac OS X,
    Basic Tutorials on using a Mac,
    MacFixIt Tutorials, and
    MacTips Learning Centre.
    Additionally, *Texas Mac Man* recommends:
    Quick Assist.
    Welcome to the Switch To A Mac Guides, and
    A guide for switching to a Mac.

  • Help with mdb core analysis tool

    Hi,
    We are having a possibly memory leak problem but we don't know for sure. In order to find out if there any memory leaks, we are trying to use "mdb" tool that comes along with Solaris (version: SunOS romeo 5.10 Generic_125100-10 sun4v sparc SUNW,Sun-Fire-T200). Problem is when I run "mdb" the module "libumem.so.1" is not loaded. This is what I get
    $$mdb core.25688
    Loading modules: [ libc.so.1 libuutil.so.1 ld.so.1 ] I have set the following:
    UMEM_DEBUG=default
    UMEM_LOGGING=transaction
    LD_PRELOAD=libumem.so.1
    But still no luck. Can anyone tell me what I need to do to load libumem.so.1 module?
    Many thanks
    Prasad

    Hi guys!
    I'm new to Java and need advice on how to develop a
    tool that analyses logfiles created by a groupware server.
    I need to this for my thesis hence the importance.
    Thanks.Ok. What's your question. Or are you looking for someone to write it for you?

  • New user: Need help with my phone. iSync on a G3 with OSX 10.3.9

    Hi guys, this is my first post on this forum, so take it easy on me. LOL I just got a Sony Ericsson W810. I found out that I need to get iSync. Aparently iSync 2.2 is the program I need. Is this available for my version of OSX? I'm not sure if a new version of OSX is compatible with my G3. Any help? Much appreciated. Thanks.

    Welcome to Apple Discusssion.
    iSync 1.5 is the version which shipped with and works with Mac OS X releases prior to 10.4 - iSync 2 and later packages are not compatible with Mac OS X 10.3.9 or any release of the OS. With Mac OS X 10.4 and iSync 2, came a completely new synchronization technology: the Sync Services framework.
    You can find out what, if any, options exist for SONY Ericsson users here, at Julian Wright's excellent site:
    http://mobile.feisar.com

  • New user - need help with PC Suite use

    Hello. I have a new Nokia 6233, and have installed the current version of PC Suite (6.84.10.4), but can't figure out how to make certain things work that seem like they should. I'm using Windows XP with Service Pack2, and am connecting my phone with my PC via Bluetooth.
    1) I have installed an application using the Install Applications component of PC Suite, and it now shows that the new app is on the phone -- but how do I actually get it from showing up in that category on PC suite to the actual phone?
    2) I have hundreds of phone numbers that migrated over poorly from my old Sony Ericsson via SIM, and would like to edit them on the PC instead of on the phone. However, I see nothing under Contacts in PC Suite. How do I get the PC to recognise the contacts on the phone? If I enter new ones on the PC, how do I get them to the actual phone?
    Thanks in advance if you can help!
    //Albie

    Hi,
    1) Do you mean that you can not find installed application from phone (or what)?
    2) Try to update Contacts folder -> open Nokia Phone Browser > "phone name" > Contacts > and press F5 button.
    Contacts folder includes also button for create a new contact and when you click "Save", it saves that in phone.
    BTW: if you contacts are in SIM card -> you have to copy those first in phone memory.

  • New to APEX, help with simple app please

    Need to create a simple app based on 1 box with 4 buttons based to execute sql. Having hard time sifting throught the material need app fast. Sorry for being a block head. Can anyone help or suggest any books to point me in right direction. Need asap. Any help will be appreciated.
    Simple app with one box where username is entered
    --------------------- Enter new users name
    Create user with with added synonyms A
    Create user without synonyms B
    Remove user C
    ADD synonyms to existing user D
    EXIT E
    A = Executes create user command with additional lines of code to add the synonyms
    B = Executes simple create user command
    C = Executes delete user, (sys, system, ect will be excluded
    D = Executes command to add 3 private synonyms
    We are limiting the data they can see if they do not have a synonym.
    Thanks a ton

    Scott,
    Thanks for your reply. This is a DBA create user tool, management wants to provide the application administrator ability to create DBA users only for this database. The application is built so users with certain private synonyms assigned can see data, those without do not. It is a customized COTS app, I would never design like that.
    I do not agree with it, not my decision. I built a shell menu and scripts but that is not GUI enough for this boss. At first It looked like a simple APEX app. I am finding that APEX is more a reporting tool based on objects and I will continue to use it for that. I am learning lots about it so that is cool.
    Andy

  • Help with MDB

    I have a message driven bean, which is listening to a queue for a particular message. On receiving the message it should invoke a remote interface In a session bean)for further business action, basically a validation done by the session bean.
    How can I invoke that and pass the message to the session bean.?
    the session bean code is below and in has the DriverValidate Remote interface.
    package dlr.ecom.creditapp.backend.business;
    //import dlr.ecom.creditapp.backend.database.DBSelectRow;
    import dlr.ecom.creditapp.backend.database.wrapper.DbSystemAcc;
    * Bean implementation class for Enterprise Bean: DriverValidate
    public class DriverValidateBean implements javax.ejb.SessionBean {
         private javax.ejb.SessionContext mySessionCtx;
         * getSessionContext
         public javax.ejb.SessionContext getSessionContext() {
              return mySessionCtx;
         * setSessionContext
         public void setSessionContext(javax.ejb.SessionContext ctx) {
              mySessionCtx = ctx;
         * ejbCreate
         public void ejbCreate() throws javax.ejb.CreateException {
         * ejbActivate
         public void ejbActivate() {
         * ejbPassivate
         public void ejbPassivate() {
         * ejbRemove
         public void ejbRemove() {
         public String execute(String msg){
              try {
         //String request = "<InquiryRequest><SystemId>999999</SystemId><DealerId>999999</DealerId><DataType>DB</DataType><AccountId>TEST1</AccountId><PartnerId>DT</PartnerId><TransType>IMPORT</TransType><UserId>TEST1</UserId><ClientIp>139.126.12.54</ClientIp></InquiryRequest>";
         String response;
              System.out.println("Input msg" + msg);
              ValdatDealer validatedealer = new ValdatDealer();
              response = validatedealer.checkDealer(msg);
              System.out.println(response);
              return response;
              /*DbSystemAcc sa = new DbSystemAcc("999999","999999","DT","TEST1");
              System.out.println("Validation"+sa.getDmsIp());
              //DBSelectRow[] dr = DBWrapper.getInstance().getDBLocalHome().create().TaskSelect("Select * from DB2Admin.dealersystem");
              //System.out.println(dr.length);
              catch (Exception exp){
                   exp.printStackTrace();
              return new String();
    And the MDB code is below
    package dlr.ecom.creditapp.backend.framework;
    import javax.jms.*;
    import javax.naming.*;
    import javax.naming.directory.*;
    import javax.rmi.PortableRemoteObject;
    * Bean implementation class for Enterprise Bean: CreditAppValidate
    public class CreditAppValidateBean
         implements javax.ejb.MessageDrivenBean, javax.jms.MessageListener {
         private javax.ejb.MessageDrivenContext fMessageDrivenCtx;
         * getMessageDrivenContext
         public javax.ejb.MessageDrivenContext getMessageDrivenContext() {
              return fMessageDrivenCtx;
         * setMessageDrivenContext
         public void setMessageDrivenContext(javax.ejb.MessageDrivenContext ctx) {
              fMessageDrivenCtx = ctx;
         * ejbCreate
         public void ejbCreate() {
         * onMessage
         public void onMessage(Message inMessage) {
         TextMessage msg = null;
         try {
              if (inMessage instanceof TextMessage) {
                   msg = (TextMessage)inMessage;
                   DriverValidate validate = (DriverValidate)msg.getText();
                             // Invoke DriverValidation
                   System.out.println("Invoking MDB onMessage() now.");
                   System.out.println("Message Object is: " + msg);
                   System.out.println("Text message is: " + ((TextMessage)msg).getText());
                   System.out.println();
              } else {
         }catch (JMSException e) {
                   System.out.println("Whoops! A JMSException occurred: " + e);
                   e.printStackTrace();
         * ejbRemove
         public void ejbRemove() {
    thanks

    Hi,
    You have to lookup your session bean via jndi. Your MDB code should be something like:
    // get the text from message
    String toValidate = msg.getText();
    // obtain a reference to your DriverValidateBean
    InitialContext jndi = new InitialContext();
    Object lObject = jndi.lookup("ejb/driver/ DriverValidateBean");
    DriverValidateBeanHome myDriverValidateBeanHome = (DriverValidateBeanHome) PortableRemoteObject.narrow(lObject, DriverValidateBeanHome.class);
    DriverValidateBean validator = myDriverValidateBeanHome.create();
    // perform operations
    validator.execute ( toValidate );
    Hope it helps
    Arnaud
    www.arjuna.com

  • New ipod need help with songs from old one NEED HELP!!!!

    I got a new ipod nano 3rd gen. but it wont let me take all of my old songs from my old ipod(nano 1st gen) and put them on my new one! I dont want to lose my songs so PLEASE HELP!!

    When I did that on my old ipod and it said doing so will delete all the songs on it and replace it with my library. When I did it on my new ipod it just put the songs that was already in that playlist back on the ipod, not the songs that i need from the old one.

  • Cleaning up my new Thinkpad need help with what to Uninstall

    So I finally got my new thinkpad T520 set up with Windows 7 and I currently have all the prepackaged Lenovo Programs and thinkvantage tools installed. I am trying to optimize my system right now and I am wondering which programs I should keep and which I should delete.
    I already have Revo uninstaller, CCleaner, and ESET NOD32 smart security antivirus so I already have some good utilities to clean my system.
    Basically if anyone could help me determine which lenovo programs to keep and which to uninstall I would be very greatful. I dont need this computer to be a screamer, but I would like a stable computer that is as fast as possible.
    Thanks

    from your list, i don't use the following:
     Screen reading optimizer
     Simple tap
     Solution Center
     AutoLock
     Communications utility
    truthfully, Lenovo's factory load is lighter than most every other OEM load i've worked with.
    if you want to further optimize your machine's running state, you should have a look at the blackviper site to dig through your running Windows services. even if you choose not to modify anything, it's quite educational. http://www.blackviper.com/
    you can also go through your system's start-up programs and what-not. apps like acrobat reader install update checkers that load at every boot and run in the background. i like a Microsoft tool named Autoruns for this task. it's part of the Sysinternals suite. http://technet.microsoft.com/en-US/sysinternals
    hth.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Community Resources: Participation Rules • Images in posts • Search (Advanced) • Private Messaging
    PM requests for individual support are not answered. If a post solves your issue, please mark it so.
    X1C3 Helix X220 X301 X200T T61p T60p Y3P • T520 T420 T510 T400 R400 T61 Y2P Y13
    I am not a Lenovo employee.

  • New User: Needs Help with getting started with the Z

    Hi, my son got a creative Zen for xmas, only getting round to getting it together now, and having some problems with the manual. All this is new to us -technology etc. We have managed to rip a CD but cant get any further! Downloading from internet sounds like such a good idea, but 'know-how-to do' seems light years away in this house! Is there an easy start manual or step by step directions that I've missed out on somewhere? the quick start manual is fine for learning how to use the player but doesn't give any info on ripping CDs and whatever comes after. Can any of you 'experts' bring yourselves back to the begining and explain what to do in simple english?
    Message Edited by Jeremy-CL on 02-0-2005 0:25 AM

    Mother,
    I moved and edited your message as your are more likely to get help out here. As far as suggestions go for downloading from the internet goes, there is not a lot of difference between getting it from CDs. The main difference is the process of actually getting the music.
    First off there are several music stores out there and some that are free. Here are a few suggestions (this is all personal knowledge, this is not an official endorsement of any of these):
    Napster - Integrates into Windows Media Player if you desire and can transfer directly to most Zens. Also allows a user to subscribe to an account that allows for streaming and computer only downloads of music (must purchase song to transfer to the player...usually around .99 a song)
    Buymusic.com - Website interface that sells individual tracks and albums.
    Wallmart music store - Website interface that sells individual tracks and albums.
    There are others but these three are the mains ones (outside of itunes, which is designed for the Ipod).
    Basically once you download them, you go into MediaSource or Windows Media Player and add the files to the music library. Then you just transfer like you do with CDs.
    JeremyMessage Edited by Jeremy-CL on 02-0-2005 0:34 AM

Maybe you are looking for

  • Extract structure does not exist at the time of transport

    HI , i am facing an shortdump error while transporting customized copa data source from r/3 dev to r/3 qua. The error analysis  is Extract structure does not exist at the time of transport Long text of error message: Technical information about the m

  • PB G4 detects VGA projector but not 20" ACD

    I'm having a strange problem when connecting my 15" PowerBook G4 Ti DVI to a new 20" ACD. When I first got the display, I was able to connect just fine for about 8 weeks. I went on a trip and since my return, the PB won't detect the display. I took t

  • Viewing iPod photo on TV

    is it possible to use the audio video cables with the iPod photo to view song information on the TV while listening to music, i have been able to use it to view slide shows but i would like to have the song info displayed on my TV (a 2" screen is dif

  • What effects were used in Desperate Housewives Season 7 Promo?

    Students want to promote something on campus and want to use similar effects as used in the Desperate Housewives Season 7 Promo (see on YouTube here -->  http://www.youtube.com/watch?v=YGt0KEAKBPk ) What was used to get the great coloring - very brig

  • JTree nodes not updating

    I have a JTree which the nodes are changed from within an actionPerfomed method. However, they are not updating on the screen until a user clicks on a node. Also, the length of the selection box does not change on the tree, so text can be clipped. Th