UnloadMovie,removeMoveClip,delete,=undefined

hi
i used loadMovie to load swf file but after unloadit the free
memory doesn't increase also XML objects when using delete or
=undefined
i need to free the unloaded memory to load other files ??????

ciao,
according to FLdocs, and some testing, FL automatically do GC
every 60 secs if required.
you should follow the best practices mentioned in the docs to
keep your app running :)
// chall3ng3r //

Similar Messages

  • Cfpop action="delete"

    We would like to capture certain e-mails and save them to a
    database. We plan on scheduling a CF task to periodically run a
    script that will check an e-mail account. However, we don't want to
    insert a message more than once, so we want to delete it after it's
    inserted in the database.
    I tested the scenario in MX 6 and it worked if I passed it
    the UID value, but not the messagenumber. In MX 7 however, the
    delete does not seem to work with either. Is anyone doing something
    similar in MX 7?
    Thank you!

    There might be some complication in your approach. I think
    Coldfusion creates a cfpop query object only when the
    action is getHeaderOnly or getAll, not when the action is
    delete. To test this hypothesis, run the following
    <cfpop action="delete" name="deleter" messagenumber="1"
    server="mail.mydomain.com" timeout="180" username="myself"
    password="df56s7">
    <cfif isdefined("deleter")>
    deleter defined
    <cfelse>
    deleter undefined
    </cfif>
    Your <cfpop action="delete"> might not be picking up
    values from the GetHeaders query. What happens when you run the
    following code instead
    <cfset i=0>
    <cfoutput query = "GetHeaders">
    <cfset i=i+1>
    <li>Row: #currentRow#: From: #From# -- Subject:
    #Subject# -- UID: #UID#</li>
    <cfpop server = "***" username = "***" password = "***"
    action = "delete" messagenumber="#i#">
    </cfoutput>

  • Trouble sending and deleting email -- getting "undefined" message

    WHy am I getting a message of "undefined" sometimes (not always) when I try to send email or when I try to delete messages.  Sometimes I have to try to delete a message four or five times before it will go away.  What's up with this and can it be fixed?

    I have the same problems, both on my desktop and my laptop.  XP and Vista respectively.  On the desktop, it takes 5-10 seconds for the software to acknowledge that I checked a box to delete an email.  Been going on for a couple of weeks now and it's getting very annoying.

  • Problem in deleting backup job in Grid Control

    Hi,
    The topology and versions are as follows:
    1 windows 2003 server with Oracle Grid Control 10.2.0.4.0.
    1 windows 2003 server with Oracle Databases 10.2.0.3.
    1 windows 2003 server with Oracle Databases 10.2.0.3 - Data Guard setup
    I have tried to stop (and delete) some scheduled fullbackup jobs from Grid Control.
    The job has now status SUSPEND. I have tried to stop and delete the job, but I get the message:
    All executions of the job were stopped successfully. Currently running steps will not be stopped.
    I cannot delete the job and the job is not running.
    I have run this procedure in order to delete the job:
    DECLARE
    jguid RAW;
    BEGIN
    SELECT job_id
    INTO jguid
    FROM mgmt_job
    WHERE job_name = '<name of your job>'
    AND job_owner = '<owner of your job>';
    mgmt_job_engine.stop_all_executions_with_id(jguid,TRUE);
    COMMIT;
    END;
    With no effect. The job is still shown in Grid Control with status SUSPEND.
    I have restarted all servers and all the components in Grid Control, but the jobs will not disappear from Grid Control although they have been deleted.
    I am struggling with this for about 2 days now.
    I have search in Metalink and the internet, but I have not found anything that provides a solution.
    Any help will be very much appreciated.

    hi,
    I have in the past used the following from metalink
    Do you have a metalink account?
    SET verify OFF
    SET linesize 255
    SET pagesize 128
    SET trimout ON
    SET trimspool ON
    SPOOL jobdump.log
    ALTER SESSION SET nls_date_format='MON-DD-YYYY hh:mi:ss pm';
    COLUMN status format a15
    COLUMN job_name FORMAT a64
    COLUMN job_type FORMAT a32
    COLUMN job_owner FORMAT a32
    COLUMN job_status format 99
    COLUMN target_type format a64
    COLUMN frequency_code format a20
    COLUMN interval format 99999999
    VARIABLE JOBID VARCHAR2(64);
    PROMPT *********************** JOB INFO ********************************
    REM Get the job id
    SET serveroutput on
    BEGIN
    SELECT job_id INTO :JOBID
    FROM MGMT_JOB
    WHERE job_name='&&jobName'
    AND job_owner='&&jobOwner'
    AND nested=0;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    BEGIN
    DBMS_OUTPUT.put_line('JOB NOT FOUND, TRYING NAME ONLY');
    SELECT job_id INTO :JOBID
    FROM MGMT_JOB
    WHERE job_name='&&jobName'
    AND nested=0
    AND ROWNUM=1;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    DBMS_OUTPUT.put_line('JOB NOT FOUND');
    END;
    END;
    SELECT job_name, job_owner, job_type, system_job, job_status, target_type
    FROM MGMT_JOB
    WHERE job_id=HEXTORAW(:JOBID);
    PROMPT *********************** JOB SCHEDULE ****************************
    SELECT DECODE(frequency_code,
    1, 'Once',
    2, 'Interval',
    3, 'Daily',
    4, 'Day of Week',
    5, 'Day of Month',
    6, 'Day of Year', frequency_code) "FREQUENCY_CODE",
    start_time, end_time, execution_hours, execution_minutes,
    interval, months, days, timezone_info, timezone_target_index,
    timezone_offset, timezone_region
    FROM MGMT_JOB_SCHEDULE s, MGMT_JOB j
    WHERE s.schedule_id=j.schedule_id
    AND j.job_id=HEXTORAW(:JOBID);
    PROMPT ********************** PARAMETERS ********************************
    SELECT parameter_name,
    decode(parameter_type,
    0, 'Scalar',
    1, 'Vector',
    2, 'Large', parameter_type) "PARAMETER_TYPE",
    scalar_value, vector_value
    FROM MGMT_JOB_PARAMETER
    WHERE job_id=HEXTORAW(:JOBID)
    AND execution_id=HEXTORAW('0000000000000000')
    ORDER BY parameter_name;
    PROMPT ********************** TARGETS ********************************
    SELECT target_name, target_type
    FROM MGMT_JOB_TARGET jt, MGMT_TARGETS t
    WHERE job_id=HEXTORAW(:JOBID)
    AND execution_id=HEXTORAW('0000000000000000')
    AND jt.target_guid=t.target_guid
    ORDER BY target_type, target_name;
    PROMPT ********************** FLAT TARGETS ********************************
    SELECT target_name, target_type
    FROM MGMT_JOB_FLAT_TARGETS jft, MGMT_TARGETS t
    WHERE job_id=HEXTORAW(:JOBID)
    AND jft.target_guid=t.target_guid
    ORDER BY target_type, target_name;
    PROMPT ************************ EXECUTIONS *******************************
    SELECT execution_id,
    DECODE(status,
    1, 'SCHEDULED',
    2, 'RUNNING',
    3, 'FAILED INIT',
    4, 'FAILED',
    5, 'SUCCEEDED',
    6, 'SUSPENDED',
    7, 'AGENT DOWN',
    8, 'STOPPED',
    9, 'SUSPENDED/LOCK',
    10, 'SUSPENDED/EVENT',
    11, 'SUSPENDED/BLACKOUT',
    12, 'STOP PENDING',
    13, 'SUSPEND PENDING',
    14, 'INACTIVE',
    15, 'QUEUED',
    16, 'FAILED/RETRIED',
    17, 'WAITING',
    18, 'SKIPPED', status) "STATUS",
    scheduled_time, start_time, end_time
    FROM MGMT_JOB_EXEC_SUMMARY e
    WHERE job_id=HEXTORAW(:JOBID)
    ORDER BY scheduled_time;
    UNDEFINE jobName
    UNDEFINE jobOwner
    UNDEFINE JOBID
    SPOOL OFFAlan

  • Is there a way to delete the elements on the stage that start with / Stage_

    I'm not sure when it happened, but I noticed that in edge some of my stage elements have dupes below the list of regular elements. When hovered over they say <div> "NAME_OF_DIV" (static) (NAME_OF_DIV is just meaning that it can have many different names there, but they all start with Stage_)
    I've attached a screenshot to show you what I mean
    I've blocked out some of the names since the titles are not for public eyes
    But you can see what I mean, and the kicker is that some of those elements are getting into my code, so if I target one of them (the real one like "tile_explore" with a compositionReady it's bunging up the works saying it's undefined since Stage_title_explore hasn't been set yet I'm guessing?).
    Anyone have any insight as to how I can get rid of those extra ones below, it'd be a life saver (since I'm getting a bunch of text under my main UI that I don't want)
    The Answer!
    Answering my own question in case others come about it. At one point I exported as static HTML on one machine, but then loading the file on another didn't retain that option in the publish settings. Also it would seem that it didn't even finish the HTML (didn't close the <body> and <html> tags) so I added those back in after removing all of the static HTML divs and everything is great again!

    Welcome to the Apple Community.
    You can't remotely delete anything on their device, but if they are logged in, even if they don't know your password, they can continue to receive any new data you add to iCloud. To stop this you should change your password.

  • Why do I get an 800a0d5d error on a delete?

    Hi,
    I am using SQL Server, and my site is defined as ASP Javascript.
    I add and update this table fine, but when I go to delete a record, I get:
    ADODB.Command error '800a0d5d'
    Application uses a value of the wrong type for the  current operation.
    /admin/consumer/condeldet.asp, line 27
    I'm using DW's delete function. What could I be doing wrong? I'm not sure where to look.
    Here is the code with line 27 in bold:
    <%@LANGUAGE="JAVASCRIPT" CODEPAGE="65001"%>
    <!--#include virtual="/Connections/PA.asp" -->
    <%
    // *** Edit Operations: declare variables
    // set the form action variable
    var MM_editAction = Request.ServerVariables("SCRIPT_NAME");
    if (Request.QueryString) {
      MM_editAction += "?" + Server.HTMLEncode(Request.QueryString);
    // boolean to abort record edit
    var MM_abortEdit = false;
    %>
    <%
    // *** Delete Record: construct a sql delete statement and execute it
    if (String(Request("MM_delete")) == "form1" &&
        String(Request("MM_recordId")) != "undefined") {
      if (!MM_abortEdit) {
        // execute the delete
        var MM_editCmd = Server.CreateObject ("ADODB.Command");
        MM_editCmd.ActiveConnection = MM_PA_STRING;
        MM_editCmd.CommandText = "DELETE FROM redleader.Consumer WHERE Consumer_ID = ?"
        MM_editCmd.Prepared = true;
       MM_editCmd.Parameters.Append(MM_editCmd.CreateParameter("param1", 5, 1, -1, Request.Form("MM_recordId"))); // adDouble
        MM_editCmd.Execute();
        MM_editCmd.ActiveConnection.Close();
        // append the query string to the redirect URL
        var MM_editRedirectUrl = "/admin/success.asp";
        if (MM_editRedirectUrl && Request.QueryString && Request.QueryString.Count > 0) {
          MM_editRedirectUrl += ((MM_editRedirectUrl.indexOf('?') == -1) ? "?" : "&") + Request.QueryString;
        Response.Redirect(MM_editRedirectUrl)
    %>
    <%
    // *** Restrict Access To Page: Grant or deny access to this page
    var MM_authorizedUsers="y";
    var MM_authFailedURL="/admin/loginerr.asp";
    var MM_grantAccess=false;
    if (String(Session("MM_Username")) != "undefined") {
      if (false || (String(Session("MM_UserAuthorization"))=="") || (MM_authorizedUsers.indexOf(String(Session("MM_UserAuthorization"))) >=0)) {
        MM_grantAccess = true;
    if (!MM_grantAccess) {
      var MM_qsChar = "?";
      if (MM_authFailedURL.indexOf("?") >= 0) MM_qsChar = "&";
      var MM_referrer = Request.ServerVariables("URL");
      if (String(Request.QueryString()).length > 0) MM_referrer = MM_referrer + "?" + String(Request.QueryString());
      MM_authFailedURL = MM_authFailedURL + MM_qsChar + "accessdenied=" + Server.URLEncode(MM_referrer);
      Response.Redirect(MM_authFailedURL);
    %>
    <%
    var Recordset1__MMColParam = "1";
    if (String(Request.QueryString("Consumer_ID")) != "undefined" &&
        String(Request.QueryString("Consumer_ID")) != "") {
      Recordset1__MMColParam = String(Request.QueryString("Consumer_ID"));
    %>
    <%
    var Recordset1_cmd = Server.CreateObject ("ADODB.Command");
    Recordset1_cmd.ActiveConnection = MM_PA_STRING;
    Recordset1_cmd.CommandText = "SELECT * FROM redleader.Consumer WHERE Consumer_ID = ?";
    Recordset1_cmd.Prepared = true;
    Recordset1_cmd.Parameters.Append(Recordset1_cmd.CreateParameter("param1", 5, 1, -1, Recordset1__MMColParam)); // adDouble
    var Recordset1 = Recordset1_cmd.Execute();
    var Recordset1_numRows = 0;
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html lang="en"><!-- InstanceBegin template="/Templates/main2col.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Consumer Directed Choices</title>
    <!-- InstanceEndEditable -->
    <link href="/main2col.css" rel="stylesheet" type="text/css">
    <link href="/allshared.css" rel="stylesheet" type="text/css">
    <link rel="shortcut icon" href="favicon.ico">
    <!--[if IE]>
    <link rel="stylesheet" type="text/css" href="iehacks.css" />
    <![endif]-->
    <!--[if IE 7]>
    <style type="text/css">
    #primaryContent {
    zoom: 1;
    width: 684px;
        /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    </head>
    <body class="twoColLayout">
    <div id="container">
    <div id="header"><img src="/images/logolong.jpg" alt="logo" width="685" height="150"><a href="#MainContent"><img src="/images/smallpics/trans.gif" alt="Skip Navigation" width="1" height="1" border="0"></a>
    <a href="#submenu"><img src="/images/smallpics/trans.gif" alt="Go to submenu" width="1" height="1" border="0"></a>
    <ul id="navtop">
    <li id="nav_pgm"><a href="/pgms.asp">Programs, Services</a></li>
    <li id="nav_con"><a href="/contactus.asp">Contact us</a></li>
    <li id="nav_emp"><a href="/empopps.asp">Employment</a></li>
    <li id="nav_don"><a href="/donate.asp">Donations</a></li>
    </ul>
    <!-- end #header --></div>
    <ul id="navleft">
    <li id="nav_hom"><a href="/index.asp">Home</a></li>
    <li id="nav_do"><a href="/whatwedo.asp">  Who We Are</a></li>
    <li id="nav_cabout"><a href="/consumers/login.asp">Current Consumers</a></li>
    <li id="nav_pabout"><a href="/pa/about.asp">Current PAs</a></li>
    <li id="nav_cal"><a href="http://www.calendarwiz.com/calendars/calendar.php?crd=cdchoices&" target="_blank">Calendar</a></li>
    <li id="nav_pro"><a href="/profiles/profiles.asp">Profiles</a></li>
    <li id="nav_news"><a href="/news.asp">CDC in the News</a> </li>
    <li id="nav_lnk"><a href="/links.asp">Links</a></li>
    <li id="nav_blank"><a href="/message.asp"> Message from CEO</a></li>
    <!-- InstanceBeginEditable name="OptionalMenuPicture" --> <a name="submenu" id="MainContent2"></a>
    <li class="c2">
    OptionalMenuPicture<!-- InstanceEndEditable -->
      </ul>
      <div id="primaryContent"><a name="MainContent" id="MainContent"></a>
      <!-- InstanceBeginEditable name="primaryContent" -->
      <h1>Delete a Consumer</h1>
      <form ACTION="<%=MM_editAction%>" METHOD="POST" id="form1" name="form1">
        <p><%=(Recordset1.Fields.Item("FirstName").Value)%> <%=(Recordset1.Fields.Item("LastName").Value)%></p>
        <p><strong>Gender:</strong> <%=(Recordset1.Fields.Item("Gender").Value)%></p>
        <p> </p>
        <p><%=(Recordset1.Fields.Item("NearbyCrossStreets").Value)%></p>
        <p><%=(Recordset1.Fields.Item("City").Value)%>, <%=(Recordset1.Fields.Item("State").Value)%>  <%=(Recordset1.Fields.Item("ZipCode").Value)%></p>
        <p> </p>
        <table width="500" border="1" cellpadding="2" cellspacing="0" class="rosebox">
          <tr>
            <td width="69" valign="top" class="textbold"><div align="right">CDC Ext:</div></td>
            <td width="417"><%=(Recordset1.Fields.Item("CDCExtOrDID").Value)%></td>
          </tr>
          <tr>
            <td valign="top" class="textbold"><div align="right"><strong>County:</strong></div></td>
            <td><%=(Recordset1.Fields.Item("AddressCounty").Value)%></td>
          </tr>
        </table>
        <p> </p>
        <p>Be careful! This cannot be undone!</p>
        <p> </p>
        <p>
          <label>
          <input type="submit" name="delbut" id="delbut" value="Delete" />
          </label>
        </p>
        <input type="hidden" name="MM_delete" value="form1">
        <input type="hidden" name="MM_recordId" value="<%= Recordset1.Fields.Item("Consumer_ID").Value %>">
      </form>
      <!-- InstanceEndEditable -->  </div>
    <!-- end #container --></div>
    </body>
    <!-- InstanceEnd --></html>
    <%
    Recordset1.Close();
    %>
    Any direction would be greatly appreciated!!!

    Certainly you would think that and I would too, but I've seen enough reports on here describing this scenario that were eventually fixed by reformating the card to give me pause. Don't claim to understand it, or guarantee that it will work but it's a very quick fix to try.
    Regards
    TD

  • Delete one guide at a time

    Hi
    any idea on how to delete/remove one guide at a time pl. I've gone through the forum which clears all the guides but couldnt find any help on deleting guides one at a time.
    Any possible solution

    Yes, with older versions you are stuck with using Action Manger to work with guides. And as far as I can tell you can't remove a single guide with AM code.
    You can remove all guides and you can create guides. I also have code that will let you get info about the current guides in a document. With that you could get the info about the guides in a document, remove all the guides, then add back the ones you want to keep. Not pretty but it should work. Here is the code.
    To get guide info:
    #target photoshop
    app.bringToFront();
    /* the info about guides can be found in the photoshop tag hex 35 42 49 4D 04 08
       the length of the tag is found at offset 11. that value is the length to the next tag
       the number of guides can be found at offset 27. From that point the data repeats
       for each guide. 4 bytes for the location. That value / 32 = pixels
       and one byte for type 0 = vert and 1 = horz
       Note: this info is just a best guess from looking at the data
    // Function: getGuideInfo
    // Description: Saves the document as a temp jpg file
    //                        and extracts the info about the guides
    //                        in document if any
    // Usage: var guides = getGuideInfo( activeDocument );
    // Input: Document
    // Return: Object: TotalCount property  = number of guides
    //                  HorizontalCount property = number of horizontal guides
    //                  VerticalCount property = number of vertical guides
    //                  Horizontal = horizontal guides
    //                  Vertical property = vertical guides
    // Source: Modified from http://ps-scripts.com/bb/viewtopic.php?t=3283
    function getGuideInfo( doc ) {
       saveOptions = new JPEGSaveOptions();
       // we don't care about image quality in the temp file
       // we do want the smallest file size
       saveOptions.quality = 0;// we don't care about image quality in the temp file
       var tempFile = new File( Folder.temp + '/' +'guideTemp.jpg' );
       // Dupe the doc, make it savable as JPEG, save it, then close the file
       doc = doc.duplicate();
       if( doc.mode == DocumentMode.BITMAP ) doc.changeMode(ChangeMode.GRAYSCALE);
       doc.bitsPerChannel = BitsPerChannelType.EIGHT;
       doc.changeMode(ChangeMode.RGB);
       doc.saveAs(tempFile, saveOptions, true);
       doc.close(SaveOptions.DONOTSAVECHANGES);
      tempFile.encoding = 'BINARY';
      tempFile.open('r');
      var str = tempFile.read();
      tempFile.close();
      tempFile.remove();
       var guideTag = '8BIM\x04\x08';
       var tagPos = str.search(guideTag);
       var guides = new Object;
       guides.toString = function(){ return 'GuideInfo'; }
       var horGuides = new Array;
       var vertGuides = new Array;
       if( tagPos != -1 ) {
          var tagLength = 12 + str.charCodeAt( tagPos + 11 );
          var guideStr = str.substring( tagPos, tagPos+tagLength );
          guides.count = str.charCodeAt( tagPos + 27 );
          var pointer = tagPos + 28;
          for( var i =0; i < guides.count; i++ ){
           //  var n = ((str[pointer] << 3) + (str[pointer+1] << 2) + (str[pointer+2] << 1) + str[pointer+3])/32;
          //var n = Number( '0x'+getHexString( str, pointer )+getHexString( str, pointer+1 )+getHexString( str, pointer+2 )+getHexString( str, pointer+3 ))/32;
                 var n = ((str.charCodeAt(pointer)<< 32) + (str.charCodeAt(pointer + 1)<< 16) +
                        (str.charCodeAt(pointer + 2) << 8) + str.charCodeAt(pointer+3))/32;
    if  (str.charCodeAt( pointer + 4 ) == 0) {
              //vertical
              vertGuides = insertValueInOrder(vertGuides, n);
           } else {
              //horizontal
              horGuides = insertValueInOrder(horGuides, n);
            // guides[ i ] =  [ (str.charCodeAt( pointer + 4 ) ? 'horz':'vert'), n ];    
             pointer = pointer + 5;
         guides.HorizontalCount =horGuides.length;
         guides.VerticalCount =vertGuides.length;
         guides.Horizontal = horGuides;
         guides.Vertical = vertGuides;
       }else{
          guides.TotalCount = 0;
         guides.HorizontalCount =0;
         guides.VerticalCount =0;
       function insertValueInOrder(a , n) {
          var b = new Array;
          var i = 0;
          if (a[0] == undefined)
             b[0] = n;
          else {
             while (a[i] < n && i < a.length) {
                   b[i] = a[i];
                   i++;
             b[i] = n;
             while (i < a.length) {
                b[i+1] = a[i];     
                i++;
          return b;
       return guides;
      function fromCharCode(input) {
          output = eval("String.fromCharCode(" + input + ")");
         return output;
    // demo
    var masterDocument = app.activeDocument;
    var guideInfo = getGuideInfo( masterDocument );
    var s = "Vertical Guides: " + guideInfo.Vertical + "\nHorizontal Guides: " + guideInfo.Horizontal;
    alert(s);
    To remove all guides:
    function clearAllGuides() {
         var desc = new ActionDescriptor();
            var ref = new ActionReference();
            ref.putEnumerated( charIDToTypeID( "Gd  " ), charIDToTypeID( "Ordn" ), charIDToTypeID( "Al  " ) );
         desc.putReference( charIDToTypeID( "null" ), ref );
         executeAction( charIDToTypeID( "Dlt " ), desc, DialogModes.NO );
    To add a guide:
    function guideLine(position, type,unit) {// from Paul MR
       //units '#Pxl' pixel '#Rlt' =Relative  '#Prc' = percent
       // types: 'Vrtc' & 'Hrzn'
        var desc = new ActionDescriptor();
            var desc2 = new ActionDescriptor();
            desc2.putUnitDouble( charIDToTypeID('Pstn'), charIDToTypeID(unit), position);
            desc2.putEnumerated( charIDToTypeID('Ornt'), charIDToTypeID('Ornt'), charIDToTypeID(type) );
        desc.putObject( charIDToTypeID('Nw  '), charIDToTypeID('Gd  '), desc2 );
        executeAction( charIDToTypeID('Mk  '), desc, DialogModes.NO );

  • Deleting a Record in Database - Error Message

    Hello.
    I have made a database, where i can view, edit, add new
    records and its all working fine. I am trying to also have a delete
    feature on it. I have created the link for it to delete, and added
    the commands but im getting an error message when i hit delete
    saying :
    "The web site you are accessing has experienced an unexpected
    error.
    Please contact the website administrator.
    The following information is meant for the website developer
    for debugging purposes.
    Error Occurred While Processing Request
    Element DEPART is undefined in QARTIST.
    i have looked through my coldfusion pages over and over but i
    cant see anything which is wrong and i cant figure out what line
    there might be a mistake on! could someone inform me what this
    error message is saying to me please?
    Thanks very very very very much in advance

    Hello.
    Thanks very much for the response!
    I have searched more on the missing variable but still cant
    work out whats wrong.
    Not sure why its saying 'depart' specfically as that is the
    3rd row in the table.
    Not too sure on where to go frm here. Could i ask for a bit
    more specific help?
    I have 3 an index page which displays the 7 rows + a link to
    edit any of the returned data :
    <td>#qArtists.CurrentRow#</td>
    <td>#qArtists.FirstName#</td>
    <td>#qArtists.LastName#</td>
    <td>#qArtists.Depart#</td>
    <td>#qArtists.Hotel#</td>
    <td>#qArtists.Board#</td>
    <td>#qArtists.Price#</td>
    <td><a
    href="updateartist.cfm?artistid=#qArtists.ArtistID#">Edit</a></td>
    Then i have a :
    artist.cfc which i added the delete code to :
    <cffunction name="deleteArtist" access="public"
    returntype="void">
    <cfargument name="artistid" type="numeric"
    required="yes">
    <cfquery datasource="#application.datasource#">
    DELETE FROM artists
    WHERE ArtistID = #arguments.artistid#
    </cfquery>
    </cffunction>
    then i have a delete.cfm file
    <cfif IsDefined("form.artistid")>
    <cfinvoke
    component="cf8essentials.cfc.Artist"
    method="deleteArtist">
    <cfinvokeargument name="artistid"
    value="#form.artistid#"/>
    </cfinvoke>
    <cflocation url="/cf8essentials/artists/index.cfm"
    addtoken="no">
    </cfif>
    <cfform>
    <cfinput type="submit" name="submit" value="Delete">
    <cfinput type="button" name="cancel" value="Cancel"
    onclick="history.back()">
    <cfinput type="hidden" name="artistid"
    value="#url.artistid#">
    </cfform>
    really not sure what part im doing wrong as i have fllowed
    two different tutorials which do it different and both of theirs
    work but im not sure what ive done wrong. Could you advise further
    has ive been pulling my hair out over this for the past couple of
    days now! thanks very much in advance again!

  • Database Studio 7.9.08.09 -  Could not access to user management; Deleting old settings and reinstallation did not bring a change -- database studio deinstallation cannot be performed anymore

    Hi Community,
    for a few months I have been struggling with a  SAP Max DB database Studio issue and finally, I had to give up the idea of being able to fix this on my own. I am desperately seeking for help and I hope that you may be able to give me a hint, advice or even a solution.
    This is what happened:
    I used to run Windows 7 on 32bit. I also had Database Studio installed - which was running fine then.
    After a harware upgrade, I am running now Windows 7 on a 64 bit System. All my files from my local disk (C:\) have been restored and copied onto my new system.
    I reinstalled Database Studio Version 7.9.08.09 onto my new System.  But on the first try to start the program I received the error that said "Could not Access to user Management.See Window -> Show View-> Event Log Viewer for more Details."
    However the Event Log Viewer was empty.
    After searching the web for a solution, I followed the advice given in this community and deinstalled Database Studio and deleted the C.\Users\MyAccount\sdb folder manually.
    I reinstalled Database Studio and started it as Administrator.
    However, the error is still appearing.
    And, what makes it even worse is : now I am not able to uninstall Database Studio anymore.
    When I run SAP MaxDB Installation Manager and select the instance of database Studio to be uninstallled I am receiving the error:
    "ERR: Unhandled Exception: Can't call method: "GenPackageList" on an undefined value at SDB/Install/Gui/Dialogs/SelectInstance.pm line 328"
    Any advice is highly appreciated.
    Thanks,
    Agnieszka

    Hello Yashwanth,
    thank you for your quick Response.
    Yes, I downloaded and installed the 64 bit Version of dbstudio.
    I downloaded and ran the following .exe file: maxdb-studio-win-64bit-x86_64-7_9_08_09.exe
    I am running the following Java-Version:
    Java Plug-in 1.6.0_45
    Using JRE version 1.6.0_45-b06 Java HotSpot(TM) Client VM
    I myself am not a SAP customer. However, the Company I am working for is a SAP customer.
    Can you explain in Detail, how to create a ticket with SAP?
    Thanks,
    Agnieszka

  • Cannot Delete or Move Emails from Printers - Error from emails with no body?

    Exchange 2010 SP2 (one mailserver for domain)
    Outlook 2010
    Outlook 2013
    OWA
    EAS
    We have several Konica-Minolta MFPs on our network. Users regularly use the e-mail function to receive PDF scans.  These e-mails cannot be deleted in Outlook, OWA, or EAS.
    I have tested this on multiple users, including myself.  The e-mails and attachments can be any size, starting at 50kb.  Other e-mails with PDF attachments behave normally--just not these. 
    In Outlook 2010 I receive "The item cannot be deleted. It was either moved or already deleted, or access was denied."  I have verified with a MAPI viewer that these e-mails are sitting in the user's Inbox. 
    OWA gives the same error message as Outlook 2010.
    In Outlook 2013 I receive a similar error, and an Event Log notice:
    Event 300
    Microsoft Outlook Unknown Error
    P1: 300032
    P2: 15.0.4420.1017
    P3: ajr8vP4: 0x80040119
    Source: Microsoft Office 15 Alerts
    These e-mails cannot be deleted. They cannot be moved to another folder. 
    They can be Shift+Deleted.  They can be deleted via the MAPI viewer.  They can be opened, edited (Move > Actions > Edit Message) and if even one character is added to the body, after being saved they can be deleted as normal.
    I have read many posts on TechNet and elsewhere:
    A repair on the mailboxes does nothing. There are no PSTs.  This happens to even an empty mailbox, so size is not an issue. There are no host headers set in the bindings.  The IIS SSL Settings are ignoring Client Certificates. I have tested in Outlook
    Safe Mode and without plugins. It is not Antivirus.
    I have not reset the Virtual Directory, nor have I tested with a new Database.
    I did find a solution: in all of the Konica-Minolta configurations, there was nothing set for a message body.  I think (but I am not sure) these e-mails were being sent without a body.
    After I added text for the body, the emails behaved normally.
    Is this an Exchange bug?  Is there something I can do to narrow the issue down, or adjust an Exchange setting so it doesn't happen again?
    Thanks all!

    Thank you for your reply, Fiona!
    As I stated, I have examined the messages with a MAPI viewer. I did not notice any attributes that seemed out of order, except for the fact that the problem e-mails seem to lack a body:
    Tag
    Property Name
    Konica: CAN'T Delete
    Konica: CAN Delete
    Normal Message
    0x1000000A
    PR_BODY 
    Scan from Konica-BW
    Err:Not Enough Memory
    0x1013000A
    PR_BODY_HTML 
    Err:Not Enough Memory
    0x10160003
    PR_NATIVE_BODY_INFO  
    0 (Undefined)
    1 (Plaintext)
    3 (HTML)
    0x1009000A
    PR_RTF_COMPRESSED 
    Err:Not Enough Memory
    Err:Not Enough Memory
    0x0E1F000B
    PR_RTF_IN_SYNC  
    TRUE
    TRUE
    FALSE
    I've compared the three e-mails. The "Konica: CAN Delete" is one from after I changed the Konica settings to include a message body (which was "Scan from Konica-BW").
    My next planned steps are to speak to Konica, roll back RU6 and test, or just wait to see if MS releases a patch for the RU6 issue and see if it resolves my issue as well. 
    If you have any further suggestions of things to look for, I am all ears. :)
    Thanks again!

  • Undefined is null or not an object

    Hi,
    While using surface prompt in 11.1.1.7 in ie8 , it is throwing error "Undefined is null or not an object" and it is in "Opening" state.
    I have tried deleting cache .
    Please could anybody help.
    Thanks and Regards

    Hi,
    While using surface prompt in 11.1.1.7 in ie8 , it is throwing error "Undefined is null or not an object" and it is in "Opening" state.
    I have tried deleting cache .
    Please could anybody help.
    Thanks and Regards

  • How do I delete the on my Mac calendar as it is competing with the iCloud calendar and giving me an error message

    I am getting an error ménage in my iCloud calendar that says I can't add an event it must revert to the server . How can I delete the on my Mac calendar because I think it is competing with the iCloud calendar ?

    Do you have the Yahoo toolbar? Other users have reported a similar JavaScript error when loading sites with that toolbar installed. If you have it, you could disable it or perhaps there is an updated version available.
    If you don't have that toolbar, it could be one of your other add-ons. Check out cor-el's answer in this thread: [http://support.mozilla.com/en-US/questions/795003 When starting Firefox 4 I am presented with a JavaScript Application message "TypeError ksClass is undefined" | Firefox Support Forum | Firefox Help].

  • Can a script manually insert a delete (or backspace) into a text area?

    I'm new to action script, so this may have a simple answer, sorry if that's the case.
    I have a little movie created with a simple purpose of trying to mimic a system like cell phones have for character input.
    There are two text areas, one hidden off the screen that accepts the input from the user; a second text area in on screen and displays what the user had entered after some basic processing on the input.
    The hidden text area is pretty basic with listener that is responsible for grabbing the input keys and then mangling them to be inserted into the displayed text area based on the cell phone text entry multi-tap rules. Example user press 2-2-2  and the hidden input accepts 222 and then appends 'C' to the display text area. That's working great, but I have a problem if the user wants to delete from the display text area. I can't find a way to insert a delete or backspace key into the display text area. I've tried using StringFromCharCode (8) // Key.BACKSPACE, but that doesn't work. That just displays one of those undefined glyphs. I figure that things like clear, and delete are handled somewhere higher in the input chain and that's where I'm having a problem.
    I've looked, but I can't find a way to delete a single character from the text area. I was thinking if I could find the cursor location that I could just use some delete character method to get the job done, but I couldn't find how to do that.
    Any ideas on how to pull off manual delete function in a text area?

    Ned, I do really want to manually (by method of code) trigger a delete in a text area. The delete (or backspace) that I want added to the text area isn't directly entered by the user, it's the result of several key presses by the user. That's why I called it "manual" because it's done by the code, not by the user's direct input.
    Think about how text entry works on most phones... if you want to enter a letter you have to cycle through all the letters on a single key until you get to the character desired. As I stated before, if you want a 'c' you need to press 2 button 3 times. This is basically what I'm trying to do, but I want to add the ability to delete a character too if the correct sequence in entered, for example a sequence of ### would equal a backspace.
    Rothrock, I think you were thinking the same thing that a single key is used to do a backspace.
    I was thinking that I could possibly insert key event into the event queue for the text area to process, but I wasn't sure about that.
    Sorry, if this is confusing, I know it's not a straight forward design. I need onscreen and offscreen text areas with the onscreen one acting as a slave of the offscreen one.
    The way the code currently works is hidden text area had a listner that responds to changes, and that handler processes the key entered and deletes that character from the hidden text area. After the full sequence of characters (say 2 button has been pressed 3 times) the handler then sends the resulting character into the display text area. This part of the code works great. I can add any character including some specials like tab and newline. However if I want the text area to delete a character I don't have a way to do that. That's why I tried to insert the backspace key (0x08 or ^H, for other oldschoolers), but using that as a char code or string from char code doesn't work.
    I had also tried to create to set the focus to the display text area then create and dispatch a backspace keydown and keyup events to the visible text area and then return the focus back to the hidden textarea, but... no luck.

  • Rest service DELETE doesn't work with OSB

    Hi,
    I am using OSB 11g, I am using OSB proxy to monitor external rest services call. I've created a business service that point to the external rest service and I created a proxy that is routed to my business service. I modified the flow by adding a piplinepairNode -->requestPipline-->stage -->created two assign and created two variable one for the id and another one for the productID. Then I modified the business service flow as follow:
    created two insert, one to define the method, which is DELETE and another one to set the relative-URI to the productID variable and I set the response to replace the . in the body with $body, following this post: http://blogs.oracle.com/jeffdavies/entry/restful_services_with_oracle_s_1
    When I test it using osb console Execute, I can see my productID variable is set to $inbound and it is passed all the way to the business service, where it should call the external rest service with the relative-URI, which is set to my productID. it doesn't work, I get 404 error, which is undefined, I believe the reason is because business service is trying to call the external rest service with
    http://localhost:{port}/deleteProduct and the rest service expect this URL
    http://localhost:{port}/deleteProduct/2 or {productID}
    can you please help and tell me what I'm doing wrong?
    appreciate any kind of help
    Thanks
    M.

    Please refer -
    http://blogs.oracle.com/jeffdavies/entry/enhanced_rest_support_in_oracl
    Regards,
    Anuj

  • Unable to delete a custom report in Fabric Manager

    Hi there,
    If I create a Custom Report in Fabric Manager (3.2(3a)) I'm unable to Delete it aftwards :-(
    Get an "Error on Page.":
    Line: 388
    Char: 1
    Error: 'Delete560nClick' is undefined
    Code: 0
    URL: http:/xxxxxxx/s614.do
    Any ideas ? IE version I'm running is : 6.0.3790.3959
    Thanks!
    Mark

    I haven't heard of this issue before. Have you tried running FM on another host or upgrading FM to see if it goes away?
    Thank you.

Maybe you are looking for

  • How to do closing tag: tag /tag instead of tag/ in jdev xslt mapper

    Hi! We have commercial systems, which cannot work with short closing tags for empty nodes. Xslt mapper for oracle mediator optimize everytime to short closing tag, when node content is empty. Is there a property or technique to achieve long closing t

  • I Tunes for Windows

    Hi All why can I not download Itunes for windows the I click on down load now. A popup appears asking me to save the file " itune64setup.exe" I click save then nothing. Bob

  • HELP: Maximum number of mailboxes defined.

    Unit: E72 Issue: Unable to Create or setup another mailbox Error: Maximum number of mailboxes defined. Delete an existing mailbox and try again Hi I was trying to setup up an account under mail for exchange however I'm getting this error. Currently I

  • MSVCR80.dll error opening new version iTunes

    I still am unable to open iTunes after the new update.  I still get the MSVCR80.dll error message.  I have uninstalled the 4 programs in the order suggested and reinstalled iTunes as Administrator.  Still no luck.  Same error.  What now?

  • Firefox 4 android quits when i press the prosperty button

    everytime i touch the property button, firrfox quit