How do I build a Scroller from scratch in Actionscript?

I have a hierarchy of objects in my Actionscript.  I use Actionscript because all objects are dynamic, built at run-time on the basis of data from the server.
     Scroller
          Group
               SxText (my class) is a subclass of RichEditableText which implements IViewPort
Typical code is:
public class SxText extends RichEditableText
            sxText = new sxText(....);
            scroller = new Scroller();
            scroller.setStyle("horizontalScrollPolicy","off");
            scroller.setStyle("verticalScrollPolicy","on");  
            group = new Group();
            group.addElement(sxText);
            scroller.viewport = group;
It looks great and I can control location and size, as well as detect the events that I'm interested in.
But, the scroll bar thumb fills the vertical space of the bar.
I've tried many methods to enable or to set viewport content size, but the following code has no effect.
            scrollerSkin = ScrollerSkin(scroller.skin);
            scrollBar = scrollerSkin.verticalScrollBar;
            vbarSkin = VScrollBarSkin(scrollBar.skin);
            thumb = vbarSkin.thumb;
            vbarSkin.addEventListener(MouseEvent.CLICK,scrollBarEvent);
            vbarSkin.setContentSize(sxText.width,sxText.height);
I'm guessing that I'm missing the one method that will do it.  Thanks.

After posting, I kept trying.  This works, making the thumb usable.
This code is called in an event handler of the scroller for UPDATE_COMPLETE
            group.setContentSize( good values for dx and dy );
Thanks for listening.

Similar Messages

  • Build a menu from scratch in Premiere Elements?

    Is there a way to build a menu from scratch in Premiere Elements, i.e. not use the templates?  I want a very simple menu on ONE screen, no sub-menus, etc., and all the templates I try end up creating multiple pages of menus just for the FOUR menu markers in my timeline! 
    Alternatively, how do I delete multiple pages of a menu, when I have only FOUR menu items and want them all on ONE menu page?
    Thank you very much for your help.

    robertme
    What version of Premiere Elements are you using and on what computer operating system is it running?
    You cannot create your own movie menu from scratch using Premiere Elements. The movie menu theme traces back to a main menu psd file and a scene menu psd file and assets. It is the .psd files that need to be created in Photoshop CS or higher because of the essential Layer Sets within the Layers Palette of the .psd file. (There may be other .psd editors that can do this if the can handle Layer Sets and SubLayer Sets, but Photoshop CS or higher will do the job.)
    It is often easier to customize the Adobe existing themes at the .psd level than to create them from scratch. Success in this task depends of strict adherence to naming and structural details for creating these menus.
    I have done and written a lot about this topic. If interested, please see
    http://www.atr935.blogspot.com/2014/09/pe-inside-disc-menu-theme-folderfiles.html
    ATR Premiere Elements Troubleshooting: PE: Disc Menu Folders/Files Locations
    The bottom of the content in the second link has a list of my blog posts on the application of the principles involved.
    Please review and consider. Any questions or need clarification, please do not hesitate to ask.
    Thank you.
    ATR

  • Lightroom 2.6 trial download - how to build a catalog from scratch.

    I have downloaded Lightroom 2.6 trial version and am trying to build a small catalog for it.  I don't need my whole Photoshop Elements 8 (PSE 8) catalog, but I would like to build a small catalog out of images in the My Pictures folder so that I can experiment with this software.  It recognizes the existence of my old PSE 6 catalog, but says it is corrupt and ask about building a new catalog. It will not recognize my PSE 8 catalog.  How do I go about bypassing this "catalog recognition step" and go right to that part of the software that will let me build a catalog from the images contained in various folders in the My Pictures main folder.  Unless I can get to the part where I can build a catalog to test out LR 2.6, then I am stuffed (as the Aussies would say) as far as testing this product.  Maybe I need to download the Lightroom 3 Beta and see if it will recognize my PSE 8 catalog.  Any suggestions, insight on how to resolve this dilemma are greatly appreciated.  Thanks.
    Regards,
    WesternGuy

    When I bring up LR, it asks me if I want to buy or try...so to speak, I check off <try> and the <Next> and <Back> buttons are immediately greyed out and the only thing I can do is click on <Finish> or <Cancel>.  If I click on <Finish>,  It tells me that "the Lightroom catalog named "catalog" cannot be opened because it is not valid. Would you like to select a different catalog".  The catalog is not registered as a valid catalog."  It tells me where this invalid catalog is and then I have a choice of buttons that ask me to "choose a different catalog" or another button that says "Exit".  If  I select "choose a different catalog, then it asks for a location and gives me a button that says "Create a new catalog", it then goes to the My Pictures folder inside a panel that has at the top "Create folder with New Catalog" and then I don't seem to be able to do anything it likes. I never get to a menu that gives me the "File/New Catalog" option.(???)
    Maybe I need to uninstall and reinstall LR2.6.
    Regards,
    WesternGuy

  • SUN ONE Studio : How do I develop CMP2.0 from scratch

    I am trying to develop a CMP 2.0 bean from scratch i.e I do not want EJB Builder to construct CMP bean based on an existing table. Can somebody tell me, once I have specified the persistent fields etc, where and how do I define the mappings in Forte and does Sun ONE appserver generate the table automatically?
    Thanks

    Repost your code, but this time wrapped in [code][/code] tags, so it's legible. And indent it meaningfully.
    It sounds like ultimately the answer is: you have to store some state representing whether there is an appointment on that day, and you have to set the color of the button to indicate that state.

  • How do I build a Scroller in Actionscript?

    I need to build a Scroller / Group / RichEditableText set of components using only Actionscript, since I need to create (perhaps) many of these, skinned on-the-fly as a result of download from the server.
    Can anyone provide a working example?  I can see how to do it using MXML, but I'm a programmer at heart...  Only actionscript?  I've tried but I'm having trouble getting the pieces to play together (scroll bars, mouse wheel, etc.)
    Or is there a way to create multiple instances of a set of components defined in MXML?  That might do it too.
    Thanks.
    Oz

    I have a very dynamic application:  the windows and components come and go, and I don't know in advance how many there will be, what the styles will be, etc.
    So I want to create all components with Actionscript classes.
    This is the MXML code that creates what I want.. This works fine, scrolls, mouse-wheel, all controls are effective.
    <s:Scroller id="myScrollerA" width="300" height="100">
        <s:Group id="myGroupA">
            <s:RichEditableText id="myTextA" paddingTop="20">
                <s:textFlow>
                    <s:TextFlow>
                        <s:p fontWeight="bold">This is paragraph 1.</s:p>
                        <s:p>This is paragraph 2.</s:p>
                        <s:p>This is paragraph another.</s:p>
                        ... more code here with more text
                        </s:TextFlow>
                </s:textFlow>
            </s:RichEditableText>
        </s:Group>
    </s:Scroller>  
    This is the Actionscript I'm starting with, but the linking between the vertical scroll bar and the text scrolling is not functioning, and there are various surprises.
                  sxText is an instance of my custom class which subclasses RichEditableText, with more text than will fit into the scroller.
                group = new Group();
                group.addElement(sxText);
                group.setContentSize(sxText.contentWidth,sxText.contentHeight);
                scroller = new Scroller();
                scroller.setStyle("horizontalScrollPolicy","off");
                scroller.setStyle("verticalScrollPolicy","on");   
                scroller.viewport = group;
                scroller.addEventListener(MouseEvent.MOUSE_WHEEL,scrollWheelEvent);
    The scroll bar does scroll the content area, but NOT the text -- the text disappears off the top, but the revealed area at the bottom is background color: no text content.
    Mouse wheel on the text area functions, but the scrolling is not reflected in the scroll bar.
    Also puzzling:  the thumb component of the scroll bar changes to a large vertical size, on first click into any scroll bar component.
    What else do I need to do to tightly couple the scrolling of the text area and the use of the vertical scroll bar?  Am I missing some skinning methods?
    Thanks for your attention.

  • Advice needed on building first system from scratch...

    Ok, here goes, I am so excited, like a kid on Xmas...My goodies from Newegg will be here later today or tomorrow....I recently purchased: A new tower, Antec PSU, 2x512 Corsair pc3200, MSI K7N2 Delta - ILSR and some other assorted crap....
    Anyway, I have never built a system from the ground up before...I am looking forward to the challenge....But before I begin I was wondering if I could get some tips?
    I already backed up all the files(photos, demos, benchmarks etc...)that I'll be saving...I also made copies of all the drivers I need to set it up when it's done(Nvidia graphics drivers, DX9.0b), I assume the mobo drivers will come with the mobo....I also want to do a fresh install of Windows as well.....Now my main concern is in regards to the order in which everything is done....I have replaced a motherboard before so I have a little knowledge of the inner workings....But never having built one from scratch, I'm a little leary as to the order and how everything should be installed....
    I will also be adding my current Vid. card,  sound card?(I'm pretty sure the onboard is better?) and HDD.....Windows came installed on my machine when I purchased it so I don't have the Windows CD, but I have made the set of recovery discs that is needed to set it back to factory specs and settings...Have I forgotten anything?...Any help would be greatly appreciated...Thanks!
                               Silly

    Quote
    Originally posted by GlennVidia
    Quote
    Originally posted by SillySider03
    Thank you guys for all the helpful replies.....
    Axel, thanks for the link...It was an informative read..
    Glenn, I don't have an XP CD...The OS came installed on the computer when I purchased it.....I only have the 6 recovery CD's that I made under "PC RECOVERY TOOLS"...It's an older Compaq...Oh, and it's an AMD xp2400(can be unlocked using the Speed-Strip, currently it's locked because my mobo doesn't support the OC features I so desperately want to play with..Muhahaha ).....Also, I am currently downloading the Nvidia "Unified" driver and SP1....All of a sudden, something I was looking forward to seems like the scariest thing in the world....Will this thing even boot when I get it plugged in? How am I going to install all this crap? Geez, I'm worried now...
    Bogs, I will try both on-board and SB Live 5.1....I play a lot of BFV and 1942, I'll see if I can tell if there is a performance and/or increase in sound quality....What tag do you play under? See you on the battlefield!!!
    Thanks again for all the replies, Silly
    Well first things first, follow my suggestions on the FSB settings until you are sure it's stable and the OS has been loaded and is stable as well before you introduce overclocking to the mix...
    I am a bit concerned about your Recovery CD, Most likely it'll puke on you since the motherboard and EVERYTHING except the CPU has changed?  Most likely it will halt and tell you it's not a (enter name) PC and cannot continue. Try it and see.
    Maybe someone has a way around it and you can discuss that in either Private Messaging or via E-mail. Please keep that little tidbit out of the forums.
    bogs dollocks,
    Ahhh... think you're right there, however it could have been something completely different...but that's another topic entirely...
    It will cause moe headaches than it's worth. Get an OEM copy of Windows. Better yet, borrow someone else's and use your key.

  • How to create new portal desktop from scratch

    Hi Experts,
    I want to create a brand new portal desktop from scratch. Could you please let me know how to go about it?
    Regards,
    EP

    Hi,
    Please check out this document it will help you in creating portal desktop from scratch:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/ep/_a-c/creating%20new%20portal%20display%20rules.pdf
    Hope it helps.
    Thanks
    Mona
    Assign points if helpful

  • How to re-install Mail Services from scratch

    I upgraded 10.4 to 10.5 and mail services did not fare well so I want to re-install mail services as if it was a new 10.5 install. By now I have web services, etc. running nicely so I don't want to start with a total fresh install if it can be helped.
    I only have a few users and small maillist on this domain so I figured a start from scratch is really the easiest, if it can be done.
    Basically smtp doesn't want to allow incoming and maillist won't start. Have tried too many things to remember so I figure it's back to square one and if a total re-install is needed, well, so be it but thought I'd check first re just a re-install of mail services.
    TIA - Heinz

    Here is the output, just in case
    In addition to replacing the cf's, should I get rid of any database files?
    TIA
    sh-3.2# postconf -n
    alias_maps = hash:/etc/aliases,hash:/var/mailman/data/aliases
    always_bcc =
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter =
    daemon_directory = /usr/libexec/postfix
    debugpeerlevel = 2
    enableserveroptions = yes
    html_directory = no
    inet_interfaces = all
    localrecipientmaps = proxy:unix:passwd.byname $alias_maps
    luser_relay = heinz
    mail_owner = _postfix
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    mapsrbldomains =
    messagesizelimit = 31457280
    mydestination = $myhostname,localhost.$mydomain,localhost,byted.com
    mydomain = byted.com
    mydomain_fallback = localhost
    myhostname = mail.byted.com
    mynetworks = 127.0.0.1/32,208.181.117.0/24,192.168.2.0/24,70.68.128.164,207.81.159.111,207.8 1.155.85,72.18.225.18
    newaliases_path = /usr/bin/newaliases
    ownerrequestspecial = no
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    recipient_delimiter = +
    relayhost =
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = _postdrop
    smtpsasl_authenable = yes
    smtpsasl_passwordmaps = hash:/etc/postfix/sasl/passwd
    smtpdclientrestrictions = permit_mynetworks zen.spamhouse.org rejectrblclient rejectrblclient permit
    smtpdpw_server_securityoptions = login,plain,cram-md5
    smtpdrecipientrestrictions = permitsasl_authenticated,permit_mynetworks,reject_unauthdestination,permit
    smtpdsasl_authenable = yes
    smtpduse_pwserver = yes
    unknownlocal_recipient_rejectcode = 550
    virtualmailboxdomains =
    virtual_transport = virtual

  • How to make a JDialog scrolling from one position to the other.

    Hi all,
    I want to move a JDialog from one position to the other(actually I want to scrolling/moving as messenger notification appear on top of the system tray) on the desktop.
    Anyone of you can give me a clue.
    Thanks

    Ok here what I have try up to now. First make the initial position of the JFrame as follows.
        private void SetWindowLocation()
            final int screenHeight = Toolkit.getDefaultToolkit().getScreenSize().height;
            final int screenWidth = Toolkit.getDefaultToolkit().getScreenSize().width;
            final int frameHeight = this.getHeight();
            final int frameWidth = this.getWidth();
            int _y = (screenHeight - frameHeight - 32);
            int _x = (screenWidth - frameWidth);
    // Initial location
            this.setLocation(_x, _y); 
    }This code place my Frame in the lower-right corner on top of the system-tray.
    Then as you guys says, try to work on a Timer. Now I'm stuck with the action listener. I try to move the frame to upper-right corner.
        private void SetWindowLocation()
            final int screenHeight = Toolkit.getDefaultToolkit().getScreenSize().height;
            final int screenWidth = Toolkit.getDefaultToolkit().getScreenSize().width;
            final int frameHeight = this.getHeight();
            final int frameWidth = this.getWidth();
            int _y = (screenHeight - frameHeight - 32);
            int _x = (screenWidth - frameWidth);
    // Initial location
            this.setLocation(_x, _y); 
            _timer = new javax.swing.Timer(100, incrementYPosition);
    ActionListener incrementYPosition = new ActionListener() {
            public void actionPerformed(ActionEvent evt) {
                       while(_y > 0){
                            // do the processing here.
                            // reduce the _y value and set the new location with _x
                    };I'm stuck with that how to involve with the ActionListener here. :(:( After set the initial location how to deal with the ActionListener.
    Any help.

  • How to create an XML file from scratch ?

    Hi all,
    I'm afraid that I will seem dummy, but I think I really misunderstand something or I'm trying to do something that is not possible...
    I would like to create a XML file containing the following:<?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="pl.xsl"?>
    <!DOCTYPE playlist SYSTEM "pl.dtd">
    <playlist id="2">
    </playlist>I really need to have both the stylesheet and the DOCTYPE declarations... Does anyone know if this is possible ?
    To create the XML Document, I am using the DocumentBuilder object from javax.xml package (jaxp-1.2-ea2). I think this, at least, is correct.
    To print out the XML document I have tried to use :
    - the Transformer from javax.xml package (jaxp-1.2-ea2) but I could obtain only the DOCTYPE declaration.
    - the Serializer from Xerces parser (version 2.0.1) to print out the Document I am creating with the jaxp, but I was able only to obtain the stylesheet declaration...
    So far I have just understand that there is a difference between Serializer and Transformer (one is serializing, and the other is transforming ;-)), but I couldn't figure out which one would be suitable to produce the XML file above...
    I would really appreciate if one could help me with that ;-)
    Thanks,
    Karau

    Could send me an example ?
    For the moment I am using Transformer in that way:
         TransformerFactory tfactory = TransformerFactory.newInstance();
         try {
             Transformer transformer = tfactory.newTransformer();
             DOMSource source = new DOMSource(playlistDoc.getDocumentElement());
             StreamResult res = new StreamResult(new File(path));
             transformer.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM, PL_DTD);
             transformer.setOutputProperty(OutputKeys.INDENT, "yes");
             transformer.transform(source, res);
         catch (TransformerConfigurationException tce) {
             throw tce;
         catch (TransformerException te) {
             throw te;
         }

  • C#: Building a SOFTWARE SOLUTION from scratch to finish

    Hello good people of MSDN. I have a VERY SIMPLE REQUEST... (Here goes)
    I'm trying to build an Application (from scratch, custom specs) that allows the user to manage, organize and keep track of books that are available in a library. This system is to be made use of in environments such as personal library, public library, any
    situation that requires/involves the constant movement of BOOKS.
    Now, I have presented a solution to the client which works OKAY but there has been a SUDDEN CHANGE of heart, now the client wants the solution to be implemented quite differently. The solution that I BUILT is basically an ASP.NET C# Application that runs LOCALLY
    so it opens up in the browser (IIS installed and all that) for the user to make use of the Application. Now when I want to have the entire Application to FUNCTION on another system I simply copy the Database, the Application folder (that has all the files
    in it) place it in the IIS Directory... ... (So as not to waste your PRECIOUS TIME). To access the Application we simply open up the BROWSER enter localhost/the Application's URL...
    The client, first of all does NOT want the BROWSER in the mix of things (ANYMORE !!!); secondly, does not want to have to go through all of this process of COPYING FILES INTO LOCATIONS, IIS etc etc in order to get the solution to WORK/OPERATE on another/several
    other computers. The client wants to be able to have an EXECUTABLE INSTALLATION file that when clicked installs a SOFTWARE APPLICATION that opens up in its own WINDOW ENVIRONMENT without the help/assistance of the BROWSER !
    This is my PREDICAMENT there's NO TIME... I need to AT LEAST present a working prototype in less than 24hrs!
    So my questions are:
    1.) Is there anyway for me to convert my ASP.NET C# Web Application into an installable client software without losing any of the components that make it work?
    2.) If I have to build the ENTIRE Application into a WinForms PROJECT (I'm using VS 2010) can I STILL MAKE USE of the DATABASE I used for the ASP.NET C# Application?
    3.) I don't want to have to DUMP my SQL SERVER DATABASE (as it is) to start creating a DB using something else like MS Access. Do I have a choice?
    I have included with this post a Notepad doc that details the sketch of what I am HOPING to ACHIEVE. I would Appreciate it if anyone can (KINDLY) take it up and create according to the SPECIFICATIONS included in the doc. I have tried to be very DETAILED and
    DESCRIPTIVE in the doc to make it easy for  the DEVELOPER to FOLLOW THROUGH. Can it be done?
    (If ANYONE can take it up and provide the solution it would be a good thing because it would ALWAYS be available to other DEVELOPERS who can read through the CODE and become better C# PROGRAMMERS and better at using Visual Studio. As this is a VERY REAL
    LIFE SCENARIO coders can LEARN from the SITUATION).
    At the end of the whole CODING PROCESS I intend to BUILD the Source to become a SINGLE EXECUTABLE FILE that will INSTALL the Application on the clients system. If anyone can PROFFER (and MAYBE RENDER) a SOLUTION that's ACCURATE, SPEEDY, RELIABLE to me, I would
    be grateful!
    The Software is to be used in a school. Students are only going to REQUEST for books, RETURN the books that they collected. They are NOT BUYING books!
    Working/Functional Prototype
    (The PROTOTYPE I hope to present REALLY SOON should be CAPABLE of the FOLLOWING)
    1. Navigate/Move through the different Forms/GUI Screens when the appropriate buttons are clicked
    2. Interact with the DB (to some extent) and carry out (for now)TRANSACTIONS like adding books, viewing list of books, delete book, Register Student (other DB operations can be included much later)
    3. When the Application is LAUNCHED a Splash Screen is displayed introducing the Application (while the Application is loading), then when it's done Loading, the Application opens to present the Start Screen
    4. An EXECUTABLE INSTALLATION FILE that can be used to conveniently INSTALL the Application on multiple systems... Just in-case it is to be installed on a computer system that's not Windows OS, I'd like for it to carter to dependencies appropriately.
    PLEASE ANYONE that chooses to ASSIST (based on the SPECIFICATIONS) should KINDLY include the DETAILS of how the result was ACHIEVED so at least I can read through and understand the Application and conveniently make suitable/any necessary modifications (should
    the CLIENT require that I do so). eg Step by step instructions on how to get the whole SOURCE CODE into INSTALLATION FILE, Setting up the Splash Screen, how the DB is made to connect to the front end GUI (eg ODBC, OLE DB that type of stuff)... etc etc
    I'm trying to keep the prototype VERY SIMPLE so I can ACHIEVE something TANGIBLE in this short space of time then LATER any SOPHISTICATION can be included.
    PS: I have done MY VERY BEST to plan out the Application Logic. So it should be easy to just READ over the Notepad docs I'm including here... As a pointer (should YOU decide to ASSIST) it would be FASTER to START with the WinForms, then MOVE to CREATING
    the DB, afterwards LINK THEM...
    Thank YOU ALL.
    BELOW IS INFO ABOUT THE DATABASE STRUCTURE *
    BookStore Database (Tables)
    Books
    Students
    UsersRequest
    BooksReturned
    Information and instructions about the diff tables in the database
    Books: this holds information about all the books available in the store
    Students: this holds info about the students that come in to request for books
    UsersRequest: for the admin to see at one glance requests from every student
    BooksReturned: for the admin to look at info about the different books returned by the students.
    Books table (attributes/colomns)
    BookTitle
    Author
    Edition
    ISBN
    CategoryName
    Students table (attributes/columns)
    reg no
    FName
    LName
    MName
    UsersRequest table (attributes/columns)
    reg no
    FName
    LName
    BookTitle
    Author
    Edition
    ISBN
    CategoryName
    BooksReturned (attributes/columns)
    reg no
    FName
    LName
    BookTitle
    Author
    Edition
    ISBN
    CategoryName
    INTERPRETATIONS OF DB COLUMN NAMES
    FName = First Name of the student
    LName = Last Name of the student
    reg no = Registration Number of the student at the school
    Author = The authorn of a book
    Edition = EG 1st Edition, 2nd Edition that kinda thing
    ISBN = The Standard Book Number of the book
    CategoryName = EG Computer Science, Applied Robotics
    BELOW IS WINFORMS PLAN: FRONT END
    There are just gonna be 5 GUI Components (FOR NOW). The ENTIRE APPLICATION WINDOWS should be in the range 700px by 700px (width by height).
    Forms/GUI Instances
    1. Start/Welcome Screen
    2. List of books
    3. Administration
    4. Relase Notes
    5. Splash screen
    Start/Welcome Screen
    When the Software Application is launched and the Software is done loading this is the FIRST screen that the user sees. This Screen presents the users with options to carry out certain actions. Also it presents some brief/summary information to the user in
    a presentable manner.
    Options include: Administration, View list of books, Relase Notes
    Brief/Summary of information include: Total no of books in store, Total no of new books added
    List of books Screen
    When the user clicks on this action link from any where in the Software Application this page comes up. It displays a complete list of the books that are available in the store and also relevant info about the books. It reads DIRECTLY from the Books table inside
    the Database and presents the info in a tabular format. It also provides the user with certain options to carry out some actions.
    Options include: Request book (button beside every book item)
    Administration Screen
    The Administration Screen is segmented into several Areas that allow the operator to carry out individual/independent tasks. On this Screen the operator of the system has options to carry out many vital tasks as regards the Application. Rather than having to
    present many different Screens, all the control/Administrative tasks of this Aplication are included here on this ONE Screen.
    Options/Segments include: Add book(s), Delete book(s), View list of books, View books requests, View books returned, View all Students, Request for book(s), Register Student, Return books
    (All of these Options can be done/carried out on this one screen without having to bring many different screens to do the different tasks)
    >>Add book(s) Area
    This area FEEDS info DIRECTLY INTO the Books DB. To accept Data input into the Application this has following text boxes: Book Title, Author, Edition, ISBN, Category Name
    >>Delete book(s) Area
    Presents the options for deleting a book. It also relates DIRECTLY with the Books table in the DB. It presents the list of books as they are available in the Books DB and places a DELETE action button for EVERY book so that when this button is clicked it removes
    the book from the Books DB.
    >>View list of books
    This will simply bring up the list of books Screen since already we have a screen for this.
    >>View books requests
    This reads DIRECTLY from the UsersRequest table and just presents the info to the user in a tabular form.
    >>View books returned
    This reads DIRECTLY from the BooksReturned table and just presents the info to the user in a tabular form.
    >>View all Students
    Lists out all the students that are registered in the Application System. It READS DIRECTLY from the Students table. This area is used by the Admin/Operator of the Application to view a List of all the Students that have had transactions with the Application.
    >>Request for book(s) Area
    This area relates DIRECTLY with the UsersRequest table in the DB. It FEEDS in Data into the UsersRequest table. This area allows the admin to collect info of the student that's requesting for the book. It provides texboxes such as: First Name, Middle Name,
    Surname, RegNo, BookTitle
    >>Register Student Area
    This area relates DIRECTLY with the Students table in the DB. It FEEDS in Data into the Students table. This are allows the admin to input info of students that are new to the system.
    In other for the Admin to keep track of NEW students who are coming in to request for books this area is very important. It allows the Admin to register a new student so that the student can now request for books.
    There are text input fields on this Screen that allow the Admin to collect certain infomation about the student and feed it into the Students table of the DB. Textboxes inculde: First Name, Middle Name, Last Name, RegNo
    >>Return books Area
    This area relates DIRECTLY with the BooksReturned table. It FEEDS Data into the BooksReturned table. Textboxes include: Book Title, Author, ISBN, First Name of student, Last Name of student
    Release Notes Screen
    This Screen has three tabs that contain their own individual MESSAGES. The tabs are: Version, Known Issues
    Version
    Refers to the version of the Application. This tab provides info about the version of the Application
    Known Issues
    Known problems with the Software Application
    Splash Screen
    A very simple/ moderate graphic (nothing fancy)to introduce the Application

    Hello,
    Welcome to MSDN forum.
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    Because your issue is about ASP.NET web application development, I suggest that you can consult your issue on ASP.NET forum:
    http://forums.asp.net/
     for better solution and support.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to create a bootable OEL5.8 .iso from scratch?

    Are there any instructions available about how to create a bootable .iso file, for installing OEL5.8, from scratch?
    We need to build a system which is a customised version of OEL5.8; we want to add some extra RPMs and remove others. We have an older build system which does this based on OEL5.5, but the way it has been built makes this hard to upgrade. We'd like to try starting from OEL5.8 again.
    One possibility would be to download the initial OEL5.8 .iso; mount this as a loop-back filesystem; adjust some RPMs and config; then re-create an .iso from this file. However, this doesn't allow us to update the kernel very easily. We'd prefer an approach which starts from a set of RPMs (perhaps including modified kernel RPMs) and builds the .iso from scratch.
    Many thanks for any pointers.
    Edited by: user11244224 on Mar 5, 2013 7:16 AM

    You cannot simply edit an .iso image file because the iso9660 filesystem is read-only. And even if you create your own iso image from scratch, with a bootable code, any package you add will not be part of the initial installation, unless you recreate the appropriate software repository database and anaconda installer. Sounds like overkill to me for what you are describing.
    Why would you want to go through the endeavor to adjust the Oracle Linux distribution DVD for the purpose of creating a customized system? Why not using Kickstart instead, or a simply create a post-installation script to modify the installation to your needs?

  • Creating from scratch, a css layout for my website

    I am building a website from scratch and I would like to use CSS.  I am conceptualizing the design, however, I am struggling with designing it and working with the div tags.  I would like to have two sidebars, one on each side, and for them to be tri-colored, which means I have to create three small boxes and align them closely together, each a different color (the colors are part of the theme to my website). Of course the links on the sidebars would be white, and then change colors when hovered over or clicked on.  I would like to have a header and a footer, with the header containing my logo and if and only if I can get real fancy; a scrolling message.  My footer would contain additional links such as 'additional links', and 'contact us' and all the necessary copywrite info.  Please let me know, if first, my conception of this layout makes sense, and if so, what tutorial you could recommend for me to view that would assist in my web site development.
    Thank you, all you great tech minds out there!

    I'm with Murray.  I don't think you should concern yourself with HTML5 and CSS3 yet. 
    Stick with XHTML and CSS2.  When I was learning to work with CSS positioning, it was immensely helpful to use a pre-built layout.   And I learned a great deal from looking at source code.
    Look at the DW Starter pages described below:
         Dreamweaver CSS Templates for beginners
         http://www.adobe.com/devnet/dreamweaver/articles/dreamweaver_custom_templates.html
         New DW Starter Pages --
         http://www.adobe.com/devnet/dreamweaver/articles/introducing_new_css_layouts.html
    If you have some money to spend, Project Seven has some excellent CSS Templates.  If you plan to do more projects, CSS Layout Magic is a nice extension for prototyping inside DW.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How do i import my favorites from msn

    I need to import my favorites from MSN to firefox, how do I do this?

    From these complicated instructions it seems that it might be simpler to build a computer from scratch. Is there not a simple way to import MSN favorites to my Firefox browser keeping in mind that not everyone with a personal computer can be considered an "internet geek or guru"???

  • Filter plugin from scratch?

    Hello,
    currently trying to implement my own filter Plugin. I have a problem determining what is essential to a filter plugin. I got one of the example plugins working the way i want but its messy because there is all the stuff from the sample in it. I now want to build a plugin from scratch. Can anyone tell me how to do this? I couldnt find a tutorial or proper documentation.
    Regards Lukas

    You could look at the dozens of example plugins on my site, http://telegraphics.com.au/sw/ (mostly GPL, so source is available).

Maybe you are looking for