Sunday, February 16, 2014
How to Install MySQL & PhpMyAdmin to Apache Webserver in Ubuntu Linux
-------------------------------------------------------
Ubuntu 12.04 LTS - Installing phpMyAdmin
apache2 - How to set up Apache, MySQL Servers
How to Install Apache, PHP, MySQL, and phpMyAdmin in Ubuntu
Installing Apache, PHP, MySQL and phpMyAdmin on Ubuntu
Installing Apache2 With PHP5 And MySQL Support On Ubuntu
Installing Apache2 With PHP5 And MySQL Support On Ubuntu
How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Debian
How to Install MySQL & PhpMyAdmin to Apache Webserver in Ubuntu Linux
-------------------------------------------------------
Ubuntu 12.04 LTS - Installing phpMyAdmin
apache2 - How to set up Apache, MySQL Servers
How to Install Apache, PHP, MySQL, and phpMyAdmin in Ubuntu
Installing Apache, PHP, MySQL and phpMyAdmin on Ubuntu
Installing Apache2 With PHP5 And MySQL Support On Ubuntu
Installing Apache2 With PHP5 And MySQL Support On Ubuntu
How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Debian
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
Label6.Text = SystemInformation.PrimaryMonitorSize.Height
Label7.Text = SystemInformation.PrimaryMonitorSize.Width
Label8.Text = My.Computer.Info.AvailablePhysicalMemory
End Sub
End Class
-------------------------------------------------------
introduction to Visual Basic - Visual Basic
Computer Information in vb.net
Displaying Computer information using Visual Basic.Net |
vb.net - Visual Basic System Information
What is Visual Basic?
Getting Information about the Computer (Visual Basic)
Searches related to computer information visual basic
vb net computer information
visual basic computer language
visual basic computer herunterfahren
visual basic shutdown computer
visual basic my computer
visual basic computer name
visual basic computer sperren
VB Helper: How To Use My Computer Info to display operating
Visual Basic - Getting Hardware Information
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 Sub
End Class
-----------------------------------------------
Download A File From Internet With Visual Basic
Downloading Zip Files From Internet With Visual Basic
Download File From Remote Website - VB.NET
VB Helper: HowTo: Download a file from the web and save it with
How to download a file from an HTTP website
Simple web File download in VB.NET
How to Download file in Visual Basic
Searches related to how to download file from internet visual basic
vb net download file from website
vb script to download files from website
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 Sub End Class
-------------------------------
Threaded plotting in Visual Studio VB.NET with Windows Forms
VB.NET Windows Forms application
VB.NET winform Chart/Graph
VB.NET - advice on displaying graphs and charts
Practical VB.NET Charts and Graphics
VB.NET Graph WinForm example code for Graphs
Easy way to plot graphs with VB.NET and Visual Studio 2010
Visual Basic : PowerPoint : MS Graph-Chart : Write a similar
Chart/Graph - DataGridView
Creating and Displaying graphs and charts in Visual Basic
How to reload a fastline chart using Windows.Forms Visual Basic
Windows Charting Application Visual Basic
Learn the Windows Forms Chart Control
How do I plot data on a Chart in a CLR Form in Visual Basic?
how to draw line graph in Visual Basic?
Plot with visual studio Visual Basic express
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 Sub BUTTON_SOUND_4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BUTTON_SOUND_4.Click My.Computer.Audio.PlaySystemSound(Media.SystemSounds.Hand) End Sub Private Sub BUTTON_SOUND_5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BUTTON_SOUND_5.Click My.Computer.Audio.PlaySystemSound(Media.SystemSounds.Question) End Sub Private Sub BUTTON_SOUND_6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BUTTON_SOUND_6.Click Console.Beep(1000, 2000) End Sub End Class
----------------------------------
How to: Play Sounds in Visual Basic
How to: Play System Sounds in Visual Basic
HowTo: Play the system sounds in Visual Basic 2008
Visual Basic Tutorial Play Sounds
Searches related to system sound visual basic
visual basic play sound
visual basic sound abspielen
visual basic sound generator
visual basic sound einfüge
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 File
How to Write to a Text File in VB .NET
Create, Read, Write, Copy, Move and Delete a Text File .
vb.net - Write mutiple lines to a text file using Visual Basic
vb.net - Create a text file and write to it
.net - create and write to a text file in vb.net
How to write in text file in vb.net
text files - Creating/editing textfile through VB.NET
Create New Line When Writing To A Txt File
Multiple Text Boxes - Write To Txt File On Same Line
Create And Write To File Problem
Writing To TXT File.
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 Studio
Highlight Find Results vb.net
Highlight all occurrences of selected word - Visual Studio visual basic
Highlighting Text VB.Net
Find and Highlight Macro in Microsoft Word
Visual Studio word highlighting How do I make all occurrences of a phrase (search term) in a file to be highlighted in the VS .... Highlight all occurrences of selected word ... How to highlight occurrences of a search term in text in Visual Studio editor for VB.NET
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.NET
Open File text into Textbox - VB.NET Programming
Visual C# .NET and Text Files: How to Open a Text File
Reading Txt File To Textbox - VB.NET
Re: Load from .txt to textboxes -VB.NET
how to open\create edit and update an txt file usin c#
Read text file and show to textbox ... -VB.NET
Visual Basic .NET opening a text file in a text box Visual Basic .NET
How to Open and Read a File in Win Forms using VB.NET
How to save mutiline text box to text file with save dialog in VB.NET
Searches related to how to open text file in textbox in VB.NET
VB.NET load text file to textbox
Visual Basic .NETopen text file in notepad
Visual Basic .NET write text file
Sunday, February 9, 2014
Visual Basic .NET Tutorial 30 - MP3 Media Player VB.NET
----------------------------------------------------------
Searches related to MP3 Media Player in visual basic
AxWindowsMediaPlayer from resources
wmplib and vb2010 express how get duration play time
Visual Basic Multimedia Creating a Mp3 Player In VB.net
Media Player control in Visual Basic.NET
How To Make A MP3 Player In VB.NET
Media Player Play Next Song
VB 2005 EE - Music and media player
visual basic media player ekleme
creare media player visual basic
visual basic media player steuerelement
visual basic media player control
visual basic media player yapma
visual basic media player programmieren
Visual Basic .NET Tutorial 29 - Using the Windows Media Player Control w...
--------------------------------------------------------
Embedding the Windows Media Player Control in a Visual Basic
Using the Windows Media Player Control with Microsoft Visual Studio
Using the Windows Media Player Control with Visual Basic (Windows)
Using the Windows Media Player Control in a .NET Framework
How can I loop a song with Windows Media Player in Visual Basic?
Searches related to windows mediaplayer in visual basic
windows media player control visual basic
use windows media player vb6
visual basic windows media player volume
Windows Media Player In Visual Basic -
Play an audio file with the Media Player control in VB .NET
Visual Basic .NET Tutorial 28 - AutoComplete ComboBox and a TextBox in V...
-------------------------------------
Visual Basic .Net Auto Complete Combo Box and Text Box
How do I use AutoComplete feature for a ComboBox and a TextBox
AutoComplete ComboBox in VB.Net
vb6 - Visual basic 6 textbox autocomplete feature?
Visual Basic :: Auto Complete Text Box Or Combo Box In Visual
Textbox auto-complete feature -
Auto Complete Textbox And Combo Box In Vb - VB.NET
AutoComplete ComboBox in Visual Basic 2008
VB.net Datagridview with autocomplete ...
How Do I Make Autocomplete Textbox
Autocomplete Functionality In Text Box
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++ compilers
Compiler Help g++ Windows
Searches related to How to install and run G++ compiler in Windows
how to install gcc compiler in windows 7
how to install gnu c++ compiler on windows
how to install gcc on windows 7 machine?
How to Install MinGW (Minimalist Gnu C/C++ Compiler)
Installing and Configuring C/C++ Support
Install gcc on windows - GNU Compiler
how to install gnu C compiler on Windows
Saturday, February 8, 2014
QT C++ GUI Tutorial 30- How to Use QCheckBox and QRadioButton Qt
----------------------------------------------
qt - QCheckBox, QRadioButton and
How to get the value of a Checkbox
How to check if checkbox is checked or not
how radio button group together
checkbox on QListView
Thread: Checkboxes in QTableView with my custom mode
Checkbox QTableWidgetItem
check box and signal
Thread: how to get the index of the checked radio button inside a .
TicTacToe, Qt Desktop, Connecting radio buttons
Programatically setting radio buttons
array of radio buttons
QT C++ GUI Tutorial 29- How to use QWebView and Open Web Page in QWebView
----------------------------------------------
Searches related to qwebview example
qwebview sethtml example
Converting simple QWebView exampl
Set a proxy for QWebView
Qwebview is not loading url on device
QWebView + HTTPS with certificate example
qwebview transparent background
qwebpage example
qwebsettings example
qt webkit example
qwebview setpage
qtwebkit
qt webview tutorial
Wednesday, February 5, 2014
QT C++ GUI Tutorial 28- How to display a Splash Screen in Qt
-------------------------------------------
QSplashScreen
Splash screen image is not showing up | Qt Project forums
QSplashScreen Example not working | Qt Project forums
Splash screen on embedded device | Qt Project forums
[Solved] QSplashScreen using a PNG with transparent areas
splash screen problem
Showing a splash screen with transparency.
c++ - Qt Splash Screen not showing
Searches related to how to show splash screen in qt
qt splash screen example
qt splash screen transparent
display QSplashScreen
Splash Screen
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 .NET
c# - embed video using just url
Visual Basic .NET Play youtube video in windows form
Purify Embedding YouTube Videos method in Visual Basic .NET
Watch Embedding And Playing YouTube Videos In Visual Basic .NET
Embed youtube videos using .NET Visual Basic .NET
Searches related to add youtube video to Visual Basic .NET
how to add a video to you tube VB.NET
how to embed you tube video VB.NET
create you tube video VB.NET
how to add you tube video to powerpoint VB.NET
add music to you tube video VB.NET
add you tube video to wordpress VB.NET
Visual Basic .NET Tutorial 26 - How to embed VLC Media Player into VB.NE...
----------------------------------------------------
Does VLC media player have a Visual Basic .NET interface
How to Embed The VLC media player in Window Form using Visual Basic .NET
I want to add VLC media player in window application
libvlc media player in Visual Basic .NET
VLC Media Player Control
How can I control VLC (VideoLAN) or an other
VLC Player and Excel Visual Basic Editor
How to hook VLC media player using Visual Basic .NET
VLC Player in Visual Basic .NET window form
Searches related to vlc media player Visual Basic .NET
videolan vlc media player
media players like vlc
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.Net
How to open .Pdf file in Vb.Net Win form
Loading a pdf file in Visual Basic Windows form
Open PDF file Using VB.Net Application
How To View Pdf File In Vb.net
fill pdf fields with vb.net
how can i open a PDF file from a form
Embed Excel and Adobe PDF Reader into Visual Basic
How to open pdf file in vb.net applicatin?
Open PDF File in VB(Visual Basic)6.0
Searches related to how to open pdf in vb form
visual basic open pdf
visual basic open another form
visual basic 2010 open form
visual basic open form 2
visual basic 6 open form
help adding a pdf file to visual studio I want to load a pdf file on the click of a button. In the ...How to Show PDF file in Visual Basic .Net in Visual Studio View PDF file from my Visual Basic app Problem using matlab function in visual studio Visual Basic? winforms - Viewing PDF in Windows forms using Visual Basic about opening a pdf file in Visual Basic open a pdf file at a specified page in Visual Basic
Visual Studio 2012 and Visual Basic, .net Visual Basic
How to use dll in Visual Studio 6 C++ proj?
Open pdf file in Visual Visual Basic application - Searches related to how to open pdf file in visual studio Visual Basic
visual basic open file How to include a pdf document in Visual Studio 2010
visual Visual Basic fopen How to set Visual Studio to Publish pdf files automatically
Printing a PDF File
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 .NET
unable to run visual C# project as an .exe file onVisual Basic .NET
microsoft visual C# 2010 express "can not find PDB VB.NET
Visual Basic .NET "Cannot find or open the PDB file VB.NET
Visual Basic .NET - run .exe file in another folder with windows form VB.NET
visual Visual Basic .NET - replacement of system() to run an .exe file VB.NET
Call an executable file from Visual Visual Basic .NET
Visual Visual Basic .NET - How to run exe file in Visual Basic .NET code
Visual Basic .NET Tutorial 23 -How To Use OpenFileDialog (FileName, Filt...
---------------------------------------------------
how to filter open file dialog in VB.Net
Populate Listbox From Multi-select OpenFileDialog
How To Use the OpenFileDialog Box in VB.NET
How to open a file using openfiledialog in vb.net?
Let users pick a file to open via OpenFileDialog in VB.NET
FileDialog.Filter Property (Microsoft.Win32) - MSDN
msdn.microsoft.com/en.../mic
Searches related to how to use openfiledialog vb.net filters
vb net openfiledialog filter image doc pdf text png jpg cpp exe
vb net openfiledialog filter excel
How Install PHP with Apache Web Server in Ubuntu Linux
------------------------------------
Installing PHP5 and Apache on Ubuntu
Configuring the PHP Development Environment in Linux Ubuntu
Installing Apache2 With PHP5
How do I install Apache and PHP on 11.10?
Ubuntu/installing Apache and PHP5
Install Apache, PHP
Install Apache, MySQL PHP and phpMyAdmin on Ubuntu
Saturday, February 1, 2014
Visual Basic .NET Tutorial 22 - How to show Running Current Date and Tim...
---------------------------------------------
Date Time Functions In Visual Basic Visual Basic
Getting the current date in visual Basic
Date and Time for Visual Basic
Visual Basic Current Date And Time Label
Visual Basic How Can Display Current Time On A VB Form
Date & Time using VB.NET -
Searches related to running current date and time visual basic
how to display current date and time in visual basic
visual basic get current date and time
Date Time Functions In Visual Basic
Getting and Setting the Current Date and Time
Visual Basic .NET Tutorial 21 - How to use Timer Control in VB.NET
---------------------------------------------
Timer Control for Visual Basic
Using Timers to Perform Regular Actions
VB Timer: This tutorial shows you how to code a simple timer.
Using The Timer Control To Launch An Automatic
Simple Timer in Visual Basic 2010 -
Using Timer - Visual Basic Tutorial
How To Make Countdown Timer - VB.NET
Move A Picture With Timer - VB.NET
Using Timer - VB.NET Tutorials
Visual Basic .NET Tutorial 20 - Understanding Function Procedures in VB.NET
---------------------------------------------
How to Call a Function in VB
Function Procedures (Visual Basic)
How to Create a Function in VB .NET
Functions and Procedures
VB.Net Functions
Calling Sub and Function Procedures
Searches related to call functions in visual basic
how to call a function in visual basic 2010
visual basic 6 call function
A Short Beginners Guide To Using Functions in Visual Basic
Functions in Visual Basic
Using Timer - Visual Basic Tutorial
Visual Basic .NET Tutorial 19 - Understanding User Defined Subs VB.NET
------------------------------------------
Passing Arguments by Value and by Reference (Visual Basic)
Using Parameters in your Subs
vb.net - How to Declare new task as SUB with parameters
Searches related to Subs VB.NET
vb net exit sub
sub string in vb net
vb net static sub
sub main in vb net
sub procedure in vb net
vb net partial sub
vb net protected sub
vb net delegate sub
Sub Statement (Visual Basic)
Subscribe to:
Posts (Atom)
Partner Sites
VideoToGifs.com
EasyOnlineConverter.com
SqliteTutorials.com
Top Online Courses From ProgrammingKnowledge
Python Course http://bit.ly/2vsuMaS
Java Coursehttp://bit.ly/2GEfQMf
Bash Coursehttp://bit.ly/2DBVF0C
Linux Coursehttp://bit.ly/2IXuil0
C Course http://bit.ly/2GQCiD1
C++ Coursehttp://bit.ly/2V4oEVJ
PHP Coursehttp://bit.ly/2XP71WH
Android Coursehttp://bit.ly/2UHih5H
C# Coursehttp://bit.ly/2Vr7HEl
JavaFx Coursehttp://bit.ly/2XMvZWA
NodeJs Coursehttp://bit.ly/2GPg7gA
Jenkins Course http://bit.ly/2Wd4l4W
Scala Coursehttp://bit.ly/2PysyA4
Bootstrap Coursehttp://bit.ly/2DFQ2yC
MongoDB Coursehttp://bit.ly/2LaCJfP
QT C++ GUI Coursehttp://bit.ly/2vwqHSZ