[iPhone] Switching current view crashes application

I have a UISegmentedControl that alternates the current view. The problem is that after exact 4 clicks the controller crashes without any error message.
If a move the allocation of MyView1 to the init method the code works but the view won’t update. So I guess its something with the UIScrollView.
All suggestions are very appreciated.
- (void)segmentAction:(id)sender
UISegmentedControl* segCtl = sender;
[self.scrollView release];
self.scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 700, 420)];
self.scrollView.frame = CGRectMake(0, 0, 320, 420);
[self.scrollView setBackgroundColor:[UIColor whiteColor]];
switch ([segCtl selectedSegmentIndex]) {
case 1:{
CGRect frame = CGRectMake(0, 0, 456, 430);
MyView1 *v1 = [[MyView1 alloc] initWithFrame:frame];
[self.scrollView addSubview: v1];
[self.scrollView setContentOffset:CGPointMake(0,0) animated:YES];
[self.scrollView setContentSize: [v1 bounds].size];
[v1 release];
self.view = self.scrollView;
[self.scrollView setNeedsLayout];
[self.view setNeedsLayout];
break;
default:{
[self.customViewController reset];
self.view = self.customViewController.view;
[self.customViewController.view setNeedsLayout];
[self.view setNeedsLayout];
break;

So you have a segment control where you want to have it display either a scroll view or a custom view, right? I think the problem might have something to do with your allocs and releases, but that's just a theory. if 'scrollView' is declared as a 'retain' property, it will automatically be retained when set and released when you set the property to something else or nil. Also, why do you init the scroll view with one frame and then change the frame on the next line? Try this for kicks:
UIScrollView *temp = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 420)];
[temp setBackgroundColor:[UIColor whiteColor]];
self.scrollView = temp;
[temp release];
If you are not using 'retain' in your properties then that might be a problem.
Why do you call setNeedsLayout twice in both cases when view is the same as the other object?

Similar Messages

  • VBA Macro to Set Current View

    Does anybody know what command I could use in VBA to change the Current View in Excel for BPC 7M?
    Edited to add:
    I'm aware of the MNU_eTOOLS_MEMBERSELECTOR_x macro.  What I'm looking for is code to change the current view systematically without going through the member selector.
    Edited by: Will Leonard on Feb 22, 2010 1:26 PM

    Hi,
    Whenever I would like to change the current view via VBA, I use the methods which are released by opening a custom menu. However in most of the cases you dont want your end user to open a custom menu, but you would like to have the methods. Therefore I always do the following to simulate a custom menu (steps 1 to 4 can also be performed by opening a custom menu template and delete the unnessecary data).
    1) Create a new workbook and add the three new sheets
    2) Name the sheets, EV__RESULT,EV__MENUSTYLE and EV__DEFAULT
    3) In the sheet EV__DEFAULT type %DEFAULT% in range("A3")
    4) In the same sheet enter on row 4 the following items accross the columns:
    -%MenuItem%
    - Level
    - Action
    - P1
    - P2
    - P3
    - P4
    - CVOverride
    - NomalScreen
    5) Open the VBA editor and under thisworkbook module enter the following code:
    Private Sub Workbook_Open()
    Application.Run "MNU_ETOOLS_PSMANAGER_COMPILE"
    End Sub
    This code will compile the custom menu and will release all methods within it
    6) To change the current view enter the following code
    Sub Change_CV
    Application.Run "EVMACROCALL", "EVGOTOHOMESHEET", "", "", "", "", "<Your dimension>=<Your ID>", ""
    End sub
    Replace <Your dimension> with the dimension for which you would like to change the current view
    Replace <Your ID> with the member id code
    7) Hide the three sheet (EV__XXX).
    8) Close the file.
    9) Re-open the file and run the macro Change_CV and see if the CV has changed.
    You will now be able to change the current view via VBA. Only downside is that whenever the document is closed the methods will not be available anymore.
    BTW you can call any MNU command (e.g MNU_ETOOLS_REFRESH) and Custom menu function. For more information on the custom menu function see the help function and search for "Using custom menu functions". Refer to the CVoverride for an example on how to change the Current view between applications etc.
    HTH,
    Peter
    Edited by: d. G. PETER on Jun 4, 2010 4:23 PM

  • CR2010 Report Viewer control crashes application when deployed

    I have been using the latest release for CR2010, on a Win 7 x64 machine running VS2010 targeting .Net Framework V4, and all is working fine.
    However, when I publish my WPF application as an x86 client and deploy to a WinXP machine, the Report Viewer control crashes the application.
    Any clues out there?

    Yes there is not much to go on. As I described, the symptom is a crashed application - nothing else I can tell you. When you select a report to load into the Report Viewer control - down it goes with nothing more than a "send this dump to microsoft" message.
    I do have some further enlightenment however. I can deploy the application to the standalone machine straight out of the Release bin and it works fine. Given that is the case I can rule out the CR2010 run time install as the issue. What I suspect is the problem is that the individual report files (.rpt and .cs) are not being packaged by the VS2010 publisher.
    There may be a way to do this, but I do not know of it at this point in time, so I have marked this problem as having been solved, but I would like to know if anyone has a solution to the deployment of CR files using VS Publish.
    Thanks

  • When I turn my Iphone for horizontal view it doesn't change, on any application???

    When I turn my Iphone for horizontal view it doesn't change, on any application???

    You most likely have orientation lock on. Double tap the home button, swipe left to right, far left is the orientation lock, tap on/off.

  • Table View in View-based Application

    Hi.
    I want to use an UITableView in a View-based Application.
    All examples I found are for Navigation-based Applications.
    I Found only one example for View-based Applications, but it create all components himself without the Interface-Builder.
    I search an example with Interface-Builder.
    My main problem is, when i create a view with Interface-Builder, the controller class does not inherit from UITableViewController.

    GrinderFX wrote:
    I want to use an UITableView in a View-based Application.
    Hi, and welcome to the Dev Forum!
    Firstly, I would point out that you don't need to use UITableViewController to control a table view. The table view controller is just more convenient. So for example, you could simply drag a table view from the library in IB and drop it onto your view. Then you could hook up the table view's dataSource and delegate outlets to the File's Owner. Then you would add the data source and delegate protocols to the @interface of your UIViewController subclass and add the required data source and delegate methods to the @implementation.
    I mention the above because building your table view that way is very instructive. If you want to learn more about table views in general I would recommend Chapter 8 of +Beginning iPhone Development: Exploring the iPhone SDK by Mark and LaMarche+, which includes 3 table view projects that don't involve a navigation controller.
    My main problem is, when i create a view with Interface-Builder, the controller class does not inherit from UITableViewController.
    Returning to your specific question, IB allows you to change the class of an object. Here are the steps to use the View-Based Application template as you described (In the following I'm using Grinder as the name of the project; e.g. the app delegate class is named GrinderAppDelegate, and the view controller subclass is named GrinderViewController):
    1) _Change parent of view controller subclass in your code_
    In GrinderViewController.h, you only need to change the superclass from UIViewController to UITableViewController:
    @interface GrinderViewController : UITableViewController {
    However it will be easier later on if you make new files from the UITableViewController file template:
    a) Ctrl-click on GVC.h and GVC.m in the Groups & Files tree; select Delete->Also Move to Trash;
    b) Ctrl-click on Classes; select Add->New File->iPhone OS->Cocoa Touch Classes;
    c) Select UITableViewController subclass from the right center panel and click Next;
    d) File Name: GrinderViewController.m; check Also create GrinderViewController.h;
    e) Make sure the name for these new files is exactly the same as the ones you deleted; if you make a mistake here, delete the new files and start over, because that name must be the same in several other files;
    f) Click Finish; the replacement files should now appear under Classes.
    2) _Change the view controller class in IB_
    a) Double click on MainWindow.xib under Resources in the Groups & Files tree;
    b) Make sure the MainWindow.xib window is open by selecting Window->Document from the IB menu;
    c) Locate the View Mode switch, upper-left, in the xib window, and select the Center position;
    d) The xib window should now be displaying two columns with small icons on the left;
    e) Select the Grinder View Controller icon;
    f) Select Edit-Delete to delete that icon;
    g) Select Tools->Library from the menu, and expand Controllers in the Library Panel;
    h) Drag a Table View Controller to the xib window and drop it right under the app delegate icon;
    i) Select Tools->Identity Inspector from the menu to open the Grinder View Controller Identity Panel (the new Table View Controller should still be selected in the xib window);
    j) Under Class Identity, select Grinder View Controller from the list; tab out of the Class field to be sure the selection is recorded;
    k) Ctrl-Click on Grinder App Delegate and connect the view controller outlet (ctrl-drag) to Grinder View Controller;
    l) Expand GVC in the xib window and delete the Table View icon (since we want it in the other xib file);
    m) Reselect the GVC icon and open the Grinder View Controller Attributes panel;
    n) Under View Controller, select GrinderViewController from the NIB Name list;
    o) In the Table View Controller IB Editor window, select GrinderViewController.nib to open the other xib file;
    p) Make sure the GrinderViewController.xib window is open in small icon mode as in steps b-d above;
    q) The class of the File's Owner should be GrinderViewController;
    r) Delete the View icon;
    s) Drag a Table View from the Library to where the View icon was;
    t) Ctrl-click on File's Owner and connect (ctrl-drag) it's view outlet to the Table View;
    u) Ctrl-click on Table View: connect both the dataSource and delegate outlets to File's Owner;
    v) File->Save both xib files.
    3) _Make some rows in the table view and test_
    a) Open GrinderViewController.m in Xcode;
    b) Add the commented lines (be sure to use the correct line for your target OS);
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 20; // <-- change to more than zero
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
    // Configure the cell
    // add this line for OS 2.x
    cell.text = [NSString stringWithFormat:@"Row %d", indexPath.row];
    // add this line for OS 3.0
    // cell.textLabel.text = [NSString stringWithFormat:@"Row %d", indexPath.row];
    return cell;
    c) Build and Go.
    I should add that the procedure might be a little easier if you start with the Window-Based Application Template. But the above is good practice in editing xib files.
    Hope that's helpful!
    - Ray

  • Upgraded to itunes 11.4 and now when i connect my iphone 4s..itunes crash!!!!

    upgraded to itunes 11.4 and now when i connect my iphone 4s..itunes crash!!!!when the iPhone is disconnected iTunes is working properly....
    please help me!!!

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    For this step, the title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    In the top right corner of the Console window, there's a search box labeled Filter. Initially the words "String Matching" are shown in that box. Enter the name of the crashed application or process. For example, if iTunes crashed, you would enter "iTunes" (without the quotes.)
    Each message in the log begins with the date and time when it was entered. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    ☞ The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    ☞ Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, select
              DIAGNOSTIC AND USAGE INFORMATION ▹ User Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of crash reports. The name of each report starts with the name of the process, and ends with ".crash". Select the most recent report related to the process in question. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.
    If you don't see any reports listed, but you know there was a crash, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report—they're very long and rarely helpful.

  • DPS viewer crashes on subscribe

    When I perform an iTunes subscription in iOS 7, the Adobe DPS viewer crashes and fully exits.
    Console log of the iPad shows:
    Oct  9 21:23:39 Jasons-iPad com.apple.launchd[1] (UIKitApplication:com.example[0xb7a7][4303]) <Warning>:
                    (UIKitApplication:com.example[0xb7a7]) Job appears to have crashed: Segmentation fault: 11
    Oct  9 21:23:39 Jasons-iPad backboardd[29] <Warning>:
                    Application 'UIKitApplication:com.example[0xb7a7]' exited abnormally with signal 11: Segmentation fault: 11
    Oct  9 21:23:39 Jasons-iPad SpringBoard[33] <Warning>: -[SBFolderController pushFolder:animated:completion:]
                    Folder icon <SBNewsstandIcon: 0x17c5a920; nodeID: "com.apple.newsstand">
                    Folder: <SBNewsstandFolder: 0x17c0d640> cannot be opened because it does not exist on the current page.
    Oct  9 21:23:39 Jasons-iPad ReportCrash[4306] <Notice>: Saved crashreport to
                    /var/mobile/Library/Logs/CrashReporter/viewer_2014-10-09-212339_Jasons-iPad.ips
                    using uid: 0 gid: 0, synthetic_euid: 501 egid: 0
    Above, my App ID was changed to "com.example" to protected the actual ID.
    Nothing much to the code - been in use for over a year:
    adobeDPS.initializationComplete.addOnce(function () {
        var transaction = adobeDPS.receiptService.availableSubscriptions[productId].purchase();
        transaction.completedSignal.addOnce(function (transaction) {
            // This does not seem to be reached
        }, this);
    }, this);
    It displays available subscriptions, prompts for sign in, displays confirmation, and success iOS standard messaging.  After the purchase was successfully, the app immediately crashes.
    v31 running on iOS 7 - testing iTunes subscription using a sandbox account.
    Crash log:
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Subtype: KERN_INVALID_ADDRESS at 0x00000000
    Triggered by Thread:  0
    Thread 0 Crashed:
    0   Foundation                     0x2fe58a3a NSKVOPendingNotificationRelease + 6
    1   CoreFoundation                 0x2f4baeb6 __CFArrayReleaseValues + 190
    2   CoreFoundation                 0x2f44318a _CFArrayReplaceValues + 290
    3   CoreFoundation                 0x2f446b98 CFArrayRemoveValueAtIndex + 100
    4   Foundation                     0x2fe58c8a NSKeyValuePopPendingNotificationPerThread + 26
    5   Foundation                     0x2fe4728a NSKeyValueDidChange + 366
    6   Foundation                     0x2fe338c8 -[NSObject(NSKeyValueObserverNotification) didChangeValueForKey:] + 84
    7   viewer                         0x002d306a 0xb8000 + 2207850
    8   CFNetwork                     0x2f18c428 __55-[__NSCFURLSession delegate_task:didCompleteWithError:]_block_invoke + 48
    9   Foundation                     0x2fe563c4 -[NSBlockOperation main] + 128
    10  Foundation                     0x2fe465a6 -[__NSOperationInternal _start:] + 766
    11  Foundation                     0x2feea768 __NSOQSchedule_f + 56
    12  libdispatch.dylib             0x3a6a781c _dispatch_client_callout + 20
    13  libdispatch.dylib             0x3a6ae49a _dispatch_main_queue_callback_4CF$VARIANT$mp + 274
    14  CoreFoundation                 0x2f4dc89c __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 4
    15  CoreFoundation                 0x2f4db170 __CFRunLoopRun + 1296
    16  CoreFoundation                 0x2f445eba CFRunLoopRunSpecific + 518
    17  CoreFoundation                 0x2f445c9e CFRunLoopRunInMode + 102
    18  GraphicsServices               0x3437965e GSEventRunModal + 134
    19  UIKit                         0x31d92148 UIApplicationMain + 1132
    20  viewer                         0x000d09a6 0xb8000 + 100774

    If you have an iPad of first generation, it is happening because lack of memory. Try to do PDF stacks instead of PNG/JPEG ones.

  • [iPhone] Switch UIViews

    Hi.
    I just have a pretty basic question actually: How do I switch between views on the iPhone?
    I don't want to use a tab bar controller or navigation controller. Tapping a button on one screen (view) should bring the user to another screen. Possibly I want to have a nice transition animation, like a flip or a sliding animation.
    Right now I'm just adding multiple views to the window and I just view / hide them according to what I want to show. It seems to be ineffective. I would much rather have a stack or something, so that only views that are currently displayed are loaded into memory. Also, I don't want to worry about hiding views that are not shown. Something like switchToView:viewXYZ would be much rather preferred. Is that even possible. Maybe with a view controller? There must be a way, right? I don't thing I'm supposed to just hide / show views.
    Thank you very much!
    Florian

    Interesting.. I have been using the UIView animation for changing views, but had not figured out yet how to push a view right or left.. however, when I try this, it does not work as expected. The push works, but the new view also "fades" in while pushing.. instead of a clean push.. any thoughts?
    Here is the code...
    CATransition* trans = [CATransition animation];
    [trans setType:kCATransitionPush];
    [trans setDuration:0.5];
    [trans setSubtype:kCATransitionFromBottom];
    ... code to change the view...
    CALayer *layer = rootViewController.view.layer;
    [layer addAnimation:trans forKey:@"Transition"];
    also tried :
    [trans setType:kCATransitionMoveIn];
    I have only tried this on the simulator.. I guess I should try it on the device. as I have noticed other animations do not display properly on the simulator (for example, CurlUp does a dissolve... in the sim but works on the device..) I will update when I test it.
    thanks!
    michael golden

  • IPhone Calendar List View Extends Back Only One Year

    My iPhone calendar List view extends back approximately one year despite the fact that I have calendar entries extending back to 1999 and that older data is visible under the Day and Month views. This is a problem because the only search mechanism in iPhone calendar is through the List view. Therefore, any search I conduct extends back only to the data in the List view ... which means back only one year.
    Does anyone have any thoughts or suggestions on how I could change this such that the List view extends to include ALL of my calendar entries and is in conformity with the Day and Month views? (I wanted to ask if anyone knows how to "correct" this, but perhaps Apple has designed it this way to speed-up the searching in List view ... I'm not certain.)
    I am currently running the most recent iOS update, am syncing my iPhone calendar via MobileMe, have upgraded to the new version of the MobileMe calendar, and have ALREADY reset my sync. history, deleted my iPhone calendar and re-synced it, etc. These don't resolve the problem.

    I've noticed that the date to which the List View will "look back" will change depending on software updates or syncs.
    For instance, a few weeks ago my List View went back to December 2009 ... now it goes back to Jan. 2010 (i.e. I lost a month of "look back"). I do not specifically recall what triggered this change, but I reset my sync. log during this period.
    If you make no changes to the sync. log or update the software, the List View start date will stay constant I believe. For instance, if the List View goes back to Jan. 1, 2010 right now it should stay that way until you reset the sync. log or update the iPhone software. Theoretically then the List View can "look back" much longer than 12 months assuming you make no changes to the sync. log or update the software. Of course, this doesn't address our issue here, but I thought I would point out that there seems to be a consistent pattern here and not some random bug screwing things up.
    I'm still thinking that this is the way Apple intended it to work. In other words, that Apple felt it necessary to limit the calendar search feature to approximately 12 months worth of calendars. I hope I'm wrong.

  • How to set Print...More Options...Current View in ActiveX control?

    I am using Visual Studio 2012 to develop an application that will open large PDFs (24" x 36") and allow the user to zoom to a particular part of the document. I want to give them a Print button on my application to simply print the Current View of the document to the default printer. I want limited customer options, so no showing the Print Dialog, etc... This will be for general customer use. I am trying to do this with the Acrobat Reader ActiveX control. If this cannot be done with the ActiveX control, I thins something I could do with the full Acrobat SDK? Thanks!

    The Reader control actually does what I want pretty well. I set the mouse wheel to allow zooming, the hand tool to drag the document around works easy and fast. I just need to turn off some of the Acrobat Toolbar options and set this Print Current View option.
    This is frustrating as back in Acrobat Reader 7 or 8 I think, you could set the Current View in the Print Dialog and the setting would stay until it was specifically changed. Now it reverts per print job, thus I now having to code against the Reader control, or other, to get around it, to keep the user from having to set this option each time (and the user will change frequently as they are walk-in customers)
    Anyway with this additional list of requirements, do you thihnk I still cannot do it with the Reader ActiveX control? If not, and I need to use the SDK, do you mean I would have to buy a full copy of Adobe Acrobat and install on that system for the application to work? If so, do I also need to buy another full copy of Adobe Acrobat for my development system so I can write code and test the application? If I need a full copy for the Dev computer, does Adobe have any kind of reduced pricing for a Dev version?
    Thanks!

  • When I use my IPhone 4S to view the Shaw Go Movie Central App when I am at home I only use WiFi which is automatic, I start watching a show and sometimes I will get a message like "you can not use your cellular for video playback" or something close to th

    When I use my IPhone 4S to view the Shaw Go Movie Central App when I am at home I only use WiFi which is automatic, I start watching a show and sometimes I will get a message like "you can not use your cellular for video playback" or something close to that. Then I received an email from Telus saying I had used my 3G instead of Wi-Fi  using 75% of my data. How can this happen when I'm on Wi-Fi at home? If it switched to 3G for some reason I should have been disconnected and not just transferred to 3G network using up my data. What is the fix for this??

    It doesn't have to be that complicated, Verizon iPhones come unlocked, just tell VZ you're going on Holiday/Traveling and suspend the service, no need to pay for service if you're not going to be using it. Pick up local SIM cards in the countries of your choosing, pop them in, re-activate iMessage and you're set!
    I recommend getting a SIM card from the Three network in England, they have great EU roaming rates and free like-home roaming in Italy.
    Set your phone's region to match the country you're in, it'll save from some headaches when calling local/international numbers.
    To answer your questions,
    1. If you choose not to have a local SIM card, it is good to keep your phone in Airplane mode to save battery.
    2. Make sure the two iPhones have different names to reduce sync/restore issues.
    3. If husband has an iPhone also, you can chat with iMessage/Facetime, just give him heads up about the new number you'll have. Otherwise, use Whatsapp if he's got an Android. You can activate Whatsapp with your American number or the international number if you choose to get a SIM in Europe.
    Also, Get the MagicJack app and/or Google Hangouts, both of those apps provide you with free calling to the USA and Canada using any internet connection. Google Voice is another good way to SMS across the seas.
    Let me know if you need any more tips for iPhoning across the pond.

  • What may be the reasons for my iphone switching off all of a sudden and how do i prevent it?

    what may be the reasons for my iphone switching off all of a sudden and how do i prevent it?

    With the home page on display, in the menus select View, then Zoom and then Reset
    For details on the zoom features see [[page zoom]] and [[text zoom]]

  • Changes in the Dimensions not reflected in the Current View and Excel Sheet

    Hi Experts,
    We're using BPC MS Platform Version 7.0.112 and we're having problems. When we make changes in the dimension members like adding members or making changes in the hierarchy or groupings, it takes time for the changes to reflect in current view or in the excel sheet. After full processing of the dimension we can see the changes we've made when we reopen the dimension member but when we try to use the member we've added in the template, it's not yet in the current view. I've already tried, full processing of all the dimensions, processing application and reassigning aql index, refresh dimension members and yet the changes we've made doesnt appear in the current view. And what's odd is that sometimes the changes we've made would appear after a day or two or nothing at all.
    What could be possibly causing this issue?
    Thanks,
    Marvin

    Hi Dzmitry,
    Thanks for your response, I'm just wondering whats causing this? We never had this issue on older versions of BPC though, so it would really help if we would know the cause of this. Basicaly when do changes in a dimension, after processing (Full Process, System Offline and Process through member sheet), we just had to set the AppSet status to available and refresh the dimension members in Excel and all the changes would already be visible.
    Thanks,
    Marvin

  • Content Viewer Crashes When Viewing Web Content

    Hi,
    I'm having issues with the folio Content Viewer crashing before web pages fully load  my hyperlinks. I need to proof the folio with the client before we can publish, so I need everything to be working and know that the final app will not have the same issue.
    I've set up buttons that link to coordinates on Google Maps. When a button link is clicked, the web viewer begins to load then immediately disappears (sliding to the bottom of the screen before the web content finishes loading) or crashes the Content Viewer completely.
    I searched the forums and did not really find any solutions, other than when using a lot of images, they need to be sized/sampled down to use less memory. My folio does have a few articles that use quite a few images, so I've sampled everything down to 72dpi and noticed a slight increase in loading speed when loading each article. At first I thought this fixed the issue as the maps were loading for me, but after switching articles, it's crashing again.
    If anyone has come across this and has a solution, please help me out!
    Thanks,
    S

    Found a solution.
    https://blogs.adobe.com/indesigndocs/2013/06/memory.html
    Hopefully this helps someone else.
    Cheers!
    S

  • How many iPhone I can install my application with my apple ID? and is it legal or not??

    how many iPhone I can install my application with my apple ID? and is it legal or not??

    I believe the limit on how any times an application can be installed has been removed, but, as it stands, there is no limit to the number of installations you can have... just the number of activated installations.  For what it sounds like you are doing, there is should not be an issue of hitting a limit even if there is one.
    If you are reinstalling on new machines then you probably want to deactivate the current installations before you attempt to activate on the new machines.

Maybe you are looking for

  • Error code before placing lumia 900 exhausting 32 attempts

    Hello everyone two years ago bought a Nokia Lumia 900 rm of at & t Attus cyan inside the box , but then enter the sim and I begged codes which enter without knowing then I realize that there is a sticker that says phone is ready for use withh aT & T

  • Cannot connect to mobile hotspot using wpa; only open security works

    I have a Galaxy S5 and am trying to connect to the mobile hotspot using my Surface tablet.  If I have the mobile hotspot setup using WPA2 security with a password I cannot connect however I can connect if I am using Open security. I can connect the s

  • After downloading the new foxfire 9 I open the fild and it looks like chinese, what setting is wrong?

    After opening Foxfire 9 this is what I get:Greenfield üìL" ¶&M0MMC ˇ& y0&d¬diì»-ÇiÇ0LT¢∏^i¢h'À@∞–&ˬ@į"†∞œ˘"ÉóÌãa¬ÁHH√a|cçÑdy}π√\°˛Äû¢·(Ñ)äávZ'ìŒo†j#H†Ç("Çâ AHêÇ( B``@êa)$ëÃ`AHà¿¿Ç!å`HB)1¿$@A¶L-ô04d4dh"ñç0h⁄öíHíà∞§≥-Ö15¨D§âÅé45∆8ö¿÷ܱ°≠bA®$ìXX»1!à-

  • Restrict Creation of an IB record when Quantity is created for item

    Hii, When we create quantity for a Serailized and install base trackable item , an Install base record (Item instance) is automatically created . Is there any way to restrict the creation of Install base record. Thanks in Advance Pavani

  • Advice: Potential Performance Improvements

    All My client has requested that their queries return in <15 seconds but a basic run-time was 1min 20 seconds. In order to improve performance, we have made several improvements to our system. So far, we have:- Built aggregates on the cubes Turned on