How do I change fonts in a Text field ??

Okay I've tried to implement a JComboBox that allows the user to change fonts in the text field. So far I've tried different methods to do it but to no avail. Could somebodoy here read the programs source code for me and tell me where I went wrong?
/* * My GUI Client */
import javax.swing.*;
import javax.swing.text.*;
import java.awt.*;
import javax.swing.event.*;
//for HTML Headers
import javax.swing.text.StyledEditorKit.*;
import javax.swing.text.html.HTMLEditorKit.*;
import javax.swing.text.html.*;
import javax.swing.event.HyperlinkListener;
import javax.swing.event.HyperlinkEvent;
import javax.swing.event.HyperlinkEvent.EventType;
import javax.swing.text.html.HTMLFrameHyperlinkEvent;
//for layout managers
import java.awt.event.*;
//for action and window events
import java.io.*;
import java.net.*;
import java.awt.GraphicsEnvironment;
//for font settings
import java.lang.Integer;
import java.util.Vector;
import java.awt.font.*;
import java.awt.geom.*;
public class guiClient extends JFrame implements ActionListener {
protected static final String textFieldString = "JTextField";
protected static final String loadgraphicString = "LoadGraphic";
protected static final String connectString = "Connect";
static JEditorPane editorPane;
static JPanel layoutPanel = new JPanel(new BorderLayout());
static JPanel controlPanel = new JPanel(new BorderLayout());
static JPanel buttonPanel = new JPanel(new BorderLayout());
static JPanel fontPanel = new JPanel(new BorderLayout());
static PrintStream out;
static DrawPanel dPanel;
static DrawPanel dPButton;
static DrawPanel dFonts;
static DrawControls dControls;
static DrawButtons dButtons;
static String userString;
static String currentFont;
String fontchoice;
String fontlist;
static JTextField userName = new JTextField();
public static JMenuBar menuBar;
private static JButton connectbutton = new JButton("Connect");
static boolean CONNECTFLAG = false;
//create the gui interface
public guiClient() {
     super("My Client");
// Create a ComboBox
GraphicsEnvironment gEnv = GraphicsEnvironment.getLocalGraphicsEnvironment();
String envfonts[] = gEnv.getAvailableFontFamilyNames();
Vector vector = new Vector();
for ( int i = 1; i < envfonts.length; i++ ) {
vector.addElement(envfonts);
JComboBox fontlist = new JComboBox (envfonts);
     fontlist.setSelectedIndex(0);
     fontlist.setEditable(true);
     fontlist.addActionListener(this);
     fontchoice = envfonts[0];     
//Create a regular text field.
     JTextField textField = new JTextField(10);
     textField.setActionCommand(textFieldString);
     textField.addActionListener(this);          
//Create an editor pane.
editorPane = new JEditorPane();
     editorPane.setContentType("text");
     editorPane.setEditable(false);
//set up HTML editor kit
     HTMLDocument m_doc = new HTMLDocument();
     editorPane.setDocument(m_doc);
     HTMLEditorKit hkit = new HTMLEditorKit();
     editorPane.setEditorKit( hkit );
     editorPane.addHyperlinkListener( new HyperListener());
//Create whiteboard
dPanel = new DrawPanel();
dPButton = new DrawPanel();
dFonts = new DrawPanel();
dControls = new DrawControls(dPanel);
dButtons = new DrawButtons(dPButton);
     //JLable fontLab = new JLabel(fontLable);
//fontLab.setText("Fonts");
//Font newFont = getFont().deriveFont(1);
//fontLab.setFont(newFont);
//fontLab.setHorizontalAlignment(JLabel.CENTER);
JPanel whiteboard = new JPanel();
whiteboard.setLayout(new BorderLayout());
whiteboard.setPreferredSize(new Dimension(300,300));
whiteboard.add("Center",dPanel);
whiteboard.add("South",dControls);
whiteboard.add("North",dButtons);
     JScrollPane editorScrollPane = new JScrollPane(editorPane);
     editorScrollPane.setVerticalScrollBarPolicy( JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
     editorScrollPane.setPreferredSize(new Dimension(250, 145));
     editorScrollPane.setMinimumSize(new Dimension(50, 50));
//put everything in a panel
     JPanel contentPane = new JPanel();
     JPanel fontPane = new JPanel();
     contentPane.setLayout(new BoxLayout(contentPane, BoxLayout.Y_AXIS));
//add whiteboard
     contentPane.add(whiteboard);
//add editor box
     contentPane.add(editorScrollPane);
//add spacer
     contentPane.add(Box.createRigidArea(new Dimension(0,5)));
//add textfield
     contentPane.add(textField);
//set up layout pane
     //layoutPanel.add(GridLayout(2,1),fontLab);
     layoutPanel.add( BorderLayout.NORTH, fontlist);     
     layoutPanel.add(BorderLayout.WEST,new Label("Name: ")); //add a label
     layoutPanel.add(BorderLayout.CENTER, userName ); //add textfield for user names
     layoutPanel.add(BorderLayout.SOUTH, connectbutton);//add dropdown box for fonts
     //fontPane.add(BorderLayout.NORTH,fontlist);
     contentPane.add(layoutPanel);
     contentPane.add(controlPanel);
     contentPane.add(buttonPanel);
//Create the menu bar.
menuBar = new JMenuBar();
setJMenuBar(menuBar);
//Build the first menu.
     JMenu menu = new JMenu("File");
     menu.setMnemonic(KeyEvent.VK_F);
     menuBar.add(menu);
//a group of JMenuItems
     JMenuItem menuItem = new JMenuItem("Load Graphic", KeyEvent.VK_L);
     menu.add(menuItem);
menuItem.setActionCommand(loadgraphicString);
     menuItem.addActionListener(this);
connectbutton.setActionCommand(connectString);
connectbutton.addActionListener(this);
     setContentPane(contentPane);
static private void insertTheHTML(JEditorPane editor, String html, int location) throws IOException {
     HTMLEditorKit kit = (HTMLEditorKit) editor.getEditorKit();
     Document doc = editor.getDocument();
     StringReader reader = new StringReader(html);
     try {
          kit.read(reader, doc, location);
     } catch (BadLocationException e) {}
//listen for actions being performed and process them
public void actionPerformed(ActionEvent e) {
//if the action is from the textfield (e.g. user hits enter)
     if (e.getActionCommand().equals(textFieldString)) {
          JTextField fromUser = (JTextField)e.getSource();
     if (fromUser != null){
//place user text in editor pane
//send message to server
               if (userName.getText() != null) {
                    userString = userName.getText().trim();
               out.println(userString + ": " + fromUser.getText());
          fromUser.setText("");
     } else if(e.getActionCommand().equals(connectString)) {
          CONNECTFLAG = true;
} else if (e.getActionCommand().equals(loadgraphicString) ) {
          final JFileChooser fc = new JFileChooser();
          int returnVal = fc.showOpenDialog(this);
          if (returnVal == JFileChooser.APPROVE_OPTION) {
               File file = fc.getSelectedFile();
               dPanel.loadImage(file.getAbsolutePath());
               sendImage(file);
     else if (e.getActionCommand().equals(fontlist)){
     JComboBox cb = (JComboBox)e.getSource();
String newSelection = (String)cb.getSelectedItem();
currentFont = newSelection;
     userString = currentFont;
return;
/*public void itemStateChanged (ItemEvent e) {
if ( e.getStateChange() != ItemEvent.SELECTED ) {
return;
if ( list == fontlist ) {
fontchoice = (String)fontlist.getSelectedItem();
     userString.changeFont(fontchoice);
//append text to the editor pane and put it at the bottom
public static void appendText(String text) {
     if (text.startsWith("ID ") ) {
          userString = text.substring(3);
     } else if (text.startsWith("DRAW ") ) {
          if (text.regionMatches(5,"LINE",0,4)) {
dPanel.processLine(text);
     }else if (text.regionMatches(5,"POINTS",0,5)) {
     dPanel.processPoint(text);
     } else if (text.startsWith("IMAGE ") ) {
int len = (new Integer( text.substring(6, text.indexOf(",")))).intValue();
//get x and y coordinates
     byte[] data = new byte[ (int)len ];
     int read = 0;
try {
     while (read < len) {
     data = text.getBytes( text.substring(0, len) );
} catch (Exception e) {}
     Image theImage = null;
     theImage = dPanel.getToolkit().createImage(data);
     dPanel.getToolkit().prepareImage(theImage, -1, -1, dPanel);
     while ((dPanel.getToolkit().checkImage(theImage, -1, -1, dPanel) & dPanel.ALLBITS) == 0) {}
          dPanel.drawPicture(0, 0, theImage);
} else {
//set current position in editorPane to the end
          editorPane.setCaretPosition(editorPane.getDocument().getLength());
//put text into the editorPane
          try {
               insertTheHTML(editorPane, text, editorPane.getDocument().getLength());
          } catch (IOException e) {}
} //end of appendText(String)
public void sendImage(File file) {
//find length of file
     long len = file.length();
//read file into byte array
     byte[] byteArray = new byte[(int)len];
     try {
          FileInputStream fstream = new FileInputStream(file);
          if (fstream.read(byteArray) < len) {
//error could not load file
          } else {
          out.println("IMAGE " + len + ",");
               out.write(byteArray, 0, (int)len); //write file to stream
     } catch(Exception e){}
//run the client
public static void main(String[] args) {
     String ipAddr=null, portNr=null;
          if (args.length != 2) {
               System.out.println("USAGE: java guiClient IP_Address port_number");
               System.exit(0);
          } else {
     ipAddr = args[0];
          portNr = args[1];
          JFrame frame = new guiClient();
          frame.addWindowListener(new WindowAdapter() {
               public void windowClosing(WindowEvent e) { System.exit(0); }
          frame.pack();
          frame.setVisible(true);
          while(CONNECTFLAG == false){}
//sames as previous client,
//set up connection and then listen for messages from the Server
          String socketIP = ipAddr;
          int port = Integer.parseInt(portNr);
//the IP address of the machine where the server is running
          Socket theSocket = null;
//communication line to the server
          out = null;
//for message sending
          BufferedReader in = null;
//for message receiving
          try {
          theSocket = new Socket(socketIP, port );
//try to connect
          out = new PrintStream(theSocket.getOutputStream());
               dPanel.out = out;
//for client to send messages
          in = new BufferedReader(new InputStreamReader(theSocket.getInputStream()));
               BufferedReader userIn = new BufferedReader(new InputStreamReader(System.in));
               String fromServer;
               while ((fromServer = in.readLine()) != null) {
               appendText(fromServer);
               if (fromServer.equals("BYE")) {
                    appendText("Connection Closed");
                    break;
          out.close();
//close all streams
          in.close();
          theSocket.close();
//close the socket
     } catch (UnknownHostException e) {
//if the socket cannot be openned
          System.err.println("Cannot find " + socketIP);
          System.exit(1);
          } catch (IOException e) { //if the socket cannot be read or written
          System.err.println("Could not make I/O connection with " + socketIP);
          System.exit(1);
class HyperListener implements HyperlinkListener {
public JEditorPane sourcePane;
public void hyperlinkUpdate(HyperlinkEvent e) {
if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
sourcePane = (JEditorPane) e.getSource();
               if (e instanceof HTMLFrameHyperlinkEvent) {
HTMLFrameHyperlinkEvent event = (HTMLFrameHyperlinkEvent) e;
                    System.out.println(event.getTarget());
                    HTMLDocument doc = (HTMLDocument) sourcePane.getDocument();
                    doc.processHTMLFrameHyperlinkEvent(event);
else {
try {}
catch (Exception ev){
     ev.printStackTrace();
Well sorry the source code takes up the whole forum but I need a good feedback from this.

All right...
public class guiClient extends JFrame implements ActionListener {
static String userString;
static String currentFont;
String fontchoice;
String fontlist;
static JTextField userName = new JTextField();
public guiClient() {
     super("My Client");
public guiClient() {
     super("My Client");
// Create a ComboBox
GraphicsEnvironment gEnv = GraphicsEnvironment.getLocalGraphicsEnvironment();
String envfonts[] = gEnv.getAvailableFontFamilyNames();
Vector vector = new Vector();
for ( int i = 1; i < envfonts.length; i++ ) {
vector.addElement(envfonts);
JComboBox fontlist = new JComboBox (envfonts);
     fontlist.setSelectedIndex(0);
     fontlist.setEditable(true);
     fontlist.addActionListener(this);
     fontchoice = envfonts[0];     
//Create a regular text field.
     JTextField textField = new JTextField(10);
     textField.setActionCommand(textFieldString);
     textField.addActionListener(this);
public void actionPerformed(ActionEvent e) {
//if the action is from the textfield (e.g. user hits enter)
     if (e.getActionCommand().equals(textFieldString)) {
          JTextField fromUser = (JTextField)e.getSource();
     if (fromUser != null){
//place user text in editor pane
//send message to server
               if (userName.getText() != null) {
                    userString = userName.getText().trim();
               out.println(userString + ": " + fromUser.getText());
          fromUser.setText("");
     else if (e.getActionCommand().equals(fontlist)){
     JComboBox cb = (JComboBox)e.getSource();
String newSelection = (String)cb.getSelectedItem();
currentFont = newSelection;
     userString = currentFont;
return;

Similar Messages

  • How do I change Fonts or manipulate text I am writing on Firefox? Is there a toolbar, or extension I can get to have easy access to these type of tools?

    When writing comments or sending messages,etc., I would like to be able to have access to text options such as; bold, underline, change font, font size,color, etc. I've seen others do this but cannot find anything on my desktop to allow me these write tools.

    Orange Firefox button>Options>Options>Security, Privacy etc.
    If the Firefox button isn't showing - right click on a toolbar space and uncheck the Menu Bar, this will reveal the Firefox button and you can toggle from one to the other.
    Or, in the Menu Bar>Tools>Options.

  • Change font colour in Text Field

    If I have typed 'The Cat Sat On The Mat' into a text field yet I want 'The Cat' to appear in bold  and the rest as normal, how can I do this or even in a different colour?
    Any help would be appreciated

    The only way to do this, is a text field that you change from plain text to rich text. 
    Then you can enter what you want, press ctrl+b to make something bold.
    If you want to see the content of your box, use TextField.value.exData.saveXML() ...

  • End user have ability to change font style in text field of interactive pdf form?

    Does the end user of an interactive pdf form able to change the font style, i.e.: make something bold or underline a word in a text field?
    I am making a form with text fields and the end user would like the ability to make something bold or underline it.. I do not see anywhere in acrobat that allows styles to be changed.
    I have created the form in Indesign > saved it as an interactive pdf and brought it into Acrobat.

    Thank you for the quick response! Do you set this in Indesign before exporting or do you set this in Acrobat? I am in Acrobat 10.1.10 and when I go to properties it doesn't give me  'options' to choose from.

  • How do I change the color of text in Messages?

    How do I change the color of text in Messages? It was easy to do before, but I can't seem to find it after the upgrade.. is it a hidden menu option?  The gray text is really annoying.

    Two possible ways are available
    Set the text with and html text string like "<html><font color-red>" + text + "</font></html>"
    or get the cellrenderer, cast to the DefaultCellRenderer and call setForeground or background or implement or your own cellrenderer to do the custom coloring (this could maybe depend on indexes)
    ICE

  • How do I change font in the whole document at the same time?

    How do I change font in the whole document at the same time?

    Menu > View > Show Styles Drawer
    Menu > Help > Pages User Guide
    Download and read page 27 on creating and using Styles, which is done largely by example ie you make the text what you want then save it as a Style to be applied wherever you want in the document from the Styles Drawer.
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=180&mforum=iworktips ntrick
    Peter

  • How do I change font in Ical 4.04

    How do I change font/size in Ical 4.04 montly event edit?

    Menu > View > Show Styles Drawer
    Menu > Help > Pages User Guide
    Download and read page 27 on creating and using Styles, which is done largely by example ie you make the text what you want then save it as a Style to be applied wherever you want in the document from the Styles Drawer.
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=180&mforum=iworktips ntrick
    Peter

  • Change fonts of photoshop text layer via panel developed by Flex Builder

    Hi everyone,
    I am developing  photoshop cs5 plugin which will change font family of text layer. Changeing system font is ok but my embedded font is not loading on text layer.
    syntax used to change font on text layer.
    var AD = activeDocument;
    AD.activeLayer.textItem.font="Verdana";
    I have few webfonts on my local drive. how can i use this font so that it can reflect on text layer in runtime with out installing manually in system font.
    In developed panel, embedded fonts are rendering but I need to change font of text layer on clicking fonts list from panel.
    Does anyone have any idea on it? Please help me.
    Thanks,
    PluginBishnu

    Flash.text.Font.hasGlyphs()

  • How can i  change the column label text in a alv table display

    how can i change the column label text in a alv table display??
    A similar kinda of question was posted previuosly where the requirement was the label text was needed and following below code was given as solution :
    <i>*  declare column, settings, header object
    DATA: lr_column TYPE REF TO cl_salv_wd_column.
    DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings.
    DATA: lr_column_header type ref to CL_SALV_WD_COLUMN_HEADER.
    get column by specifying column name.
    lr_column = lr_column_settings->get_column( 'COLUMN_NAME1' ).
    set Header Text as null
    lr_column_header = lr_column->get_header( ).
    lr_column_header->set_text( ' ' ).</i>
    My specific requirement is i have an input field on the screen and i want reflect that value as the column label for one of the column in the alv table. I have used he above code with slight modification in the MODIFYVIEW method of the view since it is a process after input. The component gets activated without any errors but while run time i get an error stating
    <i>"The following error text was processed in the system CDV : Access via 'NULL' object reference not possible."</i>
    i have checked in debugging and the error occured at the statement :
    <i>lr_column = lr_column_settings->get_column( 'CURRENT_YEAR' ).</i>Please can you provide me an alternative for my requirement or correct me if i have done it wrong.
    Thanks,
    Suri

    I found it myself how to do it. The error says that it is not able to find the reference object i.e  it is asking us to refer to the table. The following piece of code will solve this problem. Have to implement this in WDDOMODIFYVIEW method of the view. This thing works comrades enjoy...
      DATA : lr_cmp_usage TYPE REF TO if_wd_component_usage,
             lr_if_controller  TYPE REF TO iwci_salv_wd_table,
             lr_cmdl   TYPE REF TO cl_salv_wd_config_table,
             lr_col    TYPE REF TO cl_salv_wd_column.
      DATA : node_year  TYPE REF TO if_wd_context_node,
             elem_year  TYPE REF TO if_wd_context_element,
             stru_year  TYPE if_alv_layout=>element_importing,
             item_year  LIKE stru_year-i_current_year,
             lf_string    TYPE char(x),
      DATA: lr_column TYPE REF TO cl_salv_wd_column.
      DATA: lr_column_header TYPE REF TO cl_salv_wd_column_header.
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings.
    Get the entered value from the input field of the screen
    node_year  = wd_context->get_child_node( name = 'IMPORTING_NODE' ).
    elem_year  = node_year->get_element( ).
      elem_year->get_attribute(
       EXPORTING
        name = 'IMPORT_NODE-PARAMETER'
       IMPORTING
        value = L_IMPORT_PARAM ).
      WRITE L_IMPORT_PARAM TO lf_string.
    Get the reference of the table
      lr_cmp_usage  =  wd_this->wd_cpuse_alv( ).
      IF lr_cmp_usage->has_active_component( ) IS INITIAL.
        lr_cmp_usage->create_component( ).
      ENDIF.
      lr_if_controller  = wd_this->wd_cpifc_alv( ).
      lr_column_settings = lr_if_controller->get_model( ).
    get column by specifying column name.
      IF lr_column_settings IS BOUND.
        lr_column = lr_column_settings->get_column( 'COLUMN_NAME').
    set Header Text as null
        lr_column_header = lr_column->get_header( ).
        lr_column_header->set_text( lf_string ).
    endif.

  • How can I change font size in iCal 3.0.8?

    How can I change font size in iCal 3.0.8?

    Julian,
    There is no user option to change the font size in iCal.
    For other posts regarding this topic, read some of the links in "More Like This." box just to the right of your first post in this thread.

  • How can i change the sequence of text element in standard driver program ?

    Hi,
    can u tell me how can i change the sequence of text element in standard  sapscript driver program.. without making a zcopy of standard driver program.
    My problem is when MEDRUCK form is getting printed for PO print , header text is coming before item. But the requirement is to come it after item.So how cani do that without making the zcopy of  SAPLMEDRUCK program..Is there any enhancement point in SAPLMEDRUCK driver program..where i can put my customise code for changing the sequence of text element ?

    Hi,
        Just copy the MEDRUCK to ZMEDRUCK. No need to copy the driver program.
    1) SE71Menu > Utilities > COpy from Client
    MEDRUCK ->>Client 000
    New formname ZMEDRUCK
    2) Now open the ZMEDRUCK in DE language in SE71
    3) Menu > Utilities > Convert original Language
    Change DE  to EN, save and activate
    4) Now open the ZMEDRUCK in EN language
    5) Goto Pagewindows > Main window,
    Look for the HEADER text Text element, copy the whole code under this Text element just after the ITEM text Text element, and comment the HEADER text above.
    Now the Header text Text element will be below ITEM text only. This will full fill your requirment.
    Now goto NACE transaction and add the copied ZMEDRUCK to the EF application.
    Regards
    Bala Krishna

  • How do I change font in Firefox example when I go to Craigs list, everything is in italics....not so with Internet Explorer....I like Mozilla best and want to correct this problem

    How do I change fonts in Mozilla"

    Hi,
    Please try this: '''Tools''' (or '''Alt''' + '''T''') > '''Options''' > '''Applications'''. Look for or start typing '''mailto''' in the search box and for the '''Action''' change it to the desired mail client (the application that opens up in Explorer) if the value is different.
    '''Options''' > '''Applications''': https://support.mozilla.com/en-US/kb/Options%20window%20-%20Applications%20panel
    Managing Actions: https://support.mozilla.com/en-US/kb/Managing%20file%20types

  • How do i change font size permantly and where do i find this?

    Where /how do i change font size permantly and where do I find this in the OS?

    debfrommidwest wrote:
    I have gone to view to increase but of course that is only long enough until I close page,
    ....I would like not to have to set my print each time I open computer.
    You will need the web browser Firefox installed
    http://download.mozilla.org/?product=firefox-6.0.2&os=osx&lang=en-US
    Next you will need to add the following addons
    Theme Font & Size Changer
    https://addons.mozilla.org/en-US/firefox/addon/theme-font-size-changer/
    NoSquint
    https://addons.mozilla.org/en-US/firefox/addon/nosquint/
    Theme Font & Size Changer can adjust the size of the type Firefox uses in the toolbar area.
    NoSquint remembers per site web page zoom levels and you can set a minimum size for all web pages so any site you visit is made bigger automatically. Safari doesn't do this.
    You can see the difference between Firefox and Safari in this picture.
    Note: Firefox is highly customizable browser, and I added the green with the yellow type, you won't see that when you first start using it.
    It did that to match my desktop picture, grey is depresssing.

  • How do i change font sizes and colors in ical in OS Lion.  Everything is greyed and too small.   And how do I changed the color of the scroll bars, which are now invisible?

    how do i change font sizes and colors in ical in OS Lion. Since upgrading,  all fonts are grey, instead of black,  and too small.   And how do I changed the color of the scroll bars, which also are grey and almost invisible?  And if you can asnwer this, can you tell me how to get back the email format I had before the upgrade?  I no longer have column headings and I'd like them.  Thank you. 

    Do you know about changing the font colors for ical, and the color of the scroll bars?
    No, I don't. I don't use that program; I fiddled with it just now, and could not find a way to do that.
    Perhaps someone else will have an idea.

  • How do I change font size on the safari tool bar

    How do I change font size on the safari tool bar

    You can't in Safari.
    However you CAN with Firefox and the add-on called Theme Font & Size Changer, also include NoSquint and set a global web page zoom level a bit higher, say 150%.
    NoSquint has buttons on the tool bar to increase/decrease each websites size AND IT REMEMBERS IT!
    Under the Tools Menu > Customize you can add more toolbars as well, but they have to have something in it of course.
    (note: the green with yellow type is a person you can add from thousands of choices, it's not the default look of Firefox)
    So this setup, although it may appear large here compared to Safari, is fine on my 17" when sitting back about 3-4 feet, takes up about 1/6th of the screen, so I'm not hunched up close, and I have a lot of screen real estate to play with anyway.

Maybe you are looking for

  • How to find out jre version installed ,using a java program?

    Hello, Is there any way to find out the installed JRE version using a java program ? The requirement is as follows: There is a html page with 4 steps to install a software. each step is a link, which upon clicking does its work. the first step is to

  • How to have rotated axis labels in charts without embedding fonts?

    Hi all,      I am trying to have slant/rotated axis labels in flex charts to avoid clutter in cases of large number of sample points. It was fairly easy to do this using 'labelRotation' method in AxisRenderer but this involved embedding fonts [ cause

  • Flash Will Not Play

    I have added a <object> section to a web page to play .swf file but can not get the file to play from "localhost". I am running IIS version 5.1 on a laptop with Windows XP. I am using Microsoft's VWD 2008 and Microsoft Expressions ad my page developm

  • Selecting first 15 rows and displaying next 15

    I wish to select the first 15 rows from my database and then have an option select a next page, whereby the next 15 rows are displayed. I'm not sure how to go about it, could someone enlighten me. For reference, it would be something like how the for

  • Enrollment request not accepted

    I created a course on iTunes U and received an automated email informing me that I could view my class by clicking on the link. I did, and then iTunes asked for my ID & password. I entered those and immediately received a pop-up message "enrollment r