Deepak Gavkar

Greenhorn
+ Follow
since Feb 23, 2013
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Deepak Gavkar

Maneesh Godbole wrote:Did you try to understand the code? Which part did you not understand? Why do you think this has anything to do with steganography ?
Frankly speaking, dumping some code and asking

Can anyone explain me this stuff thoroughly?

is hardly liable to elicit any response.



Cool buddy, This is not whole project this is just embedding module where the encrypted file is kept into the video. i dont understand how it does actually. I am asking for that only.
11 years ago
This is embedding module for hiding the encrypted file in the *.mpeg and *.dat file, Can anyone explain me this stuff thoroughly?

11 years ago

Jayesh A Lalwani wrote:I am just curious. Did you write 4500 lines of code without testing even one line? or was this code working before and stopped working suddenly? or did you get this code from someone else?

Writing thousands and thousands of line of code and then testing it in all one go is bad bad practice. That's why we emphasise test driven development here. Write your test code first, then write some code.. then improve your test, then write more code, and do this iteratively. You should never run into a case where you have written 4500 lines of code and then you figure out that you cannot connect to database.



Cool buddy this project don't have only one file to run, And i have made the connection with database by using My-Sql while doing R&D in the college lab's.

Jayesh A Lalwani wrote:To make it easier to solve the problem, you should create a SSCCE that reproduces the problem. Since it looks like you are having problem connecting to the database, try to make another program that just connects to database and nothing else




OK, I am going to try it out. Thank you!

Deepak Gavkar wrote:I am facing connectivity problem with my project, i am going to attach here. Please help me out as fast as possible. I am getting error :
F:\1\Multisignature>java AdminMsg
Waiting for the Message
Database Connectivity Error java.sql.SQLException: [Microsoft][ODBC Driver Manag
er] Data source name not found and no default driver specified

PLEASE HELP ME!!!

LINK FOR THE PROJECT : http://www.filedropper.com/multisignature

SOURCE CODE :

THERE IS FOLDER NAMED "TABLE" IN THE PROJECT FOLDER IN THAT THERE IS "SIGNATURE" FILE INCLUDED.

Jayesh A Lalwani wrote:Couple of things

A) don't shout
B) you posted in the wrong forum
C) you will need to post the code here if you want to make it easy for people to help you. Not many people are going to click on that link


Edit: I have modified the subject and moved the thread



Oh sorry!
I am facing connectivity problem with my project, i am going to attach here. Please help me out as fast as possible. I am getting error :
F:\1\Multisignature>java AdminMsg
Waiting for the Message
Database Connectivity Error java.sql.SQLException: [Microsoft][ODBC Driver Manag
er] Data source name not found and no default driver specified

PLEASE HELP ME!!!

LINK FOR THE PROJECT : http://www.filedropper.com/multisignature

Ulf Dittmer wrote:Actually, I don't get it. Again:

The code doesn't open a new window, so what could the user even be resizing?



The last line with the applet tag suggests you're running this through appletviewer, which would be a scenario that you don't need to worry about.



Hmm..Thanks for replying buddy.. ....
11 years ago

Ulf Dittmer wrote:The code doesn't open a new window, so what could the user even be resizing?



Actually, But i want to disable resizing for the running applet cause when you try to resize it the components are misplaced and GUI is not good. I think you get it what i actually want to do.
11 years ago
I don't want to allow user to resize the applet while running. I used setSize(x, y); method but didn't worked and getting problem with setResizable(false); method.
Simple program i have written for testing but not working please help me out anyone. Thanks in advance.

My program code given below :

import java.applet.*;
import java.awt.*;
import java.awt.event.*;

public class Great extends Applet implements ActionListener
{
Label l1,l2,l3;
TextField t1,t2,t3;
Button b1,b2;
public void init()
{
setLayout(new GridLayout(4,2));
l1=new Label("First Number : ");
add(l1);
t1=new TextField(10);
add(t1);
l2=new Label("Second Number : ");
add(l2);
t2=new TextField(10);
add(t2);
l3=new Label("Result : ");
add(l3);
t3=new TextField(10);
add(t3);
b1=new Button("Compare");
add(b1);
b2=new Button("Clear");
add(b2);
b1.addActionListener(this);
b2.addActionListener(this);
}
public void actionPerformed(ActionEvent ae)
{
if(ae.getSource()==b1)
{
int n1,n2;
n1=Integer.parseInt(t1.getText());
n2=Integer.parseInt(t2.getText());
if(n1>n2)
{
t3.setText("The first value is greater");
}
else
{
t3.setText("The second value is greater");
}
}
if(ae.getSource()==b2)
{
t1.setText("");
t2.setText("");
t3.setText("");
}
}
}

/*<applet code="Great.class" height=200 width=350></applet>*/
11 years ago