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
64-bit version of Acrobat PDF Add-in for Office 2010?
VS2008 - Help with preferences
New Windows 7 workstations in existing SBS 2003 domain
Change primary smtp addresses for 29 users using powershell for exchange
xp sp2 clients wont log or ping server 2003
Difference between Icefaces,myfaces,richfaces
in JSF?
Doing an INSERT or Update based on if the record already exists or not while importing data from a text file to SQL SERVER 2005.
Block Logme internally
Trimming the beginning and end of a string
how can i create window service in C# using InstallUtil.exe ??