Multiple users viewing/editing common records

Hi all. I'm running tomcat 5.5.17. My webapp involves creating/viewing/editing/saving records from a database. Multiple users can login to the app, and so multiple users may view a record. I want to avoid two users viewing & editing the same record, and then saving. Of course, the one who saves last will dictate what actually stays in the DB.
An easy-way-out I thought of was...I can keep a list in the servlet context, and when a user views a record, add their name, the record id, and a timestamp to this list. Then, it's easy to check who has been viewing/editing a record in the last X minutes, so it's equally easy to display a warning saying "Users also viewing this record in the last 10 minutes: User1, User2, User3." Whenever I add someone to the list, I'd also remove all stale entries (ones which have been in the list for longer than X minutes).
This isn't a great way to do it, of course. Optimally, I'd want to add and remove users from this list in real-time. Adding is no problem...I can execute whatever commands I need to in the servlet/jsp to add them to the list. Removing though...how can I remove them from the list? Well...WHEN do I want to remove them? When they stop viewing the record. As in, when they browse away from the page. Javascript has a window.onbeforeunload = function() { //do stuff } function...but I can't really run any jsp through there. Unless I open a new window which runs some jsp and closes immediately, but what kind of a solution is that.
Any suggestions?

Yeah, change your requirements.
In my opinion it should be the other way around: the first user who gets the record dictates the resulting state in the database, not the last one. One way to prevent multiple users from overwriting each others changes (a very rare occurence, but possible) is to use all the fields in a record to generate a where clause for the update or delete statement.
Example:
A record exists with a name field set to 'bill gates'.
User 1 selects this record
User 2 selects the same record
User 1 changes field 'name' to 'larry laffer'
User 1 saves the changed record to the database
User 2 changes one of the fields (BUT STILL HAS 'bill gates' AS THE NAME!)
User 2 saves the changed record to the database
Now in the where clause used in the update statement for user 2, somewhere there will be and name='bill gates'. This condition is now no longer true since the name was changed by user 1. The result: the update for user 2 will fail , 0 rows updated.
A very, very rare sql exception is always better than changes being lost in my opinion.

Similar Messages

  • How can I allow multiple users to edit a single shared iCal calendar?

    Is it possible to allow multiple users to edit a single shared iCal calendar? I also want to provide different permissions to those users. Is this possible through .MAC? Is it possible on Mac OSX Server?

    I would like 2 agenda synced through .Mac but it does not work.
    I have 2 computers and 2 laptops. A very simple agenda with 3 calenders. Myself my partner and the office calender. I want to publish my calender and that of my partner. The office calender I would like to sync so that we can change the office calender at any location.
    I set up sync only for iCall and have a .Mac account. When I change anything on any of the calenders in iCall nothing happens on any of my other locations. Even though the locations are registered as synced. I can see the sync wheel turning but at the end of it the calenders are not synced.
    At this moment I fully understand the publish and unpublished calenders but have no clue what so ever what syncing does for iCall. There seems to be no functionality to it. It does not transport any calender info over .Mac. There is no visable check to see what is happening and the process of syncing is not transperent. Lots of my friends go to me for advise on Apple issues but as far as sync wether iCall or Addressbook I always tell them sync does not work and I have no clue why others have it working. I haven't met any people here in Holland either that got in working. I suppose with iCall you have to get third party software to share calenders editable calenders. Really hopeless situation, wish Apple would just have a manual stating what sync can do and what it can not. Hours wasted on this issue trying to get it to work.
    Hope anyone here can help out.

  • Prevent multiple users from editing/approving the same form SPD 2013,SP 2013

    Hello all, I have a workflow with a to do task, the task is assigned to a group so any of the users in that group can go in and do a quality check on form data and approve it.  How do I prevent multiple users from working on the
    same form? do I just require check out? or is there a way to notify the rest of the group that a user has already started the quality check.

    The "Require Checkout" option is your best bet.  You can also enable the auto checkout on edit option to allow minimal effort on the side of the user.  Other users will then get the error message stating the item is checked out, if they try to
    edit it.
    If you'd like, you could add a workflow to the task list that triggers when something is changed.  That workflow can check if the item is checked out and if so, email the other users assigned to the task.
    I trust that answers your question...
    Thanks
    C
    |
    RSS |
    http://crayveon.com/blog |
    SharePoint Scripts | Twitter |
    Google+ | LinkedIn |
    Facebook | Quix Utilities for SharePoint

  • Allow multiple users to edit in a shared calendar

    Some co-workers and I have a shared calendar in Outlook 2010 (separate from our personal, individual calendars) and we'd all like to be able to edit (add, delete, etc) to it.  The creator of the calendar shared it with us and gave us all the appropriate
    permissions to be able to edit it, however, only what the creator enters/edits appears for everyone.  Anything additional or changed doesn't appear. 
    For example, User 1 creates and shares the calendar.  User 2 and User 3 are given "editor" permissions.  User 2 adds an event to the calendar for all to view, but User 1 and User 3 cannot view it.  
    How can we create a calendar so that User 1, User 2, and User 3 can all view and edit this shared calendar?
    Thanks!

    Hi,
    How does User1 share the new created calendar to User2 and User3? Because the shared calendar is User2 created that is not a default Calendar, please share it by the following steps in Outlook 2010:
    1. Create a new calendar in User1’s account.
    2. Right-click the new calendar, click Share > Share Calendar.
    3. In the Sharing invitation window, select User2 and User3 in the To field.
    4. Check Recipient can add, edit and delete items in this calendar to give the recipients Editor permission.
    5. Click Send to share calendar to User2 and User3.
    Then User2 and User3 would receive a message in Inbox folder. They can just click
    Open the Calendar button to open it. Then check whether the issue persists.
    Regards,
    Winnie Liang
    TechNet Community Support

  • Multiple User Accessing the same record issue

    I am planning to design an app where we have the following use case requirement.
    If a user who is logged into the system is accessing a record(plan in this case) anyone else who is logged into the system at the same time should be locked out of that same plan but should still be able to access other plans in the system. A plan has many things associated with it so the 2nd user should be locked out of everything associated to the plan being accessed by the first user.
    What is the best way to implement this at the application or the database level?
    Here are some options we have been bouncing around.
    1. When the first user logs in and accesses the first plan we lock the plan at the app level using a singleton class which has one and only one instance on the app server. The plan_id can be put as an entry into a hashtable which can be in the session and is created if one does not exist. When the 2nd user tries to access the same plan, since the plan_id is still in the hashtable he would be locked out. However we somehow need to timeout the first user after 30 mts of inactivity or so so that others can access the plan and are not locked out for ever if the first user walks away from his PC or does not close his browser, thus keeping his session alive indefinitely.
    2. In the database in the plan table we add a column for 'locked'. When the first entry is created in the plan table locked column is marked as 'yes' or 1 and when the user closes the browser we use some javascript to trigger an event which changes that 'yes' or 1 to 'no' or 0 thus unlocking the plan. However the big issue we see in this concept is that we will have to put a javascript onUnload method in all jsp pages in the app because the user could be anywhere in the app after starting his plan access after login.
    Conceptually the 2 options are the same but one is done at the app whereas the other is at the database level.
    Is there a better way to handle this scenario using transactions or some other technological option.
    Thanks

    Another solution involving no modification of the database structure:
    As soon as a user want to access a plan, try to UPDATE the plan record... if it fails, the record was locked
    by another user before. When the user has finished with the plan, you can COMMIT or ROLLBACK the changes, which will free the lock for other users.
    An advantage of this solution is that if program crashes unexpectedly, there will automatically be a ROLLBACK.
    Of course, you need a transaction for this... and perhaps more if you want to separate the 'locking transaction' (virtual update just for restricting access) from the 'operating transaction' (in which you will
    do the DB stuff: inserts, updates, deletes, etc.)
    Hope this helped,
    Regards.

  • Best way for multiple users to edit same pics and catalog

    Dear All
    Please can I pick your brains about how best to arrange things so that my wife and I can edit the same stock of photos (not necessarily simultaneously, which I take it could cause problems).
    We will soon have bought (unless advised otherwise!) two Apple MBPs (since we tend after long days at work to edit on the sofa!).
    I take the options are roughly:  external drives, sticks, cloud, network.  In detail …
    A.  We keep the pics and catalog on an external hard drive which whoever’s editing plugs into their computer.  Downside: it’s a bit irritating when editing or showing pics to someone to have to keep an eye to ensure the USB cable doesn’t get knocked out; it’s somehow nicer to be self-contained.
    B.  Same as A, but using a 512GB or 1TB memory stick instead.  Downside:  the sticks are still pretty big, so same downside as A, to an extent, and also (is this right?) I’ve been told that memory sticks are relatively unreliable.
    C.  We keep the pics and catalog in the cloud and wirelessly edit them there. Downside:  perhaps impossible, or at any rate too slow?
    D.  Same as C, but using some sort of on-site server or drive (I’m a bit out of my depth here), perhaps like Apple’s Time Capsule.  Downside:  perhaps impossible, or at any rate too slow?
    Are there other options?  For example: is there an option where the pics reside on my MBP’s internal SSD but, in some very easy way I can get them onto an external drive if my wife wants to edit or take them somewhere?  (If there is, I should ensure I buy a MBP with a big enough SSD; otherwise, I needn’t worry about that so much.)
    Perhaps there’s an option involving smart previews, which I am just beginning to get my mind around?
    Any asdvice you have would be MOST welcome.
    Thank you.
      David

    2.  Keep the images (unlike the catalog) on a networked drive and edit either (a) them or (b) smart previews of them (stored, I guess, on the computer of whoever is editing them, either my wife's or mine).
    Even though I have mentioned this a few times, you do NOT need smart previews if the images are available. It's an extra step, completely optional, done only for speed purposes, and to be honest, if your catalog is on a thumb drive, that may be the speed limitation, not the speed of loading photos. In addition, smart previews are stored with the catalog ... I do not think you can put them on a different drive.
    3.  Keep the images (unlike the catalog) on my MBP's internal ssd, and network my computer to my wife's so she can access either (a) them there (when I am around) or (b) smart previews of them.
    Using the SSD for images is not going to produce speed benefits, other than trivial benefits that you probably can't even notice.
    a.  I take it 1 would deliver pretty good performance.  I sometimes worry that it might seem mad to get an MBP with a fast internal ssd if I then don't use that ssd for images!  But I guess the internal ssd will still deliver good speed simply in terms of housekeeping, I take it, even if the machine has to go to a stick for the images.  Right?
    I remain skeptical that a catalog on a thumb drive would produce "pretty good performance", but I admit that I have not tried. I fail to see what benefit you think you are getting from the SSD, "good speed simply in terms of housekeeping" is a phrase that I am not understanding. Yes, there are benefits to putting operating system and software on an SSD, but that's not what you are talking about, is it?
    b.  By contrast, I take it that 2 and 3 really would be quite sluggish on the original images option, i.e. if someone were editing original images located on a network drive (whether that's a third drive or my internal drive, with my wife editing them wirelessly).  Yes?
    No. Here's a major misundertanding on your part. The speed of the drive where the images are stored has little effect on the performance speed of Lightroom. Ian Lyons did a study, read it for yourself. A network drive would not cause performance issues in Lightroom, unless the network was failing to perform. Wireless? Well that's a different story, who knows, you haven't specified what type of wireless or the speed of the wireless
    c.  But would 2 and 3 work not only better, but pretty well, if the person editing were editing only smart previews?
    Possibly, but I reject the premise that 2 and 3 are sluggish because of the location of the photos, it may be sluggish because your catalog is on a thumb drive.
    d.  Even if so, IF I can get a thumb drive which is bigger for the images, there doesn't seem much point going for 2 or 3, and some point in not doing so, i.e. editing smart previews has its limitations, and on option 3 my wife wouldn't be able to edit when I was travelling (unless we'd taken steps in advance to make smart previews of all the relevant pics)?  Or perhaps this last point is wrong?  Does LR make smart previews, locally, of ALL pictures in the catalog?
    Number 2 is a very reasonable solution, even without smart previews, it is fine if you are accessing photos on a network drive. The speed limitation is the speed of accessing the catalog on the thumb drive.
    e.  What's the best way of backing up the images?  I currently back up the catalog BOTH to dropox and to (yet more) external drives that I then take off-site, to the latter of which I also backup the images.  I guess that's the best way?  Apple's Timecapsule sounds good but wouldn't get anything off-site.  And I take it uploading thousands of raw images to the cloud would be either impossible or costly in terms of time or money?
    All backup strategies are best when they are automatic (i.e. don't rely on the human user to remember to do it) and backups must go on a different physical disk than the originals. Many people backup to the cloud, see for example, the commercial service called Carbonite. In your backup strategy for Lightroom, you need to make regular, automated bakcups of the images and also of the catalog file.

  • How do you allow multiple users share a common folder that is on the doc?

    I'm coming from many years as an OS 8.6 user. My family expects me to wade though all of the documentation and figure out how to make using the computer easy. One feature they liked was the way I set up the Apple Menu so that only the programs were listed. The categories were Applications, Diversions, Internet, and Utilities. This masked all of the other stuff that may have been associated with a program from them.
    I would like to do the same in OS X (10.4.7). So, in /users/shared I created a folder named of all things "Apple Menu". In this folder I've created new folders for Applications, Diversions, Internet, and Utilities. Into these folders I placed aliases to the various programs. I then took this folder and dragged it to the Doc. On my Doc, with I control click the "Apple Menu" folder, I see my folder names with drop downs listing all of the aliases just like in OS 8.6. Unfortunately, on the other user accounts after dragging the folder /users/shared/apple menu to the Doc, they can only see aliases to files that came with the system. They can not see any of the new files that I've added. How do I set this up so that I maintain one folder of the aliases to various programs and yet every account can see all of these aliases?
    I don't want the Doc cluttered with applications that are not used all of the time. At the same time I don't want to have to navigate to some sub-directory and scan a list of files looking for the application everytime I want to run it. The rest of my family members would go nuts. As a matter of fact, I think I would also. I liked the Apple Menu in OS 8.6. I think this Doc folder thing might just work, if I can get past this security/permissions issue.
    Thanks for the advice.
    Joe
    17" iMac G5   Mac OS X (10.4.7)   various Mac running OS 8.6

    Thanks for the suggestions offered so far, but they don't get to the root of the issue. I only want to maintain one, and only one, "Apple Menu" folder. I'm not looking to restrict user access. I'm trying to streamline user access for those who are not comfortable navigating down 2 or 3 or more levels of directories looking for the "applications". As Administrator I do this at the time an application is installed and place an alias to the application in the appropriate "Apple Menu" folder so that my family members can quickly and easily access it.
    I built the "Apple Menu" folder and placed it in /user/shared. I also built all of the aliases to the applications and placed them in the appropriate sub folder of "Apple Menu". I've chosen, "Applications", "Diversions", "Internet", and "Utilities" as the sub folders.
    Some of the aliases, while logged into a non-administrator account do not show up in the "Apple Menu" while others do. For example TextEdit appears while TextWrangler, which I installed does not. I thought that only programs that I installed are not showing up, but this is not true. I installed Reunion and this program is visible from the non-administrator accounts. Yet I can navigate to the item not appearing in the "Apple Menu" and launch it.
    The top folder's owner is myself, the group is "wheel" and it has read permission, and everyone has read permission. I've made myself and the other users members of the group wheel. And I've propogated these values down the folder hierarchy starting at "Apple Menu". I would like to know why this isn't working?
    Though Classic Apple Menu and XMenu sound like good alternatives in each case I would be responsible for setting these applications up in each environment. I only want to do this set up once as administrator and know that all of system's users have access to this information from the Dock.
    Is there some kind of installation step missing that is not permitting these aliases from being seen by all of the system's users?
    Again, thanks for the advice,
    Joe

  • Multiple users edit same calendar?

    Is there a way to allow multiple users to edit a subscription calendar?
    Never mind-- you can't.
    Thanks
    null

    A quick update: with the December 31, 2007 release of BusySync version 1.5, users can now additionally synchronize iCal calendars outside of their existing subnet using procedures which are outlined here.

  • Multiple users sharing one set of ARD preferences

    I need to be able to have multiple users share a common set of ARD preferences which are stored in a central location. Is this possible with ARD? If so is there a difinitive description on how to do this?
    All users will be using MacOs 10.9.2 and ARD version 3.7.1

    user515989 wrote:
    I'm a Forms developer, and Apex looks intriguing yet formidably intractable. Where are the triggers for
    pushbuttons - I can easily create a button but there's no obvious "create trigger" bit to accompany it.
    I guess I'm lacking understanding the gut essence of Apex; I've had a look at a few tutorial and the stuff
    I've read so far falls far short of acceptability - the manuals have one or two sentences of "aims" at
    the start of a section followed by fifty-point lists of "do this, do that" instructions then they round it
    off with an audaciously arrogant section at the end along the lines of "Now you know how to do XYZ".
    What this lacks is the "essence" of the task - I have to reverse engineer each blooming step to try and
    understand what it is meant to achieve.
    Have I missed any damn good tutorials out there - there must be some (except those boring Youtube
    videos where we watch someone perform the fifty-step routines again without explaining the essence).
    Can you tell that I'm frustrated by a lack of documentation; I risk losing your kind support in my early
    foray into Apex (help a drowning man please :-)
    Thanks again in advance
    Mungo :-)Its important to remember that Apex is nothing other than a framework for creating HTML and running web pages. So what used to be triggers are now standard javascript events. Although you will find help on the forum for javascript and maybe some in the documentation, javascript events are standard and not proprietary like Forms triggers were. Its frustrating, but there are a TON of resources (google) on the basics of javascript. For instance instead of when-validate-trigger, you'll probably look at the onblur event to trigger a piece of javascript code to run your validation. You can use onfocus which would be sort of like when-new-item-instance in Forms-speak.

  • Multiple users working in the same document and same time.

    Hello Guys,
    and thanks for looking into this
    At our company we're still in doubt wether or not to update our software to CC or just update to CS6. Currently we all have different versions (going from CS3 to CS5), and that's really time-consuming.
    The most important question would be if it is possible in the CC to work in the same file at the same time.
    Working on magazines, catalogues or books this would be a major time-saving option!
    For example I could work on chapter 1 and 6, whilst my collegues are working on the other chapters.
    The other users could then see how far I am on my chapters, change things (make notes) etc.
    Is this possible in CC or not?
    Thanks for your answers and time.
    Best regards,
    Sam
    PS: If there are major setbacks working on the cloud (between multiple users/computers) please let us know.

    Let me attempt an answer.
    Short answer, no. Multiple users cannot edit a the same file at the same time.
    You'll need a content management system, to enable check in/check out, prevent overwrites etc. But (there's always a but), Creative Cloud offers several workflows and tools that can be used to help streamline multi-user publication workflows.
    Using Creative Cloud will ensure that all users will be on the same version of the software, and there won't be any accidental lockouts due to format changes, and no need to run arounf to get the document downsaved. All users also have access to the latest features as soon as they become availble.
    For products, such as books and magazines: InDesign needs to be the primary software that you use. When you design the content architecture of your publication, you can employ the following techniques and tools:
    Break up your publications into several INDD files, let's say for file for each story.
    Compile the individual files into an InDesign book.
    Link Ps and Ai or other files when you place them in the InDesign layout. That way whenever a designer updates an asset, InDesign will notify you that a linked file has changed and you can choose to update the link.
    InCopy was recently added to the Creative Cloud. Authors can can edit stories without actually having to open the InDesign files. For details see the InCopy help. InCopy has several workflows that can help out in this kind of setup.
    Other than the Creative Cloud apps, you'll also need to setup folder and directory structures on the shared storage location.
    Setup a shared location/drive so that all users have access to the linked files.
    Control read/write access to individual files using the OS commands on the file directory/server. For example, Layout designers only have edit permissions on the layout (indd files); while Photographers can only edit .psd files, and so on. For small teams this might not be necessary, but for larger teams this may help.
    You could also consider storing your files using a Content Management System. You'll need to evaluate the cost and benefits properly.
    Hope this helps.

  • ChaRM Allowing Multiple Users in the Same CD to be in Edit Mode

    We have upgraded to ChaRM 7.1 but are still using CRMD_ORDER and Transaction Monitor CRM_DNO_MONITOR.  When the Developer completes her change, populates the Current Processor with the Change Manager and clicks Save she keeps the CD open in Edit Mode.  The Change Manager is able to open the same CD and click Edit without any warning on the bottom of the window saying it is being processed by another user.
    When there is a hand off to the next Current Processor, both the previous and current user are able to be in edit mode.  I don't recall this being allowed before.  Has this changed with 7.1?

    DGS wrote:
    I have a global temp table (GTT) defined with 'on commit preserve rows'. This table is accessed via a web page using ASP.NET. The application was designed so that every one that accessed the web page could only see their data in the GTT.
    We have just realized that the GTT doesn't appear to be empty as new web users use the application. I believe it has something to do with how ASP is connecting to the database. I only see one entry in the V$SESSION view even when multiple users are using the web page. I believe this single V$SESSION entry is causing only one GTT to be available at a time. Each user is inserting into / selecting out of the same GTT and their results are wrong.
    I'm the back end Oracle developer at this place and I'm having difficulty translating this issue to the front end ASP team. When this web page is accessed, I need it to start a new session, not reuse an existing session. I want to keep the same connection, but just start a new session... Now I'm losing it.. Like I said, I'm the back end guy and all this web/connection/pooling front end stuff is magic to me.
    The GTT isn't going to work unless we get new sessions. How do we do this?
    Thanks!You may want to try changing your GTT to 'ON COMMIT DELETE ROWS' and have the .Net app use a transaction object.
    We had a similar problem and I found help in the following thread:
    Re: Global temp table problem w/ODP?
    All the best.

  • Business Data List View ONLY Displays records - Cannot Edit them

    Using SharePoint 2010, I created an External Content Type. Data is coming from SQL Server. I created a new Read operation on my External Content type. I added a few filters in this Read View.
    I have created a web part page in which I placed a Business Data List Web Part. In Web Part properties I chose the VIEW in question. I can now filter my External List data and the Business Data List Web Part displays them. But I cannot edit these
    records!!!
    From the web Part properties window, I can ONLY choose Views that are created from READ operations. How do I allow users to edit data and save data in the original source (SQL Server).
    Mayank

    Below are the reference links on how to CRUD operations on external data using BCS
    CRUD operations using BCS using SharePoint designer
    http://zimmergren.net/technical/sp-2010-getting-started-with-business-connectivity-services-bcs-in-sharepoint-2010
    CRUD operations using BCS using Visual studio
    http://www.c-sharpcorner.com/uploadfile/anavijai/creating-external-content-type-with-crud-operations-using-business-data-connectivity-model-in-sharep/
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • How can multiple users edit and access same ACCESS file

    Hello,
    We have 2 access files and multiple users needs to edit and access those files.
    How can I enable mulitple access but only one user can edit rest of users are in read-only mode for one file and multiple access and edit on the another file.

    Hi,
    You should split your database in a front and backend. Then create two seperate front ends which you can distribute. If you need readonly you can opt for two options, setting the attributes of the file to read only or create a front end with read only forms.
    The last one takes a little more work but is safer than setting the attributes to read only because people can change that back themselfs.
    Maurice

  • How can I have multiple users edit the same calendar?

    I work on a team of about a dozen people. We already share individual work calendars through iCloud. We want to create a master iCal calendar that allows us to display our various deadlines on a given project. We want the people to be able to edit their own deadlines.
    How can I create a calendar that offers multiple user Edit permission?
    Thanks!

    Go to this page:
    http://help.apple.com/icloud/#mm6b1a9479
    and expand 'Share a calendar privately'.

  • HT2688 Working on a single computer with multiple users, I have set things up to allow each user to view and listen to the others' music libraries under the "Shared Library" function.  Can you then connect an iPod touch and copy music from a shared librar

    Working on a single computer with multiple users, I have set things up to allow each user to view and listen to the others' music libraries under the "Shared Library" function.  Can you then connect an iPod touch and copy music from a shared library?

    Was your wife logged into the libray at the time you tried to log in? I have had a similar problem and it was because another user was logged into the library when I attempted to. I got the permission denied banner.

Maybe you are looking for

  • Please help, my Mini is eating up all my Ram & suffers from annoying bugs!

    Hello This is my first official post with a few problems as I just got my Mini and as I hear around the boards, there are a number of things wrong with the mini... Here is my first problem : My Mini seems to eat up a lot of ram and for some reason, w

  • Wifi on CanonSZ280

    Despite following all instructions from the Canon manual that came with my CanonSZ 280 I cannot get the WiFi function to work. Any help would be appreciated.

  • Can anyone help with this log? Thanks in advance

    Can you please help with this? I cannot make any sense out if it. Thank You Wed Jan 14 17:06:08 2009 panic(cpu 1 caller 0x001A8CEC): Kernel trap at 0x00c8000e, type 14=page fault, registers: CR0: 0x8001003b, CR2: 0x96ff3776, CR3: 0x01461000, CR4: 0x0

  • Photoshop cc 2014 and lightroom 5.5

    Hello. I have a problem after updating to photoshop cc 2014 and lightroom 5.5. When right clicking on my image in lightroom, and clicking on edit in photoshop cc 2014 nothing happens. Any one have a solution. photoshop opens up, but no image at all..

  • DOCUMENT_OBJ PLOGI error in linking

    hello. I greate new doc cv01n and make same link PLOGI and did not close him number doc is '*'. after open a new window and create another document with link PLOGI  after press enter I have erorr  26 286.  It trouble i have with any links use 500 scr