Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
78% Quality Score
Upvotes Received
4
Posts with Upvotes
3
Upvoting Members
4
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
~10K People Reached
Favorite Tags
Member Avatar for himanjim

The code simply captures your working window as jpeg image and stores it in the same directory as where your java class after compiling by javac is being stored

Member Avatar for Ashan_1
0
2K
Member Avatar for himanjim

I wanna create subdomains dynamically than manually I've got this script but can't make it work...I've got my website hosted on a server..Can anybody tell me that is it [B]possible[/B] to achieve that... [CODE]<?php ############################################################### # cPanel Subdomains Creator 1.1 ############################################################### # Visit [url]http://www.zubrag.com/scripts/[/url] for updates ############################################################### # # Can …

Member Avatar for stewart2011
0
255
Member Avatar for himanjim

Can anybody tell me the diff between keywords and identifiers? Cin and cout in C++ are keywords or identifiers?

Member Avatar for Ancient Dragon
0
152
Member Avatar for livingsword

hi, im a beginner. i hav an assignment on Pascal's triangle. i saw some post over the topic but couldnt get it to work with my code. heres what i have done so far.... [code=c] #include<stdio.h> #include<conio.h> void main() { int a[10][10]; int i,j,c,n; clrscr(); printf("Enter how many lines do …

Member Avatar for vipinkumar512
0
708
Member Avatar for himanjim

I'm really having hard time importing ASPNETDB.mdf to remote server running sqlserver 2005.. I'm using sql server express edition (along with visual web developer 2008) I use the same string [code=asp.net]<add name="aspnetusers" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\ASPNETDB.MDF;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient" />[/code] No connection can be established.... Then I changed that to [code=asp.net] <add …

Member Avatar for crishjeny
0
411
Member Avatar for mahe4us

Hi all, I would like to provide subdomains for my users while they are register into my site. For example, if a user is registering into my site then he selects xxx as his username and once he completed his registeration process successfully. A URL [url]www.xxx.mydomain.com[/url] will be provided to …

Member Avatar for maxima
0
282
Member Avatar for himanjim

Hi, I'm new to jsp I'm writing a java code of simple chat application that consists of an applet on client side and a java server page on server side. My applet is fine but the jsp code shows unusual errors and in most of the cases the browser simply …

Member Avatar for hardikjobalia
0
711
Member Avatar for himanjim

Hi Friends, I'm a web developer bit a new to asp.net. I want to access my remote Ms Sql database through [B]Visual Web Developer[/B] or [B]Sql management studio[/B] but despite of spending so much time and googling I'm not able to do that. My [B]database( [url]www.peclive.com)[/url][/B] is on a server …

Member Avatar for sedgey
0
139
Member Avatar for himanjim

Hi, I' studying various sorting techniques...And one thing I'm not clear about the complexity of the techniques... For e.g the complexity of bubble sort is Average Case=>O(n*n) Worst Case=>O(n*n) Best Case=>O(n*n) Obviously n is the no. of elements in the array... But even in the worst case i.e the array …

Member Avatar for Freaky_Chris
0
148
Member Avatar for himanjim

Hi, I'm a beginner in JSP...I've installed Sun Java System Application Server 9.1 ... I wanna run jsp code just to display "[B]Hello World[/B]" but can't find out where to copy the [B]helloworld.jsp[/B] code (I mean in which folder of Sun directory) to access it using [B][url]http://localhost:4848/helloworld.jsp[/url][/B]........Please help me out......

Member Avatar for gafoorsani
0
106
Member Avatar for himanjim

[B][I]I've designed a simple applet that works fine on My Windows Xp but when I upload it on my webhost server or run it through any server for e.g. Tomcat It shows the following error in Java Console but no error without server [/I][/B] [B]Java Plug-in 1.6.0_02 Using JRE version …

Member Avatar for jasimp
0
109
Member Avatar for acornist

I have a table containing various information describing room requirements for an architectural project with about 500 different rooms. Each record in the table represents a single room and its attributes. There are about 200 attributes in all, but each room uses only a small subset of those attributes. To …

Member Avatar for vssp
0
79
Member Avatar for himanjim

[B]Is there any standard code to capture ur current webpage as image .... I've found one in php but that requires copying of new dll files to ur server...So if u r hosting ur website on some other server...U can't achieve that!! Waiting for ur reply[/B]

Member Avatar for johnywhy
0
139
Member Avatar for himanjim

[B]I'm new to java servlets ...I installed Sun java SDK which acts as an server for running servlets.I spents many hours first just to compile servlets and generate the class files but now I don't have any idea how to run servlets on SDK. I tried a lot on Apache …

Member Avatar for himanjim
0
101
Member Avatar for himanjim

Hey friends I've a doubt regarding my password authentication code given below If we use `session _start` function one need not use the `cookies` as $_SESSION['user'] = $username; $_SESSION['password'] = $password; functions do the same job that cookies would have done so my cookies code is just a clutter?? Here's …

Member Avatar for Puckdropper
0
186
Member Avatar for himanjim

I've got a project to design a chat client in java applets....I've got a way around to implement it but that may be bit an inefficient I've got a client code that communicates with a server program (both in java).Only one client can communicate with server that one time and …

Member Avatar for Ezzaral
0
124
Member Avatar for himanjim

Here is my code for an applet in java it runs well but shows error unreported exception java.io.IOException; at the functions highlighted in green I wanna ask the functions i've highlighted highlighted in green in code are supported in applets? Thnx in advance /* * Java(TM) SE 6 version. */ …

Member Avatar for masijade
0
103
Member Avatar for himanjim

Hi, I've just started data structures....I'm studying Breadth first search and depth first search algo....Though I got some idea about them but after spending hours I can't understand the exact difference between them Which one is better ?? Please help me out

Member Avatar for thekashyap
0
165
Member Avatar for himanjim

Hi... I'm developing a simple script using AJAX and php to update a database...But the script is running fine on IE but not at all on Firefox2.0.0.3....Please help me out Here's my AJAX script var xmlHttp function showUser(str) { xmlHttp=GetXmlHttpObject() if (xmlHttp==null) { alert ("Browser does not support HTTP Request") …

Member Avatar for smalldog
-1
247
Member Avatar for himanjim

Hi.. I'm trying to write a simple program to include a c file in another one.. TEST1.c #include<stdio.h> #include<conio.h> #include<test.c> void main() { printf("%c" str); getch(); } test.c #include<stdio.h> #include<conio.h> extern char str; void main() { str='A'; } Is somethin like this is possible??? Code didn't run successfully

Member Avatar for himanjim
0
100
Member Avatar for himanjim
Member Avatar for GreenDay2001
0
71
Member Avatar for himanjim

Unsigned char is 1 byte long.. it's range is from -128 to 127 Most significant bit is sign bit to indicate whether the char has positive or negative value and the rest 7 bits are meant for storing the actual value of char... so the max +ve value of char …

Member Avatar for Ancient Dragon
0
246
Member Avatar for himanjim

Hi Friends, I want to display a bitmap image in my C++ program running on Turbo C++ 3.0 (16 bit compiler)... I'm doing a project on graphic calculator.....My code is nearly complete but I am not able to display a bitmap image......I have got a code [url]http://www.brackeen.com/home/vga/source/djgpp20/bitmap.c.html[/url] But that doesn't …

Member Avatar for himanjim
0
290
Member Avatar for himanjim

Hey friends , Is there any way to change textcolor in C? I am not able to find any method...

Member Avatar for himanjim
0
159
Member Avatar for himanjim

My header file time.h is being corrupted.. I can't find it on the internet... Can anyone please give me the link to the file or just copy and paste it to the reply of my paste...

Member Avatar for Narue
0
61
Member Avatar for mjmythili

for(i=1;i<10;i++) { cout<<"i= "<<i; } I want to print The label i as well as its value by using Outtextxy. Is it possible. I knew that Outtextxy is used to display strings. but i dont want to use cout.

Member Avatar for vicky_dev
0
573
Member Avatar for himanjim

I have got three PCs connected to internet through a router via switch. IP addresses are allocated to the computers via DHCP. I do have router access password but I can't access configuration mode of the router to configure it using enable command. can anybody suggest the possible reason??

Member Avatar for himanjim
0
91
Member Avatar for himanjim

Hi friends, I have turned scrolling off in one of the frames of my webpage having id bottomFrame. But I want to turn scrolling on when a long web page opens in that frame using javascript. parent.bottomFrame.style.scrolling="yes"( I hope the syntax is correct) doesn't works.

0
73
Member Avatar for himanjim

unsigned int a =0xffff; ~a; printf("%x",a); gives output ffff Complementing function works here. What's use of 0x in 0xffff as unsigned int is of 2 bytes only??? Can anybody suggest???

Member Avatar for Dave Sinkula
1
530
Member Avatar for brianotieno

[B][I][COLOR=Blue]if you run this code in c++ you get the following error at the underlined part is where the problem is : error C2143: syntax error : missing ';' before 'constant' : fatal error C1004: unexpected end of file found Error executing cl.exe.[/COLOR][/I][/B] [CODE] # include <iostream> # include <stdio.h> …

Member Avatar for Dave Sinkula
0
231