Field 'blogCategoryid' is not a default value

Add new category names displayed the following error message.  Also, it is not allow me to edit the names at all.  Please help solve this problem.  Thank you.

Field 'blogCategoryid' is not a default value

Root cause: java.sql.SQLException: field 'blogCategoryid' is not a default value

The error occurred in egory.cfm C:/ColdFusion11/cfusion/wwwroot/learncfinaweek/chapter1solution/admin/content/blog/editcat: line 33

<cfset ormFlush() />

editCategories.cfm:

"< cfimport taglib ="... /... "/ customTags" prefix = "ct" / >

< ct:securityCheck redirectPage = "#cgi.script_name #" / >

< name = "cfparam url.id" default = "0" / > "

< name = "cfparam form.submitted" default = "0" / > "

< name = "form.id cfparam" default = "0" / > "

"< name =" form.name cfparam"default =" "/ >

"< name =" cfparam form.categories"default =" "/ >

< cfset errorBean = createObject('learncfinaweek.chapter1solution.admin.cfc.errorBean').init () / >

< cfif form.submitted >

<!-check if the data is valid-->

< cfif! errorBean.hasErrors () >

< val (form.id) cfif >

<! - edit entity - >

< cfset blogCategory = EntityLoad ('BlogCategory', form.id, true) / >

< cfset blogCategory.name = form.name / >

< cfelse >

<!--create the entity - >

< cfset blogCategory = EntityNew ('BlogCategory') / >

< cfset blogCategory.name = form.name / >

< / cfif >

< cfset entitySave (BlogCategory) / >

< cfset ormFlush() / >

< cflocation url = "listcategory.cfm? message = #urlencodedformat ('Blog Category Saved')" # "addtoken ="false"/ >"

< / cfif >

< / cfif >

< val (url.id) cfif >

<! – get entity data - >

< cfset blogCategory = EntityLoad ('BlogCategory', url.id, true) / >

< cfset form.name = blogCategory.name / >

< / cfif >

< cfoutput >

< ct:layout section = 'blog' >

< section = 'blog' active 'post' = ct:navigation / >

< div class = "span10" >

< val (url.id) cfif >

Category change < h2 > < / h2 >

< cfelse >

Add a category < h2 > < / h2 >

< / cfif >

< errorBean.hasErrors (cfif) >

< div class = "alert error alert" >

Error < strong > < / strong > < br / >

The following errors occurred:

< ul >

< cfloop array = "#errorBean.getErrors () ' # ' index 'error' = >"

#error.message # < /li > < li >

< / cfloop >

< /ul >

< / div >

< / cfif >

< form class = "form-horizontal" action = "" #cgi.script_name # "method ="post">"

< div class = "control group" >

< class label = "label control" for = "title" > name < / label >

< div class = "orders" >

< input type = "text" id = 'name', name = 'name' value = "#form.name #" >

< / div >

< / div >

< div class = "control group" >

< div class = "orders" >

< button type = 'submit' class = 'btn, btn-primary' > save < / button >

< / div >

< / div >

< input type = "hidden" name = "subject" value = "1" / >

< input type = "hidden" name = "id" value = "" #url.id # "/ >"

< / make >

< / div >

< / ct:layout >

< / cfoutput >

blogPost.cfc page:

persistent component = {'true'

The property name = the column 'id' = 'blogpostid"fieldtype = generator of 'id' ="increment ";

Name of the property = "title" ormtype = "text";

Name of the property = "Summary" ormtype = "text";

Name of the property = 'body' ormtype = 'text ';

Name of the property = "dateposted" ormtype = "timestamp";

Name of the property = "createdDateTime" ormtype = "timestamp";

Name of the property = "modifiedDateTime" ormtype = "timestamp";

Name of the property = "deleted" ormtype = "boolean";

Property = "comments" singularname = "comment" fieldtype = name "one-to-many" cfc = "how" fkcolumn = "blogpostid" cascade = "all";

Fieldtype 'categories' = property name = "one-to-many" cfc = "blogPostCategory" fkcolumn = "blogPostid;

public string function getCategoryIDs() {}

var categoryList = ";

If {(hasCategories())

for (var categoryPost in getCategories()) {}

categoryList = listAppend (categoryList, categoryPost.blogCategory.id);

}

}

CategoryList return;

}

public string function getCategoryNames() {}

var categoryList = ";

{if (hasCategories ())}

for (var categoryPost in {getCategories())}

categoryList = listAppend (categoryList, categoryPost.blogCategory.name, ',');

}

}

CategoryList return;

}

}

editBlogPost.cfm page:

"< cfimport taglib ="... /... "/ customTags" prefix = "ct" / >

< ct:securityCheck redirectPage = "#cgi.script_name #" / >

< name = "cfparam url.id" default = "0" / > "

< name = "cfparam form.submitted" default = "0" / > "

< name = "form.id cfparam" default = "0" / > "

"< name =" form.title cfparam"default =" "/ >

"< name =" cfparam form.summary"default =" "/ >

"< name =" cfparam form.body"default =" "/ >

"< name =" cfparam form.datePosted"default =" "/ >

"< name =" cfparam form.categories"default =" "/ >

< cfset errorBean = createObject('learncfinaweek.chapter1solution.admin.cfc.errorBean').init () / >

< cfif form.submitted >

<!-check if the data is valid-->

< cfif! Len (trim (form.title)) >

< errorBean.addError cfset ("title is required", "title") / >

< / cfif >

< cfif! Len (trim (form.summary)) >

< errorBean.addError cfset ("a summary is required", 'startDate') / >

< / cfif >

< cfif! Len (trim (form.body)) >

< cfset errorBean.addError ("You must provide a body", "details") / >

< / cfif >

< cfif! Len (trim (form.datePosted)) >

< cfset errorBean.addError ("You must provide a release date", "details") / >

< / cfif >

<! - only treat if there is not error - >

< cfif! errorBean.hasErrors () >

< val (form.id) cfif >

<! - edit entity - >

< cfset blogPost = EntityLoad ('BlogPost', form.id, true) / >

< cfset blogPost.title = form.title / >

< cfset blogPost.summary = form.summary / >

< cfset blogPost.body = form.body / >

< cfset blogPost.dateposted = form.dateposted / >

< cfset blogPost.modifiedDateTime = now() / >

< cfloop array = "#blogPost.getCategories () ' # ' index 'category' = >"

< cfset entityDelete (category) / >

< / cfloop >

< cfelse >

<!--create the entity - >

< cfset blogPost = EntityNew ('BlogPost') / >

< cfset blogPost.title = form.title / >

< cfset blogPost.summary = form.summary / >

< cfset blogPost.body = form.body / >

< cfset blogPost.dateposted = form.dateposted / >

< cfset blogPost.createdDateTime = now() / >

< / cfif >

< cfset entitySave (BlogPost) / >

< cfloop list = "" #form.categories # "index ="categoryID">"

<! - add entity category - >

< cfset blogPostCategory = EntityNew ('blogPostCategory') / >

< cfset blogCategory = EntityLoad ('blogCategory', categoryID, true) / >

< cfset blogPostCategory.blogCategory = blogCategory / >

< cfset blogPostcategory.blogpost = blogpost / >

< cfset entitySave (blogPostCategory) / >

< / cfloop >

< cfset ormFlush() / >

< cflocation url = "listblogpost.cfm? message = #urlencodedformat ('Blog Post Saved')" # "addtoken ="false"/ >"

< / cfif >

< / cfif >

< val (url.id) cfif >

<! – get entity data - >

< cfset blogPost = EntityLoad ('BlogPost', url.id, true) / >

< cfset form.id = blogPost.id / >

< cfset form.title = blogPost.title / >

< cfset form.summary = blogPost.summary / >

< cfset form.body = blogPost.body / >

< cfset form.dateposted = blogPost.dateposted / >

< cfset form.categories = blogPost.categoryids / >

<!-< cfset form.categories = blogPost.categoryNames / >->

< / cfif >

< cfset categories = entityLoad ('BlogCategory') / >

< cfoutput >

< ct:layout section = 'blog' >

< section = 'blog' active 'post' = ct:navigation / >

< div class = "span10" >

< val (url.id) cfif >

Blog post to change < h2 > < / h2 >

< cfelse >

Blog post add < h2 > < / h2 >

< / cfif >

< errorBean.hasErrors (cfif) >

< div class = "alert error alert" >

Error < strong > < / strong > < br / >

The following errors occurred:

< ul >

< cfloop array = "#errorBean.getErrors () ' # ' index 'error' = >"

#error.message # < /li > < li >

< / cfloop >

< /ul >

< / div >

< / cfif >

< form class = "form-horizontal" action = "" #cgi.script_name # "method ="post">"

< div class = "control group" >

< class label = 'label control' for 'title' = > title < / label >

< div class = "orders" >

< input type = "text" id = "title" name = "title" value = "#form.title #" >

< / div >

< / div >

< div class = "control group" >

< class label = "label control" for = "title" > summary < / label >

< div class = "orders" >

< textarea rows = "6" id = "Summary" name = "Summary" class = 'entry-xlarge' > #form.summary # < / textarea >

< / div >

< / div >

< div class = "control group" >

< class label = "label control" for = "title" > body < / label >

< div class = "orders" >

< textarea rows = "3" id = "body" name = 'body' class = "wysiwyg" > #form.body # < / textarea >

< / div >

< / div >

< div class = "control group" >

< class label = 'label control' for 'details' = > publish Date < / label >

< div class = "orders" >

(< input type = "text" id = "datePosted" name = "datePosted" class = 'datepicker' value="#dateFormat(form.datePosted,'mm/dd/yyyy') #" > "

< / div >

< / div >

< div class = "control group" >

< class label = 'label control' for 'details' = > categories < / label >

< div class = "orders" >

< class label = "checkbox" >

< cfloop array index = "" # categories # "'category' = >"

< input type = "checkbox" name = "Catégories" value = "" #category.id # "checked < cfif listfind (form.categories, category.id) > < / cfif > > #category.name # < br / >"

< / cfloop >

< / label >

< / div >

< / div >

< div class = "control group" >

< div class = "orders" >

< button type = 'submit' class = 'btn, btn-primary' > save < / button >

< / div >

< / div >

< input type = "hidden" name = "subject" value = "1" / >

< input type = "hidden" name = "id" value = "" #url.id # "/ >"

< / make >

< / div >

< / ct:layout >

< / cfoutput >

I got it to work.  This is the DB.  MySQL Workbench open and highlight and right click on all the tables.  The choice of DROP.  Then to repopulate the tables to learncfinaweek, run the import_mysql script, which is available online.  The site works fine now.  Thank you Jesus.

Tags: ColdFusion

Similar Questions

  • Create a simple tent running. Suppose a text field called "marquee." The default value

    Sorry if this question is too stupid or has already been asked.

    The referral of acrobat, the following is required to run an example.

    Create a simple tent running. Suppose a text field called "marquee." The default value of this field is "Adobe Acrobat version 8.0 will be soon here!".

    I prefer something I can put in the debugger and run rightaway to see his result and work on the rest of the example.

    Thank you

    Rainbow Chang

    I do not understand the question. Why you can't use the code given to you in the JavaScript reference Guide?

  • Firewall on set as default, fixit States that it is not the default value? How can I fix it

    Help, please

    Hello

    1. what exactly is the problem you are having?

    2. what operating system is installed on the computer?

    3. what fixit says that "it is not the default value"?

    Provide us with more information about the issue so that we can better help you.

    However, read the following article and check if this is useful:

    Some services do not start in Windows Vista and Windows 7

    http://support.Microsoft.com/kb/943996

  • fast_start_mttr_target has NOT changed default value

    I had a raccheck on my new installed RAC nodes. Operating system is linux redhat, oracle version is 11.2.0.3.

    raccheck has one results: fast_start_mttr_target has NOT been changed from default.

    Our current system not migrated for fast_start_mttr_target have not been configured.

    We need to set this?

    The fast_start_mttr_target allows you to specify the number of seconds that takes to the database to perform crash recovery. You must assign the optimal value.

    See link below before setting this parameter
    http://docs.Oracle.com/CD/B13789_01/server.101/B10734/rcmtunin.htm#1008706

    Concerning
    http://www.oracleracexpert.com
    Oracle Flashback - Oracle Total Recall data archive
    http://www.oracleracexpert.com/2012/06/Oracle-flashback-data-archive-Oracle.html
    Backup and restore MySQL database
    http://www.oracleracexpert.com/2012/06/backup-and-restore-MySQL-database.html

  • ADF LOV-&gt; UI: main table showing the fields ID and not the search values

    Hello
    I am very new to the development of the ADF and will have a simple question that I can't solve.

    Using Oracle JDeveloper 11.1.2.0.0 I create my views and objects of entity without incident. I have an entity object that has several "search values" (these are all optional references to foreign keys to tables 'children'). Objects and relations are perfectly mapped the ADF.

    In the views of child object I created the list UI tips
    -Type: Combo box with list values
    -the "selected" column is the "description" of the research

    in the editable display object, I traced the fields 'id' to use the predefined LOVs.

    This works as expected in the user interface, I created with an ADF table can be updated.

    However (here's the noob question), the "id" is displayed in the search on the table column. When I click the menu drop-down I can see the description, etc, but for a professional user when they look at the table, they see an unfriendly identification number.

    How can I get the part of the LOV display to show the description, while remaining linked to the ID of the parent entity.

    for example, it shows
    Country             LOV1        LOV2     LOV3
    United States     15           18           2
    while I want to display:
    Country             LOV1            LOV2       LOV3
    United States     Washington  Seattle     Rain
    If this has been answered several times or walk through there, sorry for the redundant question, I simply can't find a solution!

    Hello

    There are several ways to do this, you simply need an additional outputText next to the lov component field to display the value of the description.

    If you search the forum or adf blocks, you'll find several implementations.

    And here's one: http://andrejusb.blogspot.com/2010/06/lov-description-text-with-groovy.html

    Gabriel.

  • Selector color on Photoshop CC is not its default value

    So my color chart looks like this...

    heko.PNG

    And I know it's supposed to not like this.

    I have installed and reinstalled the app, but that it was not fixed. I searched the forums but couldn't find anyone who had this problem.

    Anyone know of a solution for this?

    Edit menu > Preferences > general dropdown Color Picker: choose Adobe, click OK, restart Photoshop.

  • Fusion-Import catalog from another cat, wanting is originals, choice that is offered is not, the default value without moving original

    I want to merge catalogs into a single master. When I import the catalog to another catalog, option by default, with on the displacement of the original files, I want to move these original files I combine catalogs. What Miss me?

    Thank you very much for your answer.  I don't expect really something like your very comprehensive and understandable solution.  It is clear that you spent a lot of time to type the answer.

    Thank you again so much.

    Bruce Schuerman

  • Help - desperate font DW will not change default value

    Help me please! I have a major problem with the fonts in DW 8. I can't change the default setting. I uninstalled and reinstalled DW 8 nothing works. Somebody save me please? I think it could be a corrupted DLL. All my fonts work in other Adobe applications

    Thanks Gary! He was disabled and when I checked it worked and he was back to normal. I'm so happy, it was an easy fix. Thanks again

  • can update you a table with a column field with a default value

    I'm looking at a table (table_one) developer and basically, there a column field called is_update and the default value for this field is 1.

    I was wondering if it would be possible for me to use a syntax of the form update
    update table_one t
    set t.is_update = 0;
    where t.id = 221;
    because I tried to do and the update does not work

    Semicolon (;) is the problem!

    update table_one t
    set t.is_update = 0 --Removed semicolon here!.
    where t.id = 221;
    

    http://download.Oracle.com/docs/CD/E11882_01/server.112/e17118/statements_10008.htm#SQLRF01708

    added query & URL: Johan on October 21, 2010 07:02

  • DELL INSPIRON 2320 - Natural Wireless Laser Keyboard 7000 - default value is | Caps lock | WE (turned on) in all fields of password

    Hi y ' All

    DELL INSPIRON 2320 - Natural Wireless Laser Keyboard 7000 - default is Caps Lock ON (active) only when the cursor is in a field of password.

    The game of keyboard mouse 7000 is great.

    However, when the cursor is in any field/bos where a password must came me in, CapLock default value (setting) is ON or activated.

    • This only happens only in a field/area requiring a password to enter... but it happens each unique time, any application or what connection Web site password field I can be located anywhere on the Internet.
    • Again, this is only a problem when the cursor is in a password field.
    • This (setting) can be reversed that, when the cursor is in an area of password, default (setting) will be | Caps Lock |  STOP =?

    In the BIOS settings, I only find a selection of NumLock setting.  In Centre of keyboard and Microsoft mouse, the only setting that I can locate offers the choice to enable or disable the use of the Caps Lock key... entirely.  So, when turned on, the default value is lock shift = WE only in a password box.  Know, I is not no accidentally redundant; I repeat this case specific to the question in order to stress that this is the only time only this question.

    Like most people, I have to enter the password often. This problem occurs if the "remember me" or "keep me logged in" is selected.

    It's much more irritating.

    Thank you for your considerations and possible solutions, if any.

    Bobby

    1. Dell Inspiron 2320
    2. Windows Pro V.7.0
    3. Microsoft Natural Wireless Laser Mouse 7000

    #      #      #

    end of post

    Hello

    To turn off the caps from the BIOS lock, you will need to contact the manufacturer of the BIOS.

    Note: Update of the BIOS can be a complicated process, and if an error occurs, your computer could be rendered unusable. Be sure to observe the instructions of the manufacturer.

    Reference:

    http://support.Microsoft.com/kb/894037?WA=wsignin1.0

    It will be useful.

  • Adding a sequence as a default value for a column in a table field

    Hi all

    APEX 4.2.4. Oracle XE 11.2

    I'm trying to add a default value from a sequence to a column in a table field, so he fills when I hit the "Add Row" button...

    The reason for this by the way, rather than simply using a sequence database and the trigger on the column (which exists and works very well), is that I try also add detail records to the line when I create, and I can not, I do not have the ID of the parent to the child records.

    Looking at the docs, (for example oracle 11 g pl/sql enhancements), I thought I'd have be able to use a PL/SQL expression as to_char (petty_cash_seq. NEXTVAL) or to_number (petty_cash_seq. NEXTVAL) or all that kind of expression that extracts the sequence.nextval, as it became available in PL/SQL on the database

    so, Ive tried

    TO_CHAR (petty_cash_seq. NEXTVAL) in tabular form attributes - column default / PL/SQL expression and he said ORA-02287: unauthorized number sequence here...

    Ive also tried rolling upward in a PL/SQL package, as below:

    DECLARE v_seq_value NUMBER; BEGIN select petty_cash_seq. NEXTVAL in the double v_seq_value; return v_seq_value; END;

    and I get ORA-00923: KEYWORD not found where expected.

    Can anyone help as to why neither of them do not seem to work as an expression / packages in the default type?

    or... a simple alternative to get the ID of the next record when I hit 'Add Row' before I can create child folders at the same time...

    And I've been mulling over the merits of the master / detail integrity and try to think in an orderly manner to create the mask, add the details without having to first submit the master, then go back and go into details... And put it into context, its a request for costs where users create an expense entry and download copies of their expenses at the same time...

    Thank you very much

    Richard

    Use a combination of AJAX and JavaScript to get the next value in the sequence in a version substituted the line Add.

    1. on the page editor, right-click on the Ajax callbacks and select Create.

    2. on the next page, select PL/SQL. Do * not * select the tabular presentation. Leave this field blank.

    3. name your process, e.g. getNextSequence

    4. Add the code (under the DIRECTION of your own names of the object):

    DECLARE
        ln_NextSequence NUMBER := 0;
    BEGIN
        SELECT MY_SEQUENCE.NEXTVAL
        INTO ln_NextSequence
        FROM DUAL;
    
        HTP.P(TO_CHAR(ln_NextSequence));
    END;
    

    5. When you look now, you will see that the button Add a line called javascript:addRow (). Remove all this and change the button to be triggered by a dynamic action.

    6. create a dynamic action when a click on your button to add a line

    7. Add the following JavaScript code to get the new value of the sequence using your AJAX call from above and then place it on the newly added line:

    var nextSequenceID;
    
    apex.server.process(   'getNextSequence'
                         , {}
                         , { dataType: "text",
                             async: false,
                             complete: function( ajaxResponse )
                                      {
                                        nextSequenceID = ajaxResponse.responseText;
                                      }
                           });
    
    addRow();
    
    $('td [headers="YOUR_ID_COLUMN_NAME_HERE"] input:last').val(nextSequenceID);
    

    -Joe

  • Copy the default value from another field in the same page

    Hello

    I need to pass a value from one page to another page and I want to use this key as DEFAULT VALUE for a field.

    If I create a form tabular all it's ok, but if I create a normal page. I am not able to do that.

    1. 1. I call the page and I pass the value. I also have a FIELD of VIEW and I can see the correct value.
    2. 2. I create a field with attributes of this:
      1. a. source > Source = database column type
      2. b. sources > Source value or expression = FK_ID_DA (the column name)
      3. c. default > default = P27_PK_ID_DA (the field that contains the value)
    3. 3. on the screen, I see P27_PK_ID_DA and not the value

    Where is the error?

    Thank you very much

    TexasApexDeveloper wrote:

    You missed one: before the variable, without it, the default value is the string...

    Not sure that you can READ the other pages... Such that if you are on Page 27 and have a field that you want to use on page 30, page 27 is presented and its items in session state, you can 'see' on page 30.

    So, if you set the default value: P27_PK_ID_DA, then you should get by default, you are looking for...

    Only if the default value Type is set on the PL/SQL Expression. If the literal value "P27_PK_ID_DA" is seen then the Type of default value should currently be set static text with Substitutions of State of Session, in which case the value of session state must be referenced using the syntax of substitution string:

    &P27_PK_ID_DA.

  • Can set the default value in the field with the rule

    I have a rule to set the xWebStartDate to dateCurrent(), but it does not work. I disabled all other rules, so there is no conflict. This rule is only to try to fix the date of xWebStart, nothing else.
    'Use the activation of rule condition' is checked. I selected 'Action of use' and 'check in Selected. I have added the xWebStartDate field and I have a default custom
    < $dprDefaultValue dateCurrent () = $ >
    Thus, it is for content that already exists and someone is to check in a new revision.
    I know that my rule works, because I added the dDocAuthor field and set it to "infOnly" and that works. This problem occurs if the action is updated also. But for check-ins again, I put the xWebStartDate to dateCurrent successfully.

    Update: it's existing content, which already has a xWebStartDate. The rule must replace the existing value.

    Edited by: ironarm February 1, 2013 17:58

    In your case, you cannot use default value for the new revisions, because your content is already a value for the metadata field.

    Alternative:
    (1) change your rule
    (2) on the general tab, check "Use activation Condition rule" and click Edit
    (3) in 'Edit Activation Condition' window, click on the tab "side effects".
    (4) add the following...

    <$if isCheckin $> [[%or you can also use (IdcService and IdcService like "CHECKIN_SEL_FORM")%]]
        <$xWebStartDate=dateCurrent()$>
    <$endif$>
    
  • How can I validate a dropdown list NOT accepting the default value?

    I have a fillable form where I need the user to select their "number of employees". I've added several lines as their options in a drop-down list (1-10, 11-25, 26-50, 50 +). My question is "defult value" is set to "1-10" and people submit it without changing the correct value.

    I changed the value for default "-select -", but it allows them to always submit the form with the value entered.

    I guess I need some sort of validation script that will basically say - "If the value of this field is - select one - do not submit the form, but give an error that says 'Please select your number of employees' or something of the sort."

    Basically I just want what they choose something as opposed to just submit it with the default value.

    I looked everywhere and am not very good with JS.

    You can't have the default set to a possible real value. You need a value that must be selected.

    So for your sending script, you will need to test all your required fields to make sure that they are not at the default value.

    You make a variable that assumes that all required fields are filled and then check each field and if one still has the default value that you set your variable to 'false' and then when you have verified all of the fields that you test the value of the variable and only if she is true to send you the form.

    var bSumbit = ture; logical variable for test submission

    Test menu drop-down # of employees

    this.getField ("number of employees".). required = false; Disable the required property

    If (this.getField ("number of employees"). value == "-select one - ') {}

    Determine = false;

    this.getField ("number of employees".). required = true; Set the required property

    }

    {if (bSubmit)}

    your submit acation;

    } else {}

    App.Alert (' not all required fields completed", 0, 1);

    }

  • How to automatically remove the "Default Value" of the text field text.

    Y at - it a java script, or something that I can apply to a text field that would automatically "By default" disappear when the person clicks on this area?  Instead of the need to highlight the text before you start typing...

    Screen Shot 2012-10-02 at 4.05.07 PM.png

    It is dangerous because it clears the field of the value entered by the user. In addition, event.value does not work in this context. You must use event.target.value.

    You use it for the event on Focus:

    If (event.target.value == event.target.defaultValue) event.target.value = "";

    And for the event on the blur:

    If (event.target.value == "'") event.target.value = event.target.defaultValue;

Maybe you are looking for

  • Satellite M40: Power calibration error - drive cannot burn DVD - RW more

    My drive is a carpet * an oem UJ - 831S. After a screw-up partitioning job, I had to format my HD and reinstall Windows XP... and then I can not burn DVD - RW more. Tried many programs such as Nero and a fireman, gives an error of calibration of powe

  • huge problem disconnect...

    Hi MS Pros! Thank you for providing this forum. I use vista os. I have "logging off" on my screen since 12:00 Friday/Saturday 5/Feb/11. It happens 2 days now. It started when I downloaded some photos that have been scanned in at a size of 600 dpi in

  • A Notification of blackBerry Smartphones sounds alert missing after upgrade to OS6

    I was delighted to see I can finally update my Bold 9700 to OS6 and did both. Unfortunately, I discovered all the preset alarm and original settings notification sounds are gone now, and most of them have been replaced by rather lame. Is it possible

  • e-mail messages are not displayed

    I have windows live mail 2012, when I connect, the page opens but the email does not, I have the list of emails on the left but nothing in terms of reading on the right, it looks like an attachment with two icons above the place where the message sho

  • Big LOV is very slow loading

    Hello worldMy Tester BC4J loads very slowly now that I added a LOV referring to about 5000. Slow performance is normal with BC4J Tester? Is there something I can do to improve performance?As you can see, the query is simple (and takes less than a sec