2.1.1/2.1: Posting/committing new rows inside grid not deferred

Hi,
With Preferences - Database - ObjectViewer - Post edits on row change or Set Auto Comit On set, creating a new record (using the Create button or Duplicate Row context menu entry) will immediately try to post/commit the new row, instead of allowing the user to edit first. This usually generates errors because of missing or duplicate values.
Please log a bug against this so posting/committing gets deferred until the user manually changes rows or commits.
Thanks,
K.

Same issue in 1.5.5
Logged
Bug 9379438 - with post edit on row change dml issued immidiately after row insertion
-Raghu

Similar Messages

  • New row in table not refreshing corresponding form

    I have a form in a detail item, that adds a new row to a table, there is another form in a detail item (both in an accordian) that is supposed to display the information of the selected row from the table. This works fine for existing rows in the table.
    But, after a row is added to the table by the first form, and I click on that new row in the table, the second form (for displaying the row's info), isn't showing the new row's data/information.
    Both forms and the table are being driven off of the same VO.
    Any ideas?
    Thanks,
    Joel

    Strong,
    You cannot generate this, but it is very easy to change post-generation. Look for the dataObjectNotFound forward and change it so that it forwards to the table page instead of back to the find page.
    Steven Davelaar,
    JHeadstart Team.

  • Tabular Form - new row at top not working

    I'm trying to add a new row to the top of a tabular form (not manual) vs the bottom using Denes example - http://apex.oracle.com/pls/otn/f?p=31517:215 but it's not working. I absolutely need the records to sort on the date and time, but when I add a hidden column and sort it in descending order, then sort the date and time both in descending order, it doesn't sort correctly. I tried using the primary key field of the table as the hidden column, sorting nulls first, but the new record opens at the bottom (If I have "sorting nulls first" selected and at the time a new row is added the primary key field is null, why doesn't the new row open at the top?). I added a new field (date field with timestamp) to the query, then deselected "show" in the column attributes...that didn't work. I then selected "show", and changed the tabular form element display as to "Hidden", but then I got an error when I clicked "Add New", and I also added a column to my query via apex_item.hidden but no luck there either. What's the best way to go about this, but still maintain the date and time sort?
    Thank you,
    Tammy

    We did that. It didn't resolve it...
    Also, I compared the images directory from the complete apex 4.1.1. installation and compared it to patch 13331096 (latest 4.1.1 patch). They are identical.
    Any other ideas I can try out?

  • Add new rows when query not input-ready

    In the Web Application Designer, is it possible to detect whether a query is in display or change mode, and depending on the outcome to set an Analysis Item parameter ?  This would provide a solution to the following:
    Background: I have a Web template used for sales quantity planning which contains two Analysis Items, each with their own input-ready query: ANALYSIS_ITEM_EXISTING allows users to enter plan values based on existing characteristic combinations, ANALYSIS_ITEM_NEW_ROWS allows users to enter new characteristic combinations and their plan values (using the 'Number of New Lines' parameter). These two separate Analysis Items are needed so that I can restrict the characteristic values differently for each. ANALYSIS_ITEM_NEW_ROWS shows only new rows, since I have set both parameters 'Number of New Lines' and 'Data Row to' to 5.
    Problem: If the query underlying ANALYSIS_ITEM_NEW_ROWS is not able to go into change mode (such as when there is an active data slice, or a locking conflict), then instead of seeing 5 empty rows the user sees existing data from the underlying query. This looks bad and is confusing for the user.
    Can anyone think of a solution?

    Hi Jacky,
    The Bex analyzer works in the same way as in the web. You've restrict all charateristics which are not in your rows or columns to a single value. Then you can see that in excel the last blank row has a  black border. If this is the case you can add a new row.
    By pressing F4 in an empty cell you can select values or if you've know the key you can type it directly. Also you can add multiple rows at once. IP collects all rows below the query.
    If this not works, just put all chars from your aggr. level in the rows and check if this works. And then for each change to the restriction/layout run the query and look if you can still add new rows.
    Hope it helps.
    Regards,
    J.

  • Add new row and update on grid

    Hi all !
    Can you help me ?
    I want to add new row on grid ,but I canu2019t add .I donu2019t know ,have I written code correct?
    This is code that I used belown.
    I connect to database  as code :SetApplication()
    Public Sub SetApplication()
            Dim SboGuiApi As SAPbouiCOM.SboGuiApi
            Dim sConnectionString As String
            SboGuiApi = New SAPbouiCOM.SboGuiApi
            sConnectionString = Environment.GetCommandLineArgs.GetValue(1)
            SboGuiApi.Connect(sConnectionString)
            SBO_Application = SboGuiApi.GetApplication()
        End Sub
    Sub ItemEvent_Add(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, _
                                ByRef BubbleEvent As Boolean) Handles SBO_Application.ItemEvent
            If "frmGrid" = pVal.FormType And pVal.BeforeAction = True And pVal.ItemUID = "AddNew" Then
                If pVal.EventType = SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED Then
                    SetApplication()
                    oGrid.DataTable.Rows.Add()
                End If
            End If
    End Sub
    <a href="http://imageshack.us">[IMG]http://img402.imageshack.us/img402/2763/updateandaddnewnf2.png[/IMG]</a>
    <a href="http://g.imageshack.us/img402/updateandaddnewnf2.png/1/">[IMG]http://img402.imageshack.us/img402/updateandaddnewnf2.png/1/w699.png[/IMG]</a>

    Hi all !
    To day, I want to ask you about 2 problem .
    1:I want to update data as I changes data of column Name.I used code for this function update:
    If (pVal.ItemUID = "1") Then
                    Dim frm As SAPbouiCOM.Form = SBO_Application.Forms.Item(FormUID)
                    If frm.Mode = SAPbouiCOM.BoFormMode.fm_UPDATE_MODE Then
                        Dim n1 As String
                        Dim col As SAPbouiCOM.GridColumns
                        Dim i As Integer
                        col = oGrid.Columns.Item(1)
                        n1 = col.String()
                        Dim b1 As String
                        b1 = oGrid.Columns.Item(2)
                        Dim n2 As String
                        n2 = oGrid.Columns.Item(3)
      frm.DataSources.DataTables.Item(0).ExecuteQuery("UPDATE OHEM SET U_NameChild = '" & n1 & "',U_Birthdate = '" & b1 & "' ,U_*** = '" & n2 & "'")
                        frm.Update()
                    End If
                End If
    However,This code donu2019t work ,because it not get value of column Name :col = oGrid.Columns.Item(1)
                                                                     n1 = col.String()
    Can you help me test this function and can rewritten it?
    2:I want to add new child to database pass grid.
    If FormUID = "frmGrid" And pVal.BeforeAction = False And (pVal.ItemUID = "AddNew") Or pVal.ItemUID = "1" And (pVal.EventType = SAPbouiCOM.BoEventTypes.et_CLICK) Then
                'Try
                If (pVal.ItemUID = "AddNew") Then
                    Try
                        OForm = SBO_Application.Forms.ActiveForm
                        oGrid = OForm.Items.Item("MyGrid").Specific
                        oGrid.DataTable.Rows.Add()
                        oGrid.AutoResizeColumns()
                        'OForm.Freeze(True)
                    Catch ex As Exception
    MessageBox.Show("Can't add new row on Grid", "Error", MessageBoxButtons.YesNo, MessageBoxIcon.Error)
                    End Try
                End If
    But, it only add new row on grid ,so it donu2019t add on database.
    Could you help me ?
    <a href="http://imageshack.us">[IMG]http://img404.imageshack.us/img404/1980/addandupdatepr8.png[/IMG]</a>
    <a href="http://g.imageshack.us/img404/addandupdatepr8.png/1/">[IMG]http://img404.imageshack.us/img404/addandupdatepr8.png/1/w700.png[/IMG]</a>

  • Tabular form loses data on validation check and new row

    When you add new rows inside a tabular form and you have a validation which troughs out an error then all data inside the new rows are lost.
    Is there any workaround available?
    Tobias
    Edited by: Tobias Arnhold on Jun 29, 2012 12:48 PM
    I forgot to tell:
    Current version of APEX 4.0.2
    I also get this firebug error: uncaught exception: Syntax error, unrecognized expression: #
    Somebody else had this issue before too: APEX 4.0  Tabular Form - Javascript error due to validation
    Is there any workaround available?

    Yeah, you cannot validate on tabular forms so you pretty much have to find work-arounds in order to validate your information. When you create an LOV you can create it with a dynamic query which is the basis for your select list. You can just modify the query in the dynamic query to include a where clause. The where clause could then just state 'where EMP_ID2 <> EMP_ID1'. That way your select list for each row should not have matching values between EMP_ID1 and EMP_ID2. APEX can create the dynamic query for you, you just select the columns you want to base the LOV on, then modify the query after.

  • The "Roman" font is not being recognized in Firefox 4.0. As such, I cannot read any previously posted topics or post any new topics on websites using this font.

    The "Roman" font is not being recognized in Firefox 4.0. As such, I cannot read any previously posted topics or post any new topics on websites using this font.

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • Republish to Flickr from LR4 posts as new photos instead of updates them (only one set, not all)

    I have a single set on Flickr that I cannot republish updates to from LR4 - republishing a modified photo posts it as a new photo.  All other sets seem to work fine.  I use the "built-in" Flickr plugin and LR4.3 with a Flickr Pro account.  This issue started with LR4.2 when I got my Nikon D800.  I've tried just about everything I can think of and have been searching for any similar problems for months and decided to finally ask for help myself.
    Back in October I created a set of an event, and published the photos to Flickr without issue.  A week later I wanted to republish a few photos and noticed that they instead published to the set as new.  If I mark to republish, yet another copy is posted as new.  After some testing, this is only for images in this one particular set - any other images in any other set update their existing version as expected.
    After a while I began to wonder if the machine tag I added was causing it (active:event=) so I removed the tag from the image on both sides and tried to republish again with the same results.
    Naturally I delete the new copy of the image from Flickr which then dissassociates the LR photo with anything on Flickr.  I found another (cludgy) plugin which can associate photos in LR with photos on Flickr and that fixes the link between the two.  But again, republish from LR and a new copy shows up.
    Any ideas?  This has been driving me nuts.  I haven't found any special permissions or settings on the Flickr set or within LR which would explain why this one set is affected and no others.  I don't want to delete the set on Flickr and lose the history.  I'm trying to avoid having to manually update the images on Flickr where I would also have to manually update the titles, etc.

    This has happened for LR4.2, 4.3, 4.4, and now LR5.  The seemingly random nature of this bug is irratating.  Last week while still on LR4.4 I published a photo, changed it, and was able to republish it without issue.  Today on LR5 I published a set and went to republish a handful of photos only for them to be added as new photos to the set.  LR5 indicated that they were photos to republish and not new ones to the set.

  • Commiting 3 new rows - only 2 exist after

    Hi OTN,
    in my ADF BC application I have a bounded taskflow for creating new rows.
    It contains CreateInsert operations for VO1 and VO2 (VO2 is a child of VO1 and a child of another VO which is not touched by the taskflow). I've put postChanges between those operations so no temporary keys are there - the keys are generated via DB triggers.
    After those operations another bounded taskflow is called which contains CreateInsert for VO3 (VO3 is a child of VO1) and a form where Commit is called.
    After Commit I navigate to a test page which shows three forms representing VO1, VO2 and VO3. The page shows me that each of three new rows was created - I see them (with the real key valyes) in the forms.
    But in database only two new rows appeared. VO1 and VO3 (tables) have new rows, but no new row appeared in VO2 table. The form on a test page showed me a VO2 row which really didn't exist.
    Why is there no new row in one of tables?
    I use only one ApplicationModule.
    VO2 is a standard VO based on an entity. It is updatable.
    No errors in logfile.
    I how absolutely NO idea, why does it happen.
    Would love to hear an advice.
    Thanks.
    JDev 11.1.1.3

    Hi,
    if VO2 is dependent on VO1, when you create a new row in VO how to do you ensure its getting committe before VO2 gets committed ? Did you set the composite flag on the association between the two ? Another solution to handle this synchronization - to avoid constraint validations - is documented in the Fusion developer guide
    Frank

  • 'You can post in new year only after closing the previous year

    Hello Experts,
    I am also getting same error while executing depreciation run AFAB ''You can post in new year only after closing the previous year''.
    I found one OSS Note 18800 and it is saying solution as below ...
    At the first depreciation posting in the new fiscal year after a shortened fiscal year, the fiscal year variants must, in all cases, still be entered in asset customizing and in FI customizing for the affected company code. If necessary, all periods for the following fiscal year must be maintained with the variant of the shortened fiscal year.
    Up to 2.2D the following correction must also be installed:
    Please carry out the syntax check only in main program SAPLAFAR.
    But in my case there is no shortended fiscal year.
    Can I apply this OSS note correction instructions ?
    Please suggest me.

    Hi
    I don't think so. Moreover that is applicable till 2.2D.
    Moreover depreciation is to be run for all periods you have not run earlier. Please check upto which period dep run has happened. Thereafter close the fiscal years in order thro AJAB.
    S Jayaram

  • When posting, please post a new topic if you don't have an answer!

    Occasionally you may be tempted to add your voice to a chorus of complaints. Unfortunately, if what you are here for is to get assistance for a problem which you can't find an answer for, trailing an existing thread with a second complaint, is usually considered bad form. It has been given the nickname of "threadjacking." Instead, when you don't have an answer, and are seeking an answer, start a new topic by clicking on the Discussions header links of the board below the big bold text "Apple Discussions" to locate the board most appropriate for your question. Once you have found the board appropriate for your question, above the posts on the upper left should be a "Post a New Topic" link. Use that link to create your own topic. If that link is not there, you have probably already entered another thread, and if that is the case, use the link Batch to Topic List link to return to where you can Post a New Topic.
    Here are the advantages to not threadjacking:
    1. You will get a much wider audience of possible experts to help you out.
    2. The original poster of the thread will not get advice that does not pertain to their situation, and you won't get advice that doesn't pertain to your situation. You wouldn't want either you or the other person to get the wrong advice and try something which could make them get more in a hole.
    3. The experienced users with this situation won't get confused who they are offering advice to and give the wrong advice to the wrong person.
    Thank you!

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (117937)

  • Kad: What is a forum, board, and category and how to post a new topic?

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as is, with no guarantee of the effectiveness or reliability of the information. Apple does not guarantee that these links will be maintained or functional at any given time. Use the information below at your own discretion.
    In the Discussions Feedback board you'll see this quote:
    If your question concerns a hardware or software technical issue, please do not post in this forum — instead, go to the Apple Discussions Homepage, select an appropriate product category and follow the links until you reach the correct forum for your post, then click the Post New Topic link.
    It appears that many still miss this advice as they go ahead and ask in the Discussions feedback page how to post a new topic. This advice is as clear as can be, though some may not understand what the terms are in this quote. To clarify Apple Discussions is organized into the following elements:
    Apple Discussions Homepage
    - Categories of Topics
    - - Individual _Topic Forums_
    - - - Individual _Topic Threads_
    When you enter a Category you will see _Topic Threads_ but no Post New Topic link. The reason for this is that all the threads in each forum are combined beneath the individual Forum links. If you wish to post a new topic in any specific Forum, you have to navigate to the Forum first to post a new topic in that Forum. Don't let the preponderance of views or responders make you think you need to post a "me too". In fact this makes it harder on the original poster to determine what is the cause of their problem. It is better to post your own topic, so you can get more focussed attention, and a wider audience who can help you. If you have a reply that might lead to a solution for the original poster, by all means reply. Otherwise you just contribute to the length of the thread, and don't really help in finding a solution.
    An example of a Category: iMac
    An example of a Forum: Using your iMac G5
    Note also the header of the board says: "Category" or "Forum" to help guide you.
    Be sure also to identify your Mac or operating system before posting in specific forums, as some Macs may look similar. If you need help, ask first.
    Do you want to provide feedback on this User Contributed Tip or contribute your own? If you have achieved Level 2 status, visit the User Tips Library Contributions forum for more information.

    Hi there! 
    Well If what you did is you transfered the Pictures from one folder to another using your phone, the Root folder is the main folder so lets say you transfered it to the memory card the root folder is the memory card.
    Hope tis' help!
    "If you think this post is helpful, please click on the green button"

  • Kichat: FAQ 4 When do I Post a New iChat Topic ?

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as is, with no guarantee of the effectiveness or reliability of the information. Apple does not guarantee that these links will be maintained or functional at any given time. Use the information below at your own discretion.
    When do I Post a New iChat Topic ?
    Applies to All Version of iChat
    Welcome to the    Discussions
    We realise you may be new to posting here in these Discussions. Please consider the following (Link to Terms and Conditions See item 2).
    If your Post seems NOT to be an answer for the original postee. Please Don't Threadjack. See above link for explanation.
    Pause for a moment and consider carefully if your reply belongs with an existing topic.
    Is your issue the same as the Original Message ?
    It's okay to post a "me too" and any relevant details you have. But if your issue is only similar, but different in some way, your reply may dilute the focus and divert the current effort in the thread (threadjack), so you should consider Adding a Discussion Topic about your issue, which will get more concentrated attention, and signify a trend in topic titles (if you use a similar subject title).
    Note: The Reply links at the top right with preceding return arrow of the original message will result in a new reply to the original message. Consider that this may not be what you intended.
    So, here's a Tip: Always use the reply button of a message (every reply in a thread has a Reply link) to relate your post to that message, and you'll always be in the proper position in the thread.
    I suggest that you Post a New Topic (Here For iChat 3 or here for iChat 4) including information which would help better answer your question such as: Mac model and speed. Router and settings, Modem and settings, circmustances:
    * Your computer's specs. Scroll to the bottom and fill in the boxes and Save.
    * Your OS specs (As Above)
    * Which Version of iChat.
    * Your connection method.
    * Details of your Uplink and Download speeds from here with some indication if this is near the figure your ISP says you should get.
    * The ports you have set up on your Mac's Firewall (Tiger for iChat 3 or if ON in Leopard for iChat 4).
    * The ports you have set up in your Router and Or Modem.
    * Any error Messages you have seen and where that was. (See Note on Restrictions at bottom of this User's Tip)
    * An indication of whether you have read the User Tips
    And any additional info such as:
    * Firewire cards and devices - powered and unpowered.
    * What camera and type it is.
    * The number of computers connected to the internet at your location.
    * The number and type of devices (routers and modems) are in your set up.
    * If you are using an SIP service like Voice over IP or Vonage.
    Unless you have a solution for the original poster of a thread, it is not a good idea to hijack a thread with a new problem no matter how similar the problem is. You can reference to other threads by copying the web address into your post. But solutions given in a thread will not always pertain to you, and solutions to your problem won't always pertain to the initial poster if you attempt to hijack a thread. It is best to have individualized attention so the right advice is given to the right people. You can read through other threads and ask if something pertains to you, but please don't hijack the threads. It is worth noting that often most posters have not turned Off the Subscription feature so they will get an email of every subsequent reply.
    Note:
    Since OS 10.4.7 and iChat 3.1 Apple have included a Log feature that pops up on failed Audio or Video chats.
    This Pop up can be expanded by using the Details Reveal triangle to see the content before you send it to Apple.
    Copying and posting this Log can be useful.
    However not all of it is and it should be restricted to the bits above the line that reads "Binary Images for iChat"
    Old Logs are stored on your Computer in your Home Folder (Little House icon)/Library/Logs/iChatConnectionErrors.
    Hope this helps.
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
    This is the 3rd version of this tip. It was submitted on 9:50 PM, Friday; June 19, 2009 by Ralph Johns (UK).
    Do you want to provide feedback on this User Contributed Tip or contribute your own? If you have achieved Level 2 status, visit the User Tips Library Contributions forum for more information.

    Done Deal

  • Why can't I post a new topic in the Leopard discussions.

    The option is available in other Apple discussions, but for some reason it's not an option for me in the Leopard area.
    I just want to ask a simple question about why Firefox is now launching every time I restart my computer, but don't want to do so in a discussion about Final Cut or iLife or any of the other forums where posting a new topic is an option because that would be bad etiquette. At the same time, I'm not given much of an option.
    Message was edited by: dddnlb

    Hi dddnlb!
    "Why can't I post a new topic in the Leopard discussions."
    The info posted below is also available in the Announcement How to Post a New Topic
    If you have a Technical question about Apple Hardware, Programs, Services, Technology, Software, Applications, Products, etc, from this page Discussions - Forum Home, select an appropriate Category from one of the sixteen divisions.
    For example, under Mac OS X Related Software, choose the Category Mac OS X v10.5 Leopard.
    On the page that opens, select a Forum, such as Installation & Setup, or Using Mac OS X Leopard.
    Most Category pages, have numerous Forums within them.
    But some may have only one, two, or three.
    For example, the Safari Category page, has three choices listed under Forum / Category:
    Safari For Windows
    Safari for Mac Support forum
    Safari 4 (Beta).
    And the Apple Remote Desktop Category, has only one Apple Remote Desktop Forum.
    From a Category page, select an appropriate Forum to post in.
    On Forum pages, there is an option to Post New Topic.
    More info here How Is Discussions Content Organized?.
    Edit: I have requested that a Host, relocate your Topic to a more appropriate Forum.
    As it will be transferred, it is not necessary for you to repost elsewhere, at this time.
    ali b

  • Set maximum Number of post in News Feed WebPart

    Is it possible to configure maximum number of Posts in News Feed webpart under following and EveryOne.
    Also would like to know more about Newsfeed webpart internal functioning. Any link woud be really helpful.
    Ashish Baranwal To know what you know and what you do not know, that is true knowledge

    Hi Ashish,
    The Newsfeed contains recent activities from followed entities. The
    Newsfeed displays 20 items and is sorted in reverse chronological order. Items listed in the
    Newsfeed are activities from entities a user follows, and conversations from any site feeds the user follows.
    The Everyone feed shows the last 20 posts or replies across all users. The distinction between the
    Everyone feed and the
    Newsfeed is that the
    Newsfeed only shows activities from entities the user is following.
    More information, please refer to:
    http://technet.microsoft.com/en-us/library/jj219700.aspx
    There is not an OOB way to change the max number of posts in Newsfeed. You may try to use Code to achieve it. Here is a similar post for your reference:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/545b139c-8c07-48bc-93e4-3b1ef5f4bad2/community-site-newsfeed-posts?forum=sharepointdevelopment
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

Maybe you are looking for

  • XML to Internal tables

    Hi, Our scenairo is to retreive the data from XML file and convert it into Idoc for inbound processing. I need to get the data from xml to the internal tables so that i can convert them to idoc through Function Modules. My issue is XML file is not fi

  • How to view flash based website?

    How to view flash based website?

  • Transitioning off Creative Cloud.

    I currently own Photoshop CS5 and Lightroom 3 on CD.   I have also been using Creative Cloud since it launched and have since moved to the Photographer edition of Creative Cloud. I am having a hard time justifying continuing to pay for a subscription

  • What voltage is the standard memory that comes with 2011 IMacs?

    what voltage is the standard memory that comes with 2011 IMacs?

  • Cannot solve problem in course TJA311

    Hello! Perhaps this is not the correct place to ask this question but I take my chanse. I'm sitting with the course material for TJA311 doing some preparation before taking it for real. A colleague of mine has attended it and recommended me to go thr