Monday, January 24, 2011

How to identify if string contain a number?

System.Text.RegularExpressions.Regex.IsMatch(input, "\d")

So times you will need to check a string, to see if it contains a number.
What’s the best way to do this?


There are several solutions like this function :

TryParse approach:



Public Shared Function IsNumeric(Expression As Object) As Boolean
    Dim isNum As Boolean
    Dim retNum As Double
    isNum = [Double].TryParse(Convert.ToString(Expression), System.Globalization.NumberStyles.Any, System.Globalization.NumberFormatInfo.InvariantInfo, retNum)
    Return isNum
End Function

Check Characters in String approach:



Public NotInheritable Class Extensions
    Private Sub New()
    End Sub
    <System.Runtime.CompilerServices.Extension> _
    Public Shared Function IsNumeric(s As String) As Boolean
        For Each c As Char In s
            If Not Char.IsDigit(c) AndAlso c <> "."C Then
                Return False
            End If
        Next
 
        Return True
    End Function
End Class

What about locales where '.' is the group separator, not the comma (e.g. pt-Br)? What about negative numbers?
Group separators (commas in English)? Currency symbols?
TryParse() can manage all of these as required using NumberStyles and IFormatProvider.

Regular Expressions approach:



System.Text.RegularExpressions.Regex.IsMatch(input, "^\d+$")

This will return true if input is all numbers


If you just want to know if it has one or more numbers mixed in with characters, leave off the ^ + and$.



System.Text.RegularExpressions.Regex.IsMatch(input, @"\d")

Actually I think it is better than TryParse because a very long string could potentially overflow TryParse.

Summary


In my opinion the winner is the Regular Expressions Method

Sunday, January 9, 2011

Secunia Personal Software Inspector (PSI)

 

Upon stumbling through the web, I found a nice tool to check the installed software for security issues and out-dated programs.
So I thought I’d shared it with you…

http://secunia.com/vulnerability_scanning/personal/

They even have an online scanning tool, so you don’t need to install the application http://secunia.com/vulnerability_scanning/online/

Screenshot PSI application :image

FREE PC Security for Home Users

The Secunia PSI is a FREE security tool designed to detect vulnerable and out-dated programs and plug-ins which expose your PC to attacks. Attacks exploiting vulnerable programs and plug-ins are rarely blocked by traditional anti-virus and are therefore increasingly "popular" among criminals.
The only solution to block these kind of attacks is to apply security updates, commonly referred to as patches.
Patches are offered free-of-charge by most software vendors, however, finding all these patches is a tedious and time consuming task.
Secunia PSI automates this and alerts you when your programs and plug-ins require updating to stay secure.
Download the Secunia PSI now and secure your PC today - free-of-charge.


Secunia PSI Watch: How to install and use the Secunia PSI 2.0

Current version:
2.0

Latest release:
5th Jan, 2011

File size:
1,737,088 bytes

Alternate download link: ftp://ftp.secunia.com/PSISetup.exe

Older version of the Secunia PSI can be downloaded at:

http://secunia.com/PSI1Setup.exe

System Requirements

The list of requirements that must be met for the Secunia PSI to function correctly are:

Supported Operating Systems (32 & 64 bit):
  • Microsoft Windows 7
  • Microsoft Windows Vista SP 1 or later
  • Microsoft Windows XP - SP 3
Privileges

To install and run the Secunia PSI you require administrative privileges.

Connectivity

Access to Secunia's encrypted servers via SSL (https://psi.secunia.com:443/) and access to Microsoft Windows Update servers,
see also Software Requirements below

Software Requirements

The latest version of Microsoft Update.
You can determine whether or not you are running the latest version by visiting update.microsoft.com.
If you are able to check your system for missing updates through this tool, your system should function properly with the Secunia PSI.

Hardware Requirements:

There are no additional hardware requirements.
If your computer runs any of the above mentioned Operating Systems, then Secunia PSI should work.

Tuesday, December 7, 2010

VB.NET : Check TextBox For Non-Numeric Values

Public Function CheckTextBox(ByVal textb As TextBox, ByVal key As KeyPressEventArgs, Optional ByRef err As String = "") As Boolean
 
       Select Case Asc(key.KeyChar)
           Case 8 To 15
               Return True
           Case 48 To 57
               Return True
           Case 127
               Return True
           Case Else
               err = "Illegal characters have been put in!" + vbCrLf + "Please only use numeric characters."
               Return False
       End Select
   End Function

VB.NET : Sort Collection Made Easy

  
Public Function SortStringCollection(ByVal Col As Collection) As Collection
        ArrayList.Adapter(Col).Sort()
        Return Col
    End Function

Wednesday, November 3, 2010

Test if Integer has been set : Nullable Value Types

For example, let's say that you have an integer for tracking some value and it can be positive and negative.
It is also possible for the value to be not set yet.
How do you detect that the value hasn't been set yet?
You typically come up with some arbitrary number like 99999999 and hope that the real value is never actually 999999999.

A better way since .NET 2.0, Nullable Value Types
Class [MyClass]
 
Private someValue As System.Nullable(Of Integer)
    Public Sub New()someValue = Nothing
End Sub
 
Public Function GetSomeValue() As Integer
    If someValue IsNot Nothing Then
        Return someValue
    Else
        Throw New Exception("Some Value has not been set")
    End If
End Function
 
End Class

This is a much cleaner and safer way than checking for some arbitrary number like 999999999.

Following snippet from Microsoft explains :
http://msdn.microsoft.com/en-us/library/ms235245(v=VS.100).aspx




So what are Nullable Value Types ?




Sometimes you work with a value type that does not have a defined value in certain circumstances.
For example, a field in a database might have to distinguish between having an assigned value
that is meaningful and not having an assigned value.
Value types can be extended to take either their normal values or a null value. Such an extension is called a nullable type.

Each nullable type is constructed from the generic Nullable(Of T) structure.
Consider a database that tracks work-related activities.
The following example constructs a nullable Boolean type and declares a variable of that type.
You can write the declaration in three ways:


Dim ridesBusToWork1? As Boolean
Dim ridesBusToWork2 As Boolean?
Dim ridesBusToWork3 As Nullable(Of Boolean)

The variable ridesBusToWork can hold a value of True, a value of False, or no value at all. Its initial default value is no value at all, which in this case could mean that the information has not yet been obtained for this person. In contrast, False could mean that the information has been obtained and the person does not ride the bus to work.

You can declare variables and properties with nullable types, and you can declare an array with elements of a nullable type.
You can declare procedures with nullable types as parameters, and you can return a nullable type from a Function procedure.

You cannot construct a nullable type on a reference type such as an array, a String, or a class.
The underlying type must be a value type. For more information, see Data Type Implementation (Visual Basic).

 



How to Use a Nullable Type Variable?




The most important members of a nullable type are its HasValue and Value properties.
For a variable of a nullable type, HasValue tells you whether the variable contains a defined value.
If HasValue is True, you can read the value from Value.
Note that both HasValue and Value are ReadOnly properties.


Default Values
When you declare a variable with a nullable type, its HasValue property has a default value of False. This means that by default the variable has no defined value, instead of the default value of its underlying value type. In the following example, the variable numberOfChildreninitially has no defined value, even though the default value of the Integer type is 0.



Dim numberOfChildren? As Integer

A null value is useful to indicate an undefined or unknown value.
If numberOfChildren had been declared as Integer, there would be no value that could indicate that the information is not currently available.


Storing Values

You store a value in a variable or property of a nullable type in the typical way. The following example assigns a value to the variable numberOfChildren declared in the previous example.


numberOfChildren = 2

If a variable or property of a nullable type contains a defined value, you can cause it to revert to its initial state of not having a value assigned. You do this by setting the variable or property to Nothing, as the following example shows.


numberOfChildren = Nothing

Note

Although you can assign Nothing to a variable of a nullable type, you cannot test it for Nothing by using the equal sign.
Comparison that uses the equal sign, someVar = Nothing, always evaluates to Nothing.
You can test the variable's
HasValue property for False, or test by using the Is or IsNot operator.


Retrieving Values
To retrieve the value of a variable of a nullable type, you should first test its HasValue property to confirm that it has a value.
If you try to read the value when HasValue is False, Visual Basic throws an InvalidOperationException exception.
The following example shows the recommended way to read the variable numberOfChildren of the previous examples.


If numberOfChildren.HasValue Then
    MsgBox("There are " & CStr(numberOfChildren) & " children.")
Else
    MsgBox("It is not known how many children there are.")
End If

A database is one of the most important places to use nullable types.
Not all database objects currently support nullable types, but the designer-generated table adapters do.
See "TableAdapter Support for Nullable Types" in TableAdapter Overview.


See Also


Tasks
Troubleshooting Data Types (Visual Basic)

Reference
InvalidOperationException
If Operator (Visual Basic)
Is Operator (Visual Basic)
IsNot Operator (Visual Basic)
HasValue

Concepts
Data Types in Visual Basic
TableAdapter Overview
Local Type Inference (Visual Basic)
Other Resources
Data Type Implementation (Visual Basic)

techPhile: Using VB keywords as Variables

techPhile: Using VB keywords as Variables

Credits goto : Cody Schouten


Using VB keywords as Variables

In C#, a name of a get/set accessor was not a keyword but in VB.Net it was. No matter what libraries or how many different online code converters I tried, I could not get it to work. I finally resorted to google and found out that you can surround a keyword with brackets ([ ]) and than you can use that keyword however you need. In my case it allowed me to use custom sinks in .NET Remoting. Here's an example:

Dim [New] as String
New = "Blah"

As a very BIG note: Be careful when using it. When you can name something other than a reserved keyword, do so. It can cause many issues if you use this unwisely.

Sunday, October 31, 2010

VB .NET, C# Code Converter - Fryan's Digital World

VB .NET, C# Code Converter - Fryan's Digital World

I already had plenty of .NET projects where I use either VB.NET or C# language to write codes. If a client wishes to convert existing VB project to C# or vice-versa then I usually use free VS Studio add-in to do it. But aside from add-ins, there are several web apps that can perform the same task. Here is a list of VB .NET to C# and C# to VB.NET converters I've used in the past.


1. Developer Fusion VB.NET to C#
Convert VB.NET to C# and Vice-Versa

2. KamalPatel.Net - Convert C# to VB .NET. An offline version with full source code is also available for download.


3. Code Translation for .NET (C#-VB.NET)


Take note that all this web apps doesn't make a copy of your sourcode to protect your intellectual right. Everything is processed in the server's memory and returned immediately to the browser.

Wednesday, October 6, 2010

mRemote : multi-tab remote connections manager

image

image mRemote is a full-featured, multi-tab remote connections manager.

http://www.mremote.org/wiki/

It allows you to store all your remote connections in a simple yet powerful interface.

Currently these protocols are supported:

RDP (Remote Desktop)
VNC (Virtual Network Computing)
ICA (Independent Computing Architecture)
SSH (Secure Shell)
Telnet (TELecommunication NETwork)
HTTP/S (Hypertext Transfer Protocol)
Rlogin (Rlogin)
RAW

image

mRemote is a multi-tab, multi-protocol remote connections mananger written mainly in VB.NET and some bits in C# 2.0.

External Programs can be used, for example Dameware :

clip_image001[4]

Features


Free and Open Source, released under the GPL
Panels and tabs allow to group certain connections together, dock them to any side of the window or completely undock them and move them to another screen for example
Multiple supported protocols (RDP, VNC, ICA, SSH, Telnet, RAW, Rlogin and HTTP/S)
Easy to organize and maintain list of connections
Inheritance makes it possible to store properties on folder basis and let the underlying connections inherit this info
Support for importing connections from Active Directory
Allows creating nested containers (folders) to categorize connections
"Quick Connect" feature to quickly open a connection without creating an entry
"Quick Search" feature to quickly find a connection while typing
Support for SCP/SFTP (SSH) file transfers
Assign icons to connections to easily identify purpose
Screenshot manager allows to collect multiple screenshots and save them all together or copy them to the clipboard
View remote session info and log off sessions (RDP)
Portable
Auto-Reconnect feature
"Auto-Update" feature
SQL Server support
Show description tooltips when hoovering over connections
System tray icon with connection menu
Fullscreen (Kiosk) mode
Assign global credentials to use when no information is provided on connection basis
Host Up/Down (Ping) feature shows if the selected host answers to a ping

System Requirements


Supported Operating Systems:
Windows XP
Windows Vista

Prerequisites:


Microsoft .NET Framework 2.0
Microsoft Terminal Services Client 6.0
Needed if you use RDP. mstscax.dll and/or msrdp.ocx must be registered.
PuTTY
Needed if you use Telnet, SSH, Rlogin or RAW. Included in all packages.
Citrix ICA Client
Needed if you use ICA. wfica.ocx must be registered.

ATTENTION!
mRemote was only tested under 32bit environments, so 64bit systems are unsupported but may run mRemote just as usual.

Download mRemote (Change Log)
Downloads are provided in four packages, the setup package, binary package, portable package and the source package.

The setup package is the compiled version of mRemote which comes in the form of a NSIS generated setup. (The common/fastest way to get mRemote up and running)

The portable package consists of the same files as the bin package but contains an modified version of the executable which stores and loads all your settings from files in the application's directory. This package can be used to run mRemote from an USB stick an preserve your configuration wherever you go.

The binary package is a zip package and contains the same files as the setup package but has no automated installer.

The source package is a zip package and contains the mRemote source code.

English Release:

Setup Package

Download V1.50

Portable Package

Download V1.50

Binary Package

Download V1.50

Source Package

Download V0.50

http://www.mremote.org/wiki/Edit.aspx?Page=Downloads&Section=5

Licensing
mRemote is released under the GPL (GNU General Public License)

Licensing

mRemote is released under the GPL (GNU General Public License)

Friday, October 1, 2010

Windows Tip of the Day: Finding the MAC Address of Remote Computer (Advanced)

Windows Tip of the Day: Finding the MAC Address of Remote Computer (Advanced)

Every device on a TCP/IP network has a unique number assigned to it called the MAC (Media Access Control) address. The MAC address is used by the network hardware such as routers, switches, etc. to send traffic from one device to another device on your network.

Your computer uses a service called ARP (Address Resolution Protocol) to resolve and track the TCP/IP and MAC address of the remote devices that you're communicating with. This information is handy for doing semi-low level network troubleshooting. It can also be used for granting or denying permissions to a network segment or device on that network.

To determine the MAC address of a remote device:

  • Open the MS-DOS prompt (From the Run... command, type "CMD" and press Enter).
  • Ping a remote device that you want to find the MAC address (for example: PING 192.168.0.1).
  • Type "ARP -A", and press Enter.

Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\WINDOWS>arp -a


Interface: 192.168.1.100 --- 0x10004
Internet Address Physical Address Type

192.168.1.1 aa-fb-c8-34-da-7a dynamic

Tuesday, September 21, 2010

Make your application extensible with Reflection

Public Shared Function LoadAll(Of T)() As List(Of T)
Dim services As New List(Of T)()

For Each type As Type In Assembly.GetCallingAssembly().GetTypes()
If type.IsSubclassOf(GetType(T)) AndAlso Not type.IsAbstract AndAlso Not type.IsInterface Then
services.Add(DirectCast(Activator.CreateInstance(type), T))
End If
Next

Return services
End Function