Cancel Event With SDK

Hello,
I would like to know if it is possible to cancel an event.
For example :
My user want to delete a row in document lines
I catch those event Ctrl/k and MenuUID = "1293"
I verify if a user field is empty.
If it is empty, i allow the user to delete the row.
If it is not empty, The user is not allow to delete this line so I want to cancel the event.
Is there someone who have any idea ?
Thks for your help.
Laetitia

This behaves the same for ItemEvents as well as for MenuEvents:
Setting BubbleEvent to false will stop SBO from processing the event.
Taken from UI-Help:
// to stop SAP Business One from processing this event
// unmark the following statement
// BubbleEvent = False

Similar Messages

  • How to cancel an edit to an iCal event with attendees

    I keep running into this--
    - Open an existing event with attendees
    - Make an edit of some kind
    - Change your mind
    - Forget what changes you made and/or not wish to let everyone already invited know that iCal is sometimes as crappy as Outlook.
    - Only have the options to keep editing or send/update (i.e. send the updates to everyone)
    There are lots of discussions about this:
    https://discussions.apple.com/message/10084804#10084804
    https://discussions.apple.com/message/10929297#10929297
    https://discussions.apple.com/message/10760583?messageID=10760583
    https://discussions.apple.com/message/10471977?messageID=10471977&amp%3b#1047197 7
    The concensus seems to be that you can't do it.
    However this seems to work for me (when I'm desparate):
    Quit iCal
    Go to the "Library" folder in your home directory, then to the "Calendars" folder  (i.e. ~/Library/Calendars)
    Delete the files "Calendar Cache~" and "Calendar Cache~"  (you don't need to empty your trash)
    Reopen iCal.  It will resync the calendar.
    I've only tried this with Exchange calendar items that have already synced with the server, so your milage may vary.  I suppose it's possible that you may lose data this way.
    Hope this helps someone since it doesn't seem like Apple is going to fix this anytime soon!

    In step 3 above I said delete "Calendar Cache~" twice.  I meant: delete "Calendar Cache" and also "Calendar Cache~" if that exists as well.

  • No problem with sdk 1.3- problem with 1.4!!!

    I am trying to make an interface using swing objects..
    The buttons are looking like images (2D) when compiling and running the program with sdk 1.4...
    although if I use 1.3 everything is ok??
    even with the new java version I still have the same problem..
    has anyone any idea how to fix this??
    thx in advance!

    /*                      BET                                 */
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
      * Summary description for BET
    public class BET extends JFrame
         // Variables declaration
         private JLabel jLabel1;
         private JLabel jLabel2;
         private JLabel jLabel3;
         private JTextField jTextField1;
         private JTextField jTextField2;
         private JTextField jTextField3;
         private JTextField jTextField4;
         private JTextField jTextField6;
         private JButton jButton1;
         private JButton jButton2;
         private JPanel contentPane;
         // End of variables declaration
         public BET()
              super();
              initializeComponent();
              // TODO: Add any constructor code after initializeComponent call
              this.setVisible(true);
          * This method is called from within the constructor to initialize the form.
          * WARNING: Do NOT modify this code. The content of this method is always regenerated
          * by the Windows Form Designer. Otherwise, retrieving design might not work properly.
          * Tip: If you must revise this method, please backup this GUI file for JFrameBuilder
          * to retrieve your design properly in future, before revising this method.
         private void initializeComponent()
              jLabel1 = new JLabel();
              jLabel2 = new JLabel();
              jLabel3 = new JLabel();
              jTextField1 = new JTextField();
              jTextField2 = new JTextField();
              jTextField3 = new JTextField();
              jTextField4 = new JTextField();
              jTextField6 = new JTextField();
              jButton1 = new JButton();
              jButton2 = new JButton();
              contentPane = (JPanel)this.getContentPane();
              // jLabel1
              jLabel1.setForeground(new Color(59, 241, 227));
              jLabel1.setText("<HTML><B><U>QUESTION</B><HTML>");
              // jLabel2
              jLabel2.setForeground(new Color(50, 245, 113));
              jLabel2.setText("<HTML><B><U>CHOICE</B><HTML>");
              // jLabel3
              jLabel3.setForeground(new Color(50, 245, 113));
              jLabel3.setText("<HTML><B><U>POINTS</B><HTML>");
              // jTextField1
              jTextField1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField1_actionPerformed(e);
              // jTextField2
              jTextField2.setText("YES");
              jTextField2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField2_actionPerformed(e);
              // jTextField3
              jTextField3.setText("10");
              jTextField3.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField3_actionPerformed(e);
              // jTextField4
              jTextField4.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField4_actionPerformed(e);
              // jTextField6
              jTextField6.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField6_actionPerformed(e);
              // jButton1
              jButton1.setBackground(new Color(117, 158, 145));
              jButton1.setText("OK");
              jButton1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jButton1_actionPerformed(e);
              // jButton2
              jButton2.setBackground(new Color(117, 158, 145));
              jButton2.setText("CANCEL");
              jButton2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jButton2_actionPerformed(e);
              // contentPane
              contentPane.setLayout(null);
              contentPane.setBackground(new Color(67, 97, 83));
              addComponent(contentPane, jLabel1, 172,8,60,18);
              addComponent(contentPane, jLabel2, 73,78,60,18);
              addComponent(contentPane, jLabel3, 211,76,60,18);
              addComponent(contentPane, jTextField1, 9,27,403,28);
              addComponent(contentPane, jTextField2, 24,101,134,22);
              addComponent(contentPane, jTextField3, 203,101,51,22);
              addComponent(contentPane, jTextField4, 21,151,137,22);
              addComponent(contentPane, jTextField6, 18,200,140,22);
              addComponent(contentPane, jButton1, 299,188,80,70);
              addComponent(contentPane, jButton2, 299,90,80,70);
              // BET
              this.setTitle("BET");
              this.setLocation(new Point(-2, 1));
              this.setSize(new Dimension(424, 316));
         /** Add Component Without a Layout Manager (Absolute Positioning) */
         private void addComponent(Container container,Component c,int x,int y,int width,int height)
              c.setBounds(x,y,width,height);
              container.add(c);
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jTextField1_actionPerformed(ActionEvent e)
              System.out.println("\njTextField1_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField2_actionPerformed(ActionEvent e)
              System.out.println("\njTextField2_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField3_actionPerformed(ActionEvent e)
              System.out.println("\njTextField3_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField4_actionPerformed(ActionEvent e)
              System.out.println("\njTextField4_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField6_actionPerformed(ActionEvent e)
              System.out.println("\njTextField6_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jButton1_actionPerformed(ActionEvent e)
              System.out.println("\njButton1_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jButton2_actionPerformed(ActionEvent e)
              System.out.println("\njButton2_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         // TODO: Add any method code to meet your needs in the following area
    //============================= Testing ================================//
    //=                                                                    =//
    //= The following main method is just for testing this class you built.=//
    //= After testing,you may simply delete it.                            =//
    //======================================================================//
         public static void main(String[] args)
              JFrame.setDefaultLookAndFeelDecorated(true);
              JDialog.setDefaultLookAndFeelDecorated(true);
              try
                   UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
              catch (Exception ex)
                   System.out.println("Failed loading L&F: ");
                   System.out.println(ex);
              new BET();
    //= End of Testing =
    This is my code.. the problem is that when i use sdk 1.3 everything is fine... I tried to use 1.4 and now 5 and I have a problem with the appearance of buttons... I have some comments in my code. is just a form with some textfields and labels and the 2 buttons!
    thx in advance

  • How do I display cancelled events in iCal?

    In a simple paper calendar, you can easily mark a cancelled event by drawing a big X over it. Why is that impossible with a €1000-computer? I just cannot get it into my head that it can't be done.
    And another thing, in Sweden at least, Sundays and holidays are colored red in printed calendars. That way it is very easy to locate them when you glance at the calendar. Now, my computer has millions of colors - and yet it is evidently impossible to color certain dates to make the calendar more readable.
    I suppose that at least some of the people who designed iCal must have used a paper calendar at one point or another in their life. So why not make a computer calendar program that can make everything a paper calendar can do AND all the things it can't?
    MacBook Intel Core 2 Duo   Mac OS X (10.4.9)  

    Welcome to the discussions, Anders.
    Tell Apple your suggestions at OS X Feedback.
    You can subscribe to a Swedish holidays calendar at http://www.icalworld.com/intl.html - but I don't think it will be coloured!
    AK

  • Should automation.swc still work with sdk 3.0.0.477?

    Should automation.swc still work with sdk 3.0.0.477? The automation .swc files that come with Flex Builder 3(C:\Program Files\Adobe\Flex Builder 3\sdks\3.0.0\frameworks\libs) are not present in the latest releases. Should I just be able to reference these files from the sdk 3.0.0.477 flex-config.xml file? I get a compile error when I do so. I'm able to include these files in version 3.0.0 successfuly.

    For the latest releases of the SDK you might need to update Flex Builder to 3.0.1.<br /><br />See http://opensource.adobe.com/wiki/display/flexsdk/Using+Flex+3+Builds+in+Flex+Builder for details.<br /><br /><br />On 8/21/08 12:33 PM, "daveee" <[email protected]> wrote:<br /><br />A new discussion was started by daveee in<br /><br />General Discussion --<br />  Should automation.swc still work with sdk 3.0.0.477?<br /><br />Should automation.swc still work with sdk 3.0.0.477?  The automation .swc files that come with Flex Builder 3(C:\Program Files\Adobe\Flex Builder 3\sdks\3.0.0\frameworks\libs) are not present in the latest releases.  Should I just be able to reference these files from the sdk 3.0.0.477 flex-config.xml file?  I get a compile error when I do so.  I'm able to include these files in version 3.0.0 successfuly.<br /><br />________________________________<br />View/reply at Should automation.swc still work with sdk 3.0.0.477? <a href=http://www.adobeforums.com/webx?13@@.59b63bb9><br />Replies by email are OK.<br />Use the unsubscribe <a href=http://www.adobeforums.com/webx?280@@.59b63bb9!folder=.3c060fa1>  form to cancel your email subscription.

  • Transform an object draft (purchase invoice) to one final with SDK.

    Some body help me.
              I need transform an object draft (purchase invoice) to one final with SDK.  
    I want make a massive approving puchase invoice in draf mode.
    How can i do that???
    CGM

    Hi,
    Different DI API Versions handles different XML versions.
    see ocompany documentation or you can use the following to reach version 2.
           oCompany.XmlExportType = SAPbobsCOM.BoXmlExportTypes.xet_ExportImportMode
           oCompany.XMLAsString = False
    You can define in the xml file the version. Even if you have an older version it can work also.
    I have put here a stocktransfer, but i have found a Purchase Invoice
    Here is version 1/2 from 2004ABC versions up to 2007AB ... I had a full function for you.input is the draft absentry.
        Private Function saveDraftAsPurchaseInvoice(ByVal AbsEntry As String) As Boolean
            'oCompany.XmlExportType = SAPbobsCOM.BoXmlExportTypes.xet_ExportImportMode
            'oCompany.XMLAsString = False
            Dim oPI As SAPbobsCOM.Documents = oCompany.GetBusinessObject(BoObjectTypes.oPurchaseInvoices)
            If oPI.GetByKey(1) Then
                oPI.SaveXML(My.Application.Info.DirectoryPath & "\sample_Purchase_invoice.xml")
            End If
            Dim oDraft As SAPbobsCOM.Documents = oCompany.GetBusinessObject(BoObjectTypes.oDrafts)
            If oDraft.GetByKey(AbsEntry) = False Then
                Return False
            End If
            Dim FileName As String = My.Application.Info.DirectoryPath & "\18_" & CStr(DateDiff(DateInterval.Second, CDate("2007/01/01"), Now)) & ".xml"
            Dim xmlString As String
            Dim oXmlDoc As New Xml.XmlDocument
            xmlString = oDraft.GetAsXML()
            ' event this is not set you have version 1 using table names!
            'oCompany.XmlExportType = SAPbobsCOM.BoXmlExportTypes.xet_ExportImportMode -> version 2 of XML DI API, using DOCUMENT instead
            ' of table name !
            xmlString = xmlString.Replace("<Object>112</Object>", "<Object>18</Object>")
            xmlString = xmlString.Replace("<ODRF>", "<OPCH>")
            xmlString = xmlString.Replace("</ODRF>", "</OPCH>")
            xmlString = xmlString.Replace("<DRF1>", "<PCH1>")
            xmlString = xmlString.Replace("</DRF1>", "</PCH1>")
            xmlString = xmlString.Replace("<DRF3>", "<PCH3>")
            xmlString = xmlString.Replace("</DRF3>", "</PCH3>")
            xmlString = xmlString.Replace("<DRF6>", "<PCH6>")
            xmlString = xmlString.Replace("</DRF6>", "</PCH6>")
            oXmlDoc.LoadXml(xmlString)
            oXmlDoc.Save(FileName)
            Dim oDoc As SAPbobsCOM.Documents = oCompany.GetBusinessObject(BoObjectTypes.oPurchaseInvoices)
            Try
                oDoc = oCompany.GetBusinessObjectFromXML(FileName, 0)
                oDoc.Comments = oDraft.Comments & " DI API ADDED FROM DRAFT"
                oDoc.DocNum = 0
                oDoc.DocDate = Date.Today
                oDoc.DocDueDate = Date.Today
                oDoc.TaxDate = Date.Today
                lRetCode = oDoc.Add()
                'Kill(FileName)
                If lRetCode = 0 Then
                    Dim NewEntry As String = String.Empty
                    Call oCompany.GetNewObjectCode(NewEntry)
                    sbo_application.StatusBar.SetText(NewEntry)
                Else
                    sbo_application.StatusBar.SetText(oCompany.GetLastErrorCode.ToString & " - " & oCompany.GetLastErrorDescription)
                End If
            Catch ex As Exception
                sbo_application.StatusBar.SetText(ex.Message)
            End Try
        End Function
    Regards
    J.
    Edited by: Janos  Nagy on Aug 12, 2008 1:13 PM

  • Need to monitor event ID with Event Level :Critical , Also how to generate (powershell or otherwise) an event with Event Level :Critical

    Need to monitor event ID with Event Level :Critical , Also how to generate (powershell or otherwise) an event with Event Level :Critical

    Hi
    First, we Need to clarify what do you want.
    1) You want to Monitor a Windows Event with the severity "Error" (there is no Critical for Windows Events, only Error").
    2) You want to create an Event in SCOM. I think you if you talk about "Event" in SCOM you mean actually an Alert.
    There is no direct way like a tool/powershell script  of only creating an Alert in SCOM only if you are going to use the SCOM SDK
    http://msdn.microsoft.com/en-us/library/hh329086.aspx or using the Orchestrator Create Alert activity.
    If you want to create a SCOM alert depending on a Windows Event you either can create a rule
    http://technet.microsoft.com/en-us/library/ff730470.aspx or a Monitor
    http://jimmoldenhauer.blogspot.ch/2013/03/scom-2012-how-to-generate-alerts-from.html 
    Cheers,
    Stefan
    Blog: http://blog.scomfaq.ch

  • Fireworks events with CSXS 2.0

    How to register listeners for fireworks events within CSXS 2.0 environment
    this method (described here: http://www.adobe.com/devnet/fireworks/articles/fw_events_as3.html):
    ExternalInterface.addCallback('IsFwCallbackInstalled', onFwCallbacksCheck);
    that worked with old SDK, when panels was placed in
    ...\Program Files\Adobe\Adobe Fireworks CS5\Configuration\Command Panels\
    don't work if I'm putting my panel to the
    ...\Common Files\Adobe\CS5ServiceManager\extensions\
    I haven't managed to find any documentation about that
    all I founded is about creative suite 4.0 or earlier versions
    could you please explain how to handle fireworks events with CREATIVE SUITE 5.5 SDK
    Thanks

    I have no problems syncing both ways - but...
    Are you giving your Mac enough time to sync to the cloud? The mac does not "push", it syncs. If you have the MobileMe sync icon in the main menu on your mac, you can open the preferences and there you can set the time interval between syncs. Your default may be set to 1 hour or 1 day. I'm not sure what the "automatically" setting means, I know that for me it can take a number of minutes. Is it 15 as a minimum?

  • How to get touch cancel event on button

    Hi,
    I want to implement one button like when user clicks this button, it will fire one method and when user cancel the touch from button, it should fire another method using touch cancel event. I think that i need to set two method on buton.
    Anyone knows how to do this?
    Thanks.

    If you're making the connections in IB, just ctrl-click on the button to bring up the floating black connections panel. You should see all of the button's control events when you expand the Events group. You may connect as many of those events as you wish, either to different action methods or to the same action method. You can also make the same connections in the Connections Inspector.
    To make the connections in code, just add as many actions as you want. E.g.:
    [button addTarget:self action:@selector(touchButton) forControlEvents:UIControlEventTouchUpInside];
    [button addTarget:self action:@selector(cancelButton) forControlEvents:UIControlEventTouchCancel];
    You probably don't really want the Touch-Cancel event, which is normally quite rare and has little to do with "Cancel" in the usual UI sense, but the above will work for you regardless of which events you choose (unless you were actually trying to describe a toggle). For a description of all the events see Control Events in the UIControl doc.
    If what you want is an ON for touch down, and OFF for touch up, you can choose those events from the list I referred to.
    If in fact you want a toggle action (first touch ON, second touch OFF), that would be done by connecting the Touch-Up-Inside event to a single action method and branching the code on a BOOL instance var that would alternate between YES or NO.
    Hope that helps!
    - Ray

  • Custom Event with multiple EventTypes

    Hello All, First thanks for all those who tryied to help me and apologize for my approximative english.
    I would like to create the more properly as possible a Custom Event with multiple EventTypes, like the MouseEvent typicaly. 
    With Some EventType which permit to acces to some attributes and other not. But I'm totaly lost,  The second solution if someone knows how, is to explain to me how to do to acces to the code of the MouseEvent.as 
    Thanks! 
    Ps: you will find below the basis of the code i have begin. 
    package fr.flashProject
        import flash.events.Event;
         * @author
        public class SWFAddressManagerEvent extends Event
            public static const CHANGE_PAGE:String = "change_page";
            public static const ERROR_404:String = "error_404";
            public static const HOME_PAGE:String = "home_page";
            private var _page:String;
            private var _params:Object;
            public function SWFAddressManagerEvent(type:String, pPage:String = null, pParams:Object = null, bubbles:Boolean=false, cancelable:Boolean=false)
                super(type, bubbles, cancelable);
                _page = pPage;
                _params = _params;
            public override function clone():Event
                return new SWFAddressManagerEvent(_type, _page, _params, bubbles, cancelable);
            public override function toString():String
                return formatToString("SWFAddressManagerEvent", "type", "page", "params", "bubbles", "cancelable", "eventPhase");
            public function get page():String { return _page; }
            public function get params():Object { return _params; }       

    I am not sure what you are trying to accomplish but event can have only single type. Event type is just a string that is typically a constant - exactly like your constants.
    When dispatched, each event INSTANCE has only one type. Again, these types are described in a type parameter by a string. Each dispatched MouseEvent DOES NOT have multiple types but ONLY ONE. It does have multiple constants that are used to assign type at runtime as does your event.
    If you are talking about multiple parameters, you already do that in your custom event class. You have _page and _params. Nothing stops you from adding more parameters.
    Also I am not sure why you need getters for _page and _params.

  • In ical I just added new calendars to a pre-existing calendar group, I can make events with these calendars, but not reminders, any suggestions?

    in ical I just added new calendars to a pre-existing calendar group, I can make events with these calendars, but not reminders, any suggestions?

    Hi,
    Lion has changed the way reminders (todos as was) work. They now seem to need to be in a seperate calendar.
    In iCal open the File menu and select New Reminder List... and select where to put it.
    Best wishes
    John M

  • Is there a way to delete all events with the same title (not added as reoccurring) without deleting one at a time?

    i currently have a calendar synced that has events scheduled in perpetuity, scheduled as individual events.  I would like to delete all events with the same title.  I do not want to delete the entire calendar nor do I want to go into every event and delete individually.  These were not scheduled by me so I do not know how they were added one by one and go on forever but they are NOT scheduled as reoccurring and thus must be modified individually.
    I can do a search and find all events, is there a way to just delete all events with the same title all at once?
    this is a Microsoft outlook synced calendar and I am seemingly unable to delete the events all at one time from Microsoft as well. 
    Please help!

    If you still have access to the Outlook calendar in Outlook, I would delete them from there. There are a number of ways to do that, but if you open the individual event in Outlook, does it show a repeating pattern? If not, then you may have to delete them individually, but that is not that difficult either. Go into the calendar and then change the view to a list view. From there you can sort the view according to subject. This should bring all of these same appointments together in the list and you can select the group in Outlook and delete them. Once you do that, you can change your view back and then sync the phone. That will remove the events from the phone.

  • HT4890 Can I share a specific event with friends on iCloud via Photostream?

    Can I share a specific event with friends on iCloud via Photostream?

    No, not until iOS 6 comes out.

  • How to move Projects and Events with iPhoto video included in iMovie '11?

    I work with a group of educators using iPads for video. One method for getting their clips into iMovie '11 is via iPhoto and then using the iPhoto Video link in iMovie to get the footage on a timeline (trying to import directly into iMovie '11, using the iPad as a "camera", has proved inconsistent, especially with footage from iStopMotion or Filmic Pro 1 and 2).
    The problem is, when it comes time to copy or move an event and project, the iPhoto clips don't come along; they are dependent on the iPhoto library, so you can't continue editing on a different machine. I tried File > Consolidate Media, but it was inactive (in my test project, all clips came from iPhoto). If I look at Reveal in Browser, it goes to the bowels of the iPhoto library. If I copy the project to another drive, it too, points to the iPhoto library (if I'm on the same machine; otherwise it doesn't see it). I also tried optimizing the footage in the hope that it would create an Event with optimized clips that I could then transfer.
    Am I missing something? It seems nuts that you can't transfer work to another machine without manually picking through the bowels of iPhoto. These days, lots of shooting is done on iPads and iPhones. Any help would be appreciated.

    My suggestion would be that in the future, they upload photos only to iphoto, and upload video clips directly to iMovie. In the early days of iOS, going through iPhoto was the only way, so it is a habit that I have had to break.
    With iOS 5 and 6, iMovie now recognizes the iPhone and the iPad as cameras.
    I agree that the Consolidate Media command should bring over iPHoto movies along with the photos. I suggest that you go to iMovie/Provide Feedback and let the developers know that you would like this feature.

  • How do I split a single event with many clips into multiples events, one event per date?

    I archived the video from my AVCHD camera into a Final Cut video archive. Later I imported this into iMovie. All the clips from this archive (spanning several months) are dumped into a single event. If I recall, older versions of iMovie would import video into separate events for each day. Then I would go through and give each event a meaningful name (e.g., "Mary's Birthday").
    This is what I would like. Is there a way to split this very long event into multiple events, one for each day that is present in the event?

    Not automatically but with imovie 10 you can create new events with any name you like then move clips into them from other events  (Just like FCP 10.1).   See:
    http://help.apple.com/imovie/mac/10.0/#mov1d890f00b
    You can also choose to display clips in an event grouped by date.
    Geoff

Maybe you are looking for

  • Connection failed is a failed error message

    In iPhoto, as well as in other software that uses the iPhoto library (e.g. setting a Desptop photo), I get the error message "Connection failed - The server "xxx" may not exist or it is unavailable at this time. Check the server name or IP address, c

  • How do I adjust background image, it is too big

    Hi I am very new to DW.  I am completing a portfolio project that is due very soon.  I just realized that the background image that I created in Photoshop is extremely large so when a user scrolls to the right there is empty screen.  I would like to

  • Flash Player com Internet Explorer 11.0.9600.16428 Windows 7

    Após atualização automatica do Internet Explorer 11 o flash player deixou de funcionar nalguns sites, inclusive um informa-me para instalar o flash player. Os mesmos sites no google chrome funcionam corretamente.

  • How to split  a string in jsp?

    I have a set of strings or names in ${form.temp.name}Is there anyway I can split a string in jsp or jstl by a newline "\n" or space "\\s" character and print them separately. Or Do i have to do something in my controller as I am using spring with jsp

  • Are Laptop cases sold separately and if so, where?

    My wife has broken the outside of her laptop so the plug won't stay in along with seperation of top and bottom.  The computer works 100% so was hoping to find a 'For Parts" laptop of that model or wanting to see if the laptop case is sold separately