Help (Newbie) with simple business setup

Hi all,
New to the community and this is my first post. 
We have a small business and have been running the Business Manager for sometime now with approx 8 staff in a single office running skype on thier pc's with headsets, Skype numbers, voicemail etc.
The office is very IT friendly (lots of cat5 ports etc, a very solid 4-5mb down and up wireless internet connection - a line of sight wireless, we're in the country, but up on a hill so the service great). 
I want to move this on to desktop phones without the need for the PC's and ideally the ability for our receptionist to receive both Skype and landline calls and transfer these calls within the office using suitable hardware.
Can someone point me in the right direction in terms of any other services I may need to purchase from Skype and necessary / recommended hardware.
Thanks Jason 

JRGIBB wrote:
I want to move this on to desktop phones without the need for the PC's and ideally the ability for our receptionist to receive both Skype and landline calls and transfer these calls within the office using suitable hardware.
Can someone point me in the right direction in terms of any other services I may need to purchase from Skype and necessary / recommended hardware.
Hello Jason and welcome to the Skype Community.
Checking for you .
TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
I recommend that you always run the latest Skype version: Windows & Mac
If my advice helped to fix your issue please mark it as a solution to help others.
Please note that I generally don't respond to unsolicited Private Messages. Thank you.

Similar Messages

  • Please help me with simple program

    Can someone please write a simple program for me that opens up a webpage in the center of the screen , with a set size, and then asks the user where they would like to click on the screen. Then once the person clicks it asks how many times they would like to click there, and then once they enter the # the program opens up the webpage (in the center at the same spot as before, with the same set size) and automatically clicks on the predesignated spot , and then closes all open internet windows, and keeps doing it for however many times the person chose. PLEASE HELP ME WITH THIS!!! If you could, please post the source code here. Thank you so much to whoever helps me!!!!!!!

    If it's not to learn, then what is the purpose of
    this project?well, if it's not HW and its not for learning java, then why the hell would anyone like to have a program that may open a webpage and then repeatedly click on predefined place...
    let me see...
    now if he had asked for program that fakes IP as well, then i would suggest that he tryes to generate unique clicks, but now... i'm not sure... maybe just voting in some polls or smthing... though, i would not create a program that clicks on the link or form element, but rather just reload url with given parameters for N times...

  • Please help a newbie with simple equal methode

    With my little know how of java I have written this methode
    to test the equality of two LinkedSet data structures.
    provided that the linkedSet class and the iterator are
    implemented correctly , can some one help me please to
    figure out what is wrong or give an alternate solution.
    Thanks in advance
    * Return true if this set and the parameter contain
    * exactly the same elements
    public boolean equals(SetADT setADT) throws IllegalStateException
    boolean result=false;
    if(this.size()!=setADT.size())
    throw new IllegalStateException(" Two sets are not equal");
    Iterator a=this.iterator();
    Iterator b=setADT.iterator();
    LinkedSet temp1=new LinkedSet();
    LinkedSet temp2=new LinkedSet();
    while(a.hasNext())
    temp1.add(a.next());
    temp2.add(b.next());
    Iterator c=temp1.iterator();
    Iterator d=temp2.iterator();
    if(c.next().equals(d.next()))
    temp1.remove(c.next());
    temp2.remove(d.next());
    result=(temp1.isEmpty()&&temp2.isEmpty());
    return result;

    while(a.hasNext())
      temp1.add(a.next());
      temp2.add(b.next());
      Iterator c=temp1.iterator();
      Iterator d=temp2.iterator();
      if(c.next().equals(d.next())) // <- Watch missing braces !
         temp1.remove(c.next());
      temp2.remove(d.next());
      result=(temp1.isEmpty()&&temp2.isEmpty());
    }Whay are you doing all that extra iteration stuff?
    I mean, I see what you are getting at ...towards the empty final objects. But isn't that a really exhaustive way the get to the end of this problem? The end doesn't justify the means.
    Start assuming result = true
    In your while loop...
    Just test 'if (!(a.next().equals(b.next())) {'
    If it ever does, something didn't match.
    So set result = false and 'break' from the loop.
    At the end of the method, result will be either true or false accordingly.
    Code that up and it should work better. But ...can we assume the iterators traverse the set in the same order always? That is the question I would ask here.

  • I need help some with simple ejb3 app - urgent

    I�m trying to write a small app using ejb3 and I have a big problem.
    1. I created a Session bean in ejb module
    package beans;
    import javax.ejb.*;
    @Stateless()
    public class testBean implements beans.testLocal {
        public String test(String name)
            return "hello "+name;
    package beans;
    public interface testLocal {
         String test(String name);  
    }2. In web module I created a servlet and as in the 'Ejb3 Persistence in netbeans tutorial" and then I called my session bean (http://www.netbeans.org/kb/55/ejb3-preview.html#Exercise_2)
    protected void processRequest(...)
      ...out.println("<body>");
         out.println(aTestBean.test("a Test"));   //bean method call
         out.println("</body>");
         out.println("</html>");        
         out.close();
        @EJB
        beans.testBean aTestBean;   //reference to the session beanI compiled and deployed it.
    And after I invoked the servlet I got that message :
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Servlet.init() for servlet test threw exception
         com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
         com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
         com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
         com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
         com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    root cause
    java.lang.RuntimeException: WEB5002: Exception in handleBeforeEvent.
         com.sun.web.server.J2EEInstanceListener.handleBeforeEvent(J2EEInstanceListener.java:205)
         com.sun.web.server.J2EEInstanceListener.instanceEvent(J2EEInstanceListener.java:90)
         org.apache.catalina.util.InstanceSupport.fireInstanceEvent(InstanceSupport.java:250)
         com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
         com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
         com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
         com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
         com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    I also tried to do it like in the flash ejb3 presentation but I got the same result (http://j2ee.netbeans.org/NetBeans_EJB3.html)
        beans.testBean aTestBean;   //reference to the session bean
       @javax.ejb.EJB
        private void setTestBean(beans.testBean aTestBean)
            this.aTestBean = aTestBean;
        }How can I call methods from session beans.
    I'd like to do something like this.
    1.Create an EntityBean for my database.
    2 Create a session bean to manage those EntityBeans � like in the tutorial
    3.Create a web module and a servlet with method calls from that session bean
    4. Create a MIDP 2.0 app using "Mobile client to web app' wizard from the mobility pack, to generate stubs for servlet methods.
    All I need to create one simple method
    public String getDataFromDB(int ID)
    //and here the call to the session bean
    return sesionbeanReference.getData(ID);
    help me

    Hi
    I am Facing th same Problem ,But the solution you have give
    that use Local Interface intead of Bean
    In my case I am using Remote Interface and not the local its giving me the same problems as the Query Posted
    javax.servlet.ServletException: Servlet.init() for servlet NewServlet threw exception
         com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
         com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
         com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
         com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
         com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    root cause
    java.lang.RuntimeException: WEB5002: Exception in handleBeforeEvent.
         com.sun.web.server.J2EEInstanceListener.handleBeforeEvent(J2EEInstanceListener.java:205)
         com.sun.web.server.J2EEInstanceListener.instanceEvent(J2EEInstanceListener.java:90)
         org.apache.catalina.util.InstanceSupport.fireInstanceEvent(InstanceSupport.java:250)
         com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
         com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
         com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
         com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
         com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    note The full stack trace of the root cause is available in the Sun Java System Application Server Platform Edition 9.0 Beta logs.
    My EJB Refernce to rmote interface looks like this
    @EJB ProcessAdvertisementRemote oProcessAdvertisementRemote;
    I am caaling a method on that inferface ,so its giving these exceptions
    Can u plz help me out
    Geetanjalee

  • Help needed with simple image enlargement when viewing a gallery

    Hi
    I have a gallery component linked to a data thumb list. This all scrolls fine and works. When someone clicks on a thumb it shows the
    image larger. Then I would like it if you click on the larger image it fills the height of the page to see an even bigger view. I have managed to do this but some of the buttons do not work in the area were this image is even if the image is not showing and the image will not go back to its off state even though it has an interaction to do so. If I drag the image component down the layers panel so it is behind all the other bits on my page it all works, the image enlarges and disappears so the previous state is shown. The problem with this is I want the image to cover everything behind it, not be behind everything. I have included a couple of screen grabs just to give you an idea.
    sc 1 simple data list and image component
    sc2 Enlarged image but can not get it to go
    sc3 enlarged image can come and go no changes except I have moved the layer panel down
    to the bottom
    Any ideas how I can get this to work properly would be much appreciated
    many thanks

    I have sorted this out. There might be other ways of doing this but I added a button to the large image gallery component.
    constructed a rectangle the same size as the large image and set the opacity to 0. The whole area is now a button you can not see.
    One click anywhere on the image removes it with an interaction back to the first state which is off.
    hope this help anyone

  • Need help on with simple email program

    i have been set a task to create a simple email program that has the variables of the sender the recipient the subject the content and a date object representing when the email was sent (this is just to be set to the current system date)
    It also needs to include a constructor with four String arguments, i.e the sender, receiver, subject and content. The constructor has to initialise the date of the email then transfer the values of the input parameters to the relevant attributes. If any values of the strings aren'nt given, the string �Unknown� should be set as the value.
    I was given a java file to test the one i am to create, but some of the values are not given, if anyone could be of anyhelp or just point me in the right direction then i would be very greatfull, ive posted the code for the test file i have been given below, thanks.
    public class SimpleEmailTest {
         public static void main( String[] args ) {
              SimpleEmail email;     // email object to test.
              String whoFrom;          // sender
              String whoTo;          // recipient
              String subject;          // subject matter
              String content;          // text content of email
              static final String notKnown = "Unknown";
              email = new SimpleEmail
    (notKnown, notKnown, notKnown, notKnown);
              System.out.println( "SimpleEmail: " +
    "\n    From: " + email.getSender() +
    "\n      To: " + email.getRecipient() +
    "\n Subject: " + email.getSubject() +
    "\n    Date: " + 
    email.getDate().toString() +
    "\n Message: \n" + email.getContent() + "\n";
              email.setSender( "Jimmy Testsender");
              email.setRecipient( "Sheena Receiver");
              email.setSubject( "How are you today?");
              email.setContent( "I just wrote an email class!");
              System.out.println( "SimpleEmail: " +
    "\n    From: " + email.getSender() +
    "\n      To: " + email.getRecipient() +
    "\n Subject: " + email.getSubject() +
    "\n    Date: " + 
    email.getDate().toString() +
    "\n Message: \n" + email.getContent() + "\n";
         }

    Start by writing a class named SimpleEmail, implement a constructor with four arguments in it, and the methods that the test code calls, such as the get...() and set...() methods. The class probably needs four member variables too.
    public class SimpleEmail {
        // ... add member variables here
        // constructor
        public SimpleEmail(String whoFrom, String whoTo, String subject, String content) {
            // ... add code to the constructor here
        // ... add get...() and set...() methods here
    }

  • Help needed with simple code

    Hi,
    Im doing a project for my module at uni. Not being a programmer I find it very hard to design application as Im required to. Anyway I have to design booking application for bikeshop.
    User selects bike from 3 types: MTB,Kids and racing. each bike has its price so cost of booking must be calculated.There are extra options like helmet which may rented as well. Some customer info must be collected (name,address etc).
    Bookings has to be written into file. Report of past booking must be available-simple printouts.
    No databases as use of arrays is required.
    Im stuck and trying to figure it out how to read from array which contains bike types and prices and extra features. Then combine several bookings for on customes on a form/interface.
    Any ideas how to start it? I mean at least on design level.
    Thanks in advance for any help

    Hi
    I managed to produced some code to extend my app but when I run it I get:
    Exception in thread "main" java.lang.NullPointerException
         at ReservationSystem.main(ReservationSystem.java:22)
    Im really stuck
    Will somebody give me any idea?
    Below is the code...
    Thanks
    whale
    mport java.util.ArrayList;
    import javax.swing.JOptionPane;
    public class ReservationSystem {
         static ArrayList<Booking> Bookings;
         public static void main(String[] args) {
              int BikeType = 0;
              do {
                   BikeType = Integer.parseInt(JOptionPane.showInputDialog("0 - Mountain bike, 1 - Racing Bike, 2 - Childrens Bike, 3 - Finish?"));
                   String Surname = JOptionPane.showInputDialog("Surname?");
                   String Date = JOptionPane.showInputDialog("Date?");
                   int Number_of_days = Integer.parseInt(JOptionPane.showInputDialog("Number of days?"));
                   switch (BikeType) {
                   case 0:
                        String Sex = JOptionPane.showInputDialog("Sex (M/F)?");
                        String Frame_size = JOptionPane.showInputDialog("Frame size (S/M/L)?");
                        boolean Helmet = JOptionPane.showConfirmDialog(null, "Is a helmet required?", "Helmet", JOptionPane.YES_NO_OPTION) == 0;
                        Bicycle Bike = new MountainBike(Sex, Frame_size, Helmet);
                        Bookings.add(new Booking(Surname, Date, Number_of_days, Bike));
                   case 1:
                   case 2:
                   default:
              } while (BikeType != 3);
              int Length = Bookings.size();
              int i;
              for (i = 0; i < Length; i++) {
               Bookings.get(i).print_booking();
         }Booking class
    public class Booking {
      //Date start_date;
      int Number_of_days;
      Bicycle Bike;
      String Surname;
      String Date;
      Booking(String Surname, String Date, int Number_of_days, Bicycle Bike) {
           this.Surname = Surname;
           this.Number_of_days = Number_of_days;
           this.Bike = Bike;
           this.Date = Date;
      public void print_booking() {
           System.out.print(this.Surname + ": " + this.Date + "/" + " for " + this.Number_of_days);
           this.Bike.print_bike();
      }}class Bicycle
    public class Bicycle {
      int Price;
      boolean Helmet;
         public void print_bike() {
    class MountainBike extends Bicycle {
         String Frame_size;
         String Sex;
         public MountainBike(String Sex, String Frame_size, boolean Helmet) {
              this.Sex = Sex;
              this.Frame_size = Frame_size;
              this.Helmet = Helmet;
              this.Price = 20;
              if (Helmet) {
                   this.Price += 5;
         public void print_bike() {
              System.out.println("Mountain bike (" + this.Sex + ", " + this.Frame_size + ") "
                        + (this.Helmet ? " with helmet" : "") + " price " + this.Price);
    class RacingBike extends Bicycle {
         boolean Panniers;
         String Frame_size;
         String Sex;
         public RacingBike(String Sex, String Frame_size, boolean Panniers) {
              this.Sex = Sex;
              this.Frame_size = Frame_size;
              this.Panniers = Panniers;
              this.Price = 25;
              if (Panniers) {
                   this.Price += 10;
                   this.Helmet = true;
         public void print_bike() {
              System.out.println("Racing bike (" + this.Sex + ", " + this.Frame_size + ") "
                        + (this.Panniers ? " with panniers" : "") + " price " + this.Price);
    class ChildrensBike extends Bicycle {
         int Age;
         public ChildrensBike(int Age) {
              this.Age = Age;
              this.Helmet = true;
              this.Price = 15;
         public void print_bike() {
              System.out.println("Mountain bike (" + this.Age + ") "
                        + (this.Helmet ? " with helmet" : "") + " price " + this.Price);
    }

  • Help Needed With Simple URL Encoding

    I am making a simple webserver. I have seen that the spaces are converted to %20 as the url is encoded. But what I would like to do is to also allow the hosting of files that contain %20 in their names i.e. I would like to differentiate between two cases when the user entered a space and it is converted into %20 and when the user explicity wrote %20 in the url. I tried to do it via the URLDecoder class but it converts %20 into a space in both cases. Any help will be greatly appreciated.

    omariqbalnaru wrote:
    . I would like to differentiate between two cases when the user entered a space and it is converted into %20 and when the user explicity wrote %20 in the url.You cannot. There is no difference at your end between those two cases.

  • Help required with Simple Examples

    Hi Friends,
    I am starting a new project with JSP and JSTL with the implementation of structs framework in apache webserver on Linux platform. I would like to have some sample applications (simple to understand), because we already have experience in JSP programming and Java programming (only the integration is making some new troubles).. i even refered some websites and collcted codes.. but i would like to have a communication with professional developers.. if possible give me some links where i can collect simple source code and projects for better understanding.. Thanks in advance..
    with regards
    Muthukumar G.

    Google.

  • Help Newbie With Company Website Idea

    Hi Everyone,
    I'm totally going to embarrass myself with my lack of actionscript knowledge... but, I hope someone can at least point me in the right direction.
    Here's what I'm attempting to do:
    I'm designing a flash site that has 5 buttons, each corresponding to a different company. When a button is pressed, the logo for that company will appear in the body of the site along with a brief company description. So far, that's all very easy I know. But, here's where it gets complicated (at least, for me):
    I've set up shape tweens (25 to be exact) so that every logo can "tween" into any of the other logos. The goal is to have it so that when you click on one of the company's buttons, the logo will shape tween from the current logo displayed to the logo for the company button you clicked. Make sense? I hope so.
    When a button is pressed, the script basically needs to find out what logo is currently displayed, so that it can know what shape tween movieclip to play.
    I've set up all the tweens on the timeline with Frame Labels: logo1ToLogo2, Logo1ToLogo3 and so forth. And then Logo2ToLogo1, Logo2ToLogo3 and so forth...
    Can somebody get me started? It would be very much appreciated!
    Thanks.
    Meb

    I really don't want to repeat myself, so you'll need to reread what I offered earlier, but I'll give an example this time to add to it.  I don't know why you need 5 for each as it doesn't make sense to tween the same logo into itself but having it will be supported by the example.  In any case, each tween that you create you will assign a frame label to the beginning of that indicates which transition is involves.  For the example below, the frame label will be "logo1ToLogo2"...
    So let's say Logo1 is initially displayed.  The variable I mentioned earlier is already assigned a value = "logo1" at the start.  So you click the button for Logo2, which you assign an instance name of "btn2", and it has the following code assigned to it on the timeline (not on the button)...
    btn2.onRelease = function(){
         disable_enable_btns();
         gotoAndPlay(currentLogo+"ToLogo2");
         currentLogo = "logo2";
    Each button will have the same code except number (2 in this example) will change to agree with the button.
    The disable_enable_btns function is used to prevent people from using the buttons during a transition...
    function disable_enable_btns(){
         for(i=1; i<6; i++){
              // switch the enabled property to its opposite
              this["btn"+i].enabled = !this["btn"+i].enabled;
    So you call that function in the button code, and you also call it in the last frame of each transition so that when a transition is done, the buttons are once again enabled.

  • HELP Newbie with mac and iphoto

    Hey experts - I loaded some photos into iphoto and then made a slideshow with music - how do I get the slideshow with the music into my iweb site? Specifically I want it on a particular page but I have come this far and don't know what to do next. Thanks

    JHIN
    Well now you have to export the Slideshow as a Quick time movie, and add that to your iWeb page. How to do? Select the Slideshow in the Source (or Left Hand) pane and go File -> Export. Then complete the export `(after deciding size etc.) and you can then bring that movie to your iWeb site.
    Regards
    TD

  • Help wanted with simple question!

    Hi, I know this may be the wrong place to be asking such as question but can anyone please tell me what the meaning of this is.
    Data must be transferred between the client and web service in either JSON or XML format.
    I have a database on azure and I have connected to the database through a php page and then display the database on html format. But I know nothing of the transferring of the data, can anyone make sense of this.

    Hello!
    I'm not sure I understand the issue at hand, as you say you're already displaying the data in HTML. Where is this message coming from? 
    Cheers.

  • Help noob with simple issue. Thanks!

    Hey guys!
    I am a first time flash-maker, and I sure how to get things to work as planned.
    I have written the following code:
    stop();
    import flash.events.MouseEvent;
    Weightlifting_btn.addEventListener(MouseEvent.CLICK, CursorClick);
    function CursorClick(event:MouseEvent):void{
    gotoAndStop("25");
    But my problem is that i have a motion tween that startes at frame 5 and ends at frame 25. And the code says that at will go to and stop at frame 25.
    what I really want it to do, is to go to frame 5, play the motion, and stop at frame 25.
    How can I do this?
    Thanks in advance

    That is AS3 code, so you should have posted in the AS3 forum.  To make it start playing at frame 5, tell it to do that.  If you want it to stop at frame 25, then place a stop() command at frame 25.
    stop();
    Weightlifting_btn.addEventListener(MouseEvent.CLICK, CursorClick);
    function CursorClick(event:MouseEvent):void{
        gotoAndPlay(5);  // no quotes for frame numbers
    (It looks like it's another one of those missing postings days... there were no responses showing here when I started here, but there should have been.  And I'm noticing a good number of what has been posted today in the AS3 forum was missing when I last checked)

  • URL: newbie needs help with simple programming question!

    Hi everyone,
    Please direct me to a FAQ or other resource, or help me with this problem:
    I want to create a text field (or similar container) that contains both ordinary text AND a URL/hyperlink in it. For example, the following text might appear in the text field:
    "I have many _pictures_ from my vacation"
    where the word "pictures" is actually a hyperlink to a web site, and the other portions of the string are simple text.
    All advice and help is appreciated!
    -Dennis Reda
    [email protected]

    Well here is one way you code do it but if you do alittle research on them links above it will explain how this code works.Well it will explain how jeditorpane and hyperlinklistener work
    import javax.swing.*;
    import java.awt.*;
    import javax.swing.event.*;
    import java.net.*;
    public class b extends javax.swing.JApplet implements HyperlinkListener  {
       JEditorPane field = new JEditorPane();
      public b() {
        Container pane = getContentPane();
        FlowLayout flo = new FlowLayout();
        pane.setLayout(flo);
        field.setPreferredSize(new Dimension(200, 25));
        field.setEditable(false);
        pane.add(field);
        setContentPane(pane);
         String gg1 = "<html><body>I have many_<a    href='http://www.home.com'>pictures</a>_from my vacation</body></html>";
         field.addHyperlinkListener(this);
         field.setContentType("text/html");
         field.setText(gg1);
      public void hyperlinkUpdate(HyperlinkEvent e) {
         if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
          try{
            URL url = new URL("http://www.msn.com");
            getAppletContext().showDocument(url,"_self"); 
            }catch(Exception r) {};
      public void init()  {
         b c = new b();
    ps hope this helped                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Help with Capturing Business Graphics data point

    Hi,
    I created a BusinessGraphics UI element with SimpleSeries and assigned eventId for the categories and data points. I am able to get the series that is clicked through the event but I would like to know which point (value) is clicked as well.
    The steps I followed are
    1. Created BG UI element, category and SimpleSeries
    2. Assigned eventIDs
    3. Created an action class and mapped it to the UI element
    4. Code in wdDoModifyView is
         if (firstTime)
           IWDBusinessGraphics chart = (IWDBusinessGraphics) view.getElement("bgCSB");
           chart.mappingOfOnAction().addSourceMapping("id", "pointID");
    5. Implemented action class with one parameter (pointID) and able to get the value.
    Can someone help me to get the data point values from the user click.
    Appreciate your help.
    Thanks,
    Kalyan

    You have done everything right, except I don't think you can do this with simple series.
    Create something like this:
    in the context:
    series-> (this node can be with 1..1 cardinality and 1..1 selection)
       points->
           label (string)
           value (int)
           pointId (string)
    in the business graphics:
    create one series (not simple one) and add to it one point of numeric type.
    in the properties of business graphics bind seriesSource to series context.
    Series: bined poitSource to series.points
    Series_points: bind eventId to series.points.pointId
                            bind label to series.points.label
                            bind valueSource to series.points
    Values (these are the numeric values): bind value to series.points.value
    in wdDoModify method do the same thing as you have done already.
    Now, when you click on a point you will receive in your event in pointId variable the pointId context attribute value.
    Best regards,
    Anton

Maybe you are looking for

  • Why are both my Mac's so slow now after upgrading to Mavericks?

    I have 2 Macs, an MB Pro Core i5, & Mac Mini Mid 2010 Core 2 Duo, (both 4/320's) and both have remained significantly slower, even after indexing, unless indexing takes days upon days. I understand why the Mini may have taken a speed dip, but a Core

  • Wrong Characters returned by the WebService

    Hi! I have an scenario where i have one RFC Function module that call a WebService (Java/EJB) that brings the information from a Oracle DB. The RFC parse the results and populate my return tables. When i call the WebService from wsnavigator in portal

  • IE 8 causes some windows to open behind the current page

    Boy, this is a weird one! We have just upgraded a few of our machines to Internet Explorer 8 (from 7) and our intranet site - whihc works perfectly on 7 - has developed a few "oddities." When the user clicks a link that opens a document, the document

  • [Forum FAQ]How to troubleshoot common issue when configuring user device affinity from usage data

    Symptom: Some clients might fail to automatically configure user device affinity from usage data if you have manually configured user device affinity before. When you check the UserAffinity.log, you can find the similar error messages as below: User

  • Down Arrow after zoom

    If I zoom with the mouse scroll "alt scroll" then press the down arrow it opens my file menu, this is 100% reproducable. Zoom any other way will not open the menu. I have searched the shortcuts and can not find any shortcut associated with opening th