- Upvotes Received
- 4
- Posts with Upvotes
- 3
- Upvoting Members
- 4
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
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 | |
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 … | |
Can anybody tell me the diff between keywords and identifiers? Cin and cout in C++ are keywords or identifiers? | |
Re: I have done a similiar program. Hope it could help you... [code=c] #include<stdio.h> #include<conio.h> #include<alloc.h> void main() { int i, j,n,*p,check=1, blank, memspace, mem=0, rowdiff=1; printf("Enter the no. of rows to be printed :"); scanf("%d",&n); blank=n-1; memspace=((n*(n+1))/2); p=(int*)malloc(sizeof(int)* memspace); for(i=0;i<n;i++) { printf("\n"); for(j=0;j<blank;j++) printf(" "); for(j=0;j<check;j++) { if(j==0 || j==(check-1)) … | |
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 … | |
Re: The link no longer works. Can u please post the script | |
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 … | |
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 … | |
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 … | |
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...... | |
[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 … | |
Re: :) :'( ;) :-O :@ :$ :-/ :* :?: :angry: :zzz: :swe:icon_sad: :icon_frown: :icon_rolleyes: :icon_idea: :icon_redface: :icon_redface: :icon_lol: :icon_biggrin: :icon_biggrin: :icon_razz: :icon_razz: :icon_cheesygrin: :icon_question: :icon_confused: :icon_neutral: [LIST=1] :icon_cool: :icon_mrgreen: :icon_mad: :icon_exclaim: :icon_smile: :icon_evil: :icon_surprised: :icon_eek: [/LIST]at: :twisted: | |
[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] | |
[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 … | |
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 … | |
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 … | |
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. */ … | |
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 | |
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") … | |
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 | |
Hey friends , is it possible to send email using program in C/C++? | |
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 … | |
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 … | |
Hey friends , Is there any way to change textcolor in C? I am not able to find any method... | |
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... | |
Re: Use char num[2]; outtextxy(x,y, itoa(integer, num, 10)); It works | |
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?? | |
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. | |
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??? | |
Re: I've also made such long programs and got errors I wasn't able to interpret. The best thing I did at that time is to remove the part of the code after which the error generated. Perhaps the code gave the desired result before appending the erroneous code. The error then … |