I have a problem. I create a fullscreen form in Delphi XE2. Then I run my application on tablet PC with windows 7 on board where screen resolution is 1024x600. Then I rotate tablet PC (now resolution is 600x1024) and I had some problems with elements on form (some buttons are behind the screen, etc.). Can I configure project so that when I turn the tablet PC my form is not rotate?
Related Questions in DELPHI
- How can I read the header of request to webserver
- Receiving Notifications for Individual Task Completion OmniThreadLibrary Parallel.ForEach
- Delphi - How to get result of function from QuickReport without viewing a report?
- Out of memory while adding documents to a Firebird BLOB field with Delphi
- How to MakeScreenshot fullpage on Delphi
- How to program a COM object with an IEnumerator, IEnumerable interface inside
- How to Dynamically Add Controls to Delphi Form
- How to write a string in Stringrid with DelimitedText in FMX Delphi 11
- TGrid/TStringGrid multi cell selection / multi editing in delphi firemonkey (12)
- How to localize "Today" in the Delphi TMonthCalendar?
- How can I call a SOAP webserver method in Vue.js?
- Efficiently Handling Large Number of API Calls with Delphi 10.4 and OmniThreadLibrary
- Delphi can not compile the unit create by its "XML Data Binding Wizard"
- Save Form Properties in File and then restore those Properties after reopening
- Is it possible to open a blob without saving it to file
Related Questions in DELPHI-XE2
- E2170 Cannot override a non-virtual method on Updating DSharp
- Scanning bmp file pixel by pixel using TBmp.Scanline with Delphi
- How to Check Delphi TADOConnection.State
- Add a control to a subcomponent inside a custom control
- Installing FastQueryBuilder Component Fails to install into Delphi XE2 IDE
- Delphi XE2 Installation fails to download required files due to connection issues
- (Delphi) Trying to make derivative DBGrid, can't make it work
- Can not use Eureka Log function in module
- Crystal report database issue in Delphi 11.2
- Disconected session Rad Studio XE2
- When typing at the end of the editmask, it will pass the number to the left side until it reaches the last one
- When will a constant be created in Delphi XE2?
- Dark Theme for XE2
- ComboBox doesn't behave the same inside panel
- Named subcomponent inside compound(?) component
Related Questions in VCL
- how to set c++ if...else statement for user input?
- How to close a C++ VCL form and open another one on a button click?
- a Delphi form does incorrect behavior, when maximizing the form (even in IDE designer), why?
- Why do some non-ASCII Unicode symbols appended to strings disappear in Delphi 12?
- How to handle an error when loading a picture into a TImage component?
- Labels disappear behind GIF after animating
- TTreeView checkbox loses "selected" state after change scale on screen
- How to log a message from a VCL or FMX app in Delphi?
- Can the TTreeView display more than 259 characters in a Row?
- ilink64 Error Fatal: Unable to open file 'VCL.VIRTUALIMAGELIST.O'
- How does the TrackButton property work on the TPopupMenu component?
- How to save my form as an SVG using Skia4Delphi?
- How to make a rectangle with drop shadow in Delphi using Skia4Delphi?
- TPageControl not changing tabs when clicked
- How to disable automatic painting for TLabel?
Related Questions in TABLET-PC
- Force WinForm Application on top Windows 10 Tablet Mode
- How to programmatically open Windows "Tablet PC Settings" dialog?
- Photoshop toolbar sliders have huge increments when sliding with stylus
- IStylusSyncPlugin not receiving data after windows loses focus
- How to detect if Windows 10 is in tablet mode with Delphi?
- How to detect if Windows 10 is in tablet mode
- WPF: Open application on top of another in Win10 Tablet mode
- Windows Surface on-screen keyboard will disappear when focusing on password input
- SQL Server LocalDB column error when deployed to Tablet PC
- How can I get the pen's position on the screen on a tablet PC in C++?
- Can not type inside input element because tablet Keyboard is above it (HTML)
- Delphi - TCameraComponent won't find flash
- Start another application on top most in tablet mode
- Javascript / jQuery detect mobile from Tablet
- Upload to Windows Store
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
According to this MSDN article you can detect that the screen has been rotated by listening for the
WM_DISPLAYCHANGEmessage.However, you then face a serious problem. You now need to paint your entire app with a 90 degree rotation. That's going to take quite a bit of doing. I honestly don't believe it to be a tractable solution. I suspect that the viable options are to: