As bloggers or website owners one of the most daunting tasks we have to face is that of building high quality backlinks to our site. While there are many ways of building backlinks, two of the most popular ways include building links through commenting on dofollow blogs and building...
Sunday, February 23, 2014
Wednesday, February 19, 2014
How To Listen To Any Music For Free Online ?
Everyone likes to listen to music.Music refreshes us,inspires us and make us happy.There are several ways to listen to music.But most of them are not free.You can use youtube to watch music videos.But it takes a lot of time to load youtube videos just for us to listen to...
By:
Unknown
On 6:11 AM
Monday, February 17, 2014
How To Get Alerts On Price Drops While Shopping Online ?

Online shopping has become common now a days.They have helped us to get good products at cheap prices.Every one likes to get offers and coupons for their purchases.We miss a lot of amazing offers for our favorite products just because we can't track the price change regularly.Now here are...
By:
Unknown
On 12:49 AM
Sunday, February 16, 2014
How to Install MySQL & PhpMyAdmin to Apache Webserver in Ubuntu Linux

-------------------------------------------------------Ubuntu 12.04 LTS - Installing phpMyAdminapache2 - How to set up Apache, MySQL ServersHow to Install Apache, PHP, MySQL, and phpMyAdmin in UbuntuInstalling Apache, PHP, MySQL and phpMyAdmin on UbuntuInstalling Apache2 With PHP5 And MySQL Support On UbuntuInstalling Apache2 With PHP5 And MySQL Support On UbuntuHow To Install Linux,...
By:
Unknown
On 12:56 AM
Saturday, February 15, 2014
Visual Basic .NET Tutorial 38 - Displaying Computer information using VB...

Public Class Form1 Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Label1.Text = My.Computer.Name Label2.Text = My.Computer.Info.OSFullName Label3.Text = My.Computer.Info.OSPlatform Label4.Text = My.Computer.Info.OSVersion Label5.Text = SystemInformation.UserName ...
By:
Unknown
On 2:02 PM
Visual Basic .NET Tutorial 37 - How to Download a File in VB.NET

Public Class Form1 Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click My.Computer.Network.DownloadFile("http://programmingknowledge.org/images/header_images.png", "C:/Users/9589693153/Desktop/file/VBProject/VBProject/bin/image.png") End SubEnd Class-----------------------------------------------Download A File From Internet With Visual BasicDownloading Zip Files From Internet With Visual BasicDownload File From Remote Website - VB.NETVB Helper: HowTo: Download a...
By:
Unknown
On 12:48 PM
Thursday, February 13, 2014
Visual Basic .NET Tutorial 36 - How to use Chart /Graph in VB.NET

Public Class Form1 Private Sub Button_LOAD_CHART_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button_LOAD_CHART.Click Me.Chart1.Series("AGE").Points.AddXY("Mark", 33) Me.Chart1.Series("MARKS").Points.AddXY("Mark", 90) Me.Chart1.Series("AGE").Points.AddXY("John", 50) Me.Chart1.Series("MARKS").Points.AddXY("John", 70) Me.Chart1.Series("AGE").Points.AddXY("July", 20) Me.Chart1.Series("MARKS").Points.AddXY("July", 40) Me.Chart1.Series("AGE").Points.AddXY("Poul", 40) Me.Chart1.Series("MARKS").Points.AddXY("Poul", 66) End SubEnd Class-------------------------------Threaded plotting in Visual Studio VB.NET with Windows Forms VB.NET Windows Forms applicationVB.NET winform Chart/GraphVB.NET - advice...
By:
Unknown
On 2:43 PM
Wednesday, February 12, 2014
Visual Basic .NET Tutorial 35 - How to: Play System Sounds and Beep in V...

Public Class Form1 Private Sub BUTTON_SOUND_1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BUTTON_SOUND_1.Click My.Computer.Audio.PlaySystemSound(Media.SystemSounds.Asterisk) End Sub Private Sub BUTTON_SOUND_2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BUTTON_SOUND_2.Click My.Computer.Audio.PlaySystemSound(Media.SystemSounds.Beep) End Sub Private Sub BUTTON_SOUND__Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BUTTON_SOUND_.Click My.Computer.Audio.PlaySystemSound(Media.SystemSounds.Exclamation) End Sub Private...
By:
Unknown
On 2:36 PM
Visual Basic .NET Tutorial 34 - How to Create and Write to a Text File i...

Dim file As System.IO.StreamWriter file = My.Computer.FileSystem.OpenTextFileWriter("TEST.txt", True) file.WriteLine("this is my youtube tutorial") file.WriteLine("this is my youtube tutorial") file.WriteLine("this is my youtube tutorial") file.WriteLine("this is my youtube tutorial") file.WriteLine("this is my youtube tutorial") file.Close()------------------------------How to Write Text to a FileHow to Write to a Text File in VB .NETCreate,...
By:
Unknown
On 1:36 PM
Monday, February 10, 2014
Visual Basic .NET Tutorial 33 - Search and highlight text in Textbox or ...

Dim index As Integer = 0 Dim temp As String = RichTextBox1.Text RichTextBox1.Text = "" RichTextBox1.Text = temp While index < RichTextBox1.Text.LastIndexOf(TextBox1.Text) RichTextBox1.Find(TextBox1.Text, index, RichTextBox1.TextLength, RichTextBoxFinds.None) RichTextBox1.SelectionBackColor = Color.Red index = RichTextBox1.Text.IndexOf(TextBox1.Text, index) + 1 End While-------------------------------------------How to highlight occurrences of a search term in text in Visual...
By:
Unknown
On 2:10 PM
Visual Basic .NET Tutorial 32 - Open File text into Textbox or richTextB...

If (OpenFileDialog1.ShowDialog = DialogResult.OK) Then RichTextBox1.Text = My.Computer.FileSystem.ReadAllText(OpenFileDialog1.FileName) End If---------------------------------Open a .txt file into a richTextBox in VB.NETOpen File text into Textbox - VB.NET ProgrammingVisual C# .NET and Text Files: How to Open a Text FileReading Txt File To...
By:
Unknown
On 1:21 PM
Sunday, February 9, 2014
Visual Basic .NET Tutorial 30 - MP3 Media Player VB.NET

----------------------------------------------------------Searches related to MP3 Media Player in visual basicAxWindowsMediaPlayer from resourceswmplib and vb2010 express how get duration play timeVisual Basic Multimedia Creating a Mp3 Player In VB.netMedia Player control in Visual Basic.NETHow To Make A MP3 Player In VB.NETMedia Player Play Next SongVB 2005 EE - Music and media...
By:
Unknown
On 4:56 AM
Visual Basic .NET Tutorial 29 - Using the Windows Media Player Control w...

--------------------------------------------------------Embedding the Windows Media Player Control in a Visual BasicUsing the Windows Media Player Control with Microsoft Visual StudioUsing the Windows Media Player Control with Visual Basic (Windows)Using the Windows Media Player Control in a .NET FrameworkHow can I loop a song with Windows Media Player in Visual Basic?Searches...
By:
Unknown
On 4:18 AM
Visual Basic .NET Tutorial 28 - AutoComplete ComboBox and a TextBox in V...

-------------------------------------Visual Basic .Net Auto Complete Combo Box and Text BoxHow do I use AutoComplete feature for a ComboBox and a TextBoxAutoComplete ComboBox in VB.Netvb6 - Visual basic 6 textbox autocomplete feature?Visual Basic :: Auto Complete Text Box Or Combo Box In VisualTextbox auto-complete feature -Auto Complete Textbox And Combo...
By:
Unknown
On 4:04 AM
How to install and run GCC compiler in Windows

---------------------------------------HOWTO Install the MinGW (GCC) Compiler- install and use GCC in windows 7 x64 Installing C++ compilersCompiler Help g++ WindowsSearches related to How to install and run G++ compiler in Windowshow to install gcc compiler in windows 7how to install gnu c++ compiler on windowshow to install gcc on windows...
By:
Unknown
On 12:20 AM
Saturday, February 8, 2014
QT C++ GUI Tutorial 30- How to Use QCheckBox and QRadioButton Qt

----------------------------------------------qt - QCheckBox, QRadioButton andHow to get the value of a CheckboxHow to check if checkbox is checked or nothow radio button group togethercheckbox on QListViewThread: Checkboxes in QTableView with my custom modeCheckbox QTableWidgetItemcheck box and signalThread: how to get the index of the checked radio button inside a...
By:
Unknown
On 5:44 AM
QT C++ GUI Tutorial 29- How to use QWebView and Open Web Page in QWebView

----------------------------------------------Searches related to qwebview exampleqwebview sethtml exampleConverting simple QWebView examplSet a proxy for QWebViewQwebview is not loading url on deviceQWebView + HTTPS with certificate exampleqwebview transparent backgroundqwebpage exampleqwebsettings exampleqt webkit exampleqwebview setpageqtwebkitqt webview tutorial...
By:
Unknown
On 5:18 AM
Thursday, February 6, 2014
360 Degrees of Tom Smith ( What More Could You Want? )
Yesterday was fun. Sara Perry is planning to use the amazing 3 sixty space in The Hub on Heslington East for a module on museum exhibition design. The 3 sixty is a room in which you can display images on all four walls and play audio. It's quite a...
By:
Unknown
On 4:58 AM
A Simple Example Booking Project in Google Spreadsheets
.png)
I've had a number of requests for code examples for my Booking Spreadsheet. I have held off sharing the code mainly because it became very complex and wasn't very useful as a starting point for anyone else.But recently, I had to whip an Appointments spreadsheet together that didn't have...
By:
Unknown
On 4:01 AM
Wednesday, February 5, 2014
QT C++ GUI Tutorial 28- How to display a Splash Screen in Qt

-------------------------------------------QSplashScreenSplash screen image is not showing up | Qt Project forumsQSplashScreen Example not working | Qt Project forumsSplash screen on embedded device | Qt Project forums[Solved] QSplashScreen using a PNG with transparent areassplash screen problemShowing a splash screen with transparency.c++ - Qt Splash Screen not showingSearches related to how...
By:
Unknown
On 2:38 PM
Monday, February 3, 2014
Visual Basic .NET Tutorial 27 - How to Add or Embed YouTube Videos In VB...

--------------------------------------------------------Embedding And Playing YouTube Videos In Visual Basic .NETc# - embed video using just urlVisual Basic .NET Play youtube video in windows formPurify Embedding YouTube Videos method in Visual Basic .NETWatch Embedding And Playing YouTube Videos In Visual Basic .NETEmbed youtube videos using .NET Visual Basic .NETSearches related to...
By:
Unknown
On 1:31 PM
Visual Basic .NET Tutorial 26 - How to embed VLC Media Player into VB.NE...

----------------------------------------------------Does VLC media player have a Visual Basic .NET interfaceHow to Embed The VLC media player in Window Form using Visual Basic .NETI want to add VLC media player in window applicationlibvlc media player in Visual Basic .NETVLC Media Player ControlHow can I control VLC (VideoLAN) or an otherVLC...
By:
Unknown
On 1:26 PM
Sunday, February 2, 2014
Visual Basic .NET Tutorial 25 - How to open and show a PDF file inside V...

---------------------------------------------------------------Viewing PDF in Windows forms using VB.NetHow to open .Pdf file in Vb.Net Win formLoading a pdf file in Visual Basic Windows formOpen PDF file Using VB.Net ApplicationHow To View Pdf File In Vb.netfill pdf fields with vb.nethow can i open a PDF file from a formEmbed Excel and...
By:
Unknown
On 12:02 PM
Visual Basic .NET Tutorial 24 - How to launch any Executable(.exe) file ...

-----------------------------------------How to: Open Files Using the OpenFileDialog Component Visual Basic .NET How can I run (start) an external exe file from my program? Visual Basic .NETunable to run visual C# project as an .exe file onVisual Basic .NETmicrosoft visual C# 2010 express "can not find PDB VB.NETVisual Basic .NET "Cannot...
By:
Unknown
On 8:14 AM
Visual Basic .NET Tutorial 23 -How To Use OpenFileDialog (FileName, Filt...

---------------------------------------------------how to filter open file dialog in VB.NetPopulate Listbox From Multi-select OpenFileDialogHow To Use the OpenFileDialog Box in VB.NETHow to open a file using openfiledialog in vb.net?Let users pick a file to open via OpenFileDialog in VB.NETFileDialog.Filter Property (Microsoft.Win32) - MSDNmsdn.microsoft.com/en.../micSearches related to how to use openfiledialog vb.net filtersvb...
By:
Unknown
On 7:54 AM
How Install PHP with Apache Web Server in Ubuntu Linux

------------------------------------Installing PHP5 and Apache on UbuntuConfiguring the PHP Development Environment in Linux UbuntuInstalling Apache2 With PHP5 How do I install Apache and PHP on 11.10?Ubuntu/installing Apache and PHP5Install Apache, PHPInstall Apache, MySQL PHP and phpMyAdmin on Ubuntu...
By:
Unknown
On 3:26 AM
Saturday, February 1, 2014
Visual Basic .NET Tutorial 22 - How to show Running Current Date and Tim...

---------------------------------------------Date Time Functions In Visual Basic Visual BasicGetting the current date in visual BasicDate and Time for Visual BasicVisual Basic Current Date And Time LabelVisual Basic How Can Display Current Time On A VB FormDate & Time using VB.NET -Searches related to running current date and time visual basichow...
By:
Unknown
On 4:24 AM
Visual Basic .NET Tutorial 21 - How to use Timer Control in VB.NET

---------------------------------------------Timer Control for Visual BasicUsing Timers to Perform Regular ActionsVB Timer: This tutorial shows you how to code a simple timer.Using The Timer Control To Launch An AutomaticSimple Timer in Visual Basic 2010 - Using Timer - Visual Basic TutorialHow To Make Countdown Timer - VB.NETMove A Picture With Timer...
By:
Unknown
On 3:51 AM
Visual Basic .NET Tutorial 20 - Understanding Function Procedures in VB.NET

---------------------------------------------How to Call a Function in VBFunction Procedures (Visual Basic)How to Create a Function in VB .NET Functions and ProceduresVB.Net FunctionsCalling Sub and Function ProceduresSearches related to call functions in visual basichow to call a function in visual basic 2010visual basic 6 call functionA Short Beginners Guide To Using Functions...
By:
Unknown
On 3:50 AM
Visual Basic .NET Tutorial 19 - Understanding User Defined Subs VB.NET

------------------------------------------Passing Arguments by Value and by Reference (Visual Basic)Using Parameters in your Subsvb.net - How to Declare new task as SUB with parametersSearches related to Subs VB.NETvb net exit subsub string in vb netvb net static subsub main in vb netsub procedure in vb netvb net partial subvb net...
By:
Unknown
On 3:49 AM
Subscribe to:
Posts (Atom)