Forcing a number only format on a cell

I have set the format on particular cells to numbers but the spreadsheet user can still type in any character (letter A for instance). This causes errors in subsequent formula.
Is there any way to prevent this - that is allow the entry of numeric values only ?

You cannot prevent a user from entering whatever characters they want. One way to prevent downstream errors is to not use the data entry cell in downstream formulas. For example, if the user enters data in B2, use C2 for data validation and use C2 in downstream formulas. For numerical entry you can use
C2=IFERROR(B2*1,0) which sets the default to 0 for downstream numeric formulas if the entry contains any non-numeric characters.
To flag the error for the user, you can put a conditional format in B2 so that if B2 is not equal to C2 then fill red.
When you are done designing your table, hide column C.
I'll have to think about how I'd do something similar if the text entry had to contain alphabet characters only. Luckily that was not your question.
Another method is to use a slider or a popup then you don't need to do data validation. Popups are good for a limited number of choices of whatever entries you want to allow (numbers, words, letters, etc) . Sliders are good for numerical entry but not overa really wide range of numbers if you want the user to pick an exact number. If you are looking for entry of the digits 0-9, I'd go with a popup.

Similar Messages

  • How do I change the number formatting within a Cell Table in Microsoft Word?

    Hi, I was wondering if someone could help me out on an issue I've been having... I work for an accounting firm and we do a lot of financial statements. 
    I was wondering if we would be able to treat a cell table in Microsoft Word 2007 like I would a cell table in Microsoft Excel. Meaning, I would like to change the formatting of the numbers in the table to the "Accounting" (number) format so it
    aligns by the decimal point and use the $ signs and () for negative numbers.  We do use the link tables feature, however, most of our balancing pages just can't be done in Excel because of the way the text is written. It would be much harder to format
    the text if it were to be typed in Excel. We have also tried  creating an Excel sheet within Microsoft Word but it is the same as linking the tables... Again, a text formatting issue.  The only option is to use tables within Word but how do we change
    the number formatting to a "accounting" (number) format where the numbers would align with the decimal point and use () for the negative numbers. Is there ANY option for us to do this other than manually entering this information in using tabs?  
    If there are no options other than entering it in manually, please consider this as an option for your next software update. I believe that a LOT of people out there will be interested in this feature... My manager and I just attended a webinar on Microsoft
    Advanced Word Tips Tricks and Techniques and 75% of the attending people had this question but no answer.
    Thank you very much for your help!!!!!

    Word does not really have number formatting for table cells. You can align cell contents on the decimal point, though, by setting a so-called decimal tab stop.
    Option 1:
    - Select the cells for which you want to do this.
    - Display the ruler.
    - Click the Tab box on the left hand side of the ruler until the box contains an inverted T with a dot.
    - Click in the ruler where you want the decimal tab.
    Option 2:
    - Select the cells for which you want to do this.
    - Click the arrow in the lower right corner of the Paragraph group on the Home tab of the ribbon.
    - Click the Tabs... button in the lower left corner of the dialog.
    - Specify a tab position in the box, e.g. 1.5".
    - Select the 'Decimal' radio button under 'Alignment'.
    - Click Set.
    - Click OK.
    You will have to type the numbers as they should appear, including the $ for currency and the ( ) for negative numbers.
    Regards, Hans Vogelaar

  • I've been using my cell phone number to imessage from my ipad for a while now, but yesterday I got signed out of I message and when I signed back in, I didn't get the option to use my number, only my email adress. How can I fix that?

    I've been using my cell phone number to imessage from my ipad for a while now, but yesterday I got signed out of I message and when I signed back in, I didn't get the option to use my number, only my email adress. How can I fix that?

    Hey bill.rizzo2,
    Thanks for the question. I understand your phone number is missing on your iPad as an option for iMessage. The following article provides steps to resolve this issue:
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    Phone number missing on iPad or iPod touch
    If your phone number isn't listed on an iPod touch or iPad, follow these steps:
    1. Update to the latest version of iOS.
    2. Verify that you're using the same Apple ID that you're using on your iPhone.
    3. On your iPad or iPod touch, sign out of your Apple ID in the following locations:
        - Settings > Messages > Send & Receive. Tap your Apple ID, then tap Sign Out.
        - Settings > FaceTime. Tap your Apple ID, then tap Sign Out.
    4. Sign in to your Apple ID with FaceTime and iMessage.
    If your phone number still isn't listed, follow these steps:
    1. Sign out of your Apple ID on all iOS devices, including your iPhone, in the following locations:
        - Settings > Messages > Send & Receive. Tap your Apple ID, then tap Sign Out.
        - Settings > FaceTime. Tap your Apple ID, then tap Sign Out.
    2. Sign in to your Apple ID on your iPhone.
    3. When activation is complete, your Apple ID and all verified email addresses should be visible in Settings > Messages > Receive At and Settings > FaceTime.
    4. Sign in to your Apple ID on your other iOS devices.
    Thanks,
    Matt M.

  • How to apply a number format to a cell within a table in Word 2011??

    I am creating a fillable PDF form and I need to be able to apply a phone number format to a cell in Word 2011 similar to how it is done in Excel...Can someone please HELP me? Thank You!

    846640 wrote:
    I have to import some data form excel sheet. but the number in that sheet have been saveed as the following format mask 1,000.000(2,000.000,1,5000,00) as charchterI am wonder how to apply format mask in excel for the character cell.
    but in may table that field is a number, so how can remove the format mask from the excelsheet?So, while reading from excel how the values is coming in the variable i assume its coming with comma(,) than what happens if you try like below?
    variable_name:=TO_NUMBER(REPLACE(variable_name,',',''));
    -Ammad

  • How to force check right value of a JTable cell?

    Hi,
    I have a JTable with a column that must have a value no empty and between 0 and 100. I made a sample with only one column for simplicity.
    The code works fine when the user types some value. However, when the user press ENTER to go to next column, without editing the cell, no checks run.
    I have also other column that the user may type a part of a name and the system must find the full name of a person. In this column, if user uses ENTER without editing the cell, the same problem ocurrs.
    The simplistic code is here, runnable:
    import java.awt.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.table.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyEvent;
    import java.text.NumberFormat;
    import java.text.ParseException;
    import javax.swing.text.DefaultFormatterFactory;
    import javax.swing.text.NumberFormatter;
    public class TableCheckCell extends JFrame {
      /** Creates a new instance of TableCheckCell */
      public TableCheckCell() {
        Object[] columnNames = {"Percents"};
        Object[][] data =
          {new Integer(-1)}, // <--- DEFAULT VALUE FORCED TO BE OUT OF RANGE...
          {new Integer(-1)},
          {new Integer(-1)},
          {new Integer(-1)}
        DefaultTableModel model = new DefaultTableModel(data, columnNames);
        JTable table = new JTable(model);
        table.setPreferredScrollableViewportSize(table.getPreferredSize());
        JScrollPane scrollPane = new JScrollPane( table );
        getContentPane().add( scrollPane );
        TableColumn col = table.getColumnModel().getColumn(0);
        col.setCellEditor(new CellIntegerEditor(CellIntegerEditor.CHECKMINMAX,0,100));
      public static void main(String[] args) {
        TableCheckCell frame = new TableCheckCell();
        frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
        frame.pack();
        frame.setLocationRelativeTo( null );
        frame.setVisible(true);
    * Implements a cell editor that uses a formatted text field
    * to edit Integer values.
    class CellIntegerEditor extends DefaultCellEditor {
      public static final int NOCHECK = 0;
      public static final int CHECKMINMAX = 1;
      public static final int CHECKMIN = 2;
      public static final int CHECKMAX = 3;
      JFormattedTextField ftf;
      NumberFormat integerFormat;
      private int checkinterv;
      private Integer minimum, maximum;
      private boolean DEBUG = false;
      public CellIntegerEditor(int checkinterv, int min, int max) {
        super(new JFormattedTextField());
        init(checkinterv, min, max);
      void init(int checkinterv, int min, int max) {
        ftf = (JFormattedTextField)getComponent();
        this.checkinterv = checkinterv;
        minimum = new Integer(min);
        maximum = new Integer(max);
        //Set up the editor for the integer cells.
        integerFormat = NumberFormat.getIntegerInstance();
        NumberFormatter intFormatter = new NumberFormatter(integerFormat);
        intFormatter.setFormat(integerFormat);
        if (checkinterv == CHECKMIN || checkinterv == CHECKMINMAX)
          intFormatter.setMinimum(minimum);
        if (checkinterv == CHECKMAX || checkinterv == CHECKMINMAX)
          intFormatter.setMaximum(maximum);
        ftf.setFormatterFactory(new DefaultFormatterFactory(intFormatter));
        ftf.setValue(minimum);
        ftf.setHorizontalAlignment(JTextField.TRAILING);
        ftf.setFocusLostBehavior(JFormattedTextField.PERSIST);
        //React when the user presses Enter while the editor is
        //active.  (Tab is handled as specified by
        //JFormattedTextField's focusLostBehavior property.)
        ftf.getInputMap().put(KeyStroke.getKeyStroke(
          KeyEvent.VK_ENTER, 0),
          "check");
        ftf.getActionMap().put("check", new AbstractAction() {
          public void actionPerformed(ActionEvent e) {
            if (!ftf.isEditValid()) { //The text is invalid.
              if (userSaysRevert()) { //reverted
                ftf.postActionEvent(); //inform the editor
            } else try {              //The text is valid,
              ftf.commitEdit();     //so use it.
              ftf.postActionEvent(); //stop editing
            } catch (java.text.ParseException exc) { }
      //Override to invoke setValue on the formatted text field.
      public Component getTableCellEditorComponent(JTable table,
        Object value, boolean isSelected,
        int row, int column) {
        JFormattedTextField ftf =
          (JFormattedTextField)super.getTableCellEditorComponent(
          table, value, isSelected, row, column);
        ftf.setValue(value);
        return ftf;
      //Override to ensure that the value remains an Integer.
      public Object getCellEditorValue() {
        JFormattedTextField ftf = (JFormattedTextField)getComponent();
        Object o = ftf.getValue();
        if (o instanceof Integer) {
          return o;
        } else if (o instanceof Number) {
          return new Integer(((Number)o).intValue());
        } else {
          if (DEBUG) {
            System.out.println("getCellEditorValue: o isn't a Number");
          try {
            return integerFormat.parseObject(o.toString());
          } catch (ParseException exc) {
            System.err.println("getCellEditorValue: can't parse o: " + o);
            return null;
      //Override to check whether the edit is valid,
      //setting the value if it is and complaining if
      //it isn't.  If it's OK for the editor to go
      //away, we need to invoke the superclass's version
      //of this method so that everything gets cleaned up.
      public boolean stopCellEditing() {
        JFormattedTextField ftf = (JFormattedTextField)getComponent();
        if (ftf.isEditValid()) {
          try {
            ftf.commitEdit();
          } catch (java.text.ParseException exc) { }
        } else { //text is invalid
          if (!userSaysRevert()) { //user wants to edit
            return false; //don't let the editor go away
        return super.stopCellEditing();
       * Lets the user know that the text they entered is
       * bad. Returns true if the user elects to revert to
       * the last good value.  Otherwise, returns false,
       * indicating that the user wants to continue editing.
      protected boolean userSaysRevert() {
        Toolkit.getDefaultToolkit().beep();
        ftf.selectAll();
        Object[] options = {"Corrigir"};
        String msg = "";
        if (checkinterv == CHECKMINMAX)
          msg = "Value must be between " + minimum + " and " + maximum + ".";
        else if (checkinterv == CHECKMIN)
          msg = "Value must be >= " + minimum + ".";
        else if (checkinterv == CHECKMAX)
          msg = "Value must be <= " + maximum + ".";
        JOptionPane.showMessageDialog(SwingUtilities.getWindowAncestor(ftf),msg);
        ftf.setValue(ftf.getValue());
        return true;
    }Then, I'd like to know if there is any way to check the user typed ENTER to go out of the cell, check the value of the cell and, if it is wrong, to come back to the cell, forcing the user to type a right value.

    Editing to force the entry of data in a cell is typically done when you press a button to process the data. It doesn't make sense to "edit" the cell when the user presses enter to go to the next cell. What if the user never places focus on a particular cell. Then the cell will never be edited.
    To force a user to enter a valid value once they have started editing you can do something like this:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=575309
    But you can't force a user to visit every cell in the table so you need to handle that as described above.

  • Any number I enter in a cell becomes 4 digits

    For example, entering 34 gives 0034. Format of the cell always becomes date, not decimal. And changing it doesn't work. It simply doesn't change format at all. Anyone feels the same problem or knows how to solve it? Thank you.

    Here it is Wayne. Brand new file form Basic template. No editting or formatting. I enter new numbers from 1 to 6 digits. It becomes a year in date format. Only 7 digits number and more are recognized as decimals.
    Changing format doesn't help. There's simply no change after pressing Number in Format drop-down. Nothing happens.

  • Forcing a disk to format.

    I have a Flip video camera, and I have contacted support about this many times, however have not received a satisfactory answer as of yet.
    I plug it in, and it takes forever to mount, over 5 minutes sometimes, I then get this message once it has mounted.
    "The disk "FLIPVIDEO" was not repairable by this computer. It is being made available to you with limited functionality. You must back up your data and reformat the disk as soon as possible"
    I can move my videos to and from the drive then fine, but sometimes it mounts and sometimes it doesn't.
    I decided to format the drive, and then reinstall the software, however when I try to partition or erase the disk i get an error such as "Input/output error" or "the mediakit............"
    Is there any way you can force a drive to format? It appears on the desktop as a read only drive, so I don't know.
    Thanks in advance.

    oronare1 wrote:
    It is apparently in FAT16? Weird.
    Not necessarily. It's a very inexpensive camera and the camera OS is probably DOS or some very early OS that is in public domain.
    I get an error about setting permissions when the camera finally mounts and I have the Flip software open.
    Permissions? Remember that Leopard may try to tag the drive with an invisible file.
    It takes around 5 minutes or so to mount, where as I have seen others mount in a few seconds, I am fairly sure that the thing needs to be formatted back to its original state, but being read only can't be done.
    You are spending valuable time trying to make up for a PC thing.
    Actually, the Flip people give a how-to on reformatting the camera, however I get this error as i said.
    The camera is very basic, and has no menus, just a delete button for deleting the videos.
    It's really made for a PC. I suggest upgrading to better camera and then using your time for better things than formatting.

  • Whole number field formatted as timezone in CRM 2013 SP1UR1 gives error on saving

    Hi,
    I added a whole number field formatted  as time zone to the appointment form and when I save the record I get an error saying
    Crm Exception: Message: An unexpected error occurred., ErrorCode: -2147220970, InnerException: System.InvalidCastException: Unable to cast object of type 'Microsoft.Xrm.Sdk.OptionSetValue' to type 'System.IConvertible'.
    This error is coming from the timezone field and only happens when I have data in the field. Has anyone seen this?
    Thanks
    Rickard Norström Developer CRM-Konsulterna
    http://www.crmkonsulterna.se
    Swedish Dynamics CRM Forum: http://www.crmforum.se
    My Blog: http://rickardnorstrom.blogspot.se

    More info, the error occurs on pipeline stage 30 of the Book or Reschedule message and the same thing happens in CRM 2015. I've started a thread on connect with URL
    https://connect.microsoft.com/dynamicssuggestions/feedback/details/1128206/crm-2013-sp1ur1-cant-handle-the-timezone-field
    This must be rather new because I've tried it in CRM 2011 UR late and it did not occur there, I haven't tried CRM 2013 RTM though so I can't say if it's a CRM 2013 or a CRM 2013 SP1UR1 issue.
    BTW, the 2015 org was a complete vanilla so I've pretty much ruled out custom code as a culprit :)
    Regards
    Rickard Norström Developer CRM-Konsulterna
    http://www.crmkonsulterna.se
    Swedish Dynamics CRM Forum: http://www.crmforum.se
    My Blog: http://rickardnorstrom.blogspot.se

  • Change cell color if number is different from previous cell

    Hello all and thank you in advance for any help that is provided.
    I want to have the color of text in one cell change if the number entered into that cell is higher than the number entered in the previous cell.
    Example: If cell A=18 and cell B=18 then the font color in both cells is the same.
    If cell A=18 and cell B=20 then the color of the font in cell B should change to another color.
    I have done my best to look through the posted questions to no avail so I apologize if this has already been answered.
    AJ

    Inspector > Format (42)
    Select B2 > Conditional format > Greater than > A2 > Edit > Text > Red, Green whatever. Done.
    As usual the format in B2 can be dragged down by the little o bottom right to B3, B4 etc.
    S.

  • How to change the format of the cell in input schedules

    Hi gurus
    I tried to change the format of the cel in input schedulesl, but I can not, for example
    when I insert 80 in the cell, and i send the data the system switches to -80 and the report shows (80) y when i insert -80, the system switches the number to 80
    I want it when you insert 80, the system keeps 80 and do not change
    Anyone know how to do that?
    thanks
    regards

    Hi,
    The other experts have guided you with the steps to change the property. However, you need to understand why is the design like this and what impact can it have on your system.
    Usually, the accounts defined belong to the PnL or BL statements. There definitely can be some other accounts as well. The PnL and BS accounts can be either income (INC), expense (EXP), asset (AST) or liability and equity (LEQ). Changing the account type of these type of accounts can heavily impact your financial statements. So, you should carefully think over this before changing the property.
    Hope this helps.

  • User should be forced to choose only determined values

    Hello Experts,
    there is a big problem regarding to a textinputfield on a Dynpro.
    The goal is any user should be forced to choose only those values which are proposed
    by the search help. How can something like that be implemented
    Regards+++
    Spielwiese

    Hi,
    If you want to force a user to enter only values from a list you can create a list box on the dynpro.
    Double clcik on the inputbox and on the attributes select it as a LISTBOX.
    Create an internal table as itab which will contain the permitted values.
    In the flow logic write the following code
    process on value-request.
    field txt1 module m1.
    Here txt1 is the name of the textbox and m1 is the name of the module in which you will write your code.
    module m1.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
    *   DDIC_STRUCTURE         = ' '
          RETFIELD               = 'MATNR'
    *   PVALKEY                = ' '
         DYNPPROG               = sy-repid
         DYNPNR                 = sy-dynnr
         DYNPROFIELD            = 'TXT1'
    *   STEPL                  = 0
    *   WINDOW_TITLE           =
    *   VALUE                  = ' '
         VALUE_ORG              = 'S'
    *   MULTIPLE_CHOICE        = ' '
    *   DISPLAY                = ' '
    *   CALLBACK_PROGRAM       = ' '
    *   CALLBACK_FORM          = ' '
    *   MARK_TAB               =
    * IMPORTING
    *   USER_RESET             =
        TABLES
          VALUE_TAB              = itab[]
    *   FIELD_TAB              =
    *   RETURN_TAB             =
    *   DYNPFLD_MAPPING        =
       EXCEPTIONS
         PARAMETER_ERROR        = 1
         NO_VALUES_FOUND        = 2
         OTHERS                 = 3
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Here data is picked from table mara and the field picked is matnr (RETFIELD in the FM) and TXT1 is the name of the screen field. Itab is the internal table (with header line, if it is without header line pass itab instead of itab[].).
    Now the user can enter only from the list.
    Regards,
    Sachin Dargan

  • Iomega external hard drive either 'not found' by Time Machine or is now in 'read only' format

    I don't know what's going on with my iomega external hard drive.  Sometimes the HD is recognised by the computer; other times it isn't; if it isn't I can restore to an earlier back up via Time Machine app; but it's like the disk isn't writable.
    Ten days ago, I had trouble backing up my iMac using Time Machine.  After turning it off and restarting my external hard drive, it backed up successfully.
    However, today I am trying to back up my files, and TM tells me it can't find the external hard drive.  Nothing has changed -- I have been out of town this past week -- but somehow my HD now seems to be in 'read only' format.  It does turn on, and I could restore my computer to an earlier back up.
    "Mac OS X can't repair the disk.  You can still open or copy files on the disk, but you can't save changes to files on the disk.  Back up the disk and reformat it as soon as you can."
    Annoyingly, despite my HD not showing in Finder or on my Desktop (as it usually does), when I simply turn it off I get that warning message "The disk was not ejected properly".
    Have tried verifying and repairing using Disk Utility, to no avail. 
    Am prompted to reformat but I don't have a good understanding of what this means and how to do it.  I'm guessing this would wipe the disk clean and I'd have to create the initial back up image all over again -- I'm reluctant to do this since this HD is my only back up and if it all goes tits up I'll be up that famous creek without a paddle.
    Thoughts, suggestions, input all welcome and deeply appreciated -- thank you!

    fzgy wrote:
    "Mac OS X can't repair the disk.  You can still open or copy files on the disk, but you can't save changes to files on the disk.  Back up the disk and reformat it as soon as you can."
    It's possible a heavy-duty 3rd-party disk repair app can fix it, but they're expensive (DiskWarrior is about $100), and there's no guarantee it can do it.
    Am prompted to reformat but I don't have a good understanding of what this means and how to do it.
    That will erase it.  See Time Machine - Frequently Asked Question #5.
    It sounds very much like the disk is beginning to fail, although it's possible there's a bad port, cable, connection or power supply (if it has its own).
    I'd suggest getting a new one, and using it for your Time Machine backups; once you have a good backup there, reformat the old one (and select Security Options to write zeros to the whole drive -- if that fails, you know the drive is toast).  Use it for secondary backups, per FAQ #27.   If it has failed, get a second new one for secondary backups. 

  • Hi, after installing Adobe CC I tried opening Adobe Photoshop. This failed. I get the opening window where it says installing plugins searching etc, after which PS opens in full screen. Just moments after that there's a fail warning, no code number, only

    Hi, after installing Adobe CC I tried opening Adobe Photoshop. This failed.
    I get the opening window where it says installing plugins searching etc, after which PS opens in full screen.
    Just moments after that there's a failure warning, no code number, only the warning that PS failed to open and PS will close.
    I tried downloading it for a second time, but this did'nt solve the problem.
    Befor the CC version I used a one year student version of Adobe CS6.
    What can I do?

    Regarding the Flash Player problem, disable Hardware Acceleration to circumvent driver incompatibilities.
    Regarding the Flash Pro installation problems, post in the Flash forums or http://forums.adobe.com/community/download_install_setup

  • I can't save my picture to .jpeg in CameraRaw, the only format available is .dng. Why??

    I want to save my pictures to .jpeg in CameraRaw, but the only format available is .dng. I have to open the picture in Elements 12 just to save as .jpeg. Why??

    Because the ACR module is meant to convert the raw data into an image format that the editor can read. From the editor (or the organizer) you can save your raw files to image files formats like jpeg, tiff or psd. Simply click the 'Open in editor' button.
    For batch conversion to jpeg, either use the 'process multiple files' option in the file menu of the editor, or select several raws in the organizer and export to a new location in the desired format.
    The option to 'save' as DNG may be used if you want to convert to the raw DNG format. You don't need to use that feature.
    I highly recommend you take the time to read the help file (Help button in the camera raw dialog).

  • How to remove a oracle form from read only format

    I need to personalize an Oracle form for one responsibility. But when i open through that responsibility, it is opening in read only format. When i open the same form through super user responsibility, then it is opening up-datable format. I tried different options like 'System Profiles- HR Query only to 'NO'', 'Removing Query-Only'. but still i can open it only in read only format where i need to make some fields up-datable.
    Any suggestions please?

    Hi All,
    I have an Standard E-Business Suite screen.
    This is the Transaction Overview Screen, which is in Read-Only Mode.
    The Value of the unit price is rounded on 2 decimal.
    We tried to change this with Perzonilization, but the the error is coming up
    "FRM-40602: Cannot insert into or update data in a view"
    What are we doing wrong.
    Thanks for your support.
    Best regards Marcel Snoeck

Maybe you are looking for

  • Building fluid grid site - what's the best way to add a page?

    I've got  a one page fluid grid site going and I think I've learned enough to start adding pages. Do I use my primary css file as the file to be associated with subsequent pages? I tried to use a new css in a second page, and perhaps my mistake was t

  • Need help to save CS4 to Flash 8 FLV file

    I have an .flv project done in Flash CS4, and can save as CS3. Can anyone help me save as Flash 8 (from CS3) Let me know via email - [email protected] Thanks so much.

  • Oracle 10g database creation in windows2003 server

    hi, i need the step by step procedure to create oracle 10g database in windows 2003 server. with regards velu

  • Quick Drop-Down Question

    I've got a CSS drop-down menu... All is functioning well, EXCEPT: I'd like users to be able to click on the main menu items to go directly to pages. In other words, user can mouse over "About" to make the submenu appear, or click on "about" to go dir

  • Not able to hear dialogues in a 5.1 setup

    Hey Guys Am a total newbie here and need your assistance for a frustrating issue that I am facing. :angry: I am using a X-Fi Surround 5. External sound card with my laptop. Initially I had connected Logitech 5. speakers to this directly through analo