Search Results

Showing results 1 to 34 of 34
Search took 0.02 seconds.
Search: Posts Made By: ravikiran032
Forum: VB.NET Aug 2nd, 2009
Replies: 5
Views: 240
Posted By ravikiran032
Forum: VB.NET Aug 2nd, 2009
Replies: 5
Views: 240
Posted By ravikiran032
now i if i go back to my form1 and i close form1, it remains in debug mode. so can you can suggest a solution so that if i close any form, i can get out of debugging state.
Forum: VB.NET Aug 2nd, 2009
Replies: 5
Views: 240
Posted By ravikiran032
I am doing mini project in VB.net. Actually my project contains form1 and form2. I have opened form2 from form1 using "form2.show()" method. While closing form2, my application still remains in...
Forum: VB.NET Jul 29th, 2009
Replies: 1
Views: 215
Posted By ravikiran032
Imports System.Data.SqlClient
Public Class Form3
Dim con As SqlConnection
Dim cmd As SqlCommand
Dim dr As SqlDataReader

Private Sub Button1_Click(ByVal sender As...
Forum: VB.NET Jul 19th, 2009
Replies: 5
Views: 341
Posted By ravikiran032
Forum: VB.NET Jul 19th, 2009
Replies: 5
Views: 341
Posted By ravikiran032
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click


Label2.Text = "before"
Sleep(3000)
Label1.Text =...
Forum: C Jun 24th, 2009
Replies: 3
Solved: doubt in c??
Views: 281
Posted By ravikiran032
# include <stdio.h>
# include <conio.h>
#define squ(x) x*x
main( )
{
float s=10,u=30,t=2,a;
a=2*(s-u*t)/squ(t);
printf(“result :%f”,a);
}
Forum: Java Apr 17th, 2009
Replies: 1
Views: 274
Posted By ravikiran032
chnamsv ,chprtsv , hostent ,ifconfig ,mknamsv ,no ,rmprtsv .... where all these tcp/ip commands are implemented.Is there any programming language that implements these commands or any network tool...
Forum: Shell Scripting Apr 16th, 2009
Replies: 5
Views: 989
Posted By ravikiran032
still it is not deleating files if we give input from file and is working if we give input(y/n) from keyboard.
Forum: Shell Scripting Apr 12th, 2009
Replies: 5
Views: 989
Posted By ravikiran032
Thanks for ur reply
but my problem is not with deleting , it deletes all files only if i provide 'y' through keyboard since it is prompting for "yes/no" to delete files. i want to give input...
Forum: Shell Scripting Apr 10th, 2009
Replies: 5
Views: 989
Posted By ravikiran032
I have created a dos script which deletes files in "g:/documents and settings/ravi kiran/recent" where my OS installed in g: drive. when i run the script it is promting for Y/N. so I have given input...
Forum: Java Mar 1st, 2009
Replies: 8
Views: 710
Posted By ravikiran032
yaa that's true . My server program is listening on some other port. Thanks for your assistance.
Forum: Java Mar 1st, 2009
Replies: 8
Views: 710
Posted By ravikiran032
yes i have printed stack trace . stack trace due to IOException is
"java.net.ConnectException:Connection refused:connect".what might be reasons for this connection reject and how could i get rid of...
Forum: Java Feb 28th, 2009
Replies: 8
Views: 710
Posted By ravikiran032
i am new to java networking. my client program is giving an error
"Couldn't get I/O for the connection to:192.168.1.2" in the below program.will u please help me.and 192.168.1.2 this is my local...
Forum: C Jan 9th, 2009
Replies: 2
Views: 1,083
Posted By ravikiran032
If we consider a pointer variable if takes size of 2 bytes and it can carry max address value of 65535 but actual address are larger than 65535 , how it is able to manage these address..... will u...
Forum: Java Jan 2nd, 2009
Replies: 2
Views: 720
Posted By ravikiran032
i have written the following code and it is not executing due to the following error
dec.java:7:integer number is too large :10000000000

code

import java.util.*;
class dec{
public...
Forum: Java Sep 27th, 2008
Replies: 2
Views: 483
Posted By ravikiran032
i would like to know what digits of ipaddress define. suppose ipaddress of 192.168.0.59 what these numbers 192 ,168 , 0 ,59 defines. does they have any value??
Forum: Java Sep 23rd, 2008
Replies: 2
Views: 949
Posted By ravikiran032
basing on which name our computer hostname is made in "domain name system"?
example: suppose my computer administrator account name is "hunter".does this is carried in the domain name system. so...
Forum: Java Sep 22nd, 2008
Replies: 2
Views: 949
Posted By ravikiran032
i would like to how a host name is stored and it's structure in dns (domain name service) along with ipaddress.by which name a normal client computer is given it's hostname in the dns. here the...
Forum: Java Sep 5th, 2008
Replies: 7
Views: 1,452
Posted By ravikiran032
import java.net.*;
import java.util.*;
public class InternetAddress
{
public static void main(String args[])
{
try
{
InetAddress localaddr = InetAddress.getByName("<name of my...
Forum: Java Sep 5th, 2008
Replies: 7
Views: 1,452
Posted By ravikiran032
i don't know weather it is involved in a network or not. how i should know wheather it is involved in a network or not.
Forum: Java Sep 4th, 2008
Replies: 7
Views: 1,452
Posted By ravikiran032
i would like to know how to get ipaddress using host name of my friends computer in java programming. I have tried using getByName(".....") method ,but it is a failure. will u assist me.......
Forum: Java Aug 30th, 2008
Replies: 2
Views: 1,466
Posted By ravikiran032
I need to know how to keep password in cookies.
Forum: Java Aug 28th, 2008
Replies: 3
Views: 567
Posted By ravikiran032
I was being troubled by the concept of abstract class.i can't understand that let us take an example abstact class "InputStream" .we can implement method read(byte[]) with it's reference. how does...
Forum: Java Aug 27th, 2008
Replies: 4
Views: 971
Posted By ravikiran032
suppose in abstact class "InputStream" we can implement method read(byte[]) with it's reference. how does this method is being refferred by it's abstract class as there will be no instantiation to...
Forum: Java Aug 27th, 2008
Replies: 4
Views: 1,267
Posted By ravikiran032
i would like to know wheather cookies handles passwords.if so where they contain.
Forum: Java Aug 27th, 2008
Replies: 4
Views: 971
Posted By ravikiran032
hey i am beginner in java. i am not able to resolve differences in interface and with abstract class. do abstract class have methods defined??does those methods have body?? if so for abstract classes...
Forum: Java Aug 25th, 2008
Replies: 7
Views: 1,882
Posted By ravikiran032
i don't understand how byte stream could read images. does it need help of applets or else.
Forum: Java Aug 25th, 2008
Replies: 1
Views: 877
Posted By ravikiran032
i am begginer in java. i need to know that
is it necessary to use applets or componetnts or frames to download image from the specified url in java programming. can't we use simple java program...
Forum: Java Aug 24th, 2008
Replies: 7
Views: 1,882
Posted By ravikiran032
can any one write me the program to dowmload imges using java. i have wriitten a program using URL class it is able download index.html pages but not able to download images.

my source code:
...
Forum: Java Jun 19th, 2008
Replies: 3
Views: 1,445
Posted By ravikiran032
how can i execute through browser. plese tell me.
Forum: Java Jun 19th, 2008
Replies: 7
Views: 1,015
Posted By ravikiran032
thanks....it worked.
why that first letter to be capital.
Forum: Java Jun 19th, 2008
Replies: 7
Views: 1,015
Posted By ravikiran032
No. i dont know how to execute in the browser. please help me.
Forum: Java Jun 17th, 2008
Replies: 7
Views: 1,015
Posted By ravikiran032
i am not able to execute applets. i have written the following program.

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

/*
<applet code="sampleapplet" width=200 height=60>
</applet>
*/
public...
Showing results 1 to 34 of 34

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC