Popular posts from this blog
How to Send message to mobile no using c#
c# Code: string ContactNo = "8343094272" ; // to mobile no string MessageText = "Welcome to Softtechsolving" ; // your message string strUrl = string .Format( "http://api.mVaayoo.com/mvaayooapi/MessageCompose?user=softtechsolving@gmail.com:soft@123&senderID=TEST SMS&receipientno={0}&msgtxt={1}&state=4" , ContactNo, MessageText); WebRequest request = HttpWebRequest.Create(strUrl); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); Stream s = ( Stream )response.GetResponseStream(); ...
How to create bootable pendrive using DOS
100% working Step A: 1. Insert your pendrive 2. Open command prompt (Windows+r then type cmd) 3. Type DISKPART and hit enter ( a new window will appear) Now type the following commands:- 4. LIST DISK and hit enter ( it will show the disk number of your USB drive) 5. SELECT DISK 2 and hit enter ( replace DISK 2 with your USB Drive number e.g Select disk 1) 6. CLEAN and hit enter 7. CREATE PARTITION PRIMARY and hit enter