Webuitl  library needs to be re-attached when working with other libraries

I haven't narrowed it down for certain, but it seems whenever a form (11g) has a change to an attached library the (also attached) webutil library has to be removed and re-attached. Is this normal?
Form has my_lib.pll and webutil.pll attached. However, my_lib.pll may also have webutil.pll attached to itself. Seems redundant, but don't know how else to do it.
A form can't reference a library attached to a library, can it?
Thanks.
Note: developing 11g on 32 bit Windows XP, deploying to 64 bit Linux, 10g database

it helps to move webutil to the first,
in Forms 10g everything but after migration to 11 I get an error below:
FRM-40735: WHEN-CUSTOM-ITEM-EVENT trigger raised unhandled exception ORA-06508
I don't want to reattach webutil on the first position in all forms,
is any other way to solve this problem?

Similar Messages

  • Premiere Pro CS5 Not Responding (Freezing) When Working With Other Programs

    Hello,
    I have a performance issue with Premiere Pro 5.0.3 version. When I have the program open and bounce to another program or Windows Explorer window lets say to drag in an asset such as a music or video file and then when I make the Premiere window active the program does not respond for a good 15 seconds, then after some processing (you see the mouse icon change and hear the hard drive chugging), I am able to again work. This is happening every time I switch windows to work on something else. Even if I just click away to another window and click right back without doing anything else, it does this non responding action. It even says it in the title bar (Not responding). I am wasting so much time waiting for the program to respond.
    My system :
    Windows 7 Ultimate
    Intel Core i7 CPU 860 @ 2.80 GHz
    8.00 GB of RAM
    Quadra 5800 Nvidia graphics card
    Drobo Pro 24 TB drive (where my project files, music & video files live) connected via iSCUSI
    Sonnet 4 TB raid drive (scratch disc) connect via ESATA
    Dual Monitors
    Please help!
    ~ Doug

    Doug,
    Similar had plagued earlier releases of CS5, but I thought that it had been addressed with the CS5.0.3 update. Maybe I am wrong.
    There were several other threads here, with similar problems. Maybe they contain some tips that will help. The "constant" seemed to be shifting focus from PrPro, and then back to PrPro.
    Good luck,
    Hunt

  • When I open iPhoto 9.2.1 it says that my library needs to be upgraded but when I upgrade the library I am trying to open (33 GB worth of pictures from 2006) the new application says it cannot read the files and how to find them on the system to reimport?!

    When I open iPhoto 9.2.1 it says that my library needs to be upgraded but when I upgrade the library I am trying to open (33 GB worth of pictures from 2006) the new application says it cannot read the files and how to find them on the system to reimport?! and then I'd like to erase the original files since the space requirement is huge!!!! Why is upgrading software iPhoto such a pain. I've gotta get a presentation done and all I get for my money is roadblock!!!

    hello, it sounds like the library is damaged.
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. 

  • When I start iPhoto it says the library needs to be updated and when I try to do that it says that the program is in use or unreadable. This is the the first time I have ever launched it. What do I do?

    When I start iPhoto it says the library needs to be updated and when I try to do that it says that the program is in use or unreadable. This is the the first time I have ever launched it. What do I do? It keeps going around in circles. I have tried re-starting the computer and re-launching the program holding down the option-command keys. Neither helped.

    What version of iPhoto are you using?
    This is the the first time I have ever launched it.
    Does that mean there are no photos in the library? If so move it to the Trash bin in the Dock and launch iPhoto again.
    If there are photos in the library do the following:
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button,                         
    and select the library you want to add from those in the selection window.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note 1: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments. However, books, calendars, cards and slideshows will be lost.
    Note 2:  Your current library will be left untouched for further attempts at a fix if so desired.
    OT

  • Aperature crashed after 3.3 update. I am a novice at best when working with restore functions. Any suggestions on how to fix this problem?

    I had the 3.3 update window with Aperature pop up and say that I could no longer work with my library until updating Aperature. The update froze up about 90% through the completion of the last set(9 of 9/ 90% complete) and ran over night. My MAC shows version 3.3 installed. When I try to open Aperature, I get a system crash error. I am a novice at best when working with software and I am panicing because of the amount of pictures that I have on the system. I do back them up but do not know how to restore Aperature software(I purchased it before the app store and can not find it). Please advise.

    There is an Aperture forum that you can repost in, that is where you will find the guru's for that product. Simply click: Aperture to get there. BTW before you do please complete your profile, it makes it much easier for those attempting to assist you. You can find instructions by clicking Profile Update

  • How to get exact match when working with Oracle Text?

    Hi,
    I'm running Oracle9i Database R2.
    I would like to know how do I get exact match when working with Oracle Text.
    DROP TABLE T_TEST_1;
    CREATE TABLE T_TEST_1 (text VARCHAR2(30));
    INSERT INTO T_TEST_1 VALUES('Management');
    INSERT INTO T_TEST_1 VALUES('Busines Management Practice');
    INSERT INTO T_TEST_1 VALUES('Human Resource Management');
    COMMIT;
    DROP INDEX T_TEST_1;
    CREATE INDEX T_TEST_1_IDX ON T_TEST_1(text) INDEXTYPE IS CTXSYS.CONTEXT;
    SELECT * FROM T_TEST_1 WHERE CONTAINS(text, 'Management')>0;
    The above query will return 3 rows. How do I make Oracle Text to return me only the first row - which is exact match because sometimes my users need to look for exact match term.
    Please advise.
    Regards,
    Jap.

    But I would like to utilize the Oracle Text index. Don't know your db version, but if you slightly redefine your index you can achieve this (at least on my 11g instance) :
    SQL> create table t_test_1 (text varchar2(30))
      2  /
    Table created.
    SQL> insert into t_test_1 values ('Management')
      2  /
    1 row created.
    SQL> insert into t_test_1 values ('Busines Management Practice')
      2  /
    1 row created.
    SQL> insert into t_test_1 values ('Human Resource Management')
      2  /
    1 row created.
    SQL>
    SQL> create index t_test_1_idx on t_test_1(text) indextype is ctxsys.context filter by text
      2  /
    Index created.
    SQL> set autotrace on explain
    SQL>
    SQL> select text, score (1)
      2    from t_test_1
      3   where contains (text, 'Management and sdata(text="Management")', 1) > 0
      4  /
    TEXT                             SCORE(1)
    Management                              3
    Execution Plan
    Plan hash value: 4163886076
    | Id  | Operation                   | Name         | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |              |     1 |    29 |     4   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| T_TEST_1     |     1 |    29 |     4   (0)| 00:00:01 |
    |*  2 |   DOMAIN INDEX              | T_TEST_1_IDX |       |       |     4   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("CTXSYS"."CONTAINS"("TEXT",'Management and
                  sdata(text="Management")',1)>0)
    Note
       - dynamic sampling used for this statementJust read that you indeed mentioned your db version in your first post.
    Not sure though if above method is already available in 9i ...
    Message was edited by:
    michaels

  • Incredibly Long Lag Time When Working With Effects in Premiere Pro CC 2014

    I am having incredibly long lag times when working with effects in Premier Pro CC 2014.  Like 60 seconds or more.  This also happens periodically when I am doing something as simple as cutting into a timeline (just ripple deleting from and in to an out point). 
    I have a MacBook Pro running OSX 10.9.4 2 GHz Intel Core i7 with 16 GB 1600 MHz DDR3. 
    I have seen that some people are having different versions of the same problem.  I do have RedGiant plug-ins, but I am not using any of them in this project.  The Red Giant plugs (again, not being used in the project) include MOJO and Universe.  The previous version most certainly did not work like this.  Any ideas?  I did try moving the Red Giant plugs out of the COMMON folder and "alt" starting up to reset preferences.  Still having same problems.
    A specific example is I have an interview shot.  I add brightness and contrast.  Just making a change to the effect (increasing brightness) causes freezing of the interface and long delays.  I added a piece of transparent video on a top layer to add a CIRCLE to create a vignette effect.  Same deal -- ridiculously long times for effect changes to take place.
    Does anyone have any clues as to how to fix these problems? 
    THANKS FOR ANYONE'S HELP!!!!!!!

    Got the same Error. Previous I worked with a GTX 760, and was hoping to get it fixed with using a GTX 780 6GB. But just as you, didn't solve the Problem.
    Usually I got the Problem solved, with exiting Premiere, restarting it, reset my Workspace. Then the Problem of having the bugged Workspace was gone. And also the Problem of the missing Video Tracks.
    At the moment I started on a new Project. Pretty simple, with only a 21 second DV footage. And here I was switching tabs with my Browser, came back to the Project, and the Video Tracks were gone. I saved, closed Premiere, restated and the Video Tracks are still  missing.
    So I made a new Sequence, voilá the Video Tracks are there. Thus I need to copy and paste the Tracks onto the new Sequence.
    But that is not really a solution!
    I was on the Phone with Adobe, and on Chat, but they couldn't help me. They suggested to get a Tesla or Quadro Card, or at least a GPU that got confirmed as working on their page. I did that, but obviously, that is not the issue.

  • When working with aRGB images, what changes must be made when printing?

    Working in the Adobe RGB color space requires that all components in the chain (camera, software, monitor, printer) be able to handle aRGB. When printing from Photoshop Elements, what changes (if any) need to be made at printing time?

    Thanks Michel.
    I knew about the "more options" dialog box and use it regularly to set
    ICC profiles for my Canon Pro9500 Mark II printer, ensuring also that
    "Photoshop Elements manages colors". I could have asked the question
    better perhaps: "When working with aRGB images, how can I set both an
    ICC printer profile for a specific paper and ensure that printer uses
    the aRGB color space?". As far as I can tell, you can set an aRGB
    profile (either in Photoshop or at the level of the printer), but you
    can't use both the aRGB profile and an ICC paper profile at the same
    time. I am assuming that you can't set an ICC profile for the paper in
    Photoshop Elements and at the same time use the printer's aRGB driver.
    Is that right?
    Craig.

  • Date/Time erros when working with Database Connectivity toolkit

    Hi!,
    We are observing errors with date/time when working with LV. The error occurs when the system datetime format is set such that day precedes month (e.g. dd/mm/yyyy). Our VI uses LV 7.1, Database Connectivity 1.0 and SQL Server 2000 on a Win2000 machine.
    Problem details
    Our database in SQL server has a table having columns with data type "datetime"
    If the system date format (as set in control panel) is "mm/dd/yyyy", the 'insert into database' vi works fine. This function inserts the date and time (among other things) into the above mentioned table.
    However, when the system datetime is set to dd/mm/yyyy we start receiving error that date and time is beyond range for dates in which the date had the day field greater than 12 (e.g. 23/10/2005). With the same settings, if the date is such that day field is equal or less than 12 (e.g. 03/10/2005), we do not receive an error but the date is interpreted as 10 March 2005 rather than 03 September 2005.
    Clearly LV (or is it SQL) is mistaking the day field as month.
    We have taken care that when sending and receiving date, the format date and time string is set as per system settings.
    Thus, if system setting is "dd/mm/yyyy" our format string is "%d/%m/%Y"
    And if the setting is "mm/dd/yyyy" our format string is"%m/%d/%Y"
    Any help on problem cause and cure is welcome.
    Thanks,
    Gurdas
    Gurdas Singh
    PhD. Candidate | Civil Engineering | NCSU.edu

    Hi Xu,
    You answer led me to some very interesting fact finding on how SQL server handles date and time. I have attached a zip file which contains webpages that throw more light on this issue.
    The attached pages tell me that SQL has an inbuilt date/time reference format. The default in mm/dd/yyyy. Which explains why my VI worked when I used that format to write to SQL.
    However there is a catch:
    SQL expects the date/time to be in its inbuilt reference format when you WRITE data to SQL. If the date/time is in a different format, better tell SQL about it by using say the SET command you mentioned.
    BUT what about the date/time format when you are reading data from SQL?
    Our finding is that SQL sends date/time string in the system date format when you READ from SQL !!! That is very surprising behaviour (why differentiate between write and read?).
    Is our finding correct?
    So, we adopted the following simple strategy (yet to be fully tested):
    1) Whenever we write date/time to SQL, the string is formatted as mm/dd/yyyy. Presently, the user's SQL server is in the default state. Caveat is that if the user changes SQL date/time from default (which is mm/dd/yyyy) to anything else, our software will give errors. But then he changed it  ;-)
    2) When we read date/time from SQL we format the string as per system date/time format.
    I know this is not very robust coding. But assuming the user keeps his SQL in the current setting, should we expect smooth working?
    In other words, are there any errors and/or flaws in our strategy?
    Thanks,
    Gurdas
    Gurdas Singh
    PhD. Candidate | Civil Engineering | NCSU.edu

  • I cant upgrade camera raw and need to to be able to work with new camera files  why?

    i cant upgrade camera raw and need to to be able to work with new camera files  why?

    Boilerplate text from Best Practices FAQ
    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
        * Adobe product and version number
        * Operating system and version number
        * The full text of any error message(s)
        * What you were doing when the problem occurred
        * Screenshots of the problem
        * Computer hardware, such as CPU; GPU; amount of RAM; etc.

  • Dreamweaver CC constantly crashing when working with BC

    Hi,
    Dreamweaver CC is constantly crashing when working with BC. I had lots of contact with the support, my issue is at tier2 already, I had telephone-support several times, we had lots of possible solutions. Nothing worked.
    DW CC is crashing as often as CS6 did and it only happened when working with a BC-site. Whenever uploading to BC, there is a 30% chance that DW crashes. When having stopped working with DW for a few minutes (like doing something in PS) DW crashes in every case. 100%. As this must have something to do with BC, I urgently beg to check the integration of BC into DW or check the connection-mode.
    Here are my Specs:
    - iMac with latest OS
    - Adobe CC (latest )
    - German
    -DSL 1500 b/sec-connection
    I tried saving the sites root folder on a NAS and on local harddrive. I tried with or without german Umlaute , no difference.
    Sometimes I can cancel the upload-message and redo, then its working (75%).
    As I seem to be the only one having this problem, I completely reinstalled the system and CC, but the problem still exists.
    I would really appreciate any help or support from Adobe, although I must say, they already did a lot, but unfortunately my problem is not solved.
    By the way, several dialogs with "dont show message again"-ckeckboxes simply come again, no matter whether box is checked or not.
    Writing uppercase I (shift-I) insert content of clipboard and writes an uppercase I. (weird?)

    I have had the same problem.
    Had Dreamweaver support on the phone yesterday, after receiving this email:
    Please try resetting the preferences for Dreamweaver. Follow the steps given below.
    /Users/Your User Name/Library/Preferences/Adobe Dreamweaver CC Prefs
    /Users/Your User Name/Library/Preferences/com.adobe.Dreamweaver.13.0.plist
    /Users/Your User Name/Library/Application Support/Adobe/Dreamweaver CC
    /Users/Your User Name/Library/Application Support/Caches/ com.adobe.Dreamweaver.13.0
    Macintosh /Library/Preferences/ Application Support/Adobe/Dreamweaver CC Prefs (if any)
    Macintosh /Library/Preferences/com.adobe.Dreamweaver.13.0.plist
    Note: Follow the help doc to access user library.
    If this does not help can you please send me details below to isolate the issue further.
    1)      Step by step workflow to reproduce the issue.
    2)      Is this happening with multiple files? Few sample files to test the issue at my end.
    3)      Complete System Information file of the computer having issues.
    4)      Were there any H/w or S/w changes applied on the computer having issues. Since when are you getting this issue?
    5)      Is the user on domain account or local user? Do they have admin rights?
    6)      You BC site details, including FTP address, Login credentials.
    After our telephone conversation:
    I deleted all sites.
    I have completely deleted all versions of Dreamweaver, deleted all preference files and reinstalled Dreamweaver CC.
    It's still happening, so I will be back to them tomorrow.
    Sorta glad it's not just me!!

  • I just got an iPhone 4 as an upgrade from the original iPhone 3.  I came home and tried to sync it with my iTunes and it says I need to upgrade my iTunes to work with the 4.  The current version of iTunes isn't compatible with my G5 mac?????

    I just got an iPhone 4 as an upgrade from the original iPhone 3.  I came home and tried to sync it with my iTunes and it says I need to upgrade my iTunes to work with the 4.  The current version of iTunes isn't compatible with my G5 mac?????  Help

    Return it.
    The requirements are on the box and on the website:
    Mac system requirements
    Mac computer with USB 2.0 port
    Mac OS X v10.5.8 or later
    iTunes 10.1 or later (free download fromwww.itunes.com/download)
    iTunes Store account
    Internet access
    http://www.apple.com/iphone/specs.html

  • Very slow responce when working with Office file on DFS-Share

    Very slow responce when working with Office file on DFS-Share
    We have implemented the following configuration
    Domain level Windows 2000. Two member servers with Windows Server 2008 R2, sharing the same DFS namespace with, at the moment, one folder target called Home.
    Users complaining that the access to different MS Office files is very slow. Even creating a new MS Word document using right click context menu takes up to 4 minutes to open. Saving, for example, one singe Excel sheet takes also few minutes.
    Tested with both, MS Office 2007 and MS Office 2010. Makes no difference. When using Office 2010 you can see the message like contacting:
    \\DomainName\Root\Home\UserName. Other files like TXT, JPG or PDF are not affected.
     What makes the thing really weird is the fact, that the behavior described above can absolutely change after client machine being rebooted, suddenly everything becomes very fast and this condition can revert back again just after the next
    reboot.
    Considerations until now:
    1. This has nothing to do with the file size. Even tiny files are affected.
    2. AD Sites are configured correctly and the client workstations see themselves in the correct sites.
    3. This is not an Office issue. If I map my folder target not as DFS, but directly as shared network drive
    \\ServerName\Root\Home\UserName , everything functions as expected
    What makes me suspicious: when using f.e. TCPView to monitor connections, I can see, that each time I make any operation on an office file, there will be a connection established to one of the domain controllers, sometimes to remote ones,
    located in other countries. But on the other side, even if the connection is established to the nearest DC, operations are still very very slow!
    Just forget to say. All clients are Windows 7
    Thanks to all who respond.

    Dear all,
    sorry for the delayed reply. The problem has been solved now and since September 19<sup>th</sup>. everything is functioning as expected.
    What was done:
    Deleted replication targets excepting the initial ones
    Carefully recreated folder targets
    Deleted and recreated  replication groups
    Disabled SNP features on both namespace servers
    Created EnableTCPA registry entry
    Checked that the following Updates are installed
    http://support.microsoft.com/kb/2688074
    http://support.microsoft.com/kb/2647452
    Concering Office File validation KB2553065 - This Update was already declined on our WSUS server
    Kind Regards
    Eduard

  • Win7-64 Photoshop CC blank Save As dialog, then crash, when working with video / frame animations

    Hi, I recently updated to CC from CS6 and am having issues when working with PSDs containing video layers, or are set up as frame animations:  When attempting to Save As, the dialog will be completely blank except for the Save and Cancel buttons.   If I press cancel, then return to Save As, CC then often crashes.
    Here is the Error Event from Event Viewer:
    Faulting application name: Photoshop.exe, version: 14.0.0.0, time stamp: 0x5176451b
    Faulting module name: MediaCoreIF.DLL, version: 7.0.0.0, time stamp: 0x51573a21
    Exception code: 0xc0000005
    Fault offset: 0x00000000001fca98
    Faulting process id: 0x750
    Faulting application start time: 0x01ce9e1925a5045b
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Photoshop.exe
    Faulting module path: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\MediaCoreIF.DLL
    Report Id: db6d5f8f-0a0c-11e3-9df9-0026b9cc01d1
    So far I am only having these issues if I have been working with video layers and then frame animations.  Frame animations in particular seem to cause instability as I can often work with video layers all day without a problem.  Then if I import video frames to layers, or open a PSD containing a frame animation, the Save As may not necessarily work.
    Sometimes closing and restarting Photoshop will allow me to save again, but then sometimes a whole system reboot is required.  It is only temporary though.
    I am not running antivirus software or other apps aside from what starts at boot.

    Frustrating that this thread has petered out, since I'm having the exact same issue. Did you ever find a way to improved stability?
    Also of note, the issue followed me across machines. Two weeks ago I purchased a new machine, figured if that didn't solve the problem nothing would... It didn't. :\
    The only similar factors are that the machines both are 64bit Windows 7 (a fresh OEM install on the new box) and have nVidia-brand graphics cards. (Again, though - not the SAME graphics card, picked up a new one with the new machine.) No drive cloning was involved: this is completely new hardware, a fresh factory install of Windows 7, different antivirus (went from AVG to Avast), and new download of Photoshop CC from CreativeCloud.
    Looks like our event details are quite similar, too.
    Log Name: 
    Application
    Source:   
    Application Error
    Date:     
    4/6/2014 1:57:39 PM
    Event ID: 
    1000
    Task Category: (100)
    Level:    
    Error
    Keywords: 
    Classic
    User:     
    N/A
    Computer: 
    REDACTED
    Description:
    Faulting application name: Photoshop.exe, version: 14.2.1.570, time stamp: 0x52f4a9f2
    Faulting module name: MediaCoreIF.DLL, version: 7.0.0.0, time stamp: 0x51573a21
    Exception code: 0xc0000005
    Fault offset: 0x00000000001fca98
    Faulting process id: 0x1ca4
    Faulting application start time: 0x01cf51c68639ec43
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Photoshop.exe
    Faulting module path: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\MediaCoreIF.DLL
    Report Id: 5268f22b-bdbd-11e3-b9df-d850e65afc6f

  • How do you turn off the auto select behavior when working with shape layers?

    How do you turn off the auto select behavior when working with shape layers?
    I am using either of the path selection tools to select only some of the paths on the layer. I have the proper layer targeted. I have the selection too auto select option turned off.
    If another layer has a path in that area, that layer becomes auto targeted and I get the wrong path. Turning off the layer is the only way to avoid this but then I have to  turn on the layer back on between making my selection and transforming to use the other layer as guide. Is there any way to stop this auto select? Locking the other layer does not stop the auto select, just prevents editing.

    As far as i know the move tool options don't have any effect on the path selection tools.
    You might try clicking on one of the path points or on the path itself with one of path selection tools and if you want to select multiple points
    you can shift click with the Direct Selection Tool or Alt click to select the entire path.
    more path shortcuts:
    http://help.adobe.com/en_US/photoshop/cs/using/WSDA7A5830-33A2-4fde-AD86-AD9873DF9FB7a.htm l
    http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-7391a.h tml

Maybe you are looking for

  • Mistake = Learn = Mistake

    Hi, As they said "People learn from their Mistakes" some says "People learn from others mistakes" anyway I'm here to present some of my silly mistakes right from the start of my BASIS career as there are lots of but I try to bring those which are sti

  • Lenovo N100 won't boot!

    Almost two weeks ago I shut my computer down one night and the next morning it would not boot. It goes through the motions but before starting windows i get a blue screen for a split second and then it restarts. I got a boot disk for windows vista an

  • Changing a variable in variable screen

    Hey everybody, i have a question for variable screen in Bex Analyzer 3.5 in BI 7.0. Is it possible to change a variable in variable screen depending the input of an other variable? I know how to change it bevor popup and after popup. But i want to ch

  • Servlet java.util.Map Help

    It's been a while since I have written any code and I am having an issue getting back into it. I am currently working on creating servlet to pass info from all my forms to my business logic. However, I am having an issue with getting the data. This m

  • FTP Corrupts PHP by Inserting Characters

    I have been using Dreamweaver css.5 for many years and suddenly it has started corrupting files. The Site is one I have been developing for a very long time and the settings of that haven't changed recently. The problem just appeared without any caus