APEX 5-question format calendar change

Hello

I created a calendar like this page.

Is it possible to change this color of blue background to something else or just remove the bule color?

My eyes hurt just too with this blue.

JonDaegu-Oracle wrote:

Hello

I created a calendar like this page.

Is it possible to change this color of blue background to something else or just remove the bule color?

My eyes hurt just too with this blue.

An explanation of how to display events in different colors using CSS classes is given in the online help for the region of Class CSS calendar attribute. Add a column to the query of calendar that determines the color of class for the event:

SELECT ID,

START_DATE,

END_DATE,

TASKNAME,

  case STATUS

When 'open' then 'apex-cal-green.

When "Pending" then "apex-cal-yellow".

When 'Closed' then 'apex-cal-red '.

When "pending" then "apex-cal-black.

end as css_class,

ASSIGNED_TO as supplemental_info

PROJECTS

and select it in the attribute of Class CSS region.

Built-in support exists for the following classes/colors:

  • Apex-cal-black
  • Apex-cal-blue
  • Apex-cal-bluesky
  • Apex-cal-Brown
  • Apex-cal-cyan
  • Apex-cal-blue dark
  • Apex-cal-grey
  • Apex-cal-Green
  • Apex-cal-lime
  • Apex-cal-orange
  • Apex-cal-Red
  • Apex-cal-silver
  • Apex-cal-white
  • Apex-cal-yellow

You can also create your own combinations of colors using custom classes and CSS.

Tags: Database

Similar Questions

  • I forgot my security question answer Apple ID and my recovery email address has since been deleted and disabled. How to get answers to security questions and or change my email recovery?

    I forgot my security question answer Apple ID and my recovery email address has since been deleted and disabled. How to get answers to security questions and or change my email recovery?

    Go to https://getsupport.apple.com . Click on "see all of the products and services ', then 'More', then 'Apple ID', then 'other Apple ID subjects' then 'security issues forgotten Apple ID". If you have problems with this test of this form: https://www.apple.com/emea/support/itunes/contact.html

  • I said that someone else is using my email address, and my secret question has been changed: error 0x800488FE.

    They say that someone is using my email address and my secret question has been changed. error 0x800488FE

    original title: MY EMAIL ADDRESS IS BLOCKED ERROR 0X800488FE

    Hello

    Who is your provider of mail service?

    If you use the Hotmail account then the question you posted would be better suited in Windows Live Solution Center. I suggest you to send your application in the Windows Live Solution Center for better support.

  • APEX do not allow to change the lines of the columns that are the primary key?

    I have pictures:
    http://img508.imageshack.us/my.php?image=21269582oe8.jpg


    Book (id_book - 'Primary key', title, year); book_author (id_author id_book - 'Primary key', - 'Primary key'); author (id_author - "Primary key", name)



    I created a new page-> Form-> form of 'author' table because I want to add new authors, modification and deletion. During the creation of this page, I have chosen column 'id_author' as '1 primary key column' and everything is OK (I can't edit the 'id_author' column - this column is autoincrement and I can change the 'name' column).

    BUT I also created a new page-> Form-> table for table "book_author" because I like to write numbers like id_book and id_author, change and remove them (so add relations between tables: book, book_author and author). During the creation of this page, I have chosen column 'id_book' as '1 primary key column' and 'id_author' as 'column primary key 2'. And on the Web site, I can't edit these fields. And I can not add also new line because I see in each new line: (null).

    http://img444.imageshack.us/my.php?image=11324615yk9.jpg

    APEX do not allow to change the lines of the columns that are the primary key? It's stupid... What can I do?

    Edited by: user10731158 2008-12-20 11:40

    Column unique and not meaningful if you ever want to update. In the case of your example, you need to add an ID column in the intersection of book_author table. Honestly, I was so blown away (and pleasantly surprised) by the absence of rebuttal and the "thx" I advanced and set up an example of how I would define the book_author table:

    create table  book_author
       (id varchar2(32),
        book_id varchar2(32),
         author_id varchar2(32),
         modified_on     date,
         modified_by varchar2(255),
         constraint book_author_pk primary key (id),
         constraint book_auth_book_fk foreign key (book_id) references books(id),
         constraint book_auth_author_fk foreign key (author_id) references authors(id)
         )
    /
    
    create unique index book_author_uq on book_author (book_id,author_id)
    /
    
    create or replace trigger  biu_book_author before insert or update on book_author
    for each row
    begin
         if inserting then
              :new.id := sys_guid();
         end if;
         modified_on := sysdate;
         modified_by := nvl(v('APP_USER'),user);
    end;
    /
    

    Good luck
    Tyler

  • 2 questions about Calendar implementations (APEX 5.0)

    Hello

    I use 5 APEX on Oracle Express Edition.

    I created a calendar that displays data in multiple tables.

    Here is the query to simplify:

    Select an evt, b datevt

    FROM table1

    Union

    Select evt c, datevt d

    from table2

    Union

    Select e TTE, f datevt

    table 3;

    I need to put up a link in the calendar on these data that display a modal page where users can see the details and update the data.

    I have seen that it is possible to create a link on the calendar, but this link is considered to be a single page. In my case, I need to 3 different links, one per page.

    Another question: I want to display these data on the calendar with a color that depends on the table. For example, blue for the first table, the Red during the second and the Orange for the third.

    You have a solution that helps me implement those needs?

    You will appreciate any help, and sorry if these questions have already addressed the Forum.

    Thanks in advance

    Vincent

    2979122 wrote:

    Please update your forum profile with a recognizable username instead of "2979122": Video tutorial how to change username available

    Always include the information described in these guidelines when you post a question: How to get the answers from the forum

    I use 5 APEX on Oracle Express Edition.

    I created a calendar that displays data in multiple tables.

    Here is the query to simplify:

    Select an evt, b datevt

    FROM table1

    Union

    Select evt c, datevt d

    from table2

    Union

    Select e TTE, f datevt

    table 3;

    I need to put up a link in the calendar on these data that display a modal page where users can see the details and update the data.

    I have seen that it is possible to create a link on the calendar, but this link is considered to be a single page. In my case, I need to 3 different links, one per page.

    Another question: I want to display these data on the calendar with a color that depends on the table. For example, blue for the first table, the Red during the second and the Orange for the third.

    You have a solution that helps me implement those needs?

    An explanation of how to display events in different colors using CSS classes is given in the online help for the region calendar Class CSS attribute:

    select ID,
      START_DATE,
      END_DATE,
      TASK_NAME,
      case STATUS
        when 'Open' then 'apex-cal-green'
        when 'Pending' then 'apex-cal-yellow'
        when 'Closed' then 'apex-cal-red'
        when 'On-Hold' then 'apex-cal-black'
      end as css_class,
      ASSIGNED_TO as supplemental_info
      from PROJECTS
    

    The column specifying the apex - cal-* color class is then selected in the attribute of Class CSS region.

    Link target URL can be built dynamically in the region of link attributes using chains of substitution that reference columns in the query. Again, see the online help for the link attributes. In a UNION like yours, a different target page can be specified in each request, and referenced in the link attribute display/change page numbers to specify the page number and set the values of the elements of the requested page:

    Source of the region

    select
        10 x
      , trunc(sysdate) - 9 d
      , 'Foo' s
      , 'apex-cal-green' css_class
      , '10' link_page
    from
        dual
    union all
    select
        20
      , trunc(sysdate) - 6
      , 'Bar'
      , 'apex-cal-yellow'
      , '11'
    from
        dual
    union all
    select
        30
      , trunc(sysdate)
      , 'Baz'
      , 'apex-cal-red'
      , '12'
    from
        dual
    


    View/Edit link

    f?p=&APP_ID.:&LINK_PAGE.:&SESSION.::&DEBUG.:10:P&LINK_PAGE._X:&X.
    
  • Advancing the APEX by 'Next year' calendar year or "Prev".

    I have a standard calendar, and I added two buttons:

    [< < Prev] and [next > >], on each side of the [< Prev] and [Next >] buttons that currently exist.

    I want these two new buttons to advance the calendar by 'years' not 'months '.

    I am new to APEX and SQL, but I'm learning! My first thought is, duplicating the existing 'next' and 'Prev' process on the page that currently advancing the calendar in 1 month and progress in 12 months.

    The problem is, when I look at the source of these buttons, they point to the following processes as appropriate:

    htmldb_util.increment_calendar;
    htmldb_util.decrement_calendar;

    I can't find where this 'process' resides in the file system, or how it's pass the data to the process (for example, the 'Next' process should tell the htmldb_util.increment_calendar function to increment the Px_CALENDAR_DATE of 1 month, and the 'Prev' process must decremrement by 1 month.

    Any ideas on how to a htmldb_util.increment_calendar use of increment 12 months, or to copy the process and change to advance in 12 months?

    Appreciate any ideas (although it seems that this should have been a standard).

    An alternative, a way to use the format "Date Picker" (where you select the month AND YEAR), and then select a button 'Go '?

    In addition, appreciate any ideas!

    KSL

    Published by: leonhardtk on March 19, 2009 14:03

    Hello

    Sorry, perhaps I should have explained the SQL code of the selection list of P2_YEAR, but glad you worked on it! For others, this is just a quick way to create a digital sequence - here is the text of presentation on this topic: [http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/queries003.htm#sthref3139]

    Andy

  • display format for change of control table

    I have a table in my VI that display information. However, the number of columes is too many (about 20) and line number is only 5. So I want to change the display format:

    original painting

    Name age sex...

    Tian 30 female

    Song 23 male

    After changed:

    Tina Name song

    30 years 23

    Women men sex

    Another question. The information in columns, this is too. some of them have 10 characters, is the table control have any property to change the width of colume on hosting them automatically?

    Convert your 2D table.

    Width column, there is a function called Get text Rectangle.  Use it on each element of your 2D array in the column of interest.  Use the maximum value, and then set the width of your column to that.

  • apex_json apex 5 question

    I have a region where I produce some json like this: in the header I < div class = "json" >

    DECLARE

    C1 SYS_REFCURSOR;

    BEGIN

    OPEN C1 TO SELECT CODE, NAME OF ORGANISATIONELEMENT;

    apex_json.initialize_clob_output;

    apex_json.open_object;

    apex_json. Write (C1);

    apex_json.close_object;

    HTP.p (apex_json.get_clob_output);

    apex_json.free_output;

    END;

    $("div.json").html)

    It gives me:

    {

    [

    {

    'CODE': 'CLASS '.

    , 'NAME': 'class '.

    }

    ,{

    'CODE': 'DIV '.

    , 'NAME': 'Division '.

    }

    ,{

    'CODE': 'DIR '.

    , 'NAME': "Direction".

    }

    ,{

    'CODE': "DEPT".

    , 'NAME': 'Department '.

    }

    ,{

    'CODE': 'WARD '.

    , 'NAME': 'Ward '.

    }

    ,{

    'CODE': 'BLINK '.

    , 'NAME': 'clinic '.

    }

    ,{

    'CODE': 'NURS.

    , 'NAME': 'nursing care '.

    }

    ]

    }

    However, var j = $.parseJSON ($("div.json").html ()) fails to parse with "unexpected token [' ]"

    edhrx wrote:

    I have a region where I produce some json like this: in the header, I

    DECLARE

    C1 SYS_REFCURSOR;

    BEGIN

    OPEN C1 TO SELECT CODE, NAME OF ORGANISATIONELEMENT;

    apex_json.initialize_clob_output;

    apex_json.open_object;

    apex_json. Write (C1);

    apex_json.close_object;

    HTP.p (apex_json.get_clob_output);

    apex_json.free_output;

    END;

    $("div.json").html)

    It gives me:

    {

    [

    {

    'CODE': 'CLASS '.

    , 'NAME': 'class '.

    }

    ,{

    'CODE': 'DIV '.

    , 'NAME': 'Division '.

    }

    ,{

    'CODE': 'DIR '.

    , 'NAME': "Direction".

    }

    ,{

    'CODE': "DEPT".

    , 'NAME': 'Department '.

    }

    ,{

    'CODE': 'WARD '.

    , 'NAME': 'Ward '.

    }

    ,{

    'CODE': 'BLINK '.

    , 'NAME': 'clinic '.

    }

    ,{

    'CODE': 'NURS.

    , 'NAME': 'nursing care '.

    }

    ]

    }

    However, var j = $.parseJSON ($("div.json").html ()) fails to parse with "unexpected token [']"

    Hi edhrx,

    I view your code of jSon object and its object shows what ever you encounter is not well formatted json object:

    Please, I've corrected your code as below:

    {

    'objectName': [

    {

    'CODE': 'CLASS ',.

    'NAME': 'class '.

    },

    {

    'CODE': 'DIV ',.

    'NAME': 'Division '.

    },

    {

    'CODE': "DIR,"

    'NAME': "Direction".

    },

    {

    'CODE': "DEPT"

    'NAME': 'Department '.

    },

    {

    'CODE': 'WARD ',.

    'NAME': 'Ward '.

    },

    {

    "CODE':"BLINK. "

    'NAME': 'clinic '.

    },

    {

    'CODE': 'NURS.

    'NAME': 'nursing care '.

    }

    ]

    }

    So each jSon object should have a name that I have highlighted in bold as 'objectName' after you first fathoms curly opened.

    {

    'objectName': [

    {

    (2) an alternative to create a json apex objectives use following code:

    DECLARE

    C1 SYS_REFCURSOR;

    BEGIN

    OPEN C1 TO SELECT EMPNO, ENAME, JOB - EMP;

    apex_json.initialize_clob_output;

    apex_json. Write (C1);

    HTP.p (apex_json.get_clob_output);

    apex_json.free_output;

    END;

    Changes in your code please lines "BOLD" comment as below:

    DECLARE

    C1 SYS_REFCURSOR;

    BEGIN

    OPEN C1 TO SELECT CODE, NAME OF ORGANISATIONELEMENT;

    apex_json.initialize_clob_output;

    -apex_json.open_object;

    apex_json. Write (C1);

    -apex_json.close_object;

    HTP.p (apex_json.get_clob_output);

    apex_json.free_output;

    END;

    Please check the two json object is json online editor: JSON Editor Online - view, edit and format JSON online

    and check your json object to also get to know aswer.

    You don't no need here to add there a code additional two line which "BOLD".

    Concerning

    Raj Beauvois

  • Apex 5: How can calendar, I limit what an entry by date

    It is in the suite with the thread can not add links in the calendar Apex5

    Calendar of the apex, we can add number of events per day. How can I limit an event by date only. Can anyone help me this.

    Thank you

    Hi Benjamin,

    not really can be prevented it can click 'create '. Don't forget a multi user scenario where two users view the calendar. The first adds a new entry for a date, but the second user sees only the entrance still until he updates the calendar. User 2 should always be prevented to create an additional entry for that date. Only one validation will ensure that it is prevented.

    But to give feedback to the user earlier that you can change your form page, the user immediately Gets an error message when opening the form page and an entry for this day already exists. You can do this in

    (1) adding an additional region to your form page that does not have a condition of type "rows returned.

    (2) where the source region said something like "a record exists already for the current date.

    (3) put a 'no. lines returned' condition on your ' Create/save' button / region that contains input fields

    Concerning

    Patrick

  • Panel application question format Table number ADF

    Hi all

    Thanks for your time in reading this thread. Here's the JDeveloper version information:

    Oracle JDeveloper 11g Release 1 11.1.1.6.0

    Studio Edition Version 11.1.1.6.0

    Build JDEVADF_11.1.1.6.0CLOUD_GENERIC_121118.1600.6229

    Copyright © 1997, 2011 Oracle and/or its affiliates. All rights reserved.

    The IDE version: 11.1.1.6.38.62.29

    Product ID: oracle.jdeveloper

    Product version: 11.1.1.6.38.62.29

    Version of the component

    ========= =======

    11.1.1.62.29 ADF business components

    Java (TM) Platform 1.6.0_24

    Oracle IDE 11.1.1.6.38.62.29

    Support versioning 11.1.1.6.38.62.29

    Question:

    ~~~~

    I created a group of ADF with Table query for all searchable attributes of a view object. Little attribute is of type database column NUMBER and their ADF attribute type is oracle.jbo.domain.Number. Some of these attributes are having more than 4 decimal places.

    For example: Cost attribute value is 1.23004

    After you run the search page, when I enter cost value as 1.23004, after the tab out. the value of cost in the criteria section is changed to 1.23 which is originally no results to return, even if the record with cost 1.23004 exists in the database. Initially, the table of results also showed only 1.23 as cost value. I changed the af: convertNumber MaxFractionDigits on 10 to show all of the up to 10 decimal precision (if it exists). After this is done, the result table shows the correct value (1.23004). but the search criteria still rounds up 1.23 for the first time. If the 1.23004 value is entered again it retains the value entered and search result works very well.

    Is there anyway that the automatic formatting of the criteria can be disabled? It is otherwise better to show all decimal values without rounding or the definition of the MaxFractionDigits?

    Really appreciate your help on this.

    Thank you.

    Sorry for the confusion.

    Build your own referee criteria view, you add the attribute number and check the tab user interface of suspicion for the attribute. Check if you can change the format here. As I'm not in front of a pc that I have to look at the other options. It may be a bug.

    There is this programmatic approach Oracle ADF Guide step by step - Oracle ADF tutorial: handle stripped to the ADF query component - see the values of input query but it should be possible to operate for the types of number with fraction numbers more then 2 out of the box.

    Timo

  • date in the apex 4.1 format

    Hello

    We have a custom to an apex application table. In this table we have type DATE for column1(for eg)

    If Column1 is introduced by APEX, we use date picker standard apex and format DD-MON-RRRR. After we insert and when we refreshh the apex to see page

    We see values such as 10 October 10 October 10, 2010,

    any idea or fix...

    I tried in the select statement to sql source [in this area] with to_date(column1,'DD-MON-YYYY')... but did not

    Also, I followed same insert statement with no luck

    Please notify

    KP

    is a change in the properties of the application and it works now

  • From Word to PDF format without changing the number of pages

    When to convert a 320-page document Word 2013 in PDF using Acrobat, the number of jumps to 331 pages, change notes, sections... How to fix? TX

    To develop on the response from Michael Kazlow, the problem is not caused by windows, but rather how Microsoft Office applications format their text. The issue is not just with words, but also with any other application Office as well. In addition, it is not a question of if you create the PDF file using the instance of driver Adobe PDF PostScript printer, but on the contrary, when you compose the document while the instance of Adobe PDF PostScript printer driver is the printer by default/current in Word!

    These applications format text using fonts that are standard to the current output device resolution. For example, if you view a document in Word and the currently selected printer (usually the default printer selected in Windows when you start Word) is a resolution of 600 dpi device, the document is formatted with a space for each character measured in units of 1/600, an inch. If you change the active printer or print to a printer with a resolution different game, Word reformats the document using fonts based on the new resolution. The resolution is 1/1200 inch in the case of the PDF Adobe PostScript printer, default, driver instance. In general, more text fits on a page with text lines long when a higher resolution is used and less text fits on a page with long lines when using a lower resolution. If your default printer is a high resolution, you can see the resolutions up to 2400 dpi, for example.

    Microsoft Office applications are also known to reformat pages based on other parameters such as the printable area.

    These questions just do not affect the creation of PDF, but also print on different devices producing different line endings and pagination.

    To make matters more things, when either you Save to PDF using the ease of creation of PDF of the Office, or even Save as Adobe PDF using Acrobat PDFMaker Office (part of Acrobat) installation uses yet a different mechanism to reformat the page, as productive at the end line inconsistencies and pagination of what you see on the screen or print directly from Word to a particular device. (We don't know exactly what mechanism Microsoft uses in these cases to cause gaps.)

    Office and Adobe users have complained to Microsoft this behavior general for more than 20 years and apparently this isn't any priority to Microsoft to resolve this issue.

    -Dov

  • 3.2 APEX update questions

    Hi guys,.

    I need to do a review on the benefits of upgrading to 3.2 and hoped for clarification on a number of things. The functionality of the Forms provides no use to us, so the point is on the [security changes | http://www.oracle.com/technology/products/database/application_express/html/3.2_new_features.html].

    Declarative encrypt session state
    Declaratively specify wait times of session for the maximum idle time and the maximum duration of session
    What do these? That means declaratively they user MUST specify? Why are they useful? What were they like before?

    New element types create password that allow users to enter passwords without ever saving their session state - why is it useful? Saves the State of session a security problem? Why it would take up to 3.2 for it be changed then: o
    Reduce the footprint exposed by reducing the privileges required by the Oracle Application Express database account - does that mean? Foot print?
    Deactivation of the service of default data monitor - if this refers to the activity of users monitor etc then why is - this good? Looks extra hassle for the admins see what users do
    Allowing administrators to require HTTPS for administration and enforcement on development - administration and development suite applications?
    Service Administrator account passwords are consistent with a strong password policy - trying to cause me trouble when deciding on a password?

    Anyone know of any other addition in addition to what is mentioned here? for example new articles, reports, themes etc.

    Thanks for help.

    Mike

    Mike,

    Some of your comments seem a bit antagonistic such as "why it would take up to 3.2 for it be changed then: o ' and 'try to cause me trouble when deciding on a password?'. It is not the best way to get answers to the questions.

    Declarative encrypt session state

    For any element that can contain sensitive data, you can say APEX to encrypt it while it is stored in the tables of State meeting of the APEX. This prevents a sys_admin to query this table and entered these values. It also keeps them out of the redo log files, etc. However, you should always deal with encryption of sensitive data when you save to your tables.

    Declaratively specify wait times of session for the maximum idle time and the maximum duration of session

    You can change a parameter indicating the sessions expire after x minutes. Declarative means there are a graphical interface, do not do it in the code.

    Create item types that allow users to enter passwords without ever saving to session state new password

    Yes, saving it session state is a security problem as a system administrator may seek in the session state tables.

    Minimize the exposed footprint by reducing the privileges required by the Oracle Application Express database account

    APEX requires less privs to run to access schemas APEX gives a hacker less energy. Think of it as SYS vs SCOTT. If you broke into the SCOTT schema, there not much damage, that you could do. However, if you walked into SYS, you could do what you wanted to do in the database.

    Disabling the default data monitor function

    This isn't the user monitor section, this is a section that allows you to display the top sql, sessions, etc. Yes, it's more complicated. It's more of a hassle for me to lock my door when I leave, but I always do.

    Service administrator account passwords are consistent with a strong password policy - trying to cause me trouble when deciding on a password?

    Let me guess, your sys / system / root / admin password is one of the following values: sys, Manager, change_on_install, oracle, host, password, enter, root, qwerty, 12345? ;)

    Tyler Muth
    http://tylermuth.WordPress.com
    [Oracle security application: development of secure database and Middleware environments | http://www.amazon.com/gp/product/0071613706?ie=UTF8&tag=tylsblo-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=0071613706]
    ! http://www.Assoc-Amazon.com/e/IR?t=tylsblo-20&l=AS2&o=1&a=0071613706!

  • I was entering numbers in a table of existing pages and suddenly the formatting has changed and I can't type numbers the way I need too.  How to fix this?

    I was entering numbers in a chart in Pages to update the information and all of a sudden the cells do not have the formatting that I want.  It's changing the way numbers which I type them, and I don't know why or what to do?

    Hi Slf@LF,

    Numbers and pages are trying to be smart and recognize wht kind of data that you enter. If you enter something that resembles a date they will treat it as such. Some people have problems with serial numbers because programs to format their numbers and not text.

    View the data that you are trying to enter and how it's changed and we ca probably to understand what is happening to her.

    Quinn

  • Satellite A200 - question format HARD drive after replacing

    Hello

    I know this is probably a stupid question to ask as I am not that great with computers.
    I have problems with my hard drive from my Toshiba Satellite A200 laptop.

    Now, when I took it out it was a 120 GB so I bought another Seagate 320 GB hard drive to replace it.
    Now can I just put it back in or do I have to format the known brand hard drive.

    So if anyone can help it would be much appreciated

    Thank you

    Hello

    New HARD drive should be recognized by the laptop properly.
    If you purchased a HARD drive 2.5 SATA, so I put t see serious reasons why this HARD drive is not working.

    Once the HARD drive has been replaced, boot from the Toshiba Recovery disk and follow the instructions on the screen. The HARD drive must be formatted during the installation procedure
    That article should work

Maybe you are looking for

  • Recovery of the Internet does not work

    Hello! My computer (MacBook pro mid-2012)) for a while has a battery fault which means I just have it stationary for a year back. My friend who has the same computer had a drive cable hard failure so I thought she could get just mine and I just have

  • Audio-Midi Setup reset after reboot

    Hello I have the problem, very frustrating that my settings in configuring audio-midi-keep the reset with every reboot. So I tried the com.apple.audio.AudioMIDISetup.plist in Preferences, but there is no files and no Audio folder. It seems that Mac O

  • time to break record

    I am trying to save time by zero to obtain the phase angle and inevitably get de facto power. some ideas to see if this is feasible and I came with it trying to itself. can someone tell me where I'm wrong. or what to do good values...

  • drive hard smart check

    My sleekbook will not start. It says smart disk failure hard disk 1 (301). I try to run check the HDD and it just says failed

  • How can I stop Outlook Express to erase emails received on my iPad

    When I look at my emails via Outlook Express, the program deletes ALL my emails, I received on my iPad (read and unread messages). Is there a setting in the Outlook Express program that could prevent this from happening? Any help is greatly appreciat