G
Guest
In Vb 6 exist the SPACE function
How to replace this function in vb dot net?
How to replace this function in vb dot net?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Pippo said:In Vb 6 exist the SPACE function
How to replace this function in vb dot net?
Carlos J. Quintero said:Then use:
New String(" "c, n)
--
Best regards,
Carlos J. Quintero
MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA
You can code, design and document much faster.
Free resources for add-in developers:
http://www.mztools.com
Pippo said:Thanks for your help...
But in yours replies you use the Microsoft.VisualBasic namespace
In my project i want to use a native dot net function and not a old vb
function
Is there an another way?
Pippo said:But in yours replies you use the Microsoft.VisualBasic namespace
In my project i want to use a native dot net function and not a old vb
function
Herfried K. Wagner said:As it's impossible to write VB.NET applications which don't reference
"Microsoft.VisualBasic.dll", there is absolutely no reason for not using the
functionality of this library. Developing in VB.NET without using
'Microsoft.VisualBasic' is developing with VB.NET without actually using it.
Alejandro Lapeyre said:It means that the capabilities added by the VisualBasic.dll can also be
used by c# users.
No need to define things twice.

Carlos J. Quintero said:
Herfried K. Wagner said:| However, .NET makes it possible for C# developers to take advantage
| of all the power of Visual Basic .NET.
I doubt that ;-))).
Herfried K. Wagner said:C# will support some additional type keywords and operators for dealing with
nullable types:
<URL:http://msdn2.microsoft.com/library/2cf62fcy(en-us,vs.80).aspx>
Cor Ligthert said:For the VBNet development team it is of couse easier to get the same
things as in C# than in the opposite posistion.
C# is ECMA.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.