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:
MZ-Tools has a single goal: To make your everyday programming life easier. As an add-in to several Integrated Development Environment (IDEs) from Microsoft, MZ-Tools adds new menus and toolbars to them that provide many new productivity features.
"Pippo" <Pippo@discussi ons.microsoft.c om> escribió en el mensaje
news:1002E82B-4880-4BE0-8779-126D29074B98@mi crosoft.com...[color=blue]
> In Vb 6 exist the SPACE function
> How to replace this function in vb dot net?[/color]
But in yours replies you use the Microsoft.Visua lBasic namespace
In my project i want to use a native dot net function and not a old vb
function
Is there an another way?
"Carlos J. Quintero [.NET MVP]" wrote:
[color=blue]
> Hi Pippo:
>
> Try:
>
> Microsoft.Visua lBasic.Strings. Space(number)
>
> --
>
> 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" <Pippo@discussi ons.microsoft.c om> escribió en el mensaje
> news:1002E82B-4880-4BE0-8779-126D29074B98@mi crosoft.com...[color=green]
> > In Vb 6 exist the SPACE function
> > How to replace this function in vb dot net?[/color]
>
>
>[/color]
"Pippo" <Pippo@discussi ons.microsoft.c om> schrieb[color=blue]
> In Vb 6 exist the SPACE function
> How to replace this function in vb dot net?[/color]
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:
MZ-Tools has a single goal: To make your everyday programming life easier. As an add-in to several Integrated Development Environment (IDEs) from Microsoft, MZ-Tools adds new menus and toolbars to them that provide many new productivity features.
"Pippo" <Pippo@discussi ons.microsoft.c om> escribió en el mensaje
news:6AC95AC3-9214-4BE4-8926-42708062F2A0@mi crosoft.com...[color=blue]
> Thanks for your help...
>
> But in yours replies you use the Microsoft.Visua lBasic namespace
>
> In my project i want to use a native dot net function and not a old vb
> function
>
> Is there an another way?
>[/color]
"Carlos J. Quintero [.NET MVP]" wrote:
[color=blue]
> 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" <Pippo@discussi ons.microsoft.c om> escribió en el mensaje
> news:6AC95AC3-9214-4BE4-8926-42708062F2A0@mi crosoft.com...[color=green]
> > Thanks for your help...
> >
> > But in yours replies you use the Microsoft.Visua lBasic namespace
> >
> > In my project i want to use a native dot net function and not a old vb
> > function
> >
> > Is there an another way?
> >[/color]
>
>[/color]
Pippo wrote:[color=blue]
> Thanks for your help...
>
> But in yours replies you use the Microsoft.Visua lBasic namespace
>
> In my project i want to use a native dot net function and not a old vb
> function
>
> Is there an another way?[/color]
How about
"".padright (n)
where n is the number of spaces you need.
--
Rinze van Huizen
C-Services Holland b.v.
"Pippo" <Pippo@discussi ons.microsoft.c om> schrieb:[color=blue]
> But in yours replies you use the Microsoft.Visua lBasic namespace
>
> In my project i want to use a native dot net function and not a old vb
> function[/color]
As it's impossible to write VB.NET applications which don't reference
"Microsoft.Visu alBasic.dll", there is absolutely no reason for not using the
functionality of this library. Developing in VB.NET without using
'Microsoft.Visu alBasic' is developing with VB.NET without actually using it.
--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
news:%23ut2B4Qb FHA.2768@tk2msf tngp13.phx.gbl. ..[color=blue]
> As it's impossible to write VB.NET applications which don't reference
> "Microsoft.Visu alBasic.dll", there is absolutely no reason for not using the
> functionality of this library. Developing in VB.NET without using
> 'Microsoft.Visu alBasic' is developing with VB.NET without actually using it.[/color]
I noticed that there doesn't seem to exist a Microsoft.CShar p.dll. What's the
significance of that, if any?
It means that the capabilities added by the VisualBasic.dll can also be used
by c# users.
No need to define things twice.
Best regards,
Alejandro Lapeyre
"Alex" <pleaszze@no.me ssages> escribió en el mensaje
news:OiyNMzjbFH A.2128@TK2MSFTN GP14.phx.gbl...[color=blue]
> "Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
> news:%23ut2B4Qb FHA.2768@tk2msf tngp13.phx.gbl. ..[color=green]
>> As it's impossible to write VB.NET applications which don't reference
>> "Microsoft.Visu alBasic.dll", there is absolutely no reason for not using
>> the
>> functionality of this library. Developing in VB.NET without using
>> 'Microsoft.Visu alBasic' is developing with VB.NET without actually using
>> it.[/color]
>
> I noticed that there doesn't seem to exist a Microsoft.CShar p.dll. What's
> the
> significance of that, if any?
>
>
>[/color]
"Alejandro Lapeyre" <AlejandroLapey re@jotmail.com> schrieb:[color=blue]
> It means that the capabilities added by the VisualBasic.dll can also be
> used by c# users.
> No need to define things twice.[/color]
LOL...
--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
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:
MZ-Tools has a single goal: To make your everyday programming life easier. As an add-in to several Integrated Development Environment (IDEs) from Microsoft, MZ-Tools adds new menus and toolbars to them that provide many new productivity features.
"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> escribió en el mensaje
news:uU5$5%23mb FHA.3032@TK2MSF TNGP10.phx.gbl. ..[color=blue]
> "Alejandro Lapeyre" <AlejandroLapey re@jotmail.com> schrieb:[color=green]
>> It means that the capabilities added by the VisualBasic.dll can also be
>> used by c# users.
>> No need to define things twice.[/color]
>
> LOL...
>
> --
> M S Herfried K. Wagner
> M V P <URL:http://dotnet.mvps.org/>
> V B <URL:http://classicvb.org/petition/>[/color]
Comment