FRM-40815: Form Error, using CUSTOM.pll

Hello,
I am trying to customize WIP Lot Transactions Oracle Standard Form using CUSTOM.pll.
Upon navigating to one of the 3 blocks in the form(RESULTING_LOT), I am getting following error message:
"FRM-40815: Variable GLOBAL.CLRREC_NOVALIDATE does not exist"
This global variable is not used in CUSTOM.pll at all. But is initialized and used in the standard form only.
When custom code is turned off, there is no error message.
Please advise.
Thanks,
Krishna.

Hi,
Thanks for the response.
I have created a custom profile and attached it users and Profile value has the organization names.I want the User A with Org1 value in the profile to see all the GL Batches which is created by any other user who belongs to only Org1. Say another user User B with Org2 as the profile value should not see any GL batches created by any other user in the GL Journal Form belonging to other Org's.I'm able to restrict the batches using the below query using the personalizations in the Record Group for the Batch Name.But if the user doesnt give any search criteria and then selects Find then the main form displays all the batches. Hence I want to overide the Data Block where to display accordingly.
select a.name from gl_je_batches a
where 1=1
and a.created_by in (select b.user_id from
fnd_user b,
fnd_profile_option_values c,
fnd_profile_options d
where c.profile_option_id =d.profile_option_id
AND c.level_value = b.user_id
AND profile_option_name='KAP_USER_ORGANIZATION'
AND c.profile_option_value =(select profile_option_value
from fnd_profile_option_values e
where e.level_value =fnd_profile.value('USER_ID')
and profile_option_id=d.profile_option_id)
Thanks,
Ashwini.

Similar Messages

  • Using Custom.pll on AP Invoices form goes into error in 11.5.10.1

    Hi All,
    I am trying to do some customization on APXINWKB (Invoices form) using CUSTOM.pll. But whenever i am trying to open the form after adding the code in CUSTOM.pll i am getting the following error:
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.GL_EURO_USER_RATE_API", line 173
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.GL_CURRENCY_API", line 327
    ORA-01403: no data found
    FRM-40735: WHEN-NEW-ITEM-INSTANCE trigger raised unhandled exception ORA-06502.
    I am trying to display a a small message in the new form instance of the above form thru CUSTOM.pll, nothing more than that!!. If i remove the coding, the form is working perfectly. My oracle apps version is 11.5.10.1
    Can any body help me??
    Raj

    Hi Helios,
    Thank you for the update, actually the problem is solved.
    The issue is : Whenever i am trying to show a message in that form using either form personalization or CUSTOM.pll, it is giving the error, if i do any thing else like 'changing the default where clause etc', it is not giving any error. The problem is only with message. Actually my requirement is changing the where clause, which is happening with out any problem. I dropped the idea of showing the message any way.
    This problem is strange. Any ways, i am raising an SR with Oracle.
    Raj

  • Setting Default values for field using custom.pll

    Hi All,
    I have an rquirement to set the default values on Meterial Tranasction screen for some condition
    I tried it in both ways via Form Personalization and using custom.pll
    i m using the following code in custom.pll
    form_name      varchar2(30):= name_in('system.current_form');
    block_name varchar2(30):= name_in('system.cursor_block');
    trx_type           varchar2(30);
    subinv                varchar2(30);
    begin
    if form_name='WIPTXMAT' and block_name ='MTL_TRX_LINE' then
    if event_name ='WHEN-VALIDATE-RECORD' then
         trx_type:=name_in('WIPTXMAT.TRANSACTION_TYPE');
    if trx_type ='WIP Return' THEN
         copy(10,'MTL_TRX_LINE.TRANSACTION_QUANTITY');
              copy(10,'MTL_TRX_LINE.NUMBER_OF_LOTS_ENTERED');
              sinv:=trim(name_in('MTL_TRX_LINE.SUBINVENTORY_CODE'));
              if sinv is null then
                   copy(subinv,'MTL_TRX_LINE.SUBINVENTORY_CODE');
                   copy(fr_locator,'MTL_TRX_LINE.LOCATOR');
                   FND_MESSAGE.SET_STRING(sinv);
                   FND_MESSAGE.SHOW;
              end if;
         end if;
    end if;
    end if;
    end event;
    Problem is that default values are getting set but not for all rows . if there are 4 records then values are set for only first 2 rows and if there are 2 rows then defaults are set for 1st row only.
    Same behaviour happens when i do it via form personalization
    i couldn't understand the behaviour of WHILE-VALIDATE-RECORD event..
    Please provide some suggestion on it. its really urgent.
    Thanks in Advance
    Renu

    Works Now...

  • How to add New Menu Bar using Custom.pll

    Hi All,
    I have developed a form based on the Oracle Apps form.For standard form i have to add one more menu bar in tools menu using custom.pll,i'm using 11.5.8 version.
    So can any one help me in thi regards as i'm new to this custom.pll,How can we add that New menu bar item and how can we open the custom.pll
    where we have to write the code and all the stuff.Which we have to use like wise.
    If any one is having the code on the regarding u can please pass me.
    Help me in this as it is urget to the client.
    Regards
    Siva

    Hi Donny thanks for ur reply,
    As i was new to the Custom.pll,i have opened the custom.pll throught Form Builder.I have found the packages of the Custom.pll,I have to add new Special Menu to it.If u have code can u please give me simple example.
    If I press that Menu I have to open New Form that i have Customized.And also to get values into that form.
    Can u please help me in this give me simple Example.In Which trigger i have to write the code and all the stuff....
    Bit urget
    If any one is having coding can pls send me to my mail id :[email protected]
    Regards
    Siva

  • Forms Personalization or custom.pll

    I need to make the 'One Time' check box default to yes for the supplier window when I login through a custom responsibility One Time Supplier !
    either by forms personalization or custom.pll
    Can any one advise me ?

    Ok.
    I’m on EBS 11.5.10.2 R3
    I’m not sure if it will work for a different version
    1.Open the Suppliers and the Forms Personalization windows.
    2. Seq=1, Description: Activate One_Time flag
    3.Level = Function
    Condition:
    Trigger Event = WHEN-NEW-RECORD-INSTANCE
    Trigger Object = VNDR
    Condition = :SYSTEM.RECORD_STATUS = 'NEW'
    Actions
    Seq=1, Type = Property
    Description = One Time
    Object Type = Item
    Target Object = VNDR.ONE_TIME_FLAG_MIR
    Property Name = VALUE
    Value= Y
    4.In the Context area enter the responsibility you want to be affected by this personalization.
    5.Save your work and close all windows. Using the responsibility on 4, open the suppliers window again, go to the Classification tab and see if it is checked.
    Hope this helps
    Octavio

  • Trigger events are notvalidated the lov  form personalization or custom.pll

    Hi all,
    The trigger events are not validated the LOV in forms personalization or custom.pll
    any one help me
    Regards,
    M.Soundrapandian
    Edited by: user588510 on Dec 15, 2008 9:27 PM

    i have checked with the new item instance and now i have given
    In the message text when i have given this query it is displaying me with blank message box when there are no records which i dont want.and also saving it when i click ok .where should i modify my query so it displays message only when there are more than 3 records but should not save
    trigger event : when new item instance
    trigger object :repairs.lot_number
    condition : :SR.ACCOUNT_NUMBER IS NOT NULL
    AND :REPAIRS.SERIAL_NUMBER IS NOT NULL
    Message text :
    =SELECT 'There are a total of '||COUNT (*)||' Previously Repaired Records' "A" FROM CSD_REPAIRS CR, CS_INCIDENTS_ALL_B CS, CSD_PRODUCT_TRANSACTIONS CP
    WHERE (
    SELECT COUNT(*)
    FROM CSD_REPAIRS CR, CS_INCIDENTS_ALL_B CS, CSD_PRODUCT_TRANSACTIONS CP
    WHERE CR.REPAIR_LINE_ID = CP.REPAIR_LINE_ID
    AND CR.INCIDENT_ID = CS.INCIDENT_ID
    AND CS.ACCOUNT_ID = :SR.ACCOUNT_NUMBER
    AND CP.prod_txn_status = 'RECEIVED'
    AND CR.STATUS = 'Closed'
    AND CP.SOURCE_SERIAL_NUMBER = :REPAIRS.SERIAL_NUMBER)>=3
    Edited by: user10755387 on Aug 5, 2009 11:31 PM

  • Error FRM-30312 while compiling a custom pll library on forms 11g weblogic

    hi,
    this is my case:
    Im trying to upgrade a forms 10g application to 11g, using FORMS 11g v11.1.1.3 and WEBLOGIC server v10.3.3.
    Forms files compiled correctly, also webutil.pll was correctly compiled.
    but if I try to compile my custom pll I can see the error...
    when I run application, this erros msg appears:
    FRM-40735: ON-ERROR trig raised unhandled exception ORA-06508
    I have this script to compile .pll files (libraries):
    +#SCRIPT TO COMPILE LIBRARIES+
    export ORACLE_INSTANCE=/opt/oracle/Middleware/asinst_1
    export ORACLE_HOME=/opt/oracle/Middleware/as_1
    export ORACLE_PATH=/opt/legadmi/pll:/opt/legadmi/formas
    export FORMS_PATH=/opt/legadmi/pll:/opt/legadmi/formas
    export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1
    export FORMS_DEFAULTFONT="Lucida.9"
    for i in `ls *.pll`
    do
    echo Compiling: $i ....
    file=$i
    +$ORACLE_INSTANCE/bin/frmcmp.sh Module=$i Userid=user/pwd@db Module_Type=LIBRARY Batch=YES+
    done
    But this error is shown:
    Compilation errors on RP2RRO:
    PL/SQL ERROR 201 at line 106, column 8
    identifier 'RUN_PRODUCT' must be declared
    PL/SQL ERROR 0 at line 106, column 8
    Statement ignored
    PL/SQL ERROR 201 at line 123, column 8
    identifier 'RUN_PRODUCT' must be declared
    PL/SQL ERROR 0 at line 123, column 8
    Statement ignored
    PL/SQL ERROR 201 at line 153, column 8
    identifier 'RUN_PRODUCT' must be declared
    PL/SQL ERROR 0 at line 153, column 8
    Statement ignored
    PL/SQL ERROR 201 at line 169, column 8
    identifier 'RUN_PRODUCT' must be declared
    PL/SQL ERROR 0 at line 169, column 8
    Statement ignored
    Failed to generate library.
    FRM-30312: Failed to compile the library.
    I tried finding the string on the source code and delete or replace, but the only strings remainding are for example "RP2RRO_RUN_PRODUCT()", It looks like compiler finds the string within the entire word.
    I need help.

    InoL, Thank you very much.
    I know rp2rro.pll was there, and I compiled it successfully, and place it to the correct folder.
    but I did not know that my custom pll had the rp2rro as a program unit.
    I solve this problem replacing the code inside my custom library with the rp2rro.pll code that comes with forms 11g
    THANKS again.

  • Add additional to LOV using CUSTOM.pll

    Form: CSIMEDIT
    Block: CSI_T_PARTY_ACCOUNTS
    Field: BILL_TO_ADDRESS
    The LOV ACCOUNT_BILL_TO from the field BILL_TO_ADDRESS only has 2 columns but I need to add 2 more columns. How can I do it in Custom.pll?
    The first column is site_use_id, the second column is party_address. Currently, I concatenated the third column 'status' with party_address, the LOV show both information. However, after I picked the address and saved it, I got an error message when I click on the LOV button again due to the party_address query only contains party_address and it is different from the LOV list which is containing the part_address and status. It failed the validation.
    I also tried to use another LOV 'SERIAL_NUM' that has 5 columns. Then set property:
    lov_id := FIND_LOV('SERIAL_NUM');
    rg_id := FIND_GROUP(rg_name);
    SET_LOV_PROPERTY(lov_id, group_name, rg_name);
    -- set Title --
    Set_Lov_Property(lov_id, TITLE, 'Bill To Address' ) ;
    -- set column properties --
    set_lov_column_property(lov_id,2,TITLE,'Bill To');
    set_lov_column_property(lov_id,2,WIDTH,25);
    set_lov_column_property(lov_id,3,TITLE,'Status');
    set_lov_column_property(lov_id,3,WIDTH,5);
    -- hide other columns --
    set_lov_column_property(lov_id,1,WIDTH,0);
    set_lov_column_property(lov_id,4,WIDTH,0);
    set_lov_column_property(lov_id,5,WIDTH,0);
    But I got error message: FRM-41826: Cannot replace group;columns don't match LOV.
    Please help!
    Thanks.

    Hi Donny thanks for ur reply,
    As i was new to the Custom.pll,i have opened the custom.pll throught Form Builder.I have found the packages of the Custom.pll,I have to add new Special Menu to it.If u have code can u please give me simple example.
    If I press that Menu I have to open New Form that i have Customized.And also to get values into that form.
    Can u please help me in this give me simple Example.In Which trigger i have to write the code and all the stuff....
    Bit urget
    If any one is having coding can pls send me to my mail id :[email protected]
    Regards
    Siva

  • Messaging using CUSTOM.pll

    Hello,
    I have registered a message named 'HAC_ASN_PO_ALERT' with the message type 'Note'. I have generated the message and am using the CUSTOM.pll to show the message when a specific event occurs. I am using the code below to call the message.
    FND_MESSAGE.SET_NAME('HAC','HAC_ASN_PO_ALERT');
    FND_MESSAGE.SET_TOKEN('ASN_STRING',x_asn_string);
    FND_MESSAGE.ERROR;
    This works just fine, the message displays when I want it to, but it shows with the error bell as an error message. I wanted to display the message as a note with the note icon. I have looked at the FND_MESSAGE package and there is not a procedure called NOTE. I tried SHOW, but I got an error. Can anyone please help me to get this message to display correctly?
    Thank you,
    Mike

    I am facing the same issues in R12.. Any solution for this.
    Thanks in Advance.
    Chetan

  • FRM-10142 Forms error need help!

    Hi -- I am getting an error while trying to run a form in Oracle Forms Builder. The error is "FRM-10142 The HTTP listner is not running on (computer Name) at port 8888. Please start the listener or check your runtime preferences."
    My tnsnames file has a port set at 1521, so I don't know why the listener is checking at port 8888. I am running a Windows Xp Professional box and am using Oracle 9i. Can anyone help?
    This is what the line in my tnsnames file looks like. My database SID is oraclass and I am running it in dedicated mode.
    ORACLASS=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT=1521)))(CONNECT_DATA=(SID=ORACLASS)))

    Are you running the form directly from forms 9i/10g designer? The URL used is pointing at your own machine and expects the listener to be there. Start the OC4J instance from the same menu as the forms designer.

  • Displaying booking form errors on custom redirect web page

    I have an event/booking with a registration web form that redirects to a custom web page (not the system page for bookings). If a customer signs up on the form using an email address of someone already registered for the event, their booking is not recorded, but I can't find a way to present the error on the web page that they are redirected to upon submitting.
    The workflow notification includes the message, "ERROR: Booking could not be made as this email address is already registered for this booking."
    There is a record of the failed attempt on the customer record with the email address that was used, but I need a way to tell the customer that their booking was uncessessful due to the email address used. Placing {module_error} on the web page doesn't seem to do the trick.
    Any help is very appreciated.
    Jake

    I suspected that might be the case. Thank you for confirming. Any idea if the URL parameters applied to the redirected page indicate that there were errors? That would be awesome!
    Jake

  • FRM-93652 Forms Error

    I have a form of 11g developed to display pics in cycle like video I am using timer to display pics one after one in 6i it is working fine no problems but in 11g and with some pics it is giving the error FRM-93652 , any help please.
    http://www.orafaq.com/forum/?t=msg&th=180195&170322/
    waelamar
    Edited by: wael amar on Apr 6, 2012 11:37 PM

    Thanks Hamid for your reply, it is not need to be arabian the problem actually with some pics when i display as video with timer firing when it comes the form crashed and giving error frm-93652 and I can't handle the size or resolution with some pics because it is not a little it's millions of pics not only some, is there any exception handling reading image or handling this frm-93652
    I got more details froms app diagnostic:
    oracle.forms.servlet.RunformProcess] [APP: formsapp#11.1.1] [SRC_METHOD: fromFrmwebToODL] Java client
    [2012-04-07T11:02:18.431+03:00] [WLS_FORMS] [ERROR] [FRM-93657] [oracle.forms.servlet] [tid: 16] [userId: <anonymous>] [ecid: 608d74c60950aa13:-16fef142:1366cfb2970:-8000-000000000000f1d4,0] [SRC_CLASS: oracle.forms.servlet.RunformProcess] [APP: formsapp#11.1.1] [SRC_METHOD: fromFrmwebToODL] [FORMS_SESSION_ID: formsapp.46] c0000005 (ACCESS_VIOLATION).
    [2012-04-07T11:02:18.791+03:00] [WLS_FORMS] [NOTIFICATION] [FRM-93658] [oracle.forms.servlet] [tid: 16] [userId: <anonymous>] [ecid: 608d74c60950aa13:-16fef142:1366cfb2970:-8000-000000000000f1d4,0] [SRC_CLASS: oracle.forms.servlet.RunformProcess] [APP: formsapp#11.1.1] [SRC_METHOD: fromFrmwebToODL] [FORMS_SESSION_ID: formsapp.46] C:\oracle\Middleware\asinst_1\FormsComponent\forms\trace\frmweb_dump_8100.
    [2012-04-07T11:02:18.806+03:00] [WLS_FORMS] [ERROR] [FRM-93652] [oracle.forms.servlet] [tid: 16] [userId: <anonymous>] [ecid: 608d74c60950aa13:-16fef142:1366cfb2970:-8000-000000000000f1d4,0] [SRC_CLASS: oracle.forms.servlet.ListenerServlet] [APP: formsapp#11.1.1] [SRC_METHOD: logConnectionException] [FORMS_SESSION_ID: formsapp.46]
    regards,
    Wael Amar

  • Execute infopackage error, using custom FM Datasource

    hi, experts,
    I have a problem with the data load from FM datasource to psa. (sourcesystem is oneself BI system).
    Moitor status message:
    Request still running
    Diagnosis
    No errors found. The current process has probably not finished yet.
    System Response
    The ALE inbox of BI is identical to the ALE outbox of the source system
    or
    the maximum wait time for this request has not yet been exceeded
    or
    the background job has not yet finished in the source system.
    Current status
    in the source system .
    Moitor Details message:
    Requests (messages): Everything OK
    Extraction (messages): Missing messages
    Data request received
    Data selection scheduled
    104 Records sent ( 104 Records received )
    Missing message: Selection completed
    Transfer (IDocs and TRFC): Everything OK
    Processing (data packet): Everything OK
    job log:
    Job started
    Step 001 started (program SBIE0001, variant &0000000001394, user ID sunsh)
    Asynchronous transmission of info IDoc 2 in task 0001 (0 parallel tasks)
    DATASOURCE = ZDST_DETAILDAYS
    Call customer enhancement EXIT_SAPLRSAP_001 (CMOD) with 104 records
    Result of customer enhancement: 104 records
    Asynchronous send of data package 1 in task 0002 (1 parallel tasks)
    tRFC: Data Package = 0, TID = , Duration = 00:00:02, ARFCSTATE =
    tRFC: Start = 2009/10/13 09:43:22, End = 2009/10/13 09:43:24
    tRFC: Data Package = 1, TID = 0A00920601194AD3DB3C19D6, Duration = 00:00:00, ARFCSTATE = RECORDED
    tRFC: Start = 2009/10/13 09:43:24, End = 2009/10/13 09:43:24
    Asynchronous transmission of info IDoc 3 in task 0003 (0 parallel tasks)
    I have validate the data using RSA3, that is OK, and the data already load to PSA table and can be display, but the status aways "yellow".
    I have re-active and replicate the datasource .
    can someone tell me how to solve this issue ?
    thanks in advance
    xwu.

    hi,    Ansel
        if not return any data, the exception NO_MORE_DATA will be raised correctly.
    but it contain 104 records,  the FM code like , :
       call function GET_DATA
        IF SY-SUBRC <> 0.
          RAISE NO_MORE_DATA.
        ENDIF.
        S_COUNTER_DATAPAKID = S_COUNTER_DATAPAKID + 1.
    maybe the FM contains some error,  verify using RSA3 that is ok.
    thanks a lot.
    Edited by: xwu wu on Oct 14, 2009 8:23 AM

  • Error using custom xpath function with XSL transformations in BPM

    Hi,
    We have created a custom xpath function for use with SOA Suite and BPM. This has been built as per specified within the http://docs.oracle.com/cd/E29597_01/dev.1111/e10224/bp_appx_functs.htm#SOASE11100. We have also reviewed the Oracle Sample for mapper-107-ExtensionFunctions (sample demonstrates the use of user-defined extension functions). This has been registered with jDeveloper and SOA within the oracle.soa.ext_11.1.1 (run ant to include in oracle.soa.ext.jar)
    We ideally want to use this is BPM within an xsl. However when consuming this function is either BPEL or BPM using an xsl, the xsl fails with an error such as:
    XPath expression failed to execute. An error occurs while processing the XPath expression; the expression is ora:doXSLTransformForDoc("xsl/Transformation_1.xsl", $inputVariable.payload). The XPath expression failed to execute; the reason was: javax.xml.transform.TransformerException: oramds:/deployed-composites/default/gwCustomXpathUtil_rev1.0/xsl/Transformation_1.xsl<Line 9, Column 113>: XML-22043: (Error) Extension function error: Method not found 'getWeekDayDate'. Check the detailed root cause described in the exception message text and verify that the XPath query is correct.
    In an Assign it operates fine and returns the expected result. We have included a combination of both of the Config files (ext-mapper-xpath-functions-config.xml and ext-soa-xpath-functions-config.xml) in the META-INF folder, however neither allow the use of this function in the XSL.
    I believe there may be an issue getting the custom xpath functions within XSL files. Hence I have also raised an SR. Has anyone experiences of this?
    Our SOA / BPM suite environment is using 11.1.1.6.4 and has the following patches applied:
    13801175
    14406487 (11.1.1.6.4 SOA Bundle)
    13896993
    13088538
    Regards Dave
    Edited by: DavidGaskell on Mar 14, 2013 10:08 PM

    Hi All,
    I am also facing the same issue...Experts can you please help us.
    hi DavidGaskell, did you find any resolution, if so can you share it with me.....
    Thanks,
    RR

  • Error Using Custom Tag

    I am trying to use a custom tag but receive an error when I use it on a jsp page.
    I have a tag handler class file, tag library descriptor file, specified the path to the .tld in the web.xml file.
    The error implies that it cannot find the SimpleTag.class file, though I put it in the \webapps\examples\WEB-INF\classes\ directory.
    Here is the error. Does anyone know what else it could be?
    org.apache.jasper.JasperException: Unable to compile class for JSP
    Generated servlet error:
    C:\jakarta-tomcat-4.0.1\work\localhost\examples\jsp\jspVisual\ch10\using_0005ftag$jsp.java:63: Class org.apache.SimpleTag not found.
    SimpleTag_jspx_th_myFirstTag_SimpleTag_0 = new SimpleTag();

    I could not see any obvious mistakes. But what you could try, in order to isolate the problem, is to bypass the web.xml. In other words access the TLD directly by doing this in your JSP
    <%@ taglib uri="/WEB-INF/jsp/tag_library_descriptor.tld" prefix="myFirstTag" %>
    if that does work then move the your TLD out of the jsp folder and into WEB-INF , then try
    <%@ taglib uri="/WEB-INF/tag_library_descriptor.tld" prefix="myFirstTag" %>
    Maybe someone else has better idea.

Maybe you are looking for

  • Clarification on ASA

    Hi, Just a clarification on Proxy ARP on ASAs. Scenario: Web Server 10.1.1.1 -- in ----  ASA ---- out ----- Internet Let's say the WWW server has real IP 10.1.1.1 and static NAT 200.1.1.2 ASA's outside IP is 200.1.1.1 When traffic comes from the Inte

  • Needed classes for sap connector framework

    Hello, when i installed sap netweaver developer studio 2.0.5 i become all needed classes for sap connector framework? Or i have to install the pdk? What are in the pdk for developer studio because the needed wizards are there (portal, sap connector .

  • Transfering SMS messages between 2 iIPHONES

    okay Gents here is my issue: I have 2 iphones: iphone A: is a 3G (OS 3.0.1 has been unlocked and jailbroken. (unable to update OS since it will lock it back up. iphone B: is a 3GS (OS 4.0) I just bought it and it is factory unlocked so I was able to

  • Getting a runtime error when running the test project

    I was running a test project which did execute without any problems. Then I added 2 extra DLLs and wrote some code as well. After that I got the below specified run time error. Though I removed those DLLs and new code still it doesn't run. This was r

  • Dreamweaver CS4 crashes

    Hi, hope sombody can tell me what's going wrong. The first time I wanna startup Dreamweaver on my PC it shows me the dialog box, known from the earlier versions, where you shoud specify the file extensions you wanted to be connected to DW. But than t