http://digitalpbk.blogspot.com/2007/09/windows-and-c-programming.html
. A Window can have many child windows, parent window, and many other windows on the same level.Getting Started to Windows Programming in C(++)?A minimal Windows program must have atleast 2 functionsWinMain()WindowFunc()the WinMain() FunctionThe WinMain() function is the entry point to your program, i.
e, the execution of your program starts with WinMain().int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpszArgs,int WinMode)The WinMain function must Define a window class ...
Published 4 years, 8 months ago
http://digitalpbk.com/perl/install-modules-unrecognized-command-line-option-fstack-protector
/lib/DBI/Gofer/Execute.pm
cp lib/DBI/DBD.pm blib/lib/DBI/DBD.pm
cp lib/Win32/DBIODBC.pm blib/lib/Win32/DBIODBC.pm
cp lib/DBI/PurePerl.pm blib/lib/DBI/PurePerl.pm
cp lib/DBD/ExampleP.pm blib/lib/DBD/ExampleP.pm
cp lib/DBI/ProfileData.pm blib/lib/DBI/ProfileData.pm
/usr/bin/perl.exe -p -
e "s/~DRIVER~/Perl/g" ./Driver.xst > Perl.xsi
/usr/bin/perl.exe /usr/lib/perl5/5.10/ExtUtils/xsubpp -typemap /usr/lib/perl5/5
.10/ExtUtils/typemap -typemap typemap Perl.xs > Perl.xsc && mv Perl.xsc Perl.c
gcc -c ...
Published 2 years, 1 month ago
http://digitalpbk.blogspot.com/2006/11/network-traffic-calculator-using-vc-6.html
.hCursor = LoadCursor(NULL,IDC_ARROW); wc.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH); wc.lpszMenuName = NULL; wc.lpszClassName = szAppName; RegisterClass(&amb;wc); } /*gets network
addresses*/ char localaddr[5][17]; if(getInterfaceList(localaddr,5)) return 1; char szTitle[100]="Traffic Calc on "; strcat(szTitle,localaddr[0]); /*window creation hwnd = CreateWindowEx(WS_EX_TOOLWINDOW|WS_EX_TOPMOST,szAppName,szTitle,WS_SYSMENU,CW_USEDEFAULT,CW_USEDEFAULT,240,40,NULL ...
Published 5 years, 5 months ago
http://digitalpbk.com/windows-gadgets/how-make-windows-gadget-windows-7
basic HTML and Javascript. Gadgets uses Jscript which is a minor variant and is more or less similar to Javascript.
Before jumping to How to make the windows gadget, lets see where the default Gadgets used by windows are present. We can always use those inbuilt gadgets as reference to make our windows gadget.
Finding the default gadgets on Windows 7
The default gadgets on Windows 7 are
located in the drive (typically C:) you installed Windows, Under "Program Files ...
Published 1 year, 6 months ago
http://digitalpbk.blogspot.com/2008/06/perl-download-manager.html
Perl Download Manager
IntroThis is my PERL downloader program, with resume.Only works if SERVER has Parts enabled.Well pretty much thats it #!/usr/bin/perluse strict;use threads;use threads::shared;use HTTP::Request;use HTTP::Response;use Math::Round qw(nearest);use LWP;exit unless(defined $ARGV[0] && -
e $ARGV[0]);open HND,$ARGV[0];NEXT:while(my $url = ){ my $file = substr($url,rindex($url,"/")+1); $file =~ s/%20/_/g; chomp $url; exit if($url eq "" || $file eq ...
Published 3 years, 11 months ago