Horizontal scrolling grid

Hello world

I have a grid, but the last two columns are displayed on the screen. Anyone know how I could enable horizontal scrolling.  I am a complete Newbie so apologies if my code is doubtful;

Import net.rim.device.api.ui.container.GridFieldManager;
Net.rim.device.api.ui import. *;
Import net.rim.device.api.ui.component.LabelField;
Import net.rim.device.api.ui.component.SeparatorField;
Import net.rim.device.api.ui.component.ObjectChoiceField;

Grid/public class extends UiApplication
{
Public Shared Sub main (String [] args)
{
Grid PAP = new Grid();
theApp.enterEventDispatcher ();
}

Grid()
{
pushScreen (new GridScreen());
}
}

class GridScreen extends TimetableMainScreen {}

public GridScreen()
{
setTitle ("your week, created by the calendar");

GridFieldManager grid = new GridFieldManager (10,6,1);

grid.setHorizontalScroll (RIGHTMOST);

Grid.Insert (new LabelField ("TimeTable"), 0, 0);
Grid.Insert (new LabelField("9"), 1, 0);
Grid.Insert (new LabelField("10"), 2, 0);
Grid.Insert (new LabelField("11"), 3, 0);
Grid.Insert (new LabelField("12"), 4, 0);
Grid.Insert (new LabelField("13"), 5, 0);
Grid.Insert (new LabelField("14"), 6, 0);
Grid.Insert (new LabelField("15"), 0, 7);
Grid.Insert (new LabelField("16"), 8, 0);
Grid.Insert (new LabelField("17"), 9, 0);
Grid.Insert (new LabelField ("Monday"), 0.1);
Grid.Insert (new LabelField ("Tuesday"), 0, 2);
Grid.Insert (new LabelField ("Wednesday"), 0, 3);
Grid.Insert (new LabelField ("Thursday"), 0, 4);
Grid.Insert (new LabelField ("Friday"), 0, 5);

String choice [] = {'1', '2', '3', '4', '5', 'Free', 'Révision'};
ObjectChoiceField objChoice = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice1 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice2 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice3 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice4 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice5 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice6 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice7 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice8 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice9 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice10 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice11 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice12 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice13 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice14 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice15 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice16 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice17 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice18 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice19 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice20 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice21 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice22 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice23 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice24 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice25 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice26 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice27 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice28 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice29 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice30 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice31 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice32 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice33 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice34 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice35 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice36 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice37 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice38 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice39 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice40 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice41 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice42 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice43 = new ObjectChoiceField("",choices);
ObjectChoiceField objChoice44 = new ObjectChoiceField("",choices);

Grid.Add (objChoice);
Grid.Add (objChoice1);
Grid.Add (objChoice2);
Grid.Add (objChoice3);
Grid.Add (objChoice4);
Grid.Add (objChoice5);
Grid.Add (objChoice6);
Grid.Add (objChoice7);
Grid.Add (objChoice8);
Grid.Add (objChoice9);
Grid.Add (objChoice10);
Grid.Add (objChoice11);
Grid.Add (objChoice12);
Grid.Add (objChoice13);
Grid.Add (objChoice14);
Grid.Add (objChoice15);
Grid.Add (objChoice16);
Grid.Add (objChoice17);
Grid.Add (objChoice18);
Grid.Add (objChoice19);
Grid.Add (objChoice20);
Grid.Add (objChoice21);
Grid.Add (objChoice22);
Grid.Add (objChoice23);
Grid.Add (objChoice24);
Grid.Add (objChoice25);
Grid.Add (objChoice26);
Grid.Add (objChoice27);
Grid.Add (objChoice28);
Grid.Add (objChoice29);
Grid.Add (objChoice30);
Grid.Add (objChoice31);
Grid.Add (objChoice32);
Grid.Add (objChoice33);
Grid.Add (objChoice34);
Grid.Add (objChoice35);
Grid.Add (objChoice36);
Grid.Add (objChoice37);
Grid.Add (objChoice38);
Grid.Add (objChoice39);
Grid.Add (objChoice40);
Grid.Add (objChoice41);
Grid.Add (objChoice42);
Grid.Add (objChoice43);
Grid.Add (objChoice44);

grid.getBorder (1);
grid.setBorder (HIGHLIGHT_SELECT, getBorder (1));

grid.setColumnPadding (7);
grid.setRowPadding (15);
Add (new SeparatorField());

Add (Grid);
Add (new SeparatorField());

}

}

See you soon!

Hi small changes it works refer. Plese find my seals to a BOLD font

import net.rim.device.api.system.Display;
import net.rim.device.api.ui.Field;
import net.rim.device.api.ui.Manager;
import net.rim.device.api.ui.component.LabelField;
import net.rim.device.api.ui.component.ObjectChoiceField;
import net.rim.device.api.ui.component.SeparatorField;
import net.rim.device.api.ui.container.GridFieldManager;
import net.rim.device.api.ui.container.VerticalFieldManager;

class GridScreen extends TimetableMainScreen{

    public GridScreen()
    {
    setTitle("Your Week, created by TimeTable");

    VerticalFieldManager vmagr=new VerticalFieldManager(HORIZONTAL_SCROLL|VERTICAL_SCROLL){ protected void sublayout(int maxWidth, int maxHeight) { super.sublayout(Display.getWidth(),Display.getHeight()); setExtent(Display.getWidth(),Display.getHeight()); } };
    GridFieldManager grid = new GridFieldManager(10,6,Manager.HORIZONTAL_SCROLL);

    grid.insert(new LabelField("TimeTable",Field.FOCUSABLE), 0, 0);
    grid.insert(new LabelField("9"), 1, 0);
    grid.insert(new LabelField("10"), 2, 0);
    grid.insert(new LabelField("11"), 3, 0);
    grid.insert(new LabelField("12"), 4, 0);
    grid.insert(new LabelField("13"), 5, 0);
    grid.insert(new LabelField("14"), 6, 0);
    grid.insert(new LabelField("15"), 7, 0);
    grid.insert(new LabelField("16"), 8, 0);
    grid.insert(new LabelField("17"), 9, 0);
    grid.insert(new LabelField("Monday",Field.FOCUSABLE|FIELD_RIGHT), 0,1);
    grid.insert(new LabelField("Tuesday",Field.FOCUSABLE|FIELD_RIGHT), 0, 2);
    grid.insert(new LabelField("Wednesday",Field.FOCUSABLE|FIELD_RIGHT), 0, 3);
    grid.insert(new LabelField("Thursday",Field.FOCUSABLE|FIELD_RIGHT), 0, 4);
    grid.insert(new LabelField("Friday          ",Field.FOCUSABLE|FIELD_RIGHT), 0, 5);

    String[] choices= {"1","2","3","4","5","Free","Revision"};
    ObjectChoiceField objChoice =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice1 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice2 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice3 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice4 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice5 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice6 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice7 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice8 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice9 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice10 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice11 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice12 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice13 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice14 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice15 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice16 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice17 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice18 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice19 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice20 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice21 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice22 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice23 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice24 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice25 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice26 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice27 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice28 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice29 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice30 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice31 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice32 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice33 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice34 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice35 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice36 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice37 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice38 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice39 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice40 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice41 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice42 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice43 =new ObjectChoiceField("",choices);
    ObjectChoiceField objChoice44 =new ObjectChoiceField("",choices);

    grid.add(objChoice);
    grid.add(objChoice1);
    grid.add(objChoice2);
    grid.add(objChoice3);
    grid.add(objChoice4);
    grid.add(objChoice5);
    grid.add(objChoice6);
    grid.add(objChoice7);
    grid.add(objChoice8);
    grid.add(objChoice9);
    grid.add(objChoice10);
    grid.add(objChoice11);
    grid.add(objChoice12);
    grid.add(objChoice13);
    grid.add(objChoice14);
    grid.add(objChoice15);
    grid.add(objChoice16);
    grid.add(objChoice17);
    grid.add(objChoice18);
    grid.add(objChoice19);
    grid.add(objChoice20);
    grid.add(objChoice21);
    grid.add(objChoice22);
    grid.add(objChoice23);
    grid.add(objChoice24);
    grid.add(objChoice25);
    grid.add(objChoice26);
    grid.add(objChoice27);
    grid.add(objChoice28);
    grid.add(objChoice29);
    grid.add(objChoice30);
    grid.add(objChoice31);
    grid.add(objChoice32);
    grid.add(objChoice33);
    grid.add(objChoice34);
    grid.add(objChoice35);
    grid.add(objChoice36);
    grid.add(objChoice37);
    grid.add(objChoice38);
    grid.add(objChoice39);
    grid.add(objChoice40);
    grid.add(objChoice41);
    grid.add(objChoice42);
    grid.add(objChoice43);
    grid.add(objChoice44);

    grid.getBorder(1);
    grid.setBorder(HIGHLIGHT_SELECT, getBorder(1));

    grid.setColumnPadding(7);
    grid.setRowPadding(15);
    add(new SeparatorField());

    vmagr.add(grid); vmagr.add(new SeparatorField()); add(vmagr);

    }
    public boolean onMenu(int instance) {

        return true;
    }

    }

Tags: BlackBerry Developers

Similar Questions

  • Horizontal scrolling for the GridField Manager problem

    Hi all

    I have my working in the Application in which I have my display my data using GridField Manager. I used the code in the example given in link by tboatright of the user.

    Now in my application, I used the extension of the screen and it automatically gives the vertical scroll bar if the total height of lines in my GridField Manager is more than BB Simulator screen. In using this I can scroll vertically easily by substituting navigationMovement (int dx, int dy, int, int time status) method...

    Now the problem is, I have 6 columns in my network manager and their width is 80 each. So only 3 columns are displayed on the Simulator screen when the first time grid is displayed but I get no horizontal scroll bar, I m not able to scroll horizontally through my all columns. Now using dominant navigationMovement (dx int, int dy, int, int time status) method (in accordance with its encoding in the above link), I am able to setFocus on the columns by pressing the left/right keys on my keyboard on Simulator of BB, but with this screen doesn't move (scroll) left or right accordingly if I m not able to see column4 column 5, column6, which are placed to the right of the main screen width of BB.

    I hope that my question in the clear for you guys...

    Thanks in advance

    You have set the style for the screen like HORIZONTAL_SCROLLBAR and HORIZONTAL_SCROLL? because the style VERTICAL_SCROLL and VERTICAL_SCROLLBAR will be set by default. We must define explicitly for horizontal scrolling

  • Horizontal scroll bar on DataGrid

    Hello

    I would like to create a DataGrid with the number of columns the width of the DataGrid control will be more of the screen. So I need a horizontal scroll bar on the DataGrid to allow the user to scroll the grid horizontally. However, I would not find that proprity is used to activate the horizontal scroll bar and the datagrid dafault didn't do it. Pourrait - what can anyone give me some advise?

    Thank you very much!
    Wilson

    By default, the DataGrid control all columns size so they fit into the horizontal space allotted to the data grid. If you want to do what you suggest, then:

    turn on the scroll bar and tell the DataGrid to relax its constraints of size.

  • Can I use horizontal scroll to switch between tabs?

    I find it useful to switch between tabs with the side-scrolling my mouse wheel. Can I configure Firefox in this way?

    Apparently FireGestures doesn't support scrolling directly if you can't make it work. I have no local way to test it, because nobody doesn't know I have a mouse with a horizontal scrolling. FireGestures provides alternatives (I use the tab scrolling of line), however, and supports scripts , if you want to try to use the technical information provided by cor - el.

    One avenue would be to use the mouse like Logitech Setpoint or Microsoft Intellipoint software to set the scrolling to run the FF Ctrl + PgUp and Ctrl + PgDown hotkey combo. This would negate native scroll, however.

    You can leave your comments at https://input.mozilla.org/en-GB/feedback/ if you do not want to see this feature implemented. I think you're better of trying to get an add-on to do this though, as horizontal scrolling appears to remain a characteristic very niche.

  • Why the horizontal scroll bar does not disappear when windows are maximized, but reappears when minimize?

    I'm a fool to the computer. I fix my car and I don't fix my computer. If there is no easy solution, I'll pay someone to do it for me. So, is there an easy way to retrieve my horizontal scroll bar? I've updated to the latest Firefox (35). I restored my computer to an earlier date when everything was ok. I downloaded another browser (Chrome) to see if that would fix it. Nothing has worked. The system I use is Windows 7 64 bit. I tried not to do anything, because this has led to big problems in the past. Suggestions, or I need to take the machine to my fix - it person?

    Thanks for any assistance yu might be able to provide.

    Bingo! You have reason, cor - el. Thank you.

    I never noticed this before. Sometimes (when I'm too lazy to get up and do my glasses or cannot find them) I just increase the size of the window.

    To me it seemed that the scroll bar was still there, and then it wasn't. Hours lost, but a lesson learned. I did not mention that I am a fool to the computer, I don't?

    Thank you!!!

  • The horizontal scroll bar is not here on some websites.

    The horizontal scroll bar is missing when I visit certain websites. This is one of the Web sites, but there are many others still: http://www.fixya.com/support/t23137801-cannot_connect_android_tablet_arris

    I know it is contained to the left or to the right of the portion of the screen I see because I can get by using the arrow keys on some Internet sites. On other sites, the arrows do not move the screen, but I know that it is contained on the side because I can see the edges of the images and buttons.

    I tested two other browsers on the example site that I mentioned above. Internet Explorer does not have the problem, Chrome has the same problem with the scroll bar, like Firefox.

    This problem is tolerable on Web sites were the arrows are a substitute, but on other sites, it makes the site unusable.

    I have disabled all browser extensions, and that did not solve the problem. Change the screen resolution has no effect on the problem. I use Windows XP on a ten year old desktop computer. Windows updates are installed automatically.

    McGyver

    While I don't see anything poking out around the edges of this page, I'm blocking part of the content of the site (e.g., Facebook integration, text-link advertising), so very likely your seems different from mine.

    When you compare IE on the same page, what types of photos/buttons do you find on the edges?

    She brings the peripheral from the edge elements if you zoom 'out' of the page holding the key Ctrl and tapping the button several times? You can return to your preferred zoom level by holding the CTRL key and tapping the button you like +.

  • How do horizontal scrolling via mousewheel tilt work in FF 20.0.0.1?

    EDIT: I solved this problem on my end. It turns out that my mouse manufacturer had a "helper" program that has been screwing the horizontal tilt support. Stop smoking it solved the problem. To other people having the same problem, I recommend that you check the utility of using your mouse.

    -

    I give myself to understand that previous versions of Firefox support a horizontal scrolling when it is used with a scroll wheel mouse that supported messages of tilt. However, I was unable to make it work on Firefox 20.0.1. I tried to disable scrolling smoothly, hardware acceleration, restart in safe mode, but it doesn't seem to make a difference.

    (The troubleshooting information below represent the usual configuration of my browser, disable all extensions).

    However, other applications seem to handle mousewheel tilts very well; I tried it with applications as simple as Notepad on Windows and they scroll horizontally in response to the inclinations of mousewheel. I'm puzzled; delete Mozilla tilt support in future versions of Firefox?

    Great to hear that you got it working! Thank you to come back and post the resolution for other users who may have the same problem.

  • After Firefox 12, some form in our help desk application fields do not display correctly. They appear as fields of horizontal scroll instead.

    We use a system of assistance to work (remedy of the BMC IT Service Management). In version 12 Firefox, all fields are displayed correctly in the form. However, if I switch to a version higher than 12, some fields appear as fields of horizontal scrolling (without displaying the data in them). Therefore, I am forced to stay on version 12 for the work.

    Found that it is actually a problem with the BMC Remedy system in use (version 7.1). Here are the details if anyone is interested: https://communities.bmc.com/communities/message/256456

  • Some web sites do not display a bar of horizontal scrolling but IE don't

    For example: http://shop.ghirardelli.com/category-exec/category_id/35/nm/Sale/?utm_source=chocomail & utm_medium = pos1_save10 - 30 DL & utm_campaign = 20111124

    This site uses the CCS code (overflow-x: hidden) to hide the horizontal scroll bar.

    It is also missing in Google Chrome.

  • LPX without horizontal scroll bars

    cannot scroll. the horizontal scroll bars do not appear in the main window and not in the mixer. Why? any idea? new bug?

    Go to the preferences of OS X system...-> general

    The value of the Show scroll bars always...

  • Horizontal scrolling problem the office 2016

    Hello, I'm an old fan of Thinkpad, used more than 12 thinkpad machines.

    My current main machine is X 1 carbon 3rd gen, OS Windows 10

    I'm very frustrated, because the two Touchpad and trackpoint horizontal scrolling in MS office 2016, particularly excel and onenote, does not work.

    I tried to install and reinstall the drivers and formatted the machine several times.

    I tried to find the solution on the web, but there is no clear solution to this subject so far, unfortunately.

    Above all, I am very angry with the ignorance and slow technical support from Lenovo.

    Because this problem was published for more than a year.

    An idea for horizontal scrolling?

    In response to the customer, reports that horizontal scrolling in MS Office was not supported on ThinkPad several models running Windows 10, an update of the Synaptics driver was published for this problem.

    Models:

    ThinkPad P50s

    ThinkPad T460s, T560

    ThinkPad X 250

    ThinkPad X carbon 1 (types of Machine: 20BS, 20BT 20FB, 20 CF)

    Tablet ThinkPad X 1 (20GG, 20GH)

    ThinkPad X 1 Yoga (types of Machine: 20FQ, 20FR)

    Version 19.3.4.39

    (Fix) Fixed an issue where a horizontal scrolling may not work in MS Office when the Firefox browser was opened.

    (Fix) Fixed an issue where scrolling icon may have overlay of black color in the recent Windows 10 environment.

    Synaptics ThinkPad UltraNav Driver, v 19.3.4.39, can be downloaded here: http://support.lenovo.com/us/en/downloads/DS118386

    Thank you

  • ThinkPad Compact Bluetooth keyboard: how to enable horizontal scrolling?

    Hi all

    any advice on "how to enable horizontal scrolling" on my Bluetooth keyboard external ThinkPad?

    It is available with my current ThinkPad 450 and was with my a previous T420.

    I bought the keyboard because it has the same layout and the trackpoint, but I had no idea that the behavior would be different.

    Thank you very much for your help.

    Goodbye Kenny

    Hello

    I just noticed on the driver it seems that horizontal scrolling has been fixed.

    1.5.1.0 2016-03-11
    Fixed, HScroll.

    Here is the driver for download.

    Concerning

  • ListBox with visible horizontal scrolling

    Hello

    We all know that a listbox control comes with a default vertical scroll bar (which can be selected or deselected).

    I have attached a vi that has the list box with visible horizontal scroll bar.

    Now, I did my self by playing with custom control and I'm unable to reproduce the same since I forgot how I did it. has anuone tried before and if yes throw some light on this?

    Guru

    First use a "multi-column listbox" with visible horizontal scroll bar. Then replace you it with a simple "Listbox" and the property is preserved.

    It's strange, but it works. I guess the simple "Listbox" is a mild form of listbox multicolumn with limited options...

  • X 1163 projector shows smaller than the computer screen image and creates the horizontal scroll bar

    I just bought an Acer X 1163 projector for use in presentations. I like the brightness, size and features. I am disappointed to make a PowerPoint slideshow, you need to buy another remote, but it is an easy fix.

    Here's what's really about me!

    When I pull a Web site or other things on my laptop for the presentation, it has a horizontal scroll bar and does not fit it on the screen. I tried different settings and who are seeking an answer online, but can't find what I can do to get the image to display without a horizontal scroll bar.

    I'm almost beginning to panic that I bought this for a large presentation I have to give next week. I hope it's one of those stupid questions with an easy answer.

    Thanks in advance for your help.

    My techy boyfriend just called. Here is the solution. (It kills me when someone has a question asked and more later said: "never mind, I figured it" and never says how do to the next person to come.)

    The question seems to be in the computer resolution setting and how it automatically resets when plugging n the projector. To resolve this problem (at least in windows 7) follow these steps:

    Right click on the desktop

    Click on display

    Click on change display settings

    Select the 1366 x 768 resolution

    It shows exactly what I'm looking for now on my computer.

    Thank you for having a forum to ask in all cases

  • Problem with setting "Horizontal scrolling with tilt wheel"

    All of a sudden, everytime I open a spreadsheet it acts as if I am pressing the arrow button to the right and the active cell moves to the right as quickly as possible.

    At the same time:
    1. my wireless Microsoft mouse leave with the scroll wheel.
    2. when I click a down arrow, the menu is displayed for a split second, then disappears.
    Any ideas what may have caused this?
    * original title - Excel-unstoppable to the right at the opening of automatic pagination

    1 only with Excel

    2 Microsoft 6000v2.0
    3. since Monday morning, when I opened a spreadsheet
    4. the system changes. I didn't touch anything.
    5. the keyboard is clear. It only happens in Excel.
    I managed to do stop by disabling "horizontal scrolling with tilt wheel" in the mouse properties. Absolutely, I know for a fact that nobody changed this setting, but it became somehow activated.

Maybe you are looking for

  • Satellite A40-211 - there a 512 MB or 2 x 256 MB RAM?

    Hello! I have an A40 - 211 (its the Netherlands, maybe not to the United States under this code). It has 512 MB of Ram and I want to upgrade by adding an another 512 MB to 1 GB Ram. I know that my laptop has 2 Module, but I'm not there 2 * 256 or jus

  • Direct root for Xperia Ray ICS 4.1.B.0.431

    Hi im using the Xperia Ray and recently Ive upgraded to ICS 4.1.B.0.431 via PC Companion.I want to root my phone n tried to use the DooMLoRD method to the root of the firmware, but I failed. Is there a way to root my phone directly without having to

  • I received an email from Microsoft spam.

    Original title: why Microsoft makes it so difficult to account fraud poison Microsoft links   De : Microsoft Office Envoy: Wednesday, February 6, 2013 09:38 Topic: Update the Windows account Dear user, Due to a new vulnerability that is exploited by

  • Adobe Photoshop 14 Prime Minister

    HelloAfter obtaining a serial number with the Redemption Code and to enter, I always get the following error message can help you please:Adobe Photoshop Element and 14 Premier was purchased from Best Buy. "We are unable to validate the serial number

  • Pivot_data with ratio_to_report

    I'm on 12 c and trying to get uses the pivot function to return the numbers and percentages.My SQL for counties works very well:with pivot_data as (select 'score', 'Observer_LastName', 'profile_id'FROM MyTable)SELECT *.of pivot_dataPIVOT (count ("pro