How to get input device resolution?

Hi,
In Java, the mouse movement is captured only when the cursor moves in the screen? I have mouse with much high resolution (1600dpi) and tablet pc with pen which is also much higher resolution , while screen has 72dpi resolution. Hence I am loosing several data when I am writing in a panel (the data's are getting quantized wrt screen resolution).
How to generate an mouseMoved or mouseDragged event, when mouse /pen moves at it's resolution, rather than screen resolution?
I am using it for a tablet pc ink/scribble kind of application, wher the images are looking flatted when zoomed, due to this quantization.
Any solution is appreciated.
abir

Hi,
It is likely that you may have to go at a lower level than AWT to get such information. It seems that the AWT MouseEvent is only capable of dealing with screen co-ordinates. I'd look at the AWT source code to see where and how it's getting the information for the MouseEvents it creates, and then figure out a way to grab that information before AWT gets its' hands on it.
It isn't a solution, but if you're stuck for ideas, it could be a start.
Cheers,
Sam

Similar Messages

  • How to get the device token in windows phone 8 sliverlight application?

    Hi,
    I am developing a windows phone 8 silverlight application . For my application I want to add push notification service , for this service I have to call one web service in my app . This api requires device token , device id ..etc , I am able to get the all
    the things except devicetoken .
    How to get the device token of a device ?
    any help?
    Thanks...
    Suresh.M

    Most probably device token is the push channel url which is returned by MPNS when a request is made to it.
    Step 3 here: Push notifications for Windows Phone 8
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • How to get Input-Ready Cell  Value of Input Ready Query?

    Hi,
    How to get input ready cell value in fox formula?
    for example :
    In Input-Ready Query,
    C_Code Month        Psale(input ready)
    1000          05.2012       800
    now i want Psale 800 in fox formua before value save in cube,
    is it possible?
    Thanks
    Ravi

    Hi,
    as I understand your requirement: you want to execute a planning function before 'save'. This possible, cf. note 1356805
    for more details.
    Regards,
    Gregor

  • How to get widescreen (lcd) resolution in xfce (and x in general)?

    i just got a 19 inch lcd widescreen... now i dont know how to set a wide resolution i x.. can someone tell me how to get 1440x900 resolution (which is what my monitor supports)...

    Xorg probably autoconfigures for the highest resolution your card and monitor can support. If not try if you don't already have it
    pacman -S libxrandr
    Then
    xrandr
    It should show you all applicable resolutions for your config. To manually set it in your current session find the number in the collomn SZ and run
    xrandr -s #
    Then just edit /etc/X11/xorg.conf in the display subsection of the screen section and put in the resolution(s) you want.
    This is what mine looks like:
    Section "Screen"
    Identifier "Screen 1"
    Device "Intel 810"
    Monitor "My Monitor"
    DefaultDepth 24
    Subsection "Display"
    Depth 8
    Modes "1280x1024"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 16
    Modes "1280x1024"
    ViewPort 0 0
    EndSubsection
    Subsection "Display"
    Depth 24
    Modes "1280x1024"
    ViewPort 0 0
    EndSubsection
    EndSection

  • Windows Phone 8.1 (Sliverlight and Win RT) - How to get accessible camera resolutions?

    I would like to ask, how it is possible to get all accessible camera resolutions in Windows Phone 8.1 app (for both silverlight and WinRT). I wanted to use:
    Windows.Phone.Media.Capture.PhotoCaptureDevice.GetAvailableCaptureResolutions(
    Windows.Phone.Media.Capture.CameraSensorLocation.Back);
    But I am getting message that namespace Windows.Phone.Media.Capture is obsolete and may not be supported from next version of Windows Phone starting with Windows Phone Blue and that I should use Windows.Media.Capture instead. However Windows.Media.Capture
    does not allow me to get accessible camera resolutions, so I would like to ask, how to solve this.
    Thank you.

    Here are the official informatiosn about the camera in general:
    http://msdn.microsoft.com/en-us/library/windows/apps/hh202973%28v=vs.105%29.aspx
    Than, back to your Question. You should use this classes instead, because they are modern:
    windows.media.capture
    © 2015 Thomas Roskop
    Germany // Deutschland

  • How to get USB device in the list of VISA resource Name field of VISA Open VI

    I have followed the below tutorial to communicate with my device using USB port. But i didn't get the name of the USB port in Measurement & Automation Explorer devices list. How to get it? Can anyone suggest something?
    http://zone.ni.com/devzone/cda/tut/p/id/4478
    Solved!
    Go to Solution.

    Hi kimhyun,
                     I have attempted this.But succeeded.I used pendrive as my USB device.my sugesstion is you don't disconnect your device at any point of your work.Check the device is connected properly.IF your system has recognized your device,you can view the device in control panel>>Device Manager>>Then open your particular device from the list of connected device then Details>>device description>>Hardware Ids>>Then you can find your vendor id there.
    Try this.I think your device is loosly connected.Which USB device are you using??Also you must install THE DRIVER OF YOUR USB DEVICE.
    GOOD LUCK
    Thanks as kudos only

  • How to get input from card reader

    hi, everyone,
    I have a project, which needs me to get input from card reader. My terminal input is IBM POS system, but it didnot provide the API to get the input. How can I get the input? Need your help so much! and thanks a lot

    Now this is a wild idea.... how about searching the IBM site for technical information ?

  • How to get input from keyboard scanner into an array

    This is probably a very basic question but I'm very new to java..
    My task is to reverse a string of five digits which have been entered using keyboard scanner.
    E.g. - Entered number - 45896
    Output - 69854
    I used the StringBuffer(inputString).reverse() command for this, but i need a more basic method to do this.
    I thought of defining an array of 5
    int[] array = new int [5];
    and then using,
    Scanner scan = new Scanner(System.in);
    to enter the numbers. But I can't figure out how to get the five input numbers into the array.
    If I can do this I can print the array in reverse order to get my result.
    Any other simple method is also welcome.

    Hey thanks for the quick reply,
    But how can I assign the whole five digit number into the array at once without asking to enter numbers separately?
    E.g. - if entered number is 65789
    Assign digits into positions,
    anArray [0] = 6;
    anArray [1] = 5;
    anArray [2] = 7;
    anArray [3] = 8;
    anArray [4] = 9;
    I'm really sorry but I am very new to the whole subject.

  • JComboBox    How to get input from JComboBox

    Hi all.
    I have a JComboBox called combobox.
    User can choose one string out of 5 using this JComboBox.
    Whenever the user press a button, I'd like to get an input through this combobox using actionListener.
    How can I get input through JComboBox?
    combobox.getValue() ???
    I appreciate your help !

    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JComboBox.html
    Object getSelectedItem()

  • How to Get Input from Command Prompt?

    How can i get input from command prompt like
    C:\
    or linux ?
    (Here's what I use now)
    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
    String line;
    Whlie((line=in.readLine())!= null)
    { System.out.prinln( line) ; }
    IS THERE A BETTER WAY?

    The main method within a java class accepts command line input through a String array.
    In this example args is the String array. You can access the parameters as args[0] for the first parameter, args[1] for the second parameter, etc....
    The usage for the example below would be :
    c:\EDIFormat file1 file2
    Where args[0] would equal file1 and args[1] would equal file2.
    public class EDIFormat {
    public static void main(String[] args) {
              if (args.length < 0) {
                   System.out.println("No Parameters supplied. Exiting....");
                   // open input and output files
                   EDIFiles(args[0], args[1]);
    Hope that helps!

  • How to get inputs of several JTextFields?

    Hi all,
    I'm writing an application which prompt the user to enter "Customer Information" such as Customer, Name and Tel. I need to use JTextField for these inputs but I don't know how to get the input values. I found some sample code for only input ONE JTextField so I don't know how to apply it for more than one JTextField. Below is part of my coding. What should be add in the "actionPerformed" part to get the inputs? Would anyone help?
    class CustFrame extends JFrame implements ActionListener
    JButton save, cancel;
    JLabel text1, text2, text3;
    JTextField cust_number, name, tel;
    text1 = new JLabel ("Customer Number: ");
    text2 = new JLabel ("Name: ");
    text3 = new JLabel ("Tel: ");
    cust_number = new JTextField (8);
    cust_number.addActionListener (this);
    name = new JTextField (20);
    name.addActionListener (this);
    tel = new JTextField (30);
    tel.addActionListener (this);
    save = new JButton ("Save");
    cancel = new JButton ("Cancel");
    public void actionPerformed (ActionEvent e)
    if (e.getSource()==save)
    else if (e.getSource()==cancel)

    public void actionPerformed (ActionEvent e)
    if (e.getSource()==save){
    innumber = cust_number.getText();
    inname = name.getText();
    intel = tel.getText();
    }.....

  • How to get to devices tab

    I just got a first gen Apple TV but I don't know how to find the device tab on the latest version of iTunes 11 to put in the password and synch with iTunes

    Hi there HumphriesD!
    I have an article here that can help you troubleshoot that issue a little further:
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/ts1591
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • How to get Input field value?

    Hi All,
    I have some problem in getting of input value from View to customcontroller.
    My problem is I have created a Input field in the view and if Iam giving the value to that field I can capture the value from View to customcontroller and send it as BAPI input.But My input filed is in the view Context.
    How can i capture InputFiled value from View to CustomController.
    Advance thanks
    Nageswara.
    Message was edited by: nageswar mandapati

    Thanks for your response Patrick,
    In my customcontrollerView all my BAPI mathods instances and execute methods are declared.All the attributes directly getting from model class.
    But I have two views , in first view I created a input field(for that i created valueAttribute in that context).
    Here I want give the conditions If  the input field is empty then directly call the execute method of BAPI.
    Otherwise give any input to the inputfiled then capture that value and send it input to BAPI from view to BAPI.
    In my customcontroller
    BAPI b = new BAPI();
    b.Param1();
    b.param2();
    and
    execute BAPI()
    I done like this.
    How can i capture the view input value how to send as a b.parama();
    Please guide me .
    Any snippests appriciate.
    Thanks
    nageswara.

  • How to get input value from a HTML form?

    Hi,
    I use URL class to connect to a simple HTML file. In the returned page there is a form with hidden input with default value. How can I get the values?
    Thanx.

    By parsing the HTML.

  • How to  Get input from  User and Display it's Value

    Hi ,
    I need to get 2 inputs from user and to display it's Mutilple Value.
    The Below Code is working fine to get 2 Input's from user,but it display a Junk value as a Result .How to
    overcome this Problem. I need to display it's Mutilple(a*b) value of "a " and " b".
    import java.io.*;
    class Mul{
    static int a=0;
    static int b=0;
    static int Count=0;
    public static void main(String args[])throws IOException{
    BufferedReader br =new BufferedReader(new InputStreamReader(System.in));
    do{
    a=(char)br.read();
    Count++;
    b=(char)br.read();
    if(Count==2)
    System.out.println("The Multiplied Value is "+a*b);
    }while(Count<2);
    }

    Changed to Integer but still the problem persists.
    import java.io.*;
    class Mul{
    static int a=0;
    static int b=0;
    static int Count=0;
    public static void main(String args[])throws IOException{
    BufferedReader br =new BufferedReader(new InputStreamReader(System.in));
    do{
    a=(int)br.read();
    Count++;
    b=(int)br.read();
    if(Count==2)
    System.out.println("The Multiplied Value is "+a*b);
    }while(Count<2);
    }

Maybe you are looking for

  • Problem with Item Labels in ORacle 10g

    Hi, We have unchecked the item labels in oracle discoverer 10g. when we create the portlet(after moved server from 10.1.0.2 to 10.1.2), it showing item labels for the discoverer report. we dont want item labels to be displayed in portlets. Can one an

  • Itunes is not recognizing my iphone.

    Itunes is not recognizing my iphone. when i plug my iphone in, iphoto pops up and my photos appear but nothing happens on itunes. i have a mac pro.

  • Open/close line for data input depending on characteristic value

    Hi, assume we have an input ready query linked to an analysis item. material qty 1            100 2              50 3              70 How can we achieve that only the line 2  is open for data input by the user and the other lines 1/3 are closed. Rega

  • What do you mean by Time profile and how to configure it.

    Hi Gurus, can anybody tel me what do you mean by Time profile and how to configure it. we are using Capacity requiremtn planning. best regards prashanth

  • Error when Broadcasting PDF format to email

    Hi, The template is getting executed properly through WAD. Even, in portal the report is being generated correctly. The problem is when I try to broadcast PDF format to Email. I am receiving the following error when attempting to broadcast a query as