Microsoft
Software
Hardware
Network
Question : Padding Emptry spaces with Zero's in VB.NET
Hello,
I 'm having problem padding empty spaces in VB.NET
Dim strPad as string = " "
Dim strCheck As Int32 = 10
Dim pad As Char
pad = Convert.ToChar("0")
strPad= strPad.PadLeft(strCheck, pad)
still I get Empty spaces in the strPad
Answer : Padding Emptry spaces with Zero's in VB.NET
Dim strPad As String = " "
strPad = strPad.Replace(" ", 0)
Me.textbox1.text=strPad
Random Solutions
Exchange 2010 RPC error
Need to uninstall winzip using group policy
How to Stop Procedure Running after Message Box Displayed
Outlook 2010 bulk calendar delete
Ethernet crossover cable connect
Windows Server 2008 R2: missing start menu of installed applications
Wireless AP network in a warehouse
Windows 2008 DC and IP Default Gateway settings
Problem with EFS Recovery
split comma delimited values into seperate columns in SQL 2005