Home Answers Viewqa Java-Beginners Problem with Link To website with my Java Appliaction

 
 


sushant
Problem with Link To website with my Java Appliaction
1 Answer(s)      3 years and 3 months ago
Posted in : Java Beginners

Hello Sir Here is Main Menu Form,I want to open website on Visit US Button Click
Plz Give Me Source Code,I have Completed Follownig Code,plz add Visit US Button Code in that Form.
//MAIN MENU FORM
import java.io.*;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.sql.*;
import java.util.*;
public class menu5 extends JFrame //implements ActionListener
{
//coursefrm pro=new coursefrm();
JFrame j;
JPanel j2;
JTabbedPane tp;
JLabel l1,l2,l3,l4,l5;
JTextField t1,t2,t3,t4,t5;
JButton courbtn,facbtn,admin,hebtn,visit;
menu5()
{
j=new JFrame("Main Menu");
j2=new JPanel(new GridLayout(3,2));
admin=new JButton("Addmission");
courbtn=new JButton("Course Details");
facbtn=new JButton("Faculty");
hebtn=new JButton ("Help");
visit=new JButton ("Visit Us");
j2.add(admin);
j2.add(courbtn);
j2.add(facbtn);
j2.add(hebtn);
j2.add(visit);
j.add(j2);
courbtn.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae){
coursefrm pro=new coursefrm();
pro.dis();
}
});
facbtn.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae){
faculty1 f=new faculty1();
f.dis();
}
});
}
public void dis()
{
j.setSize(300,150);
j.setVisible(true);
j.setResizable(true);
}

public static void main(String z[]){
menu5 pro=new menu5();
pro.dis();
}
}










View Answers

March 27, 2010 at 11:33 AM


Hi Friend,

We have modified your code.

import java.io.*;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.sql.*;
import java.util.*;
public class menu5 extends JFrame //implements ActionListener
{
//coursefrm pro=new coursefrm();
JFrame j;
JPanel j2;
JTabbedPane tp;
JLabel l1,l2,l3,l4,l5;
JTextField t1,t2,t3,t4,t5;
JButton courbtn,facbtn,admin,hebtn,visit;

public void openURL(String url) {
String osName = System.getProperty("os.name");
try {
if (osName.startsWith("Windows"))
Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + url);
else {
String[] browsers = {"firefox", "opera", "konqueror", "epiphany", "mozilla", "netscape" };
String browser = null;
for (int count = 0; count < browsers.length && browser == null; count++)
if (Runtime.getRuntime().exec(new String[] {"which", browsers[count]}).waitFor() == 0)
browser = browsers[count];
Runtime.getRuntime().exec(new String[] {browser, url});
}
}
catch (Exception e) {
JOptionPane.showMessageDialog(null, "Error in opening browser" + ":\n" + e.getLocalizedMessage());
}
}
menu5()
{
j=new JFrame("Main Menu");
j2=new JPanel(new GridLayout(3,2));
admin=new JButton("Addmission");
courbtn=new JButton("Course Details");
facbtn=new JButton("Faculty");
hebtn=new JButton ("Help");
visit=new JButton ("Visit Us");
j2.add(admin);
j2.add(courbtn);
j2.add(facbtn);
j2.add(hebtn);
j2.add(visit);
j.add(j2);
courbtn.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae){
coursefrm pro=new coursefrm();
pro.dis();
}
});
facbtn.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae){
faculty1 f=new faculty1();
f.dis();
}
});
visit.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae){
openURL("http://www.roseindia.net";);

}
});
}
public void dis()
{
j.setSize(300,150);
j.setVisible(true);
j.setResizable(true);
}

public static void main(String z[]){
menu5 pro=new menu5();
pro.dis();
}
}

Thanks









Related Pages:
Problem with Link To website with my Java Appliaction - Java Beginners
Problem with Link To website with my Java Appliaction  Hello Sir Here is Main Menu Form,I want to open website on Visit US Button Click Plz Give Me Source Code,I have Completed Follownig Code,plz add Visit US Button Code
Javascript coding for link a website to another upon verify the form - Java Beginners
Javascript coding for link a website to another upon verify the form  Pls tell me javascript coding for " open a website when we click the verify button in the form? ( after verifying the form go to the desired website). 
How to add nofollow in website link?
How to add nofollow in website link?  Hi, I want to add nofollow in my outgoing links. What is the code? Thanks   Hi, Here is the code: <a rel="nofollow" href="http://">Click Here to visit</a>
Link to a website
Link to a website  I have created a mobile application.Now I want to insert a link to a website so that when mobile user selects that link he is directed to that website
change cursor on my website - WebSevices
change cursor on my website  i want to change cursor on website. i am new in php. Please tell me it is possible to php.   Hi friend, Code to help in solving the problem : Test function cursor_wait
Link List proble, - Java Beginners
Link List proble,  i have a problem about programming... this is the problem.. -create an application using Linked List this application can add Node to your list and Delete to your list...... my brain is bleeding can you
Problem to print from my properties file - Java Server Faces Questions
Problem to print from my properties file  Hi, I am a new user of this site. It is very interesting. So this is my problem: I have a jsp file where i try to print some messages from my properties file but when i execute
please do respond to my problem sooooon sir - Java Beginners
please do respond to my problem sooooon sir  Hello sir, Sir i have... on the link in my browser the link is opened in the internet explorer.i need to open the link also in my own browser.Hope you will help me out.And also sir i need
How to add "View more results" kind of functionality in my PHP based website?
How to add "View more results" kind of functionality in my PHP based website?   Hi, I want to make a website which will recommend users books.... The problem is that there will me almost more than 100 books for a particular genre. I
jsf command link - Java Server Faces Questions
and if 2nd it goes to second page,but in my code it is not going next page please see my code and give me solution, thanks in advance my code... problem on JSF visit to : http://www.roseindia.net/jsf/commandLink.shtml
website deployment - JSP-Servlet
website deployment  Hi All, Requirment: To fetch records depends... framework : I am able to manage to fetch records from database using Java Beans.../Webapps folder and restart the server. Problem: Since I am using Visual JSF
problem
information, visit the following link: Java Keywords Thanks...problem  Hi, what is java key words   Hi Friend, Java Keywords are the reserved words that are used by the java compiler for specific
problem
problem  hi'sir mai niit student hu.mujhe java ka program samaj me nhi aata mai kya karu and mai kaise study karu please help me.   Learn Java from the given link: Java Tutorials
Countdown timer to show a link
finish, a link appears. The thing is that my musical group will be presenting an EP whitin a month and a half, and we want this countdown to be in the website. The day arrives, and the link that leads to the songs appears. This is the code (you
URL problem
URL problem  Hi. I have created a webpage for my project website. in that i have used frameset to split the page. Now if i click any link in the page its navigating to the another page. but the problem is here in the url its
how to send sms from my website to mobile of particular user.
how to send sms from my website to mobile of particular user.  i had created a website and aim of pjt is whoever the client register for site..... so can u tell the process and how to implemnt this using java
Paypal integration to my website - Struts
that payment details in paypal website....I should get that details to my website...Paypal integration to my website  Hi there, I am working... Buy Now and if I click that it will redirect to paypal website,that is fine I
Hello Sir I Have problem with My Java Project - Java Beginners
Hello Sir I Have problem with My Java Project  Hello Sir I want Ur Mail Id To send U details and Project Source Code, plz Give Me Ur Mail Id
Problem to print from my properties file - Java Server Faces Questions
Problem to print from my properties file  Hi, I am a new user of this site. It is very interesting. So this is my problem: I have a jsp file where i try to print some messages from my properties file but when i execute
PLEASE HELP WITH MY JAVA
PLEASE HELP WITH MY JAVA  Hey my name is Gavin and im a student at school that takes IT. my teacher has gave me a problem and i can't figure it out please help!!!!!!!! it is a for-loop question: Display the first 5 multiples
I need to display parts of my own website on another website in an iframe
I need to display parts of my own website on another website in an iframe  I need to display parts of my own website on another website in an iframe. please refer me how do i do
how gave security of my pages in website????
how gave security of my pages in website????  how gave security of my pages in website
i have problem in that program to my assignment sir - JavaMail
i have problem in that program to my assignment sir   Develop a programmer's editor in Java that supports syntax-highlighting, compilation support, debugging support, etc
how to link differnt modules - Java Beginners
how to link differnt modules  i am doing my final year project which... individually. the prob is how can i link all the 4 modules so that they work... 5.decompression of the msg plz help me out!!!!my review is just after 2 days and still
give information or website address
give information or website address  hi i want u r help .... i m finding code for constructing graph in java but during execting them i have problem bec of packages... has i proceed i came to know
sir plz do respond to my problem immediately - Java Beginners
sir plz do respond to my problem immediately  Hello sir, Iam very happy that you have responded to my problem.The code u sent for the progree bar is a separate program. sir i need to put it in my web browser.sir iam
How to embed an executable plugin in my website?
How to embed an executable plugin in my website?  I want to embed an executable plugin in my website that will return client's Mac address run time. I am working with jsp/servlet. Please Help
mfmailComposeViewController link
mfmailComposeViewController link  Is there any way to get a hyperlink on email text using mfmailComposeViewController in my iPhone application?   To get link on the text, you need to make it HTML enable
com.mysql.jdbc.exceptions.MySQLNonTransientConnectionException: Communications link failure due to underlying exception
link failure due to underlying exception  Hi, In my application...: com.mysql.jdbc.exceptions.MySQLNonTransientConnectionException: Communications link failure due to underlying exception: Tell me how to solve this problem? Thanks   Hi, Some where in your program you
Problem in card demo example.
, but my problem is when I drag of card that show on top, since all the 52 cards...Problem in card demo example.  Hi, I have successfully shows... help me, I am using Eclipse and card demo example by following link http
Problem in show card in applet.
Problem in show card in applet.  The following link contained the card demo with applet. http://www.roseindia.net/java/java... other code will be add in the example or how can I solve my problem. please
I have problem in my Project
I have problem in my Project  Dear Sir, i have problem in my project about Jtable i have EDIT JButton whenevery i was click on edit he is display all data from database but i want to select any row
My Eclipse deployed problem. - Struts
My Eclipse deployed problem.  Dear All, I am facing a problem. When First time I am deploying a web project in eclipse in jboss its fine but, when I am changing the project name by pressing 'f2' and then deploying
What's wrong with my pagination code in JSP?
What's wrong with my pagination code in JSP?  Dear experts, I've tried the following codes which I have copied from Java Ranch forum and deleted...;%@ page language="java" contentType="text/html; charset=UTF-8
problem in html
problem in html  i want that my custmer can upload file or video on my website so plz help and send me the code which i can paste on my web site so people can upload their video and img and plz send the html code becaz my web
how to give link from jsp to jsp page
how to give link from jsp to jsp page  hi this is my following code...="+str+"&id="+id; } } Delete is my servlet file and other servlet... exactly make a link with it   Jsp edit application 1)application.jsp
how to give link from jsp to jsp page
how to give link from jsp to jsp page  hi this is my following code...="+str+"&id="+id; } } Delete is my servlet file and other servlet... exactly make a link with it   Jsp edit application 1)application.jsp
Problem in my code - Development process
Problem in my code  Plz go thru this code. I want to check login and pwd with database. Backend MsAccess , Table name : Reg , Dsn Name: JJ While executing code am getting 404 error User Name Password
this is my code java - Date Calendar
; jTextField1.setText(months); #### This My problem jTextField2.setText(days); #### This My problem jTextField3.setText(years); #### This My problem how...this is my code java  /* * NewJFrame.java * * Created on 11
details of my program - Java Beginners
details of my program  hi 1- allow the customer to order any thing... and the problem was with scanners method i hope its clear for you now .... i know its stupid alittle bit but this is my home work  import java.util.
Please Help To Solve My Problem
Please Help To Solve My Problem  PHP I Have 6 Textbox and 1 ok button. 6 Textbox to Add the 6 Team Name. Each Team Name In String(Like- A,B,C,D,E,F... This Problem With If...Else If...Else Statement But When the More Team
resolution problem in java
resolution problem in java  I designed project in java in my PC when run the same project in some other PC i can't fully view my java forms.Some said that it is resolution problem
jsf command link navigation case - Java Server Faces Questions
jsf command link navigation case  Hi, in my jsf page i have 2 commandlink tags,then how to write navigation case in faces config.xml tell me as soon as possible. Thanks in advance  Hi friend, Command Link Tag
Open website on Button Click - Java Beginners
Open website on Button Click  Hello sir I want to open website on button click using java swing plz help me sir. in my swing application one "VISIT US BUTTON" i want to open my website on Button CLick  Hi Friend
For my website,As soon as the user is able to succesfully login, a Testimonial form appears.
For my website,As soon as the user is able to succesfully login, a Testimonial form appears.  For my website,As soon as the user is able to succesfully login, a Testimonial FORM appears in the same page. How to do. Please Help
Java problem - Java Beginners
Java problem  what are threads in java. what are there usage. a simple thread program in java  Hi Friend, Please visit the following link: http://www.roseindia.net/java/thread/index.shtml Thanks
Problem in request object
Problem in request object  I have created a form where I have file...!!! Here is my code: <html> <head> <title> </title> <link rel="stylesheet" type="text/css" href="css.css" /> </head> <
Website deployment
Website deployment  Hi, I have created a website using servlet and jsp. I'm through with it now i want to deploy my website locally..., till now i was viewing the website by pressing f6 it is working fine. I also
Website deployment
Website deployment  Hi, I have created a website using servlet and jsp. I'm through with it now i want to deploy my website locally..., till now i was viewing the website by pressing f6 it is working fine. I also
Problem to display checkbox item
Problem to display checkbox item  Hi, Following is my code: <...;/div>   2) gettable.jsp: <%@page language="java" import..............:-) it really works But,I want some more help from you. In my program , i have