landscape

Using cfcontent in ColdFusion 7, how do I output an MS Word doc in landscape mode?

The title is pretty self explanatory. I'm using cfcontent in ColdFusion 7 to output a page as an application/msword file type and I want to know how to make it default to landscape mode without resorting to downloading a third party library. ...

Rotate Address Book Controller

Hi Everyone: I am wondering if there is some way to rotate a created ABPeoplePickerNavigationController. I am creating the ABPeoplePickerNavigationController like this: ABPeoplePickerNavigationController *addressBook = [[ABPeoplePickerNavigationController alloc] init]; addressBook.peoplePickerDelegate = self; [self presentModalViewCo...

Landscape printing in Rave Reports Delphi 7

I have create report designs in Rave (Delphi 7). However they are in portrait mode. When user selects landscape printing from Print Setup, it is printer in portrait again anyway. How can I fix it, so that Rave generates reports in a format which user selects during print setup? ...

Rotation Portrait Landscape with 2 XIB

Hello, i have got 2 GUIs and 2 Controllers 1 is called landscapeguicontroller and the second is called highguicontroller. Now generally i call the highguicontroller, and when i rotate my iphone it detects that and then it shows the landscapeguicontroller: Code: landscapeguicontroller *neu =[[landscapeguicontroller alloc] initWithNibNa...

Has anyone attempted and succeeded in getting Apple's iPhone PageControl demo to render correctly in Landscape mode?

I have had many successes programming the iPhone in Landscape mode, but I have been unable to get the Apple PageControl demo to run in Landscape mode and render the content correctly. The demo uses the AppDelegate class as an implicit ViewController which manages a UIScrollView, and the AppDelegate creates a set of UIViewControllers for ...

openUrl in landscape mode in iphone

Hi Fellas, I am trying to open the url through safari in landscape mode. But still not able to do it. Following is the code. [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.abc.com"]]; [[UIApplication sharedApplication]setStatusBarOrientation:UIInterfaceOrientationLandscapeRight animated:YES]; Thanks in ad...

IE printing landscape vs. portrait screwed up

We have a html/CSS page we're using a print style sheet for to make it print out nicely. Looks fine in PRINT PREVIEW in Firefox and IE. However, in IE, when you get to PRINT PREVIEW, it shows you the page as it will print in portrait layout. If you then click the LANDSCAPE layout, our page breaks. Some objects no longer appear. Before ...

iPhone: In landscape-only, after first addSubview, UITableViewController doesn't rotate properly

A minimal illustrative Xcode project for this is available on github. On my UIWindow, when I add second (and subsequent) UITableView's as subviews, they do not rotate properly, and thus appear sideways. This is only tested in the Simulator. Here's a little code for you: - (void)applicationDidFinishLaunching:(UIApplication *)applicatio...

Xib view file is not working in landscape mode

Hi, I have added new Xib view file in my project. I assigned to view controller and in the view controller I set: - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { //return (interfaceOrientation == UIInterfaceOrientationLandscapeRight); return YES; } But when the application runs i...

Monotouch iPhone Landscape Mode

How do I keep a Monotouch iPhone app in landscape mode when loading a new view controller from an xib? To switch to landscape mode when the app loads I use: app.StatusBarOrientation = UIInterfaceOrientation.LandscapeRight; I would like to be able to rotate the view in interface builder and design the interface. I can hit the rotat...

iphone UIWebView, Landscape, Zoom!

I have a UIWebView in my app and I am having trouble making it work correctly simultaneously with landscape and the viewport zoom. If I load pages in portrait and then rotate the phone, using the autoresize, it works correctly, zooming in for pages that are set to zoom. However, if I start the webview in landscape mode, I have to rotat...

Modding Sonos Desktop Controller to Landscape view

Hi Forum ! I think ive found the right place and people to ask this question. Im using Sonos Desktop Controller App, which is free from Appstore. For a long time ive waited for them to come up with a Landscape mode for the software, but it ONLY supports Portrait from factory defaults. Now ive started to take the matter into my own han...

How to print page 1 in portrait and page 2 in landscape in CRXI

I made a report in CR11. I want to print it as follows. Page 1 in portrait orientation and page 2 in landscape orientation. Is this possible? If it is, how do I do that. kind regards André ...

Resizing UINavigationBar on rotation

I have a subclass of UIViewController which handles a UIView. The viewcontroller is presented modally (it slides up from the bottom of the screen). At the top of the view, i have added a navigation bar. Note that this bar is not handled by a navigation controller. I want to get the navbar to shrink in height when the view rotates to lan...

Temporarily non-rotatable Android Activities?

Is it possible to make an Activity temporarily not rotatable (like, turning it on/off in code, not in the manifest)? One of my old apps crashes if you rotate while it's doing an HTTP lookup as the views are no longer attached when it returns. One of these days I'll fix it proper, but in the mean time it'd be useful if I could just make...

Landscape Page Turn in Silverlight ( vertical )

hi, i am looking for page turn Silverlight in landscape mode. Or can we show PDF file Silverlight? ...

Landscape UIView in a UITabBarController

Hi, I have a UITabbarController with (so far) two navigation controller items. I can get the application to rotate by adding the shouldAutorotateToInterfaceOrientation to each class... but thats not exactly what I want. What I want to do is to add a button in the UINavigationBar in one of the classes. When this button is pressed I want...

Landscape only iPhone app with multiple nibs

I'm developing an iPhone application that has several nibs, and should be landscape only. The application is set to start in landscape mode via its Info.plist file. I have two view controllers: FirstViewController and SecondViewController. For each of these I have a nib file, where the view is in landscape. Both view controllers are a...

presentModalViewController in landscape after portrait viewController

Hi, I have a main viewController that is in portrait mode all the time. I want then to presentModalViewController, but it will come from the left (not from bottom of the screen) in landscape. Is it possible? tnx ...

Landscape mode and locationInView in opengl es

So today I implement landscape mode for my app. It is an opengl es application. I rotated it 90 degrees. The first thing I notice is that the touches no longer work. The reason being is that the call to locationInView is still giving the coordinates as though the application is in portrait mode. How do people typically deal with this...