How To Send SMS via ELMER Server Suite Using VB.NET
SMS or Short Message Service is one of the most common used communication protocol today. It is also now widely used by companies to share information to their clients. Example of these services are product inquiries, SMS alerts, mobile banking and mobile payments. On our company, we use SMS to send...
Source: Fryan's Digital World
Export MS Access Database To CSV
When I was starting to program in windows operating system, my favorite database to use was Microsoft Access database because it is simple and readily available on Microsoft powered PCs. Lately, there was a need for me to convert an old Access database to a plain text. Fortunately I got to find this...
Source: Fryan's Digital World
Check What Versions of .Net Framework And Service Packs Installed on Your Machine
If your a .Net developer or tester, your primary concern when deploying application is the version of the .Net framework installed on the target machine. DNVC is a lightweight, portable and opensource tool that can help you determine which version of .Net Framework is installed on the system including...
Source: Fryan's Digital World
Remove Comments In Your C/C#/C++ Codes Using CommentRemover
Using comments can help make a programs more readable to other developers specially if your developing projects as a Team. But there are times that you may want to remove all of these comments. Instead of manually removing each comment, you can use an open source application that automatically can perform...
Source: Fryan's Digital World
.NET Framework 4.0: Access the computer location using System.Device.Location Namespace
Now finding the physical location of a target computer is never been easy in the newest namespace of .NET Framework 4.0. With the System.Device.Location namespace, application developers can now easily access the computer's location information that may come from multiple providers, such as GPS, Wi-Fi...
Source: Fryan's Digital World
Parallel LINQ: Run Queries On Multi-Core Processors
Nowadays Multi-core processors setup is already a standard in servers and desktop PC. Its even already being used in mobile phones and PDAs which results to power consumption benefits. Microsoft Visual Studio Team Response to Multi-core environment is the enhanced version of LINQ, the Parallel Language...
Source: Fryan's Digital World
Add Confirmation Dialog Box When Closing a VB.NET form
To prevent your user from accidentally closing a form, you can add a confirm dialog that will ask first if the user indeed want to close the active form or cancel it instead. With this form behavior you can prevent losing unsaved work. In VB.NET, you can trap closing of form on FormClosing attribute....
Source: Fryan's Digital World
Get The ConnectionString to SQL Server Using VS Studio Server Explorer
To connect to a SQL Server instance, you have to assign the correct connection string to ConnectionString property of an SqlConnection object. For example.Dim con As New SqlConnectioncon.ConnectionString = "Data Source=.;Initial Catalog=x;Persist Security Info=True;User ID=sa;Password=password"con.Open()Now...
Source: Fryan's Digital World
How to get Time in Hour:Minute Format from the Current DateTime
As database developers, one of the most common task we usually perform on a SQL script is to extract time only from the current DateTime value. This is easy on MS SQL Server database. Here are few lines of sql script that you can copy. The code separates the time in Hour:Minute format and also the date...
Source: Fryan's Digital World
How to Get Elapsed Time in VB.NET
Yesterday I was developing a XML reader where the app will wait for a certain period of time (in minutes) before re-processing the same xml files again. To get elapsed time in minutes, I used the TimeSpan class which represents the time interval together with DateTime object. By setting the Start time...
Source: Fryan's Digital World






