JTextField max length, JTextArea automatic scrolling

i cant find how to do 2 things,
i would like to limit the size of the text entered in a JTextField
i could probably do this by making its KeyListener trim off the extra from getText() and use setText(whateverIsLeft) but i was hoping there was a better way of doing this with something that is already there as this is a lot of work considering soemoen could just hold down a button and it would have to do it several times a second
also i need to set a JTextArea inside a JScrollPane so that when new text is appended to it, it scrolls the jtextpane down to the bottom, i could just make it write it at the top instead of appending it to the bottom but i REALLY dont want to =p
thanks

i've got the same probelm with the JSrollPane
this is what i usually do
public void keyPressed(KeyEvent e) {
if (e.getKeyCode() == KeyEvent.VK_ENTER) {
ta.setText(ta.getText() + "\n" + tf.getText());
tf.setText("");
jsp.setPreferredSize(new Dimension(0, 0));
jsp.revalidate();
where tf is a JTextField, ta is a JTextArea and jsp is the JScrollPane in which ta is added
this worked great so far but when i try to set it through this
BufferedReader in = new BufferedReader(
new InputStreamReader(port.getInputStream()));
it just refuses to work and i haven't got the slightest clue why ...
here is the Thred i use :
private class Reciever extends Thread {
private BufferedReader in = null;
private String change = "";
public String getChange() {
return change;
public Reciever() {
Socket port = conMan.getPort();
try {
in = new BufferedReader(new InputStreamReader(port.getInputStream()));
} catch (IOException e) {
e.printStackTrace();
System.err.println("[system] : I/O Exception ");
} catch (NullPointerException e) {
e.printStackTrace();
System.err.println("[system] : Null Pointer Exception ");
start();
public void run() {
for (; ;) {
try {
change = in.readLine();
setText(change);//this is the method that sets the text in the JTextArea
} catch (SocketException e) {
Main.getStatus().setMsg("Closed " + conMan.getPort());
return;
} catch (IOException e2) {
e2.printStackTrace();
return;
and the setText(); method :
public void setText(String txt) {
if (txt != null && !txt.equals(null) && !txt.equals("")) {
receive.setText(receive.getText() + "\n" + txt);
i tryed all of the above ways nothing works so far ...

Similar Messages

  • Automatically scrolling to an item in a JList

    Hi all,
    i have several jlists with about 30 - 50 items and i would like to take the user directly to an item in the list as he enters characters that match a list item. Are there any existing interfaces with this behaviour? If not, has anyone written something similar to this?
    Thanks!

    Hi Linzie,
    the following code will automatically scroll the JList to the item entered in the JTextField:public class X extends JApplet {
         public void init() {
              final int CELL_HEIGHT = 15; //or figure out how to get it dynamically
              String[] items = new String[50]; //test items (format: item XX)
              for (int x = 0; x < items.length; x++) items[x] = "item " + x;
              final JList lst = new JList(items);
              final JScrollPane scroll = new JScrollPane(lst);
              Container c = getContentPane();
              c.setLayout(new BorderLayout());
              final JTextField text = new JTextField(20);
              text.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        String s = text.getText();
                        try {
                        int val = Integer.parseInt(s.substring(s.lastIndexOf(' ')+1, s.length()));
                        //this automatically scrolls to show
                        //the required cell of the JList
                        scroll.getVerticalScrollBar().setValue(val * CELL_HEIGHT);
                        lst.setSelectedIndex(val);
                        } catch(NumberFormatException ex) {
              c.add(text, BorderLayout.NORTH);
              c.add(scroll, BorderLayout.CENTER);
    }Cheers!

  • Getting JTextArea to scroll down automatically

    I want my text area to automatically scroll down once certain text has gone below the view area, however when i update the carot to the position it still does not scroll...and i have also tried scrollPane and i just cant use them, they always mess up for me...maybe the two problems are related, so tell me if you have any ideas, thanks

    however when i update the carot to the position it still does not scroll...Works fine for me:
    textArea.setCaretPosition( textArea.getDocument().getLength() );

  • Need help with JTextArea and Scrolling

    import java.awt.*;
    import java.awt.event.*;
    import java.text.DecimalFormat;
    import javax.swing.*;
    public class MORT_RETRY extends JFrame implements ActionListener
    private JPanel keypad;
    private JPanel buttons;
    private JTextField lcdLoanAmt;
    private JTextField lcdInterestRate;
    private JTextField lcdTerm;
    private JTextField lcdMonthlyPmt;
    private JTextArea displayArea;
    private JButton CalculateBtn;
    private JButton ClrBtn;
    private JButton CloseBtn;
    private JButton Amortize;
    private JScrollPane scroll;
    private DecimalFormat calcPattern = new DecimalFormat("$###,###.00");
    private String[] rateTerm = {"", "7years @ 5.35%", "15years @ 5.5%", "30years @ 5.75%"};
    private JComboBox rateTermList;
    double interest[] = {5.35, 5.5, 5.75};
    int term[] = {7, 15, 30};
    double balance, interestAmt, monthlyInterest, monthlyPayment, monPmtInt, monPmtPrin;
    int termInMonths, month, termLoop, monthLoop;
    public MORT_RETRY()
    Container pane = getContentPane();
    lcdLoanAmt = new JTextField();
    lcdMonthlyPmt = new JTextField();
    displayArea = new JTextArea();//DEFINE COMBOBOX AND SCROLL
    rateTermList = new JComboBox(rateTerm);
    scroll = new JScrollPane(displayArea);
    scroll.setSize(600,170);
    scroll.setLocation(150,270);//DEFINE BUTTONS
    CalculateBtn = new JButton("Calculate");
    ClrBtn = new JButton("Clear Fields");
    CloseBtn = new JButton("Close");
    Amortize = new JButton("Amortize");//DEFINE PANEL(S)
    keypad = new JPanel();
    buttons = new JPanel();//DEFINE KEYPAD PANEL LAYOUT
    keypad.setLayout(new GridLayout( 4, 2, 5, 5));//SET CONTROLS ON KEYPAD PANEL
    keypad.add(new JLabel("Loan Amount$ : "));
    keypad.add(lcdLoanAmt);
    keypad.add(new JLabel("Term of loan and Interest Rate: "));
    keypad.add(rateTermList);
    keypad.add(new JLabel("Monthly Payment : "));
    keypad.add(lcdMonthlyPmt);
    lcdMonthlyPmt.setEditable(false);
    keypad.add(new JLabel("Amortize Table:"));
    keypad.add(displayArea);
    displayArea.setEditable(false);//DEFINE BUTTONS PANEL LAYOUT
    buttons.setLayout(new GridLayout( 1, 3, 5, 5));//SET CONTROLS ON BUTTONS PANEL
    buttons.add(CalculateBtn);
    buttons.add(Amortize);
    buttons.add(ClrBtn);
    buttons.add(CloseBtn);//ADD ACTION LISTENER
    CalculateBtn.addActionListener(this);
    ClrBtn.addActionListener(this);
    CloseBtn.addActionListener(this);
    Amortize.addActionListener(this);
    rateTermList.addActionListener(this);//ADD PANELS
    pane.add(keypad, BorderLayout.NORTH);
    pane.add(buttons, BorderLayout.SOUTH);
    pane.add(scroll, BorderLayout.CENTER);
    addWindowListener( new WindowAdapter()
    public void windowClosing(WindowEvent e)
    System.exit(0);
    public void actionPerformed(ActionEvent e)
    String arg = lcdLoanAmt.getText();
    int combined = Integer.parseInt(arg);
    if (e.getSource() == CalculateBtn)
    try
    JOptionPane.showMessageDialog(null, "Got try here", "Error", JOptionPane.ERROR_MESSAGE);
    catch(NumberFormatException ev)
    JOptionPane.showMessageDialog(null, "Got here", "Error", JOptionPane.ERROR_MESSAGE);
    if ((e.getSource() == CalculateBtn) && (arg != null))
    try{
    if ((e.getSource() == CalculateBtn) && (rateTermList.getSelectedIndex() == 1))
    monthlyInterest = interest[0] / (12 * 100);
    termInMonths = term[0] * 12;
    monthlyPayment = combined * (monthlyInterest / (1 - (Math.pow (1 + monthlyInterest,  -termInMonths))));
    lcdMonthlyPmt.setText(calcPattern.format(monthlyPayment));
    if ((e.getSource() == CalculateBtn) && (rateTermList.getSelectedIndex() == 2))
    monthlyInterest = interest[1] / (12 * 100);
    termInMonths = term[1] * 12;
    monthlyPayment = combined * (monthlyInterest / (1 - (Math.pow (1 + monthlyInterest,  -termInMonths))));
    lcdMonthlyPmt.setText(calcPattern.format(monthlyPayment));
    if ((e.getSource() == CalculateBtn) && (rateTermList.getSelectedIndex() == 3))
    monthlyInterest = interest[2] / (12 * 100);
    termInMonths = term[2] * 12;
    monthlyPayment = combined * (monthlyInterest / (1 - (Math.pow (1 + monthlyInterest,  -termInMonths))));
    lcdMonthlyPmt.setText(calcPattern.format(monthlyPayment));
    catch(NumberFormatException ev)
    JOptionPane.showMessageDialog(null, "Invalid Entry!\nPlease Try Again", "Error", JOptionPane.ERROR_MESSAGE);
    }                    //IF STATEMENTS FOR AMORTIZATION
    if ((e.getSource() == Amortize) && (rateTermList.getSelectedIndex() == 1))
    loopy(7, 5.35);
    if ((e.getSource() == Amortize) && (rateTermList.getSelectedIndex() == 2))
    loopy(15, 5.5);
    if ((e.getSource() == Amortize) && (rateTermList.getSelectedIndex() == 3))
    loopy(30, 5.75);
    if (e.getSource() == ClrBtn)
    rateTermList.setSelectedIndex(0);
    lcdLoanAmt.setText(null);
    lcdMonthlyPmt.setText(null);
    displayArea.setText(null);
    if (e.getSource() == CloseBtn)
    System.exit(0);
    private void loopy(int lTerm,double lInterest)
    double total, monthly, monthlyrate, monthint, monthprin, balance, lastint, paid;
    int amount, months, termloop, monthloop;
    String lcd2 = lcdLoanAmt.getText();
    amount = Integer.parseInt(lcd2);
    termloop = 1;
    paid = 0.00;
    monthlyrate = lInterest / (12 * 100);
    months = lTerm * 12;
    monthly = amount *(monthlyrate/(1-Math.pow(1+monthlyrate,-months)));
    total = months * monthly;
    balance = amount;
    while (termloop <= lTerm)
    displayArea.setCaretPosition(0);
    displayArea.append("\n");
    displayArea.append("Year " + termloop + " of " + lTerm + ": payments\n");
    displayArea.append("\n");
    displayArea.append("Month\tMonthly\tPrinciple\tInterest\tBalance\n");
    monthloop = 1;
    while (monthloop <= 12)
    monthint = balance * monthlyrate;
    monthprin = monthly - monthint;
    balance -= monthprin;
    paid += monthly;
    displayArea.setCaretPosition(0);
    displayArea.append(monthloop + "\t" + calcPattern.format(monthly) + "\t" + calcPattern.format(monthprin) + "\t");
    displayArea.append(calcPattern.format(monthint) + "\t" + calcPattern.format(balance) + "\n");
    monthloop ++;
    termloop ++;
    public static void main(String args[])
    MORT_RETRY f = new MORT_RETRY();
    f.setTitle("MORTGAGE PAYMENT CALCULATOR");
    f.setBounds(600, 600, 500, 500);
    f.setLocationRelativeTo(null);
    f.setVisible(true);
    }need help with displaying the textarea correctly and the scroll bar please.
    Message was edited by:
    new2this2020

    What's the problem you're having ???
    PS.

  • NUMERIC TextField with max length

    Hi there guys,
    could someone tell me why TextField's get a 10 number max length automatically when it's assigned a NUMERIC type to it? Even if I set it's max length to more then 10.
    I know it doesn't happen in most of cellphone's models but I've already noticed it in Palm J9 and in Sony Ericsson W810. Is this an specification? What can I do to increase max length and keep with NUMERIC type TextField?
    tks to your attention.

    One more case of device fragmentation and weak implementation.
    The javadoc for TextField.setMaxSize does say<quote>
    Returns:
    assigned maximum capacity - may be smaller than requested.</quote>db

  • How to automatically scroll text in JScrollPane

    Hi there
    I have a very simple question...
    How to automatically scroll text in JScrollPane?
    Text in the TextArea is constantly getting updated... but the scroll bars dont' move as the text changes. Instead I ahve to scroll and see the changes everytime. How can I make the viewport or the scrollpane to show the latest content?
    Thanks in advance.
    Dexter

    This question is asked daily (it seems) on the forum. Hopefully the TextAreaScroll class will explain whats going on:
    **  Short answer is to use the following after the append:
    **  textArea.setCaretPosition(textArea.getDocument().getLength()
    **  However, if you really want to know what is going on, then I have
    **  I have observed the following behaviour in JDK1.4.2
    **  JTextArea will scroll automatically when text is appended, if:
    **  a) the caret is at the end of the text area, and
    **  b) the append is done in the event thread
    **  Note: Initializing a text area at creation time by any of the following
    **  aproaches will cause the caret to be positioned at the start and therefore
    **  scrolling will not happen automatically:
    **  a) JTextArea textArea = new JTextArea("Initial text", ...);
    **  b) textArea.setText("Initial text");
    **  c) textArea.read(someFile, null);
    **  The append method can be forced to execute in the Event thread by using
    **  SwingUtilities.invokeLater();
    **  Alternatively you can force a scroll by repositioning the caret.
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Date;
    import javax.swing.*;
    import javax.swing.text.*;
    public class TextAreaScroll
         public static void main(String[] args)
              final JTextArea textAreaWest = new JTextArea(10, 25);
              JScrollPane scrollPaneWest = new JScrollPane( textAreaWest );
              final JTextArea textAreaEast = new JTextArea(10, 25);
              JScrollPane scrollPaneEast = new JScrollPane( textAreaEast );
              JFrame frame = new JFrame();
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              frame.getContentPane().add(scrollPaneWest, BorderLayout.WEST);
              frame.getContentPane().add(scrollPaneEast, BorderLayout.EAST);
              frame.pack();
              frame.setVisible(true);
              //  The West text area will be updated by a Timer. Timer code is
              //  executed in the Event thread so it will scroll correctly.
              new Timer(1000, new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        if (textAreaWest.getDocument().getLength() == 0)
                             textAreaWest.append("West will scroll correctly");
                        textAreaWest.append( "\n" + new Date().toString());
              }).start();
              //  The East text area is not updated in the Event thread.
              //  It will not scroll correctly.
              while (true)
                   try
                        if (textAreaEast.getDocument().getLength() == 0)
                             textAreaEast.append("East will not scroll correctly");
                        textAreaEast.append( "\n" + new Date().toString() );
                        //  Using this method causes the text area to scroll because
                        //  this method will invoke SwingUtilities.invokeLater(...)
                        textAreaEast.setCaretPosition( textAreaEast.getDocument().getLength() );
                        //  Using SwingUtilities.invokeLater causes the code to execute
                        //  on the Event thread
                        //  (comment all the above lines before testing)
                        SwingUtilities.invokeLater( new Runnable()
                             public void run()
                                  textAreaEast.append( "\n" + new Date().toString() );
                        Thread.sleep(1000);
                   catch (InterruptedException ie) {}
    }

  • Why the vertical scrollbar bar is automatically scrolled to the bottom pos.

    I created a JScrollpane to contain a JTabbedPane. The JTabbedPane has two JPanel and each of them has a number of GUI components such as JCheckbox and JTextField. They have different size because their GUI components are different. The 2nd panel is about twice the size of the first panel.
    When the JScrollpane is shown, its vertical scroll bar is automatically scrolled to the bottom position. However, it is the first panel that is initially visible to the user. So, the user will see no GUI components of the first panel because the auto scrolling of the vertical scroll bar.
    Can anyone tell me how to disable the auto scrolling?
    I just want to let the scrollbar knob stay at the top so that the GUI components of the first panel (the smaller one) can be seen initially!

    Works fine for me:
    import javax.swing.*;
    import java.awt.*;
    public class TabbedPaneScroll extends JFrame
         private JTabbedPane tabbedPane;
         public TabbedPaneScroll()
              tabbedPane = new JTabbedPane();
              tabbedPane.setPreferredSize( new Dimension(300, 200) );
              getContentPane().add(tabbedPane);
              addNewTab( 10 );
              addNewTab( 5 );
              addNewTab( 20 );
         private void addNewTab(int fields)
              JPanel panel = new JPanel();
              panel.setLayout( new GridLayout(0, 1) );
              for (int i = 0; i < fields; i++)
                   panel.add( new JTextField("" + i) );
              JScrollPane scrollPane = new JScrollPane( panel );
              tabbedPane.add(scrollPane, "" + fields);
         public static void main(String args[])
              TabbedPaneScroll frame = new TabbedPaneScroll();
              frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
              frame.pack();
              frame.setLocationRelativeTo( null );
              frame.setVisible(true);
    }If you need further help then you need to create a [url http://www.physci.org/codes/sscce.jsp]Short, Self Contained, Compilable and Executable, Example Program that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.
    And don't forget to use the [url http://forum.java.sun.com/help.jspa?sec=formatting]Code Formatting Tags so the code retains its original formatting.

  • How to set max length for TextField ?

    how do i go about setting a max length for a TextField in jdk1.1.8 ?
    a while back there was a topic on this but it was for jdk1.0
    please help

    well if it works in 1.0 it will most likely also work in 1.1.8 if it is depricated you can use the -deprication option during compilation to see what is derpricated and what method i advised to use now.
    there may however be an easyer way in 1.1.8 but i don't know that.
    hope this helps you,
    Robert

  • 'To do' list automatically scrolls up when I click on another iCal pane

    Hi,
    I've just begun using iCal, so forgive me if this topic has been covered before. (I did a search, but since I don't know how to describe the problem succinctly I didn't get any results.)
    Here goes. Whenever I'm in the 'To Do' pane, say mid-way down the list, and then click the calendar pane my 'To Do' list automatically scrolls up to the top. When I go back to the 'To Do' pane and pull the list down to where I want to be and click on the item that I want to update, the list once again automatically scrolls to the top and I have to pull the list down one more time before I can alter it. It's very annoying and I can't find a way to fix it.
    Any suggestions?
    Tony L.
      Mac OS X (10.4.6)  

    I can confirm this function. Also I wasn't able to find anyway for it to not do this. 
    Post relates to: None

  • Zero fill and max length VC7 Compile to WebDynpro not working

    Hi,
    i try to call Customer get list and set the attributes zero fill and max length to the input table form.
    But the user has to put in the exact length and zero filled.
    Any idea what to do
    Thanks
    Uwe

    Hi Uwe,
    if I understand your question you need something like an alpha conversion.
    You can use a formula, therefore is an textfunction called LPAD(text,len,pad).
    You can use it like this:
    LPAD(@yourtext, 18, "0")
    @yourtext contains the input, the length is 18 and filling values is 0 like a alpha conversion.
    Best Regards,
    Marcel

  • MacBook Pro automatically scrolls down

    I've had a macbook pro for about 2 weeks now and it's recently started automatically scrolling downwards as if I've got my finger stuck on the down key.
    Any ideas on this one? All software is up to date and I've seen the problem in firefox and safari.
    Cheers
    Paul
    MacBook Pro 15"   Mac OS X (10.4.7)  

    Hi Paul,
    This is a new MBP (2 weeks old) - Take it back to the store and ask for a new one!
    Good luck,
    Jon
    iMac G5 1.9GHz MBP 15" 1.83GHz   Mac OS X (10.4.7)   Help your fellow posters by marking EACH POST as "Helpful" or "Solved"

  • Setting max length of the field when using Context Model Node

    I have created a model using Import Adaptive Web Service model option (a web service was a wrapper around SAP BAPI function module).
    There were no dictionary types created in the Local dictionary as a result of import.
    I have mapped the context of the controller to the model node.
    One of the fields in the model is name     CUSTOMER_NUMBER type string;
    Corresponding element in the wsdl of the web service is
    <xsd:element name="CUSTOMER_NUMBER" type="tns:char10" />
    I have created a view with the input filed mapped to the CUSTOMER_NUMBER field of the model node.
    When I type more than 10 chars into the field and hit the search button, I get a com.sap.dictionary.runtime.Ddcheck exception that the length of the field should be less than 10 chars.
    How can I set the max length of the field in design time to prevent runtime exception?
    Thanks,
    Julia

    Thank you for your reply.
    Java trim function will trim the white spaces only, not the characters.
    I can code check length functionality before calling execute function (the function that call the web service).
    I can also create a dictionary structure based on the model structure; create a context value node based on the dictionary structure and use WDCopyService API to move the data between value node and model node.
    I was looking for the best practice...
    When importing model based on Adaptive RFC, the dictionary structures are imported together with the model. This does not happen for Adaptive web service - hence there is a need to add coding for simple checks.
    Julia

  • How to create an image that when scrolled over automatically scrolls between 3 image

    What i am trying or rather what i want to achive is, when an image is scrolled over it automaticly scrolls between 3 pictures and when it is rolled off of goes back to a specific image. How do i do something like this i know its going to have to be a javascript item, but how do i do it?

    Hi Gramps,
    Welcome back. Haven't seen you around for a while.
    Please have a look here and tell us if there is a script that comes close to what you want.
    Did you forget to add something?
    Nancy O.

  • Weird Automatic Scrolling of Timeline

    I am running Premiere Elements 11 on Windows 7, 64 bit, with all the latest updates.
    I'm getting some weird automatic scrolling of the timeline happening.
    When I hover the mouse pointer anywhere on the left side of the screen, (including over the "File" menu bar portion) the timeline automatically starts scrolling left.
    When I hover the mouse pointer anywhere on the right side of the screen (like over the vertical scroll bar), the timeline automatically scrolls right.
    The only way to stop the scrolling is to move the mouse pointer away from the sides of the screen.
    This seems like an error -- but did I accidentally turn on some feature?
    Any suggestions how to get proper control back?
    Thanks,
    Nick

    Thanks for looking into this o promptly.  It's in the middle of the clip I'm marking.  It just happened again to me, and I'm paying a bit more attention to what happens when it occurs. 
    All is well as I'm working on a video track,  using the "go to next/previous keymark" arrows, which moves the CTI.  I want to fade to black so I right click and hold to drop the marker, but when I release the right mouse button, the diamond marker is "stuck" and moves left/right/up/down as I move the mouse.  (unexpected behavior)  I have to right click the mouse a couple of times to get it to release the key frame marker.
    Now when I move the mouse to the far left to select the "next keymark" arrow, the CTI stays put on the timeline and scrolls off the screen on the right as I move the mouse to the left, dragging the whole timeline back to the beginning.  The keyframe that I just dropped is somehow corrupt.  The CTI won't land there if I click next/previous and if I put the CTI on top of it and try to delete it, it stays on the screen.  Deleting the clip from the timeline and inserting it again (loosing my markers) returns me to a stable state.
    I'm guessing it's a mouse driver.  My PC is a Dell laptop and I'm using a USB connected mouse and keyboard, rather than the touchpad.

  • Is it possible to disable the mouse automatically scrolling the video playback head?

    Previous versions of iMovie allowed me to move the mouse without moving the playback head.  Doesn't appear possible in '11.  Can it be toggled?
    Thanks.
    Lindy

    No.  If I run the mouse over a video in iMovie, the video automatically scrolls along with the mouse.  The audio skimming function (if on) allows me to hear the audio along with the video as it scrolls - a useful feature, but not what I'm trying to fix.
    What I'd like to be able to do is turn all of that off so that the only way to play a video is to start it with the space bar.
    As it is now, if I select a spot where I'd like to place a marker or split a video, I have to move the mouse in order to initiate the command that I want.  But the moment I move the mouse to go to a menu, the video moves to a different place, making the edit more difficult.
    iMovieHD ('08) did not have the scrolling function, and while I appreciate the usefulness of having it, I'm struggling with being unable to turn it off.  I could play a video to the point where I wanted to edit it, fine tune the playback head location and perform the edit without so much as touching the mouse.
    It's not that I'm incapable of doing what I need to do with iMovie the way it is.  It just seems a bit tougher to accomplish these things with the scrolling when I don't want it to.  Seems like it should be a Preferences setting or something.  But I can't find it.
    Thanks.
    Lindy

Maybe you are looking for

  • Problem with URL iView regarding fetch mode and SSO to non-sap webapps

    Hi, I have created an URL iView which opens an internal webapp. When the fetch mode is set to client-side the page is displayed for the user. But when I set the fetch mode to server-side, the page cannot be displayed by the user. No proxy is needed.

  • Printing Suddenly Stopped

    My Canon i9900 just suddenly stopped printing from any computer in my home network. My MBP just started displaying all prior print jobs in the print queue, even those completed going back almost a full year. There was no way to clear the queue, so I

  • When I compress my folder I lose my css styles

    When I compress my folder I lose my css styles Let me give a little bit more information,when and upload from dreamweaver it uploads in the browser with the css styles, but once I compress my folder it loses its styles, any help anybody.

  • Bootcamp on Lion--but which Windows 7 ?

    I'm finally considering a bootcamp install of Windows 7 and am completely overwhelmed by the plethora of different Windows 7 versions available... Professional? Home? Ultimate? 32-bit? 64-bit? I intend to do this mostly to play games-at this point, s

  • Equivalent rect long and short sides

    Not so sure if anybody else already came across this problem or not. Any suggestion is welcome. I have a simple isolated object to be fitted into an ideal rectangle which will then be used for a metrology purpose in following step. I was trying to ma