Tuesday 29 November 2011

8 Puzzle,cool android game

Here is a very basic puzzle created by me for android devices.Feel free to download and install..

Download apk(android executable)

Download source code

Tuesday 22 February 2011

Recover windows 7 after removing linux from a Dual boot system

If you install linux on a hard disk partition after windows,it changes MBR(Master boot record), and then if you remove the linux ,it will result in a non bootable windows.
To fix this just follow this steps and enjoy a clean windows booting.
  insert windows installation DVD and boot from it,select repair windows option and   then command prompt.
   now run the following commands
    >diskpart
    >select volume 0
    >list volume
     this will list the drive letter of your windows DVD.(for example G)
    >exit
    >G: (or any other drive letter what you got)
    >cd boot
    >dir
    >bootsect /nt60 SYS /mbr
now exit the command prompt and restart your computer,Enjoy.

Tuesday 8 February 2011

creating network applications in vb6(using winsock control)




This will add winsock control to your toolbox

Now drag and drop this control to your form,name it ws.
Add these controls to your form
CONTROL                                NAME                                CAPTION
command button                    cmdconnect                                connect
command button                    cmddisconnect                            Disconnect
command button                    cmdsend                                      send
command button                    cmdclear                                     Clear
command button                    cmdserver                                   Serve as server
listbox                                       list1                                            chat window
textbox                                     txtip
textbox                                     txtdata                                           
label                                         label1                                          Remote IP
label                                         label2                                          Enter Text below




your form should now look like this
 

Add following code to code window

save the project,make exe by ' FILE -> MAKE EXE ',run two instance of exe, on first one click on 'serve as server',from another connect to first one by providing ip address as '127.0.0.1' & now both programs can chat.


You can chat with remote computers by running the exe on two different computers,serving as server on one and connecting to this from another.

I am giving links to source files for ready code.
simple chat program
Here is a 'link to file transfer & remote file browser' program.
file transfer & remote file browser