- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 14
- Posts with Downvotes
- 11
- Downvoting Members
- 8
I would like to be in Technology field.
- Interests
- playing cricket,reading books,game programming.
47 Posted Topics
can anybody send me list of asp.net sdk along with download link I have .net framework 4 installed on my pc. thank you. | |
when i execute asp.net script in ie it shows blank page but when i execute simple asp or html page it display output,why? | |
i don't know what setting have to make on linux to run jsp programm using tomcat, please tell me what setting and how to do. | |
Re: here is modified code [CODE]class za { public static void main(String[]args) { String x="abcdefghijklmnopqrstuvwxyz"; int ctr; for(ctr=0;ctr<=x.length()-1;ctr++) { if(ctr%2==1) System.out.print(x.charAt(ctr)+" "); else System.out.print(Character.toUpperCase(x.charAt(ctr))+" "); } } }[/CODE] | |
why this code not produce any reaction on any command [CODE]#include<stdio.h> #include<unistd.h> #include<fcntl.h> #include<stdlib.h> void count(char c,char *fn) { int lc=0,wc=0,cc=0,handle; char ch; if(handle=open(fn,O_RDONLY)==-1) { printf("File %s fail to open",fn); return; } while(read(handle,&ch,1)!=0) { if(ch==' '||ch=='\n') { wc++; }else cc++; } if(ch=='\n') { lc++; } close(handle); switch(c) { case 'c': … | |
Re: just replace "repeat" to "Answer" in while condition of do-while loop and declare "Answer" outside the do-while loop. | |
Re: use [CODE]import javax.swing.*;[/CODE] to use JOptionPane. and change [CODE]for (int i=1; i<=10+1;i++) { points[i]=Integer.parseInt(JOptionPane.showInputDialog(null,"num["+i+"];")); ctr = ctr+points[i]+ " "; int[] sortedArray = bubbleSort(points); }[/CODE] to [CODE] for (int i=0; i<10;i++) { points[i]=Integer.parseInt(JOptionPane.showInputDialog(null,"num["+i+"];")); ctr = ctr+points[i]+ " "; int[] sortedArray = bubbleSort(points); }[/CODE] | |
Re: put code inside main method to another method of class product and replace [CODE]import java.util.*; import java.text.*; public class Business{ public static void main (String[] args) { Product firstProd = new Product("K16" ,"Wood screws,brass,20mm", 7.75); firstProd.Product(); } } [/CODE] to [CODE]import java.util.*; import java.text.*; public class Business{ public static void … | |
i want to restart my java swing application when user click on restart button. how to do it using java. ![]() | |
Re: please mark this thread as solved if your problem has solved. | |
i want change my username to R.J.Brandon. please change as early as possible. thanks in advanced. | |
| |
how to set JPEG image to frame as background and then add buttons on it. | |
Hi,all! i want to know which programming language, I should use for game developement. | |
how to get mysql username and password using java of the MySQL install on system. | |
please tell me what is the difference between wireless lan and ethernet technology. | |
Is it possible to create gui programming using C. If yes then please give Example source code. thankx in advanced. | |
how to backup mysql database using java and store backup file into my current directory of source code. | |
i have created program below ,but it does not run successfully why [CODE]import java.sql.*; public class Bank { public static void main(String[] args) throws Exception { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); // TODO code application logic here try{ Connection cn=DriverManager.getConnection("jdbc:odbc:rushiDSN"); System.out.println("Connected Successfully"); Statement stmt=cn.createStatement(); stmt.executeUpdate("CREATE TABLE Author(AuID Number(3), AuName Char(15), AuAddr Char(30))"); System.out.println("Table created … | |
which is the best programming language between java and .net. | |
Re: if(result1<result2){System.out.ptintln("Test one pass")} if(result1>result2){System.out.ptintln("Test two pass")} if(val1<val2 && val3>val2){System.out.ptintln("Test three pass")} if(!(val1>val2) && !(val3>val2)){System.out.ptintln("Test four pass")} | |
Re: you can catch array index out of bound exception. | |
when i double click on my computer icon then all icon of desktop go for a second and then again come but drives does not showing. | |
i want create jar file of my source code using netbean but i dont know how to do that please help! | |
Re: use getText() method in action listener and then execute SQL's update query using that text. | |
Re: the return type of method getAppletInfo() should String as your are returning String value. | |
Re: right click on your source file and click on run file option. | |
![]() | Re: use compareTo method of string to compare two string if it return 0 then they are equal else not equal. Example:- firstString.compareTo(secondString)==0 then equal. |
Re: you can use getSelectedItem() method of combo box to get what color user have choosen and set that color as background color. | |
| |
when i run my code using IDE it run fine but when i run it using command prompt it show following errors Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. C:\Documents and Settings\Administrator>cd\ C:\>cd bank2 C:\bank2>javac *.java CurrentTransaction.java:2: error: package com.mysql.jdbc does not exist import com.mysql.jdbc.Connection; ^ CurrentTransaction.java:3: … | |
please tell me step of converting java source code into jar in netbean or if any software available please send me download link of it. | |
Re: you need to create file through your code. | |
how to write php script on window xp i mean require software and their configuration. ![]() | |
how to store MySQL table data into file and then again from file to table using java program. | |
Re: i it solve your problem then please marked this thread as solved. | |
Re: use scanner it might help you. | |
Re: please this thread as solve if it solve your problem. | |
Re: There are two things package name should always end with semicolon. secondly,package declaration should always be the first statement of your code. | |
when i run my source code on winows xp then progress bar work fine but on linux it just stuck and not run at all, My Code is as follows [CODE]import java.sql.Connection; import java.sql.Statement; import java.awt.BorderLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.File; import java.io.FileReader; import java.io.IOException; import java.sql.DriverManager; import java.text.DateFormat; … | |
| |
In linux whenever i run my gui java programe it does not show Image My Code Is As Follows look at line 77. [CODE] import java.awt.*; import java.awt.event.*; import javax.swing.*; class bank implements ActionListener { JFrame mainframe; JMenuBar mbar; JMenu file,view,help,edit; JMenuItem newacc,exit,login,helpcontent,cust_detail,emp_detail,delEmp,delCust,addEmp; public bank() { mainframe=new JFrame("Bank Application"); try … | |
how to set up frame such that user cannot click other side than the current active frame if click then frame prompt for actvation. Thankx in advanced. | |
What is difference between transaction of saving account and current account? I Am New Please Help Me. Thanks .:$ | |
Re: I Think Net Bean is great other than notepad it also allows you to compile,debug and run you code with few clicks. |
The End.