Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
8% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
16
Posts with Downvotes
13
Downvoting Members
9
3 Commented Posts
0 Endorsements
~13.9K People Reached
Favorite Tags

72 Posted Topics

Member Avatar for Jessurider

can anyone tell me why this c# console command not running on java?.............. i've made a c# console program as given below [CODE=C#] using System; using System.IO; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; namespace face { class Program { public static void Main(string[] args) { String path = …

Member Avatar for thines01
0
281
Member Avatar for Jessurider

can anyone tell how to bring Bitmap class in java just like we do that in C#................ i've got link regarding the Bitmap class in java... but i does'nt know how to bring that in java [URL="http://jwx.sourceforge.net/api/wx/Bitmap.html"]http://jwx.sourceforge.net/api/wx/Bitmap.html[/URL]

Member Avatar for Jessurider
0
212
Member Avatar for Jessurider

can we find a particular image whether exiting or not within a video file.......... i.e imagine i've a picture of a particular person and a video file....and i've to find whether that person in the picture exits or not somewhere within that video file...........

Member Avatar for Jessurider
0
95
Member Avatar for Jessurider

i've created a project .....in which on executing the h.java the second window3.java appears slowly as you can see that by running the below source code.............but the problem is that the second form i.e window3.java on displaying does'nt shows the noire look and feel environment as well as no noire …

Member Avatar for masijade
0
333
Member Avatar for Jessurider

how to convert [B]\[/B] to [B]/[/B] in strings using java String path="C:\Documents and Settings\user\My Documents\Crypt.avi"; Eventhough [B]path.replaceAll("\","/");[/B] does'nt works!!!!! can anyone tell me how to do this?

Member Avatar for Slimmy
0
71
Member Avatar for Jessurider

can anyone tell me how to make appear a jframe in a slow motion in java i'm using netbeans editor..............

Member Avatar for NormR1
0
415
Member Avatar for Jessurider

how to get only the file name from the given path............ [B]example1:[/B] String str1="C:\New Folder\My Data\kk.png" From the above how can we get only the file [B]kk.png[/B] [B]example2: [/B] String str1="C:\New Folder\My Data\Java\Project\yy.bmp" From the above how can we get only the file [B]yy.bmp[/B]

Member Avatar for JamesCherrill
0
102
Member Avatar for Jessurider
Member Avatar for peter_budo
0
88
Member Avatar for Jessurider

can anyone tell me how to [B][U]setOwner[/U][/B] as well as the [B][U]fileKey[/U][/B] for the particular file........ i've retrieved the metadata information but can't able to set values..... [CODE="java"] import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.attribute.AclFileAttributeView; import java.nio.file.attribute.BasicFileAttributes; import java.nio.file.attribute.UserPrincipal; /** * * @author user */ public class …

Member Avatar for Jessurider
0
241
Member Avatar for Jessurider
Member Avatar for Ezzaral
0
115
Member Avatar for Jessurider

can anyone please tell me how to edit the summary of a file(e.g *.txt,*.docs,*.pdf,*.avi.....etc) through by java programming.

Member Avatar for JamesCherrill
0
344
Member Avatar for Jessurider

can anyone tell me how to extract bmp picture frames from a a video file..... and also the reverse process i.e bmp files back to video files...... when i googled i got several stuffs regarding extraction of image files from video file using c#, is there any method in java.....

Member Avatar for Taywin
0
146
Member Avatar for Jessurider
Member Avatar for harinath_2007
0
81
Member Avatar for Jessurider
Member Avatar for Jessurider

i 've got a steganography project in java.......in that we can hide text within pictures and videos......but the major disadvantage is that the hidden data is been destroyed when the image or the video is further modifies with the hidden data............is it possible to do a steganography project in java …

Member Avatar for Taywin
0
271
Member Avatar for Jessurider
Member Avatar for Netcode
0
40
Member Avatar for Jessurider

for my final year project i'm trying to do an IEEE project which titles as DATA LEAKAGE DETECTION SYSTEM..... Description : Aim of our project to develop Data leakage detection Model in which We study The distributor must assess the likelihood that the leaked data came from one or more …

Member Avatar for JamesCherrill
-1
135
Member Avatar for Jessurider

can anyone tell me how to rotate the inner yellow star within the blue star [CODE=java] import java.applet.Applet; import java.awt.Color; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.geom.Path2D; public class app extends Applet { final static int OFFSET = 30; final static int OFFSETS = 30; public void paint(Graphics g) { Graphics2D …

Member Avatar for Ezzaral
1
155
Member Avatar for Jessurider

can anyone tell me why the below code for page backward preventing is not working in firefox but works perfectly in google chrome and internet explorer. can anyone tell the apt code that works in all browsers [CODE]<a href="mainpage.html">log out</a> <script language="JavaScript" type="text/javascript"> window.history.forward(1); </script>[/CODE]

Member Avatar for masijade
0
61
Member Avatar for Jessurider

can anyone tell me how to bring jbutton within a jtable.........and how do do the actionperform of the button can i do this in jframe......

Member Avatar for JamesCherrill
0
135
Member Avatar for Jessurider

i've created a database project in java in which a jtable is used to display the contents of the database.......i've also created an option for insertion of values through a textfield by button actionperformed into the database ......and now when i inserts a particular values through the textfield and when …

Member Avatar for murali_quest
0
201
Member Avatar for Jessurider

WHY WHEN I EXECUTE THE BELOW CODE I GETS AN EXCEPTION [B]java.sql.SQLException: No ResultSet was produced[/B].........BUT EVEN THOUGH INSERTION OPERATION WORKS FINE........CAN ANYONE TELL ME WHY THIS EXCEPTION COMES [CODE=java] Connection co; try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); co = DriverManager.getConnection("jdbc:odbc:hh"); Statement st1; ResultSet result; st1 = co.createStatement(); result=st1.executeQuery("select count(*) from rooms"); result.next(); …

Member Avatar for Jessurider
0
2K
Member Avatar for Jessurider

how can i make the border line to the position shown in the attachment [CODE] package proj; import java.awt.BasicStroke; import java.awt.Color; import java.awt.print.PrinterJob; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.geom.Rectangle2D; import java.awt.print.Book; import java.awt.print.PageFormat; import java.awt.print.Printable; public class j extends javax.swing.JFrame { public int st,i,k1,k2;PrinterJob printJob = PrinterJob.getPrinterJob(); String str[]=new String[20]; …

Member Avatar for NormR1
0
179
Member Avatar for Jessurider

can anyone tell me how here the count of [B]st[/B] is [B]incrementing[/B] like this[B] 2,4,6,8,10 and not like 1,2,3,4,5 [/B] how could i get the count of [B]st[/B] to increment as [B]1,2,3,4,5[/B] [CODE] PrinterJob printJob = PrinterJob.getPrinterJob(); Book book = new Book(); for(int i=0;i<5;i++) { book.append(new IntroPage(), printJob.defaultPage()); } [/CODE] …

Member Avatar for Jessurider
0
281
Member Avatar for Jessurider

i've have developed a project for class students allocation for examination.........the instructions for the project is given in the form itself at the bottom......... i've also added a print option for printing the page that you sees........can anyone tell how to print all the pages...........

Member Avatar for stultuske
0
154
Member Avatar for Jessurider

i've created a jframe with a jpanel with certain things as you can see in the attachment (page1.java) ..............can anyone tell how to print that jpanel(not the whole jframe) and all its contents ........

Member Avatar for NormR1
0
119
Member Avatar for Jessurider

i 've declared a string str, and initialize str with a value as IT s1s2 26, i.e [CODE] String str; str="IT s1s2 26"; [/CODE] normally it prints like this as usual [B]IT s1s2 26[/B] what i want is that :i want the str value to be at the str itself …

Member Avatar for Jessurider
0
102
Member Avatar for Jessurider

[CODE] import java.io.*; import java.util.Arrays; public class r { public static void main(String args[]) { int n; String[] names =new String[30]; InputStreamReader isr=new InputStreamReader(System.in); BufferedReader br=new BufferedReader(isr); try { System.out.print("enter limit:"); n=Integer.parseInt(br.readLine()); for(int i=0;i<n;i++) names[i]=br.readLine(); Arrays.sort(names); System.out.println(Arrays.toString(names)); }catch(IOException e){} } } [/CODE]

Member Avatar for NormR1
0
169
Member Avatar for Jessurider

can anyone tell me why this project(attached) is slow in execution!!!! is there any remedy for this problem...... please anyone tell some tip to make this project to run faster..........

Member Avatar for teo236
0
141
Member Avatar for Jessurider

in visual studio when we make a project in c# with backhand as sql........we can see the sql file and we have to locate it in the corresponding place and specify that location........but in netbeans when we make a project in java and backhand as mysql.....we cannot see where that …

Member Avatar for masijade
0
149
Member Avatar for Jessurider

see this is the code that is written in c# in visual studio 2005........In visual studio w can connect sql(not mysql) with c# and can even see the sql table visually......... can we do that similarly in java in netbeans7.0..... how can i connect sql with java.......do i need to …

Member Avatar for pbl
0
280
Member Avatar for Jessurider

can anyone tell me why sorting is not working in the below code.......... [CODE] using System; class stringarray { public static void Main() { int n,i; string [] str= new string[10]; Console.WriteLine("enter the limit:"); n=int.Parse(Console.ReadLine()); for(i=0;i<n;i++) { str[i]=Console.In.ReadLine(); } Array.Sort(str); for(i=0;i<n;i++) { Console.WriteLine("\n"+str[i]); } } } [/CODE]

Member Avatar for ddanbe
0
114
Member Avatar for Jessurider

see i've brought a new HCL laptop with having 250gb hard disk.......it was provided with ubunto os.......i later installed a fresh windows xp my deleting ubuntu from that partition and installed a fresh windows xp........but right now in my "my computer" only i can find c drive on which i've …

Member Avatar for Rik_
0
113
Member Avatar for Jessurider

hey do we bring blink text in html pages that works in google chrome, and IE ........even though we all know that <blink> </blink> won't work in Google Chrome & Internet Explorer...........is there any other method by which we can bring blinking text.........

Member Avatar for twiss
0
49
Member Avatar for Jessurider

[ICODE] <html> <body> <body bgcolor="#FFE193"> <table width="100%" border="1" cellspacing="1" cellpadding="1"> <tr> <td width="50%" align="left" valign="top" bgcolor="#BDECFE"> <table width="75%" height="180" border="1" align="leftcorner"> <tr> <td colspan=2 style="font-size:12pt;color:#00000;" align="center"> <font size=5> Search Employee </font></td> </tr> <tr> <td><b> Employee Name</b></td> <td>: <input type="text" name="emp_name" id="emp_name"></td> </tr> <tr> <td><b>Department</b></td> <td>: <input type="text" name="emp_dept" id="emp_dept"></td> </tr> …

Member Avatar for teedoff
0
103
Member Avatar for Jessurider
Member Avatar for Jessurider

can anyone tell 1.how to place table manually at some position 2.how can we bring another objects such as images,or text above table........and table behind them

Member Avatar for almostbob
0
98
Member Avatar for Jessurider

[CODE] <html> <head> </head> <body> <br><br><br><br><br><br> <form method="post" name="frm" action="search"> <table border=0 width="300" align="center" bgcolor="#CDDFFF"> <tr><td colspan=2 style="font-size:12pt;color:#00000;" align="center"> <font size=5> Search Employee </font> </td></tr> <tr><td ><b> Employee Name</b></td> <td>: <input type="text" name="emp_name" id="emp_name"> </td></tr> <tr><td ><b>Department</b></td> <td>: <input type="text" name="emp_dept" id="emp_dept"> </td></tr> <tr><td ><b>Email</b></td> <td>: <input type="text" name="email" id="email"> …

Member Avatar for gogreen1
0
123
Member Avatar for Jessurider

can anyone tell me what's the error in this rmi calculator program....... especially the clint.java......... here when i run the rmi calculator.........i gets an applet calculator.....but for all the mathematical addition,sub,div,mul......i'm getting the null value.......i also doubt at whether the try catch is placed wrongly............

Member Avatar for jwenting
0
128
Member Avatar for Jessurider

hey can any one tell me what's the advantages of c#.............when compared to all other languages

Member Avatar for ddanbe
0
61
Member Avatar for Jessurider

hey i'm planning to display all the datas that is in the database as shown in picture [B]output.bmp[/B]........but i can't print the whole thing in the database, instead i could print only the first row in the database as shown in picture [B]database.bmp[/B]..........can anyone tell me how to print the …

Member Avatar for Jessurider
0
97
Member Avatar for Jessurider

I want to make to security question just like the one attached in one of my project........can anyone tell me how to do that.........here i'm planning to save the answer in sql server...........is it possible to do that............

Member Avatar for abelLazm
0
91
Member Avatar for Jessurider

can anyone tell me the error in the below attached code.......... actually when 1 press Numpad1 a message telling NumPad1 is pressed, similarly when i press Numpad3 another message telling that NMumpad3 is pressed.......and also when i press both keys ie. Numpad1 & Numpad3 another message telling that "press any …

Member Avatar for Jessurider
0
99
Member Avatar for Jessurider

can anyone tell me what's the wrong in the code.............when i run this........the updation is not working [CODE] string sq1; SqlCommand cmd1; SqlDataReader rd1; SqlConnection cn; cn = new SqlConnection("Data Source=.\\SQLEXPRESS;AttachDbFilename=J:\\Rcar\\motion\\db_image.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True"); cn.Open(); sq1= "SELECT * FROM Customers"; cmd1 = new SqlCommand(sq1,cn); rd1 = cmd1.ExecuteReader(); //while (rd1.Read()) // …

Member Avatar for abelLazm
0
137
Member Avatar for Jessurider

here table is creating but the values is not inserting [CODE] private void button_Click(object sender, EventArgs e) { SqlConnection cn; cn = new SqlConnection("Data Source=.\\SQLEXPRESS;AttachDbFilename=J:\\Rcar\\motion\\db_image.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True"); if (cn.State==ConnectionState.Closed) { cn.Open(); } SqlCommand cmd; string sq1; sq1 = "CREATE TABLE [" +Box1.Text+ "] (name CHAR(50) PRIMARY KEY," +"id CHAR(15), …

Member Avatar for Mitja Bonca
0
163
Member Avatar for Jessurider

[CODE] SqlConnection cn; cn = new SqlConnection("Data Source=.\\SQLEXPRESS;AttachDbFilename=J:\\Rcar\\motion\\db_image.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True"); if (cn.State==ConnectionState.Closed) { cn.Open(); } SqlCommand cmd; string sq1; sq1 = "CREATE TABLE [B]"+TextBox1.Text+"[/B](myId INTEGER CONSTRAINT PKeyMyId PRIMARY KEY," +"myName CHAR(50), myAddress CHAR(255), myBalance FLOAT)"; cmd = new SqlCommand(sq1, cn); try { cmd.ExecuteNonQuery(); MessageBox.Show("Table Created"); } catch (SqlException sqlexception) …

Member Avatar for Jessurider
0
224
Member Avatar for Jessurider

using [U][B]C#[/B][/U] can anyone tell me how to [B][U]Capture Remote Dekstop[/U][/B] through [B][U]WIFI[/U][/B]............

Member Avatar for Momerath
0
77
Member Avatar for Jessurider

hey i've created a counting mechanism project............in the attached project there is two labels label1 & label2.........on pressing the numberpad1 and numberpad3 keys, the count increments and decrements simultaneously which is been displayed in the corresponding labels (see the attached project)........ can anyone tell me an another method to do …

Member Avatar for agugglez
0
169
Member Avatar for Jessurider

here is a webcam capturing project............. suppose imagine in our system we have connected 3 webcam device, say iBallCam1,iBallCam2,iBallCam2.............and if we run this project there will come an webcam selection option, and in that we have to choose the corresponding webcam device............. what i want to do is this........ can …

Member Avatar for abelLazm
0
89
Member Avatar for Jessurider

hey can anyone help me........... the below code is for getting a jpeg image called rabbit which resides within the bin folder...... [CODE]Image img= getImage("rabit.jpg");[/CODE] instead of placing the image in the bin folder.........can we call a image by giving a path like [B]("D\:Images\rabbit.jpg")[/B] is there any method with which …

Member Avatar for sourabh17
0
422

The End.