How to get 2 finger scrolling when using windows on mac?

I just recentley put windows on my mac and i have installed all of the drivers for it to run but im having trouble with a few things like the f keys wont work for brightness or keyboard brightness and the other thing that wont qork is the 2 fingered scrolling then the volume buttons.

In Windows there is a task bar located in the lower right of your desktop. There is a Bootcamp icon there, if you installed Bootcamp in Windows. Click on the icon and open the Bootcamp control panel. Select the keyboard and trackpad tab then set up your two finger scrolling etc.

Similar Messages

  • How to get a report "closed" when using the ReportViewerBean

    I read the article /people/ted.ueda/blog/2008/12/20/crystal-reports-for-eclipse--ensuring-report-cleanup from Ted Ueda regarding cleaning up reports for the RAS server.  However, I'm trying to figure out how to get this accomplished for a thick client accessing a local rpt file and then displaying that file using the ReportViewerBean.  I can't seem to get the report closed. I tried the dispose() techniqe from the article, but with no success.
    My basic process is:
    1) Press button on main frame to open and set up report
    2) Pass open report (via ReportClientDocument) object to the viewer frame class (which views report in separate window using ReportViewerBean)
    3) Close viewer window when done, destroy ReportVieweBean and close ReportClientDocument
    4) Press button again on main frame later to view report
    If I set up the report but skip the step of sending the report to the viewer frame, ReportClientDocument.isOpen() will go from true to false after I execute just  the ReportDocumentClient.close() command.  However, if open the viewer frame, I cannot get the report closed.
    In the window closing event for my viewer window I have:
    public void quit() {
                try {
                    CrystalReportViewer crv1 = new CrystalReportViewer();
                    crv1.setReportSource(reportClientDoc.getReportSource());
                    reportViewer.destroy();  //this is a ReportViewerBean
                    reportClientDoc.close();  //this is a ReportClientDoc
                    crv1.dispose();
                    //the following is always true
                    System.out.println("ReportClientDoc.isOpen: " + reportClientDoc.isOpen());
                    this.dispose();
                catch(ReportSDKException ex) {
                    ex.printStackTrace();
                catch(ReportSDKExceptionBase ex) {
                    ex.printStackTrace();
    I'm using the latest Java CR4E 12.2.205.825 downloaded from the CR4E website.  Any ideas?
    Edited by: Joseph Huber on Mar 16, 2010 8:13 PM

    The webservices you are trying to use are not the ones used for enterprise, they are used for non-enterprise applications accessing reports that are stored in a specific location on the web server.
    Here are samples that use our Enterprise SDK:
    [https://boc.sdn.sap.com/samples/84/1193|https://boc.sdn.sap.com/samples/84/1193]
    Here are samples that use our Enterprise Web Service SDK:
    [https://boc.sdn.sap.com/samples/84/1197|https://boc.sdn.sap.com/samples/84/1197]
    You can also look at the SDK documentation available here:
    [http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm]

  • How to get to outlook express when using firefox

    new to firefox i do not see a tab to access my email in outlook express when using fire fox

    http://www.webdesigns.ms11.net/getmail.html <br />
    The GetMail extension provides a '''button''' for opening your email program. Make sure you read the instructions for setting GM Options for Outlook Express, as the default setting in GM is for Gmail.
    Also, you need to read this for setting up Firefox to use Outlook Express for "Send Mail" buttons on web pages or "Send Link" from within Firefox. Firefox also defaults to Gmail. <br />
    [http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox]

  • How to get the log information when using a class?

    Hi All,
    I have a simple question, which I don't know how to solve. I am using org.apache.commons.logging.Log and LogFactory to do some logging. A typical situation is exemplified in the following code snippet.
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    class LogClass {
        private static final Log LOG = LogFactory.getLog(AClass.class);
        public void logit(){
            LOG.debug("This is the debugging log.");
    public class AClass{
        public static void main(String[] args) {
            LogClass l=new LogClass();
            l.logit();
    }But this way, I do not get the log information from the class LogClass. Could anybody please help?
    Many thanks.

    jschell wrote:
    jverd wrote:
    ...configuration in log4j.xml or log4j.properties.And far as I recall you need one of those two also. If there is no config then there is no output.I thought it used some default config if no file is present, but I could be mistaken. Either way, it adds to the possible problems that the OP could be having, any of which are consistent with his rather vague question.
    1) He's passing the wrong class to the LogFactory, and hence getting a logger with the wrong name, so he's seeing a different name than he expects in the output that's being produced.
    2) His config file does not contain the proper format to include the actual classname, independent of the logger's name, so he's missing a piece of desired information in each line of the output that's being produced.
    3) His config file indicates a threshold that's less verbose than the level at which his code is logging, so no output is present when he wants it.
    4) His config file is missing (or not where it's expected to be), so no output is being produced at all.
    5) His config file is missing (or not where it's expected to be), so a default level or format is being produced, effectively the equivalent of one of the misconfigurations described in #2 and #3.
    Since the OP seems to have vanished, we may never know.

  • How to get a "blank" answer when using "if" statements in a table

    I'm using a table for an invoice where an item is ordered, but more may be shipped than ordered. I have the formcalc expression figured out where I can get a 0 in the "backordered" column if the amount shipped is more than the item ordered, but I can't get rid of the 0 in the rest of the backordered column when there isn't any information in the "ordered" and "shipped" columns. Trying to get that column to be blank if there is no shipping or ordering information.
    So far this is working for the math part. Not sure how to write a "blank" into the calculation
    Sum(ordered-shipped)
    if (Sum(ordered-shipped)>0)
    then backordered=Sum(ordered-shipped)
    elseif (Sum(ordered-shipped)<0)
    then backordered=0
    endif
    Any advice will be greatly appreciated. Thanks!

    I'm still getting a 0 in all the backordered columns when I'd like them to be empty. The form has more rows than I will be using, so when there is no information in the shipped and ordered row, I'd like the backordered row to be empty/blank. I've tried writing this at the end of my formula
    elseif ordered=null and shipped=null
    then backordered=null(but I really want it to be blank)
    or elseif Table1.Row1.ordered=null and Table1.Row1.shipped=null
    then Table1.Row1.backordered=null
    And yes, backordered is a numeric field.
    Any more advice? Thanks!

  • How to get values from resultset when using subquery???

    Hi ,
    I have a problem in executing sql query from java.
    I am executing an sql query which return a intersection of values from 3 tables.
    Here is the query I am using
    select id from dps_user where id in (select b.id from dps_user b,laserlink c
    where c.userid='univ.'||b.login and c.status in(1,3,8,9,10)
    intersect
    select b.id from dps_user b,laserlink c
    where c.userid=b.login and c.status in(1,3,8,9,10)).
    this query is working fine from sql .
    when I am trying to excute the same query from java nothing is coming into resultset.
    String ISP_AND_EMAIL="select id "+
                             " from dps_user where id in (select b.id from dps_user b,laserlink c "+
                                  "where c.userid='"+"univ.'"+" ||b.login and c.status in(1,3,8,9,10)"+
                                  " intersect "+
                                  " select b.id from dps_user b,laserlink c"+
                                  " where c.userid=b.login and c.status in(1,3,8,9,10))";
              System.out.println(ISP_AND_EMAIL);
              rs=stmt.executeQuery(ISP_AND_EMAIL);
    How to use concatinate string (|| ) in java.
    can anyone help to retrieve the values from this resultset...
    Thanks

    concatnation is done using + in java.
    I am doubtful about the following line where there may be error
    "where c.userid='"+"univ.'"+" ||b.login and c.status in(1,3,8,9,10)"+
    I don't know if the univ. is a string or some variable.I need more clarification on this line,then i may help u.
    thx

  • How do I fix the scrolling when using my iPhone on my laptop to select which Podcasts I want to add?

    When I plug my iPhone into my laptop and then click on Podcasts, it won't let me scroll to choose which Podcasts I want to add. To fix that, I click on one of the Podcasts and then it is sort of fixed, but then I can't scroll through each individual Podcast episode. I thought it was because my laptop was just old, but I now have a new one and the problem is still there. Does anyone know how I can fix this?

    Hi Playerking95,
    Welcome to the Apple Support Communities!
    It sounds like you are trying to sync Podcasts from your iTunes library on your computer to your iPhone. In your situation I would recommend reading over the attached article for information.
    Podcasts for iOS: Sync podcasts
    http://support.apple.com/kb/HT6202
    Have a great day,
    Joe

  • How to get 16:9 resolutions when using DVI to Video Adapter?

    I just plugged my new Intel Mac Mini into a 16:9 widescreen TV with the Apple DVI to Video Adaptor (PAL Video version).
    It only offers me:
    640x480
    720x480
    720x576
    800x600
    1024x768
    (all interlaced)
    I do get a choice of 50hz (PAL) or 60hz (NTSC).
    However, I don't get the widescreen options I've seen in some Apple screenshots.
    I'm plugging it into a PAL TV via an s-video cable.
    I intend later to plug it into a larger 42" plasma with same cable, but wanted to test it on this TV first.
    More info:
    I noticed, when I bought the "DVI to Video Adapter" that there were NTSC and PAL version. Both seem to do PAL though.
    Any help on this most appreciated.

    Concerning your question, "if only i knew the the correct entries for a custom displayconfig x timing," I think I can answer that one for you.
    It sounds like you have other Macs at your disposal that are correctly driving the TV you are trying to drive with the Intel mini. In that case, install DisplayConfigX on one of those computers and while it is running the TV at the desired resolution, click on the "Card" tab in DCX and then click on the "+" symbol at the bottom right corner. This will open a window in DCX titled "Resolution details" and you will see all the detailed information of the timing you need to enter into DCX on the Intel mini.

  • How to get the displayed message when using FM:  ABAP4_CALL_TRANSACTION

    Hi, 
    I am calling FM ABAP4_CALL_TRANSACTION from MS-Excel.  This FM works perfectly for me except the system messages that SAP returns are not always understandable or intituative.  My question is there another FM or Table that I can use to convert the data from MESS_TAB to a more meaningful message for the users?
    Examples listed below:
    Normal T-Code Message
    FM Message in MESS_TAB
    Real Meaning
    Fill in all required entry fields
    COBL-RMVCT        
    Field COBL-RMVCT is a required field
    Document 400000000 was posted in 130
    4000000000 130
    Document 400000000 was posted successfully
    Thanks for your Help

    Hi Karim,
    when you have the parameter to generate the message, you can use the following RFC function module:
    BAPI_MESSAGE_GETDETAIL
    The module has the following interface:
    *"*"Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(ID) LIKE  BAPIRET2-ID
    *"     VALUE(NUMBER) LIKE  BAPIRET2-NUMBER
    *"     VALUE(LANGUAGE) LIKE  BAPITGA-LANGU DEFAULT SY-LANGU
    *"     VALUE(TEXTFORMAT) LIKE  BAPITGA-TEXTFORMAT
    *"     VALUE(LINKPATTERN) LIKE  BAPITGA-LINKMASK OPTIONAL
    *"     VALUE(MESSAGE_V1) LIKE  BAPIRET2-MESSAGE_V1 OPTIONAL
    *"     VALUE(MESSAGE_V2) LIKE  BAPIRET2-MESSAGE_V2 OPTIONAL
    *"     VALUE(MESSAGE_V3) LIKE  BAPIRET2-MESSAGE_V3 OPTIONAL
    *"     VALUE(MESSAGE_V4) LIKE  BAPIRET2-MESSAGE_V4 OPTIONAL
    *"  EXPORTING
    *"     VALUE(MESSAGE) LIKE  BAPIRET2-MESSAGE
    *"     VALUE(RETURN) LIKE  BAPIRET2 STRUCTURE  BAPIRET2
    *"  TABLES
    *"      TEXT STRUCTURE  BAPITGB OPTIONAL
    Best regards
    Thomas

  • How to get default input values when using promt user for input

    I use "promt user for input" to input some values. The messageboard appears with blank boxes then I will input  new values. I want to make some default values in this blank boxes so that I needn't to enter new values. Is it possible ?

    Right click on he Express Vi terminal and choose open Front panel to convert it into a standard vi. Then open it. Enter a default value for each control, then right-click on the controls and go to data operation > make current value default.
    Message Edité par chilly charly le 11-18-2007 12:52 PM
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

  • How do I install PFB fonts when using Windows 7 64bit?

    I got a new 64 bit computer with Windows 7. But when I copied the fonts I was using on the old computer the PFB fonts do not work any longer.
    The old ATMF program does not work on this computer so how do I now install the PFB fonts?
    //Anni

    Hopefully you did not try to install the old Adobe Type Manager software. If you did, you may need to totally reload Windows if you cannot restore your system to its state prior to attempting to install that software!
    Assuming that you didn't make that fatal mistake, the method for installing Type 1 fonts, each of which consists of a .pfb and a .pfm file is as follows:
    (1)     Copy the .pfb and the .pfm  files to a single directory if they are not already so available.
    (2)     Select the .pfm files for the fonts you wish to install.
    (3)     Right-click and select Install which will then proceed to install the fonts onto your system copying both the .pfb and the .pfm files to the C:\Windows\Fonts directory. Do not drag-and-drop these files! Alternatively, if you don't want the font files themselves resident in the C:\Windows\Fonts directory, when you right-click the files, select Install as shortcut. This installs the font but references it from its current location.
              - Dov

  • How to get ProxyEnable value from registry using Windows

    Hi,
    I have developed a webservice which check for a new version of software. Webservice works fine if the user does not use a proxy otherwise it raises an error "connection timeout....".
    I have found a lot of examples how to read a proxy from windows registry. It works fine. I have a problem with getting value for ProxyEnable. ProxyEnable is REG_DWORD type and I always get null.
    Best regards,
    Primoz

    Hi,
    I have found the solution. I put the solution into my blog. You can read more about that at http://javanus.com/blogs/?p=73.
    I hope this will help someone.
    Regards,
    Primoz

  • How can i run wireless internet when using windows xp on my imac?

    I recently installed Windows XP on my imac using Boot Camp, everything works great except the internet. ive been looking but i have found no way to get the internet to work via my wireless connection, or is it just not possible?
    Could it be that i am missing some drivers? Anyone know where i can get them?
    Sorry if im asking too much stuff.
    Thanks in advance

    Depending on the wireless base station brand and specifications,
    you may have to set up the Windows system to find & use it...
    Just about the same as setting up any Windows PC to go online;
    except, if you have an Apple base station...
    If you have an AirPort base station, there are updates for Windows
    to help use that access point, from your Mac, running Windows.
    An example, but not necessarily the correct answer, in the following:
    • AirPort Utility 5.4.2 for Windows
    http://support.apple.com/kb/DL840
    Since you have posted this request in 10.5 Leopard> Automator
    discussion, this won't be a suitable place to find matching replies.
    see: Windows compatible technologies> Airport for Windows:
    http://discussions.apple.com/forum.jspa?forumID=1014
    There are other topic discussions under the Windows area,
    so if you look into the main Discussions page and look into
    the bottom of the listings, you can see the larger group there.
    Apple Support Discussions - Forum Home:
    http://discussions.apple.com/index.jspa?categoryID=1
    Perhaps after reading through topics in the Windows> Airport
    thread, you may wish to reconstruct and repost it in that area.
    Good luck & happy computing!
    { edited to add Airport Utility info & misc explanation }

  • Stray jnlp files get cluttered on desktop when using Safari on MAC

    We are using jdk 1.4 webstart and safari browser on a mac machine.
    Once the web start begins a jnlp file gets downloaded on to the desktop. This happens each time the webstart begins.
    Is there any workaround such that these files don't get downloaded at all or gets deleted once the web start closes?

    Serial Multi-poster.

  • How to get UTF-8 encoding when create XML using DBMS_XMLGEN and UTL_FILE ?

    How to get UTF-8 encoding when create XML using DBMS_XMLGEN and UTL_FILE ?
    Hi,
    I do generate XML-Files by using DBMS_XMLGEN with output by UTL_FILE
    but it seems, the xml-Datafile I get on end is not really UTF-8 encoding
    ( f.ex. cannot verifying it correct in xmlspy )
    my dbms is
    NLS_CHARACTERSET          = WE8MSWIN1252
    NLS_NCHAR_CHARACTERSET     = AL16UTF16
    NLS_RDBMS_VERSION     = 10.2.0.1.0
    I do generate it in this matter :
    declare
    xmldoc CLOB;
    ctx number ;
    utl_file.file_type;
    begin
    -- generate fom xml-view :
    ctx := DBMS_XMLGEN.newContext('select xml from xml_View');
    DBMS_XMLGEN.setRowSetTag(ctx, null);
    DBMS_XMLGEN.setRowTag(ctx, null );
    DBMS_XMLGEN.SETCONVERTSPECIALCHARS(ctx,TRUE);
    -- create xml-file:
    xmldoc := DBMS_XMLGEN.getXML(ctx);
    -- put data to host-file:
    vblob_len := DBMS_LOB.getlength(xmldoc);
    DBMS_LOB.READ (xmldoc, vblob_len, 1, vBuffer);
    bHandle := utl_file.fopen(vPATH,vFileName,'W',32767);
    UTL_FILE.put_line(bHandle, vbuffer, FALSE);
    UTL_FILE.fclose(bHandle);
    end ;
    maybe while work UTL_FILE there is a change the encoding ?
    How can this solved ?
    Thank you
    Norbert
    Edited by: astramare on Feb 11, 2009 12:39 PM with database charsets

    Marco,
    I tryed to work with dbms_xslprocessor.clob2file,
    that works good,
    but what is in this matter with encoding UTF-8 ?
    in my understandig, the xmltyp created should be UTF8 (16),
    but when open the xml-file in xmlSpy as UTF-8,
    it is not well ( german caracter like Ä, Ö .. ):
    my dbms is
    NLS_CHARACTERSET = WE8MSWIN1252
    NLS_NCHAR_CHARACTERSET = AL16UTF16
    NLS_RDBMS_VERSION = 10.2.0.1.0
    -- test:
    create table nh_test ( s0 number, s1 varchar2(20) ) ;
    insert into nh_test (select 1,'hallo' from dual );
    insert into nh_test (select 2,'straße' from dual );
    insert into nh_test (select 3,'mäckie' from dual );
    insert into nh_test (select 4,'euro_€' from dual );
    commit;
    select * from nh_test ;
    S0     S1
    1     hallo
    1     hallo
    2     straße
    3     mäckie
    4     euro_€
    declare
    rc sys_refcursor;
    begin
    open rc FOR SELECT * FROM ( SELECT s0,s1 from nh_test );
    dbms_xslprocessor.clob2file( xmltype( rc ).getclobval( ) , 'XML_EXPORT_DIR','my_xml_file.xml');
    end;
    ( its the same when using output with DBMS_XMLDOM.WRITETOFILE )
    open in xmlSpy is:
    <?xml version="1.0"?>
    <ROWSET>
    <ROW>
    <S0>1</S0>
    <S1>hallo</S1>
    </ROW>
    <ROW>
    <S0>2</S0>
    <S1>straޥ</S1>
    </ROW>
    <ROW>
    <S0>3</S0>
    <S1>m㢫ie</S1>
    </ROW>
    <ROW>
    <S0>4</S0>
    <S1>euro_€</S1>
    </ROW>
    </ROWSET>
    regards
    Norbert

Maybe you are looking for