http://digitalpbk.blogspot.com/2006/12/drag-n-drop-files-from-explorer-to-vb.html
a form or window to accept files.'fAccept = 1 Enables.Private Declare Function DragQueryFile Lib "shell32.dll" Alias "DragQueryFileA" _(ByVal HDROP As Long, ByVal UINT As Long, ByVal lpStr As String, ByVal ch As Long) As Long'DragQueryFile gives the information to us about the dropped file.'lpStr outputs the filename.Private Declare Sub DragFinish Lib "shell32.dll" _(ByVal HDROP As Long)'This function frees the resources
used during the drag operation ...
Published 5 years, 5 months ago
http://digitalpbk.blogspot.com/2008/05/bash-mp3-player-mpg123-sed-playlist.html
BASH Playlist handler and mpg123 interface
My First "somewhat"
USeful BASH scriptThis small script scans your / directory and generates a playlist of mp3 files, and you can play your file by ./juke . You will get a list of songs matching your criteria.InstallationCopy the source code,given below, to a new file named juke# apt-get install mpg123$ chmod 755 juke$ ./juke westSample output and Controlsarun@XiO3:~/bash$ ./juke happy1 happy birthday2 Avril Lavigne - My Happy ...
Published 3 years, 11 months ago
http://digitalpbk.blogspot.com/2006/11/network-traffic-calculator-using-vc-6.html
Network Traffic Calculator
using VC++ 6 on XP
An IntroductionThis is a simple VC++ (made in 6) program that calculates the total number of bytes transfered in a network connection. Made in and tested for Windows XP.main.cpp/*Network Traffic Calculator(c) digitalpbk.blogspot.com*/#include #include #include #include #define REGULAR 0#define BOLD 1#define ITALIC 2#define ULINE 3void getInterfaceList(char list[][17],int max);int ConnectSock(char sck[],int port,HWND hwnd);void process ...
Published 5 years, 5 months ago
http://digitalpbk.com/laptop/restore-power-plan-missing-saver-high-performance-balanced-windows-7
Power plans missing - Restore power plans on Windows 7
Power saver plan on Windows helps you to give longer battery backup by reducing performance of certain hardware components like processor, graphics card, wireless network card etc and turning off devices which are not
used. One sudden day my power saver option went missing on my sony vaio running Windows 7. Since the battery backup is drastically reduced when the power saver option is missing, I had to desperately find a fix and here ...
Published 2 years, 1 month ago