I have this doubt, how to configure the default min value for sequence in postgresql? Is it possible? I want to change the default min value...
I have wrote the following code into my JavaScript function for generating dynamic(n no of) file upload field. the inline code write into div tag...
Save and quit :w => Save [:w filename writes the content to the specified file from current file] :q => Exit as long as there have been no...
use bigint; my $r = 0x234; my $t = 0x345; my $x1 = $r << 32 | $t; print $x1->as_hex; ### 0x23400000345 You can use the above code.
You can search in Google. Refer the following links. http://www.cprogramming.com/tutorial.html http://www.java2s.com/Tutorial/Cpp/CatalogCpp.htm...
atoi and atof function will return the converted values. your checking the return value is 0 or not. instead of you can check the given string is...
give me the other two files "dev_net.h" and "sniff.h". It will help me to find the problem.
In above code(previous post) space will not come, now I correct it. $val =~ s/&(.*)/{$1}/g; print $val; sorry, I think while copy and...
The POE::Component::Server::IRC::Plugin module is available in CPAN. using this module we can add/delete our plugin. Refer the link....
The problem is your creating the socket in side the for loop in second program. I workout your program. first program output 22 is open...
Are you looking for this. perl -p -e "s/^1[?]/1? Has left the company./" data.txt Output: 1? Has left the company. john 2? paul 3? mary ..........
See the following Example: #include<stdio.h> typedef struct { int inst_addr; }instruction; void copy_struct(instruction...
You need to send two pointers to the function that will copy the structure. void copy_struct(instruction *src, instruction *dest) { *dest=*src;...
Give me your code.. What you tried for this?
Yes.. double click is possible in PERL Tk. Refer the following two links. http://www.perlmonks.org/?displaytype=print;node_id=783121...
See the following code. It will match & followed by n number of numbers/characters. $val =~ s/&(.*) /{$1}/g; print $val;
Refer the following link http://bumppo.net/lists/macperl-webcgi/2000/05/msg00027.html
Refer the link http://fuse4bsd.creo.hu/localcgi/man-cgi.cgi?mkdir+2
in your code split second argument is wrong . you need to give the $date variable. See the following PHP code. process.php <?php...
I got It.. This is the Way.. my $title = $mw->title; my $width = $mw->width; my $height = $mw->height; Note $mw is object of MainWindow....
Separate names with a comma.