Connecting Tech Pros Worldwide Help | Site Map

Dll with VB.Net

Nick
Guest
 
Posts: n/a
#1: Nov 21 '05
I am stuck with a very basic issue.
I try to create a dll with VB.NET. I find in the documentation that I should
be able to set that up in the project property dialog:
Common Properties - General - Output Type.
It gives me "Windows Application" and "Console Application" but not "dll
library".

When I create a new project, I have 5 choices:
- Windows Application
- Console Application
- ASP.NET Web Application
- ASP.NET Web Service
- ASP.NET Mobile WebApplication

again, no DLL library project. Am I missing something?

(I am using VB.net Standard - is the dll option not included here?)

Thanks for help...
Nick


CJ Taylor
Guest
 
Posts: n/a
#2: Nov 21 '05

re: Dll with VB.Net


Standard cannot create DLL's.

Otherwise, it would be listed as Class Library...


"Nick" <NickNickNick@freenet.de> wrote in message
news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...[color=blue]
> I am stuck with a very basic issue.
> I try to create a dll with VB.NET. I find in the documentation that I[/color]
should[color=blue]
> be able to set that up in the project property dialog:
> Common Properties - General - Output Type.
> It gives me "Windows Application" and "Console Application" but not "dll
> library".
>
> When I create a new project, I have 5 choices:
> - Windows Application
> - Console Application
> - ASP.NET Web Application
> - ASP.NET Web Service
> - ASP.NET Mobile WebApplication
>
> again, no DLL library project. Am I missing something?
>
> (I am using VB.net Standard - is the dll option not included here?)
>
> Thanks for help...
> Nick
>
>[/color]


Imran Koradia
Guest
 
Posts: n/a
#3: Nov 21 '05

re: Dll with VB.Net


As CJ mentioned, there's no class library option in the standard version.
Read this:
http://groups.google.com/groups?th=a55dbb4e470863c1
Its got a work around for this problem.

hope that helps..
Imran.

"Nick" <NickNickNick@freenet.de> wrote in message
news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...[color=blue]
> I am stuck with a very basic issue.
> I try to create a dll with VB.NET. I find in the documentation that I[/color]
should[color=blue]
> be able to set that up in the project property dialog:
> Common Properties - General - Output Type.
> It gives me "Windows Application" and "Console Application" but not "dll
> library".
>
> When I create a new project, I have 5 choices:
> - Windows Application
> - Console Application
> - ASP.NET Web Application
> - ASP.NET Web Service
> - ASP.NET Mobile WebApplication
>
> again, no DLL library project. Am I missing something?
>
> (I am using VB.net Standard - is the dll option not included here?)
>
> Thanks for help...
> Nick
>
>[/color]


Nick
Guest
 
Posts: n/a
#4: Nov 21 '05

re: Dll with VB.Net


Thanks!!!!
That is very valuable information!
Andi


"CJ Taylor" <[cege] at [tavayn] dit commmmm> schrieb im Newsbeitrag
news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...[color=blue]
> Standard cannot create DLL's.
>
> Otherwise, it would be listed as Class Library...
>
>
> "Nick" <NickNickNick@freenet.de> wrote in message
> news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...[color=green]
> > I am stuck with a very basic issue.
> > I try to create a dll with VB.NET. I find in the documentation that I[/color]
> should[color=green]
> > be able to set that up in the project property dialog:
> > Common Properties - General - Output Type.
> > It gives me "Windows Application" and "Console Application" but not "dll
> > library".
> >
> > When I create a new project, I have 5 choices:
> > - Windows Application
> > - Console Application
> > - ASP.NET Web Application
> > - ASP.NET Web Service
> > - ASP.NET Mobile WebApplication
> >
> > again, no DLL library project. Am I missing something?
> >
> > (I am using VB.net Standard - is the dll option not included here?)
> >
> > Thanks for help...
> > Nick
> >
> >[/color]
>
>[/color]


One Handed Man \( OHM - Terry Burns \)
Guest
 
Posts: n/a
#5: Nov 21 '05

re: Dll with VB.Net


Standard does not have the template for a class library, but I thought you
can still create a class library.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Use the following to email me

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))

End Sub

Private Function ob(ByVal email As String, ByVal inc As Boolean) As
String

Dim ch() As Char
Dim i As Int32
Dim stepValue As Int16

If inc Then stepValue = 1 Else stepValue = -1

ch = email.ToCharArray()

For i = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
Next

Return New String(ch)

End Function


Time flies when you don't know what you're doing

"CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...[color=blue]
> Standard cannot create DLL's.
>
> Otherwise, it would be listed as Class Library...
>
>
> "Nick" <NickNickNick@freenet.de> wrote in message
> news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...[color=green]
> > I am stuck with a very basic issue.
> > I try to create a dll with VB.NET. I find in the documentation that I[/color]
> should[color=green]
> > be able to set that up in the project property dialog:
> > Common Properties - General - Output Type.
> > It gives me "Windows Application" and "Console Application" but not "dll
> > library".
> >
> > When I create a new project, I have 5 choices:
> > - Windows Application
> > - Console Application
> > - ASP.NET Web Application
> > - ASP.NET Web Service
> > - ASP.NET Mobile WebApplication
> >
> > again, no DLL library project. Am I missing something?
> >
> > (I am using VB.net Standard - is the dll option not included here?)
> >
> > Thanks for help...
> > Nick
> >
> >[/color]
>
>[/color]


CJ Taylor
Guest
 
Posts: n/a
#6: Nov 21 '05

re: Dll with VB.Net


Wow....

take that spammers...

=)


"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in message
news:%23EawQWiqEHA.3988@tk2msftngp13.phx.gbl...[color=blue]
> Standard does not have the template for a class library, but I thought you
> can still create a class library.
>
> --
>
> OHM ( Terry Burns )
> . . . One-Handed-Man . . .
>
> Use the following to email me
>
> Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles Button1.Click
>
> Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))
>
> End Sub
>
> Private Function ob(ByVal email As String, ByVal inc As Boolean) As
> String
>
> Dim ch() As Char
> Dim i As Int32
> Dim stepValue As Int16
>
> If inc Then stepValue = 1 Else stepValue = -1
>
> ch = email.ToCharArray()
>
> For i = 0 To ch.Length - 1
> ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
> Next
>
> Return New String(ch)
>
> End Function
>
>
> Time flies when you don't know what you're doing
>
> "CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
> news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...[color=green]
> > Standard cannot create DLL's.
> >
> > Otherwise, it would be listed as Class Library...
> >
> >
> > "Nick" <NickNickNick@freenet.de> wrote in message
> > news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...[color=darkred]
> > > I am stuck with a very basic issue.
> > > I try to create a dll with VB.NET. I find in the documentation that I[/color]
> > should[color=darkred]
> > > be able to set that up in the project property dialog:
> > > Common Properties - General - Output Type.
> > > It gives me "Windows Application" and "Console Application" but not[/color][/color][/color]
"dll[color=blue][color=green][color=darkred]
> > > library".
> > >
> > > When I create a new project, I have 5 choices:
> > > - Windows Application
> > > - Console Application
> > > - ASP.NET Web Application
> > > - ASP.NET Web Service
> > > - ASP.NET Mobile WebApplication
> > >
> > > again, no DLL library project. Am I missing something?
> > >
> > > (I am using VB.net Standard - is the dll option not included here?)
> > >
> > > Thanks for help...
> > > Nick
> > >
> > >[/color]
> >
> >[/color]
>
>[/color]


One Handed Man \( OHM - Terry Burns \)
Guest
 
Posts: n/a
#7: Nov 21 '05

re: Dll with VB.Net


? <confused>

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Use the following to email me

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))

End Sub

Private Function ob(ByVal email As String, ByVal inc As Boolean) As
String

Dim ch() As Char
Dim i As Int32
Dim stepValue As Int16

If inc Then stepValue = 1 Else stepValue = -1

ch = email.ToCharArray()

For i = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
Next

Return New String(ch)

End Function


Time flies when you don't know what you're doing

"CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
news:e0TypciqEHA.2612@TK2MSFTNGP15.phx.gbl...[color=blue]
> Wow....
>
> take that spammers...
>
> =)
>
>
> "One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in[/color]
message[color=blue]
> news:%23EawQWiqEHA.3988@tk2msftngp13.phx.gbl...[color=green]
> > Standard does not have the template for a class library, but I thought[/color][/color]
you[color=blue][color=green]
> > can still create a class library.
> >
> > --
> >
> > OHM ( Terry Burns )
> > . . . One-Handed-Man . . .
> >
> > Use the following to email me
> >
> > Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
> > System.EventArgs) Handles Button1.Click
> >
> > Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))
> >
> > End Sub
> >
> > Private Function ob(ByVal email As String, ByVal inc As Boolean) As
> > String
> >
> > Dim ch() As Char
> > Dim i As Int32
> > Dim stepValue As Int16
> >
> > If inc Then stepValue = 1 Else stepValue = -1
> >
> > ch = email.ToCharArray()
> >
> > For i = 0 To ch.Length - 1
> > ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
> > Next
> >
> > Return New String(ch)
> >
> > End Function
> >
> >
> > Time flies when you don't know what you're doing
> >
> > "CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
> > news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...[color=darkred]
> > > Standard cannot create DLL's.
> > >
> > > Otherwise, it would be listed as Class Library...
> > >
> > >
> > > "Nick" <NickNickNick@freenet.de> wrote in message
> > > news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...
> > > > I am stuck with a very basic issue.
> > > > I try to create a dll with VB.NET. I find in the documentation that[/color][/color][/color]
I[color=blue][color=green][color=darkred]
> > > should
> > > > be able to set that up in the project property dialog:
> > > > Common Properties - General - Output Type.
> > > > It gives me "Windows Application" and "Console Application" but not[/color][/color]
> "dll[color=green][color=darkred]
> > > > library".
> > > >
> > > > When I create a new project, I have 5 choices:
> > > > - Windows Application
> > > > - Console Application
> > > > - ASP.NET Web Application
> > > > - ASP.NET Web Service
> > > > - ASP.NET Mobile WebApplication
> > > >
> > > > again, no DLL library project. Am I missing something?
> > > >
> > > > (I am using VB.net Standard - is the dll option not included here?)
> > > >
> > > > Thanks for help...
> > > > Nick
> > > >
> > > >
> > >
> > >[/color]
> >
> >[/color]
>
>[/color]


One Handed Man \( OHM - Terry Burns \)
Guest
 
Posts: n/a
#8: Nov 21 '05

re: Dll with VB.Net


http://visualbasic.about.com/library.../aa081703a.htm

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Use the following to email me

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))

End Sub

Private Function ob(ByVal email As String, ByVal inc As Boolean) As
String

Dim ch() As Char
Dim i As Int32
Dim stepValue As Int16

If inc Then stepValue = 1 Else stepValue = -1

ch = email.ToCharArray()

For i = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
Next

Return New String(ch)

End Function


Time flies when you don't know what you're doing

"Nick" <NickNickNick@freenet.de> wrote in message
news:OrQvDIiqEHA.1964@TK2MSFTNGP12.phx.gbl...[color=blue]
> Thanks!!!!
> That is very valuable information!
> Andi
>
>
> "CJ Taylor" <[cege] at [tavayn] dit commmmm> schrieb im Newsbeitrag
> news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...[color=green]
> > Standard cannot create DLL's.
> >
> > Otherwise, it would be listed as Class Library...
> >
> >
> > "Nick" <NickNickNick@freenet.de> wrote in message
> > news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...[color=darkred]
> > > I am stuck with a very basic issue.
> > > I try to create a dll with VB.NET. I find in the documentation that I[/color]
> > should[color=darkred]
> > > be able to set that up in the project property dialog:
> > > Common Properties - General - Output Type.
> > > It gives me "Windows Application" and "Console Application" but not[/color][/color][/color]
"dll[color=blue][color=green][color=darkred]
> > > library".
> > >
> > > When I create a new project, I have 5 choices:
> > > - Windows Application
> > > - Console Application
> > > - ASP.NET Web Application
> > > - ASP.NET Web Service
> > > - ASP.NET Mobile WebApplication
> > >
> > > again, no DLL library project. Am I missing something?
> > >
> > > (I am using VB.net Standard - is the dll option not included here?)
> > >
> > > Thanks for help...
> > > Nick
> > >
> > >[/color]
> >
> >[/color]
>
>[/color]


One Handed Man \( OHM - Terry Burns \)
Guest
 
Posts: n/a
#9: Nov 21 '05

re: Dll with VB.Net


http://visualbasic.about.com/library.../aa081703a.htm

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Use the following to email me

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))

End Sub

Private Function ob(ByVal email As String, ByVal inc As Boolean) As
String

Dim ch() As Char
Dim i As Int32
Dim stepValue As Int16

If inc Then stepValue = 1 Else stepValue = -1

ch = email.ToCharArray()

For i = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
Next

Return New String(ch)

End Function


Time flies when you don't know what you're doing

"CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
news:e0TypciqEHA.2612@TK2MSFTNGP15.phx.gbl...[color=blue]
> Wow....
>
> take that spammers...
>
> =)
>
>
> "One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in[/color]
message[color=blue]
> news:%23EawQWiqEHA.3988@tk2msftngp13.phx.gbl...[color=green]
> > Standard does not have the template for a class library, but I thought[/color][/color]
you[color=blue][color=green]
> > can still create a class library.
> >
> > --
> >
> > OHM ( Terry Burns )
> > . . . One-Handed-Man . . .
> >
> > Use the following to email me
> >
> > Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
> > System.EventArgs) Handles Button1.Click
> >
> > Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))
> >
> > End Sub
> >
> > Private Function ob(ByVal email As String, ByVal inc As Boolean) As
> > String
> >
> > Dim ch() As Char
> > Dim i As Int32
> > Dim stepValue As Int16
> >
> > If inc Then stepValue = 1 Else stepValue = -1
> >
> > ch = email.ToCharArray()
> >
> > For i = 0 To ch.Length - 1
> > ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
> > Next
> >
> > Return New String(ch)
> >
> > End Function
> >
> >
> > Time flies when you don't know what you're doing
> >
> > "CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
> > news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...[color=darkred]
> > > Standard cannot create DLL's.
> > >
> > > Otherwise, it would be listed as Class Library...
> > >
> > >
> > > "Nick" <NickNickNick@freenet.de> wrote in message
> > > news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...
> > > > I am stuck with a very basic issue.
> > > > I try to create a dll with VB.NET. I find in the documentation that[/color][/color][/color]
I[color=blue][color=green][color=darkred]
> > > should
> > > > be able to set that up in the project property dialog:
> > > > Common Properties - General - Output Type.
> > > > It gives me "Windows Application" and "Console Application" but not[/color][/color]
> "dll[color=green][color=darkred]
> > > > library".
> > > >
> > > > When I create a new project, I have 5 choices:
> > > > - Windows Application
> > > > - Console Application
> > > > - ASP.NET Web Application
> > > > - ASP.NET Web Service
> > > > - ASP.NET Mobile WebApplication
> > > >
> > > > again, no DLL library project. Am I missing something?
> > > >
> > > > (I am using VB.net Standard - is the dll option not included here?)
> > > >
> > > > Thanks for help...
> > > > Nick
> > > >
> > > >
> > >
> > >[/color]
> >
> >[/color]
>
>[/color]


Nak
Guest
 
Posts: n/a
#10: Nov 21 '05

re: Dll with VB.Net


LOL!, I love your footer!

Nick.

"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in message
news:uwXyGliqEHA.2588@TK2MSFTNGP12.phx.gbl...[color=blue]
> http://visualbasic.about.com/library.../aa081703a.htm
>
> --
>
> OHM ( Terry Burns )
> . . . One-Handed-Man . . .
>
> Use the following to email me
>
> Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles Button1.Click
>
> Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))
>
> End Sub
>
> Private Function ob(ByVal email As String, ByVal inc As Boolean) As
> String
>
> Dim ch() As Char
> Dim i As Int32
> Dim stepValue As Int16
>
> If inc Then stepValue = 1 Else stepValue = -1
>
> ch = email.ToCharArray()
>
> For i = 0 To ch.Length - 1
> ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
> Next
>
> Return New String(ch)
>
> End Function
>
>
> Time flies when you don't know what you're doing
>
> "CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
> news:e0TypciqEHA.2612@TK2MSFTNGP15.phx.gbl...[color=green]
>> Wow....
>>
>> take that spammers...
>>
>> =)
>>
>>
>> "One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in[/color]
> message[color=green]
>> news:%23EawQWiqEHA.3988@tk2msftngp13.phx.gbl...[color=darkred]
>> > Standard does not have the template for a class library, but I thought[/color][/color]
> you[color=green][color=darkred]
>> > can still create a class library.
>> >
>> > --
>> >
>> > OHM ( Terry Burns )
>> > . . . One-Handed-Man . . .
>> >
>> > Use the following to email me
>> >
>> > Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
>> > System.EventArgs) Handles Button1.Click
>> >
>> > Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU",
>> > False))
>> >
>> > End Sub
>> >
>> > Private Function ob(ByVal email As String, ByVal inc As Boolean) As
>> > String
>> >
>> > Dim ch() As Char
>> > Dim i As Int32
>> > Dim stepValue As Int16
>> >
>> > If inc Then stepValue = 1 Else stepValue = -1
>> >
>> > ch = email.ToCharArray()
>> >
>> > For i = 0 To ch.Length - 1
>> > ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
>> > Next
>> >
>> > Return New String(ch)
>> >
>> > End Function
>> >
>> >
>> > Time flies when you don't know what you're doing
>> >
>> > "CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
>> > news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...
>> > > Standard cannot create DLL's.
>> > >
>> > > Otherwise, it would be listed as Class Library...
>> > >
>> > >
>> > > "Nick" <NickNickNick@freenet.de> wrote in message
>> > > news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...
>> > > > I am stuck with a very basic issue.
>> > > > I try to create a dll with VB.NET. I find in the documentation that[/color][/color]
> I[color=green][color=darkred]
>> > > should
>> > > > be able to set that up in the project property dialog:
>> > > > Common Properties - General - Output Type.
>> > > > It gives me "Windows Application" and "Console Application" but not[/color]
>> "dll[color=darkred]
>> > > > library".
>> > > >
>> > > > When I create a new project, I have 5 choices:
>> > > > - Windows Application
>> > > > - Console Application
>> > > > - ASP.NET Web Application
>> > > > - ASP.NET Web Service
>> > > > - ASP.NET Mobile WebApplication
>> > > >
>> > > > again, no DLL library project. Am I missing something?
>> > > >
>> > > > (I am using VB.net Standard - is the dll option not included here?)
>> > > >
>> > > > Thanks for help...
>> > > > Nick
>> > > >
>> > > >
>> > >
>> > >
>> >
>> >[/color]
>>
>>[/color]
>
>[/color]


Nak
Guest
 
Posts: n/a
#11: Nov 21 '05

re: Dll with VB.Net


Hi Nick,

It is quite easy to make your own templates for a class library. If you
take a look at the 2002 versions from my web site you may be able to modify
them to work with 2003. I first achieved this by downloading a pretty much
empty class library project and stripped out any code so that it was empty,
then looked at how the windows application template was structured. I'm
sure you can work it out :-) But it's worth having the extra templates
trust me!

http://www.members.lycos.co.uk/nickpatemanpwp/
goto My Own Software > VB.NET Templates.

I hope this helps.

Nick.

"Nick" <NickNickNick@freenet.de> wrote in message
news:OrQvDIiqEHA.1964@TK2MSFTNGP12.phx.gbl...[color=blue]
> Thanks!!!!
> That is very valuable information!
> Andi
>
>
> "CJ Taylor" <[cege] at [tavayn] dit commmmm> schrieb im Newsbeitrag
> news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...[color=green]
>> Standard cannot create DLL's.
>>
>> Otherwise, it would be listed as Class Library...
>>
>>
>> "Nick" <NickNickNick@freenet.de> wrote in message
>> news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...[color=darkred]
>> > I am stuck with a very basic issue.
>> > I try to create a dll with VB.NET. I find in the documentation that I[/color]
>> should[color=darkred]
>> > be able to set that up in the project property dialog:
>> > Common Properties - General - Output Type.
>> > It gives me "Windows Application" and "Console Application" but not
>> > "dll
>> > library".
>> >
>> > When I create a new project, I have 5 choices:
>> > - Windows Application
>> > - Console Application
>> > - ASP.NET Web Application
>> > - ASP.NET Web Service
>> > - ASP.NET Mobile WebApplication
>> >
>> > again, no DLL library project. Am I missing something?
>> >
>> > (I am using VB.net Standard - is the dll option not included here?)
>> >
>> > Thanks for help...
>> > Nick
>> >
>> >[/color]
>>
>>[/color]
>
>[/color]


One Handed Man \( OHM - Terry Burns \)
Guest
 
Posts: n/a
#12: Nov 21 '05

re: Dll with VB.Net


Now I get ya !

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Use the following to email me

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))

End Sub

Private Function ob(ByVal email As String, ByVal inc As Boolean) As
String

Dim ch() As Char
Dim i As Int32
Dim stepValue As Int16

If inc Then stepValue = 1 Else stepValue = -1

ch = email.ToCharArray()

For i = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
Next

Return New String(ch)

End Function


Time flies when you don't know what you're doing

"CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
news:e0TypciqEHA.2612@TK2MSFTNGP15.phx.gbl...[color=blue]
> Wow....
>
> take that spammers...
>
> =)
>
>
> "One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in[/color]
message[color=blue]
> news:%23EawQWiqEHA.3988@tk2msftngp13.phx.gbl...[color=green]
> > Standard does not have the template for a class library, but I thought[/color][/color]
you[color=blue][color=green]
> > can still create a class library.
> >
> > --
> >
> > OHM ( Terry Burns )
> > . . . One-Handed-Man . . .
> >
> > Use the following to email me
> >
> > Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
> > System.EventArgs) Handles Button1.Click
> >
> > Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))
> >
> > End Sub
> >
> > Private Function ob(ByVal email As String, ByVal inc As Boolean) As
> > String
> >
> > Dim ch() As Char
> > Dim i As Int32
> > Dim stepValue As Int16
> >
> > If inc Then stepValue = 1 Else stepValue = -1
> >
> > ch = email.ToCharArray()
> >
> > For i = 0 To ch.Length - 1
> > ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
> > Next
> >
> > Return New String(ch)
> >
> > End Function
> >
> >
> > Time flies when you don't know what you're doing
> >
> > "CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
> > news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...[color=darkred]
> > > Standard cannot create DLL's.
> > >
> > > Otherwise, it would be listed as Class Library...
> > >
> > >
> > > "Nick" <NickNickNick@freenet.de> wrote in message
> > > news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...
> > > > I am stuck with a very basic issue.
> > > > I try to create a dll with VB.NET. I find in the documentation that[/color][/color][/color]
I[color=blue][color=green][color=darkred]
> > > should
> > > > be able to set that up in the project property dialog:
> > > > Common Properties - General - Output Type.
> > > > It gives me "Windows Application" and "Console Application" but not[/color][/color]
> "dll[color=green][color=darkred]
> > > > library".
> > > >
> > > > When I create a new project, I have 5 choices:
> > > > - Windows Application
> > > > - Console Application
> > > > - ASP.NET Web Application
> > > > - ASP.NET Web Service
> > > > - ASP.NET Mobile WebApplication
> > > >
> > > > again, no DLL library project. Am I missing something?
> > > >
> > > > (I am using VB.net Standard - is the dll option not included here?)
> > > >
> > > > Thanks for help...
> > > > Nick
> > > >
> > > >
> > >
> > >[/color]
> >
> >[/color]
>
>[/color]


One Handed Man \( OHM - Terry Burns \)
Guest
 
Posts: n/a
#13: Nov 21 '05

re: Dll with VB.Net


Cheers - Helps keep the spammers at bay !

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Use the following to email me

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))

End Sub

Private Function ob(ByVal email As String, ByVal inc As Boolean) As
String

Dim ch() As Char
Dim i As Int32
Dim stepValue As Int16

If inc Then stepValue = 1 Else stepValue = -1

ch = email.ToCharArray()

For i = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
Next

Return New String(ch)

End Function


Time flies when you don't know what you're doing

"Nak" <a@a.com> wrote in message
news:ud4p7CjqEHA.1712@tk2msftngp13.phx.gbl...[color=blue]
> LOL!, I love your footer!
>
> Nick.
>
> "One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in[/color]
message[color=blue]
> news:uwXyGliqEHA.2588@TK2MSFTNGP12.phx.gbl...[color=green]
> > http://visualbasic.about.com/library.../aa081703a.htm
> >
> > --
> >
> > OHM ( Terry Burns )
> > . . . One-Handed-Man . . .
> >
> > Use the following to email me
> >
> > Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
> > System.EventArgs) Handles Button1.Click
> >
> > Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))
> >
> > End Sub
> >
> > Private Function ob(ByVal email As String, ByVal inc As Boolean) As
> > String
> >
> > Dim ch() As Char
> > Dim i As Int32
> > Dim stepValue As Int16
> >
> > If inc Then stepValue = 1 Else stepValue = -1
> >
> > ch = email.ToCharArray()
> >
> > For i = 0 To ch.Length - 1
> > ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
> > Next
> >
> > Return New String(ch)
> >
> > End Function
> >
> >
> > Time flies when you don't know what you're doing
> >
> > "CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
> > news:e0TypciqEHA.2612@TK2MSFTNGP15.phx.gbl...[color=darkred]
> >> Wow....
> >>
> >> take that spammers...
> >>
> >> =)
> >>
> >>
> >> "One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in[/color]
> > message[color=darkred]
> >> news:%23EawQWiqEHA.3988@tk2msftngp13.phx.gbl...
> >> > Standard does not have the template for a class library, but I[/color][/color][/color]
thought[color=blue][color=green]
> > you[color=darkred]
> >> > can still create a class library.
> >> >
> >> > --
> >> >
> >> > OHM ( Terry Burns )
> >> > . . . One-Handed-Man . . .
> >> >
> >> > Use the following to email me
> >> >
> >> > Private Sub Button1_Click(ByVal sender As System.Object, ByVal e[/color][/color][/color]
As[color=blue][color=green][color=darkred]
> >> > System.EventArgs) Handles Button1.Click
> >> >
> >> > Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU",
> >> > False))
> >> >
> >> > End Sub
> >> >
> >> > Private Function ob(ByVal email As String, ByVal inc As Boolean)[/color][/color][/color]
As[color=blue][color=green][color=darkred]
> >> > String
> >> >
> >> > Dim ch() As Char
> >> > Dim i As Int32
> >> > Dim stepValue As Int16
> >> >
> >> > If inc Then stepValue = 1 Else stepValue = -1
> >> >
> >> > ch = email.ToCharArray()
> >> >
> >> > For i = 0 To ch.Length - 1
> >> > ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) +[/color][/color][/color]
stepValue)[color=blue][color=green][color=darkred]
> >> > Next
> >> >
> >> > Return New String(ch)
> >> >
> >> > End Function
> >> >
> >> >
> >> > Time flies when you don't know what you're doing
> >> >
> >> > "CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
> >> > news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...
> >> > > Standard cannot create DLL's.
> >> > >
> >> > > Otherwise, it would be listed as Class Library...
> >> > >
> >> > >
> >> > > "Nick" <NickNickNick@freenet.de> wrote in message
> >> > > news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...
> >> > > > I am stuck with a very basic issue.
> >> > > > I try to create a dll with VB.NET. I find in the documentation[/color][/color][/color]
that[color=blue][color=green]
> > I[color=darkred]
> >> > > should
> >> > > > be able to set that up in the project property dialog:
> >> > > > Common Properties - General - Output Type.
> >> > > > It gives me "Windows Application" and "Console Application" but[/color][/color][/color]
not[color=blue][color=green][color=darkred]
> >> "dll
> >> > > > library".
> >> > > >
> >> > > > When I create a new project, I have 5 choices:
> >> > > > - Windows Application
> >> > > > - Console Application
> >> > > > - ASP.NET Web Application
> >> > > > - ASP.NET Web Service
> >> > > > - ASP.NET Mobile WebApplication
> >> > > >
> >> > > > again, no DLL library project. Am I missing something?
> >> > > >
> >> > > > (I am using VB.net Standard - is the dll option not included[/color][/color][/color]
here?)[color=blue][color=green][color=darkred]
> >> > > >
> >> > > > Thanks for help...
> >> > > > Nick
> >> > > >
> >> > > >
> >> > >
> >> > >
> >> >
> >> >
> >>
> >>[/color]
> >
> >[/color]
>
>[/color]


Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#14: Nov 21 '05

re: Dll with VB.Net


"Nick" <NickNickNick@freenet.de> schrieb:[color=blue]
>I am stuck with a very basic issue.
> I try to create a dll with VB.NET. I find in the documentation that
> I should be able to set that up in the project property dialog:
> Common Properties - General - Output Type.
> It gives me "Windows Application" and "Console Application" but
> not "dll library".[/color]

Creating class libraries with the Standard edition of Visual Basic .NET
<URL:http://dotnet.mvps.org/dotnet/faqs/?id=standardclasslibraries>

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>
Anon-E-Moose
Guest
 
Posts: n/a
#15: Nov 21 '05

re: Dll with VB.Net


"One Handed Man \( OHM - Terry Burns \)" <news.microsoft.com> wrote in
news:#EawQWiqEHA.3988@tk2msftngp13.phx.gbl:
[color=blue]
> OHM ( Terry Burns )
> . . . One-Handed-Man . . .[/color]

Whoa, what's with the long signature? : )

One Handed Man \( OHM - Terry Burns \)
Guest
 
Posts: n/a
#16: Nov 21 '05

re: Dll with VB.Net


Dont want auto spammers to get me.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Use the following to email me

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))

End Sub

Private Function ob(ByVal email As String, ByVal inc As Boolean) As
String

Dim ch() As Char
Dim i As Int32
Dim stepValue As Int16

If inc Then stepValue = 1 Else stepValue = -1

ch = email.ToCharArray()

For i = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
Next

Return New String(ch)

End Function


Time flies when you don't know what you're doing

"Anon-E-Moose" <anon-e-moose@yahoo.com> wrote in message
news:Xns957899FE01F3anonemooseyahoocom@140.99.99.1 30...[color=blue]
> "One Handed Man \( OHM - Terry Burns \)" <news.microsoft.com> wrote in
> news:#EawQWiqEHA.3988@tk2msftngp13.phx.gbl:
>[color=green]
> > OHM ( Terry Burns )
> > . . . One-Handed-Man . . .[/color]
>
> Whoa, what's with the long signature? : )
>[/color]


Nick
Guest
 
Posts: n/a
#17: Nov 21 '05

re: Dll with VB.Net


That simple :-)
Thanks!!!!
Nick


"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> schrieb im Newsbeitrag
news:%23YuedKkqEHA.2776@TK2MSFTNGP12.phx.gbl...[color=blue]
> "Nick" <NickNickNick@freenet.de> schrieb:[color=green]
> >I am stuck with a very basic issue.
> > I try to create a dll with VB.NET. I find in the documentation that
> > I should be able to set that up in the project property dialog:
> > Common Properties - General - Output Type.
> > It gives me "Windows Application" and "Console Application" but
> > not "dll library".[/color]
>
> Creating class libraries with the Standard edition of Visual Basic .NET
> <URL:http://dotnet.mvps.org/dotnet/faqs/?id=standardclasslibraries>
>
> --
> Herfried K. Wagner [MVP]
> <URL:http://dotnet.mvps.org/>[/color]


Cor Ligthert
Guest
 
Posts: n/a
#18: Nov 21 '05

re: Dll with VB.Net


Nick,

I did see it some minutes ago, I find it real greath
[color=blue]
> LOL!, I love your footer!
>[/color]


Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#19: Nov 21 '05

re: Dll with VB.Net


"Cor Ligthert" <notmyfirstname@planet.nl> schrieb:[color=blue]
> I did see it some minutes ago, I find it real greath
>[color=green]
>> LOL!, I love your footer![/color][/color]

Well, there are still those people using very slow modems to read the
groups...

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Cor Ligthert
Guest
 
Posts: n/a
#20: Nov 21 '05

re: Dll with VB.Net


LOL
[color=blue]
>Well, there are still those people using very slow modems to read the
>groups...[/color]

Do I think what you mean?

However more important, how is it with your license can we congratulate you
already?

Cor


james
Guest
 
Posts: n/a
#21: Nov 21 '05

re: Dll with VB.Net


THAT IS COOL!!! Took me a minute to look down at the Debug window and see
the results.
Of course, it is only good with VB.NET programmers. But, then again, who
else is there :-)
(just kidding)
james

"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in message
news:%233olqikqEHA.3288@TK2MSFTNGP12.phx.gbl...[color=blue]
> Dont want auto spammers to get me.
>
> --
>
> OHM ( Terry Burns )
> . . . One-Handed-Man . . .
>
> Use the following to email me
>
> Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles Button1.Click
>
> Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))
>
> End Sub
>
> Private Function ob(ByVal email As String, ByVal inc As Boolean) As
> String
>
> Dim ch() As Char
> Dim i As Int32
> Dim stepValue As Int16
>
> If inc Then stepValue = 1 Else stepValue = -1
>
> ch = email.ToCharArray()
>
> For i = 0 To ch.Length - 1
> ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
> Next
>
> Return New String(ch)
>
> End Function
>
>
> Time flies when you don't know what you're doing
>
> "Anon-E-Moose" <anon-e-moose@yahoo.com> wrote in message
> news:Xns957899FE01F3anonemooseyahoocom@140.99.99.1 30...[color=green]
>> "One Handed Man \( OHM - Terry Burns \)" <news.microsoft.com> wrote in
>> news:#EawQWiqEHA.3988@tk2msftngp13.phx.gbl:
>>[color=darkred]
>> > OHM ( Terry Burns )
>> > . . . One-Handed-Man . . .[/color]
>>
>> Whoa, what's with the long signature? : )
>>[/color]
>
>[/color]


Anon-E-Moose
Guest
 
Posts: n/a
#22: Nov 21 '05

re: Dll with VB.Net


"One Handed Man \( OHM - Terry Burns \)" <news.microsoft.com> wrote in
news:#3olqikqEHA.3288@TK2MSFTNGP12.phx.gbl:
[color=blue]
> Dont want auto spammers to get me.[/color]

Nice but it's a bit long ; )

http://c2.com/cgi/wiki?SixLineSigLimit
One Handed Man \( OHM - Terry Burns \)
Guest
 
Posts: n/a
#23: Nov 21 '05

re: Dll with VB.Net


Congratulations on passing your driving test, do you have a car in mind ?

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Use the following to email me

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))

End Sub

Private Function ob(ByVal email As String, ByVal inc As Boolean) As
String

Dim ch() As Char
Dim i As Int32
Dim stepValue As Int16

If inc Then stepValue = 1 Else stepValue = -1

ch = email.ToCharArray()

For i = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
Next

Return New String(ch)

End Function


Time flies when you don't know what you're doing

"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
news:OtH2GykqEHA.1992@TK2MSFTNGP09.phx.gbl...[color=blue]
> "Cor Ligthert" <notmyfirstname@planet.nl> schrieb:[color=green]
> > I did see it some minutes ago, I find it real greath
> >[color=darkred]
> >> LOL!, I love your footer![/color][/color]
>
> Well, there are still those people using very slow modems to read the
> groups...
>
> --
> Herfried K. Wagner [MVP]
> <URL:http://dotnet.mvps.org/>
>[/color]


Cor Ligthert
Guest
 
Posts: n/a
#24: Nov 21 '05

re: Dll with VB.Net


Terry,

Did Herfried said somewhere that it was for a car and not for a mopped?

:-))

Cor


Nak
Guest
 
Posts: n/a
#25: Nov 21 '05

re: Dll with VB.Net


LOL!!!

Christ.......

"Anon-E-Moose" <anon-e-moose@yahoo.com> wrote in message
news:Xns9578C7C2ACFBanonemooseyahoocom@140.99.99.1 30...[color=blue]
> "One Handed Man \( OHM - Terry Burns \)" <news.microsoft.com> wrote in
> news:#3olqikqEHA.3288@TK2MSFTNGP12.phx.gbl:
>[color=green]
>> Dont want auto spammers to get me.[/color]
>
> Nice but it's a bit long ; )
>
> http://c2.com/cgi/wiki?SixLineSigLimit[/color]


Nak
Guest
 
Posts: n/a
#26: Nov 21 '05

re: Dll with VB.Net


LOL, my heart bleeds!

Nick.

"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
news:OtH2GykqEHA.1992@TK2MSFTNGP09.phx.gbl...[color=blue]
> "Cor Ligthert" <notmyfirstname@planet.nl> schrieb:[color=green]
>> I did see it some minutes ago, I find it real greath
>>[color=darkred]
>>> LOL!, I love your footer![/color][/color]
>
> Well, there are still those people using very slow modems to read the
> groups...
>
> --
> Herfried K. Wagner [MVP]
> <URL:http://dotnet.mvps.org/>[/color]


CJ Taylor
Guest
 
Posts: n/a
#27: Nov 21 '05

re: Dll with VB.Net


Or even a Mo-ped?

=)

"Cor Ligthert" <notmyfirstname@planet.nl> wrote in message
news:uAmqDErqEHA.896@TK2MSFTNGP12.phx.gbl...[color=blue]
> Terry,
>
> Did Herfried said somewhere that it was for a car and not for a mopped?
>
> :-))
>
> Cor
>
>[/color]


Cor Ligthert
Guest
 
Posts: n/a
#28: Nov 21 '05

re: Dll with VB.Net


CJ,

You mean such a real one from Austria?
http://w1.526.telia.com/~u52602673/moped2/hmw.htm

And not one like this
http://www.motorrad-wagner.com/index.html

I think you are right, much to dangerous for this newsgroup when he rides
the last ones.

Cor


CJ Taylor
Guest
 
Posts: n/a
#29: Nov 21 '05

re: Dll with VB.Net


You kill me...

=)


"Cor Ligthert" <notmyfirstname@planet.nl> wrote in message
news:O17ZGbtqEHA.4008@TK2MSFTNGP14.phx.gbl...[color=blue]
> CJ,
>
> You mean such a real one from Austria?
> http://w1.526.telia.com/~u52602673/moped2/hmw.htm
>
> And not one like this
> http://www.motorrad-wagner.com/index.html
>
> I think you are right, much to dangerous for this newsgroup when he rides
> the last ones.
>
> Cor
>
>[/color]


One Handed Man \( OHM - Terry Burns \)
Guest
 
Posts: n/a
#30: Nov 21 '05

re: Dll with VB.Net


OK . .

See shortened version below.
--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Use the following to email me

Dim ch() As Char =
"ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
For i As Int16 = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
Next
Debug.WriteLine(New String(ch))

Time flies when you don't know what you're doing

"Nak" <a@a.com> wrote in message
news:OdAzHorqEHA.2340@TK2MSFTNGP11.phx.gbl...[color=blue]
> LOL!!!
>
> Christ.......
>
> "Anon-E-Moose" <anon-e-moose@yahoo.com> wrote in message
> news:Xns9578C7C2ACFBanonemooseyahoocom@140.99.99.1 30...[color=green]
> > "One Handed Man \( OHM - Terry Burns \)" <news.microsoft.com> wrote in
> > news:#3olqikqEHA.3288@TK2MSFTNGP12.phx.gbl:
> >[color=darkred]
> >> Dont want auto spammers to get me.[/color]
> >
> > Nice but it's a bit long ; )
> >
> > http://c2.com/cgi/wiki?SixLineSigLimit[/color]
>
>[/color]


Cor Ligthert
Guest
 
Posts: n/a
#31: Nov 21 '05

re: Dll with VB.Net


Terry,

I find this one even nicer

\\\
Dim ch() As Char = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
For i As Integer = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
Next
Process.Start("mailto:" & New String(ch))
///
:-)

Cor


One Handed Man \( OHM - Terry Burns \)
Guest
 
Posts: n/a
#32: Nov 21 '05

re: Dll with VB.Net


Good Idea, this is the spirit of co-operation and development.

Thanks for the idea !

;-)

--
OHM ( Terry Burns ) Use the following to email me


Dim ch() As Char =
"ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
For i As Int16 = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
Next
Process.Start("mailto:" & New String(ch))
--


"Cor Ligthert" <notmyfirstname@planet.nl> wrote in message
news:uDnd94uqEHA.2776@TK2MSFTNGP12.phx.gbl...[color=blue]
> Terry,
>
> I find this one even nicer
>
> \\\
> Dim ch() As Char = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
> For i As Integer = 0 To ch.Length - 1
> ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
> Next
> Process.Start("mailto:" & New String(ch))
> ///
> :-)
>
> Cor
>
>[/color]


Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#33: Nov 21 '05

re: Dll with VB.Net


"Cor Ligthert" <notmyfirstname@planet.nl> schrieb:[color=blue][color=green]
>>Well, there are still those people using very slow modems to read the
>>groups...[/color]
>
> Do I think what you mean?[/color]

:-)
[color=blue]
> However more important, how is it with your license can
> we congratulate you already?[/color]

Yep. I got the license yesterday, but today university was starting and
there is a lot of trouble these days... But I'll be back soon!

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#34: Nov 21 '05

re: Dll with VB.Net


"Cor Ligthert" <notmyfirstname@planet.nl> schrieb:[color=blue]
> Did Herfried said somewhere that it was for a car and
> not for a mopped?[/color]

It's a license for a car, but it will allow me to drive a "Moped" (that's
the German term) too, AFAIK.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#35: Nov 21 '05

re: Dll with VB.Net


"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> schrieb:[color=blue]
> Congratulations on passing your driving test, do you have a
> car in mind ?[/color]

Our family has a Volkswagen Golf 4. Personally, I don't need a car. In
Vienna it's better to use public transport because it's hard to find a place
to park the car in the city (and the university is in the center of Vienna).

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Cor Ligthert
Guest
 
Posts: n/a
#36: Nov 21 '05

re: Dll with VB.Net


Herfried,

I checked first on Google of the word "mopped" was well and I found hundreds
of pages. I never use that word.

However why no comments on that pages I showed CJ, very good for Wien as
well in my opinion.

And of course again more important very much congratulations

:-)

Cor


Simon Verona
Guest
 
Posts: n/a
#37: Nov 21 '05

re: Dll with VB.Net


I think he's referring to the way you've hidden your email from spammers
with some vb code... :)

Regards
Simon
"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in message
news:uhSwRjiqEHA.3980@TK2MSFTNGP12.phx.gbl...[color=blue]
> ? <confused>
>
> --
>
> OHM ( Terry Burns )
> . . . One-Handed-Man . . .
>
> Use the following to email me
>
> Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles Button1.Click
>
> Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))
>
> End Sub
>
> Private Function ob(ByVal email As String, ByVal inc As Boolean) As
> String
>
> Dim ch() As Char
> Dim i As Int32
> Dim stepValue As Int16
>
> If inc Then stepValue = 1 Else stepValue = -1
>
> ch = email.ToCharArray()
>
> For i = 0 To ch.Length - 1
> ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
> Next
>
> Return New String(ch)
>
> End Function
>
>
> Time flies when you don't know what you're doing
>
> "CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
> news:e0TypciqEHA.2612@TK2MSFTNGP15.phx.gbl...[color=green]
> > Wow....
> >
> > take that spammers...
> >
> > =)
> >
> >
> > "One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in[/color]
> message[color=green]
> > news:%23EawQWiqEHA.3988@tk2msftngp13.phx.gbl...[color=darkred]
> > > Standard does not have the template for a class library, but I thought[/color][/color]
> you[color=green][color=darkred]
> > > can still create a class library.
> > >
> > > --
> > >
> > > OHM ( Terry Burns )
> > > . . . One-Handed-Man . . .
> > >
> > > Use the following to email me
> > >
> > > Private Sub Button1_Click(ByVal sender As System.Object, ByVal e[/color][/color][/color]
As[color=blue][color=green][color=darkred]
> > > System.EventArgs) Handles Button1.Click
> > >
> > > Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU",[/color][/color][/color]
False))[color=blue][color=green][color=darkred]
> > >
> > > End Sub
> > >
> > > Private Function ob(ByVal email As String, ByVal inc As Boolean)[/color][/color][/color]
As[color=blue][color=green][color=darkred]
> > > String
> > >
> > > Dim ch() As Char
> > > Dim i As Int32
> > > Dim stepValue As Int16
> > >
> > > If inc Then stepValue = 1 Else stepValue = -1
> > >
> > > ch = email.ToCharArray()
> > >
> > > For i = 0 To ch.Length - 1
> > > ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
> > > Next
> > >
> > > Return New String(ch)
> > >
> > > End Function
> > >
> > >
> > > Time flies when you don't know what you're doing
> > >
> > > "CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
> > > news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...
> > > > Standard cannot create DLL's.
> > > >
> > > > Otherwise, it would be listed as Class Library...
> > > >
> > > >
> > > > "Nick" <NickNickNick@freenet.de> wrote in message
> > > > news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...
> > > > > I am stuck with a very basic issue.
> > > > > I try to create a dll with VB.NET. I find in the documentation[/color][/color][/color]
that[color=blue]
> I[color=green][color=darkred]
> > > > should
> > > > > be able to set that up in the project property dialog:
> > > > > Common Properties - General - Output Type.
> > > > > It gives me "Windows Application" and "Console Application" but[/color][/color][/color]
not[color=blue][color=green]
> > "dll[color=darkred]
> > > > > library".
> > > > >
> > > > > When I create a new project, I have 5 choices:
> > > > > - Windows Application
> > > > > - Console Application
> > > > > - ASP.NET Web Application
> > > > > - ASP.NET Web Service
> > > > > - ASP.NET Mobile WebApplication
> > > > >
> > > > > again, no DLL library project. Am I missing something?
> > > > >
> > > > > (I am using VB.net Standard - is the dll option not included[/color][/color][/color]
here?)[color=blue][color=green][color=darkred]
> > > > >
> > > > > Thanks for help...
> > > > > Nick
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >[/color]
> >
> >[/color]
>
>[/color]


Nak
Guest
 
Posts: n/a
#38: Nov 21 '05

re: Dll with VB.Net


Haha, and who says there isn't a community here? You guys are all loons!

Nick.

"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in message
news:uhT7aCvqEHA.2964@TK2MSFTNGP14.phx.gbl...[color=blue]
> Good Idea, this is the spirit of co-operation and development.
>
> Thanks for the idea !
>
> ;-)
>
> --
> OHM ( Terry Burns ) Use the following to email me
>
>
> Dim ch() As Char =
> "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
> For i As Int16 = 0 To ch.Length - 1
> ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
> Next
> Process.Start("mailto:" & New String(ch))
> --
>
>
> "Cor Ligthert" <notmyfirstname@planet.nl> wrote in message
> news:uDnd94uqEHA.2776@TK2MSFTNGP12.phx.gbl...[color=green]
>> Terry,
>>
>> I find this one even nicer
>>
>> \\\
>> Dim ch() As Char = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
>> For i As Integer = 0 To ch.Length - 1
>> ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
>> Next
>> Process.Start("mailto:" & New String(ch))
>> ///
>> :-)
>>
>> Cor
>>
>>[/color]
>
>[/color]


One Handed Man \( OHM - Terry Burns \)
Guest
 
Posts: n/a
#39: Nov 21 '05

re: Dll with VB.Net


Yes, I see that now

Cheers

--
OHM ( Terry Burns ) * Use the following to email me *

Dim ch() As Char = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
For i As Int32 = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
Next
Process.Start("mailto:" & New String(ch))
--


"Simon Verona" <news@aphroditeuk.com> wrote in message
news:%23QEWzy3qEHA.324@TK2MSFTNGP11.phx.gbl...[color=blue]
> I think he's referring to the way you've hidden your email from spammers
> with some vb code... :)
>
> Regards
> Simon
> "One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in[/color]
message[color=blue]
> news:uhSwRjiqEHA.3980@TK2MSFTNGP12.phx.gbl...[color=green]
> > ? <confused>
> >
> > --
> >
> > OHM ( Terry Burns )
> > . . . One-Handed-Man . . .
> >
> > Use the following to email me
> >
> > Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
> > System.EventArgs) Handles Button1.Click
> >
> > Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU", False))
> >
> > End Sub
> >
> > Private Function ob(ByVal email As String, ByVal inc As Boolean) As
> > String
> >
> > Dim ch() As Char
> > Dim i As Int32
> > Dim stepValue As Int16
> >
> > If inc Then stepValue = 1 Else stepValue = -1
> >
> > ch = email.ToCharArray()
> >
> > For i = 0 To ch.Length - 1
> > ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) + stepValue)
> > Next
> >
> > Return New String(ch)
> >
> > End Function
> >
> >
> > Time flies when you don't know what you're doing
> >
> > "CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
> > news:e0TypciqEHA.2612@TK2MSFTNGP15.phx.gbl...[color=darkred]
> > > Wow....
> > >
> > > take that spammers...
> > >
> > > =)
> > >
> > >
> > > "One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in[/color]
> > message[color=darkred]
> > > news:%23EawQWiqEHA.3988@tk2msftngp13.phx.gbl...
> > > > Standard does not have the template for a class library, but I[/color][/color][/color]
thought[color=blue][color=green]
> > you[color=darkred]
> > > > can still create a class library.
> > > >
> > > > --
> > > >
> > > > OHM ( Terry Burns )
> > > > . . . One-Handed-Man . . .
> > > >
> > > > Use the following to email me
> > > >
> > > > Private Sub Button1_Click(ByVal sender As System.Object, ByVal e[/color][/color]
> As[color=green][color=darkred]
> > > > System.EventArgs) Handles Button1.Click
> > > >
> > > > Debug.WriteLine(ob("ufssz/cvsotAhsfbuTpmvujpotXjui/OFU",[/color][/color]
> False))[color=green][color=darkred]
> > > >
> > > > End Sub
> > > >
> > > > Private Function ob(ByVal email As String, ByVal inc As Boolean)[/color][/color]
> As[color=green][color=darkred]
> > > > String
> > > >
> > > > Dim ch() As Char
> > > > Dim i As Int32
> > > > Dim stepValue As Int16
> > > >
> > > > If inc Then stepValue = 1 Else stepValue = -1
> > > >
> > > > ch = email.ToCharArray()
> > > >
> > > > For i = 0 To ch.Length - 1
> > > > ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) +[/color][/color][/color]
stepValue)[color=blue][color=green][color=darkred]
> > > > Next
> > > >
> > > > Return New String(ch)
> > > >
> > > > End Function
> > > >
> > > >
> > > > Time flies when you don't know what you're doing
> > > >
> > > > "CJ Taylor" <[cege] at [tavayn] dit commmmm> wrote in message
> > > > news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...
> > > > > Standard cannot create DLL's.
> > > > >
> > > > > Otherwise, it would be listed as Class Library...
> > > > >
> > > > >
> > > > > "Nick" <NickNickNick@freenet.de> wrote in message
> > > > > news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...
> > > > > > I am stuck with a very basic issue.
> > > > > > I try to create a dll with VB.NET. I find in the documentation[/color][/color]
> that[color=green]
> > I[color=darkred]
> > > > > should
> > > > > > be able to set that up in the project property dialog:
> > > > > > Common Properties - General - Output Type.
> > > > > > It gives me "Windows Application" and "Console Application" but[/color][/color]
> not[color=green][color=darkred]
> > > "dll
> > > > > > library".
> > > > > >
> > > > > > When I create a new project, I have 5 choices:
> > > > > > - Windows Application
> > > > > > - Console Application
> > > > > > - ASP.NET Web Application
> > > > > > - ASP.NET Web Service
> > > > > > - ASP.NET Mobile WebApplication
> > > > > >
> > > > > > again, no DLL library project. Am I missing something?
> > > > > >
> > > > > > (I am using VB.net Standard - is the dll option not included[/color][/color]
> here?)[color=green][color=darkred]
> > > > > >
> > > > > > Thanks for help...
> > > > > > Nick
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >[/color]
> >
> >[/color]
>
>[/color]


One Handed Man \( OHM - Terry Burns \)
Guest
 
Posts: n/a
#40: Nov 21 '05

re: Dll with VB.Net


Aint that the truth ( he he, they really dont know
mmwwhahahahahahahahaha ]:-> ) . . . .

--
OHM ( Terry Burns ) * Use the following to email me *

Dim ch() As Char = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
For i As Int32 = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
Next
Process.Start("mailto:" & New String(ch))
--


"Nak" <a@a.com> wrote in message
news:uf4V1K4qEHA.3428@TK2MSFTNGP11.phx.gbl...[color=blue]
> Haha, and who says there isn't a community here? You guys are all loons!
>
> Nick.
>
> "One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> wrote in[/color]
message[color=blue]
> news:uhT7aCvqEHA.2964@TK2MSFTNGP14.phx.gbl...[color=green]
> > Good Idea, this is the spirit of co-operation and development.
> >
> > Thanks for the idea !
> >
> > ;-)
> >
> > --
> > OHM ( Terry Burns ) Use the following to email me
> >
> >
> > Dim ch() As Char =
> > "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
> > For i As Int16 = 0 To ch.Length - 1
> > ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
> > Next
> > Process.Start("mailto:" & New String(ch))
> > --
> >
> >
> > "Cor Ligthert" <notmyfirstname@planet.nl> wrote in message
> > news:uDnd94uqEHA.2776@TK2MSFTNGP12.phx.gbl...[color=darkred]
> >> Terry,
> >>
> >> I find this one even nicer
> >>
> >> \\\
> >> Dim ch() As Char = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
> >> For i As Integer = 0 To ch.Length - 1
> >> ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
> >> Next
> >> Process.Start("mailto:" & New String(ch))
> >> ///
> >> :-)
> >>
> >> Cor
> >>
> >>[/color]
> >
> >[/color]
>
>[/color]


Bernard Bourée
Guest
 
Posts: n/a
#41: Nov 21 '05

re: Dll with VB.Net


Hi Nick

Tried to downlod it to adapt at 2003 but could not find the link!

Thanks

--
Bernard Bourée
bernard@bouree.net
"Nak" <a@a.com> a écrit dans le message de
news:O8P0RFjqEHA.1644@tk2msftngp13.phx.gbl...[color=blue]
> Hi Nick,
>
> It is quite easy to make your own templates for a class library. If[/color]
you[color=blue]
> take a look at the 2002 versions from my web site you may be able to[/color]
modify[color=blue]
> them to work with 2003. I first achieved this by downloading a pretty[/color]
much[color=blue]
> empty class library project and stripped out any code so that it was[/color]
empty,[color=blue]
> then looked at how the windows application template was structured. I'm
> sure you can work it out :-) But it's worth having the extra templates
> trust me!
>
> http://www.members.lycos.co.uk/nickpatemanpwp/
> goto My Own Software > VB.NET Templates.
>
> I hope this helps.
>
> Nick.
>
> "Nick" <NickNickNick@freenet.de> wrote in message
> news:OrQvDIiqEHA.1964@TK2MSFTNGP12.phx.gbl...[color=green]
> > Thanks!!!!
> > That is very valuable information!
> > Andi
> >
> >
> > "CJ Taylor" <[cege] at [tavayn] dit commmmm> schrieb im Newsbeitrag
> > news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...[color=darkred]
> >> Standard cannot create DLL's.
> >>
> >> Otherwise, it would be listed as Class Library...
> >>
> >>
> >> "Nick" <NickNickNick@freenet.de> wrote in message
> >> news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...
> >> > I am stuck with a very basic issue.
> >> > I try to create a dll with VB.NET. I find in the documentation that I
> >> should
> >> > be able to set that up in the project property dialog:
> >> > Common Properties - General - Output Type.
> >> > It gives me "Windows Application" and "Console Application" but not
> >> > "dll
> >> > library".
> >> >
> >> > When I create a new project, I have 5 choices:
> >> > - Windows Application
> >> > - Console Application
> >> > - ASP.NET Web Application
> >> > - ASP.NET Web Service
> >> > - ASP.NET Mobile WebApplication
> >> >
> >> > again, no DLL library project. Am I missing something?
> >> >
> >> > (I am using VB.net Standard - is the dll option not included here?)
> >> >
> >> > Thanks for help...
> >> > Nick
> >> >
> >> >
> >>
> >>[/color]
> >
> >[/color]
>
>[/color]


Bernard Bourée
Guest
 
Posts: n/a
#42: Nov 21 '05

re: Dll with VB.Net


Hi Nick

Tried to downlod it to adapt at 2003 but could not find the link!

Thanks

--
Bernard Bourée
bernard@bouree.net
"Nak" <a@a.com> a écrit dans le message de
news:O8P0RFjqEHA.1644@tk2msftngp13.phx.gbl...[color=blue]
> Hi Nick,
>
> It is quite easy to make your own templates for a class library. If[/color]
you[color=blue]
> take a look at the 2002 versions from my web site you may be able to[/color]
modify[color=blue]
> them to work with 2003. I first achieved this by downloading a pretty[/color]
much[color=blue]
> empty class library project and stripped out any code so that it was[/color]
empty,[color=blue]
> then looked at how the windows application template was structured. I'm
> sure you can work it out :-) But it's worth having the extra templates
> trust me!
>
> http://www.members.lycos.co.uk/nickpatemanpwp/
> goto My Own Software > VB.NET Templates.
>
> I hope this helps.
>
> Nick.
>
> "Nick" <NickNickNick@freenet.de> wrote in message
> news:OrQvDIiqEHA.1964@TK2MSFTNGP12.phx.gbl...[color=green]
> > Thanks!!!!
> > That is very valuable information!
> > Andi
> >
> >
> > "CJ Taylor" <[cege] at [tavayn] dit commmmm> schrieb im Newsbeitrag
> > news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...[color=darkred]
> >> Standard cannot create DLL's.
> >>
> >> Otherwise, it would be listed as Class Library...
> >>
> >>
> >> "Nick" <NickNickNick@freenet.de> wrote in message
> >> news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...
> >> > I am stuck with a very basic issue.
> >> > I try to create a dll with VB.NET. I find in the documentation that I
> >> should
> >> > be able to set that up in the project property dialog:
> >> > Common Properties - General - Output Type.
> >> > It gives me "Windows Application" and "Console Application" but not
> >> > "dll
> >> > library".
> >> >
> >> > When I create a new project, I have 5 choices:
> >> > - Windows Application
> >> > - Console Application
> >> > - ASP.NET Web Application
> >> > - ASP.NET Web Service
> >> > - ASP.NET Mobile WebApplication
> >> >
> >> > again, no DLL library project. Am I missing something?
> >> >
> >> > (I am using VB.net Standard - is the dll option not included here?)
> >> >
> >> > Thanks for help...
> >> > Nick
> >> >
> >> >
> >>
> >>[/color]
> >
> >[/color]
>
>[/color]


Nak
Guest
 
Posts: n/a
#43: Nov 21 '05

re: Dll with VB.Net


Hi there,

http://www.members.lycos.co.uk/nickpatemanpwp/

click "My Own Software"
click "VB.NET Templates" (It's down the page in the VB.NET section)

Nick.

"Bernard Bourée" <bernard@bouree.net> wrote in message
news:e1rLKxMyEHA.4060@TK2MSFTNGP10.phx.gbl...[color=blue]
> Hi Nick
>
> Tried to downlod it to adapt at 2003 but could not find the link!
>
> Thanks
>
> --
> Bernard Bourée
> bernard@bouree.net
> "Nak" <a@a.com> a écrit dans le message de
> news:O8P0RFjqEHA.1644@tk2msftngp13.phx.gbl...[color=green]
>> Hi Nick,
>>
>> It is quite easy to make your own templates for a class library. If[/color]
> you[color=green]
>> take a look at the 2002 versions from my web site you may be able to[/color]
> modify[color=green]
>> them to work with 2003. I first achieved this by downloading a pretty[/color]
> much[color=green]
>> empty class library project and stripped out any code so that it was[/color]
> empty,[color=green]
>> then looked at how the windows application template was structured. I'm
>> sure you can work it out :-) But it's worth having the extra templates
>> trust me!
>>
>> http://www.members.lycos.co.uk/nickpatemanpwp/
>> goto My Own Software > VB.NET Templates.
>>
>> I hope this helps.
>>
>> Nick.
>>
>> "Nick" <NickNickNick@freenet.de> wrote in message
>> news:OrQvDIiqEHA.1964@TK2MSFTNGP12.phx.gbl...[color=darkred]
>> > Thanks!!!!
>> > That is very valuable information!
>> > Andi
>> >
>> >
>> > "CJ Taylor" <[cege] at [tavayn] dit commmmm> schrieb im Newsbeitrag
>> > news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...
>> >> Standard cannot create DLL's.
>> >>
>> >> Otherwise, it would be listed as Class Library...
>> >>
>> >>
>> >> "Nick" <NickNickNick@freenet.de> wrote in message
>> >> news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...
>> >> > I am stuck with a very basic issue.
>> >> > I try to create a dll with VB.NET. I find in the documentation that
>> >> > I
>> >> should
>> >> > be able to set that up in the project property dialog:
>> >> > Common Properties - General - Output Type.
>> >> > It gives me "Windows Application" and "Console Application" but not
>> >> > "dll
>> >> > library".
>> >> >
>> >> > When I create a new project, I have 5 choices:
>> >> > - Windows Application
>> >> > - Console Application
>> >> > - ASP.NET Web Application
>> >> > - ASP.NET Web Service
>> >> > - ASP.NET Mobile WebApplication
>> >> >
>> >> > again, no DLL library project. Am I missing something?
>> >> >
>> >> > (I am using VB.net Standard - is the dll option not included here?)
>> >> >
>> >> > Thanks for help...
>> >> > Nick
>> >> >
>> >> >
>> >>
>> >>
>> >
>> >[/color]
>>
>>[/color]
>
>[/color]


Nak
Guest
 
Posts: n/a
#44: Nov 21 '05

re: Dll with VB.Net


Hi there,

http://www.members.lycos.co.uk/nickpatemanpwp/

click "My Own Software"
click "VB.NET Templates" (It's down the page in the VB.NET section)

Nick.

"Bernard Bourée" <bernard@bouree.net> wrote in message
news:e1rLKxMyEHA.4060@TK2MSFTNGP10.phx.gbl...[color=blue]
> Hi Nick
>
> Tried to downlod it to adapt at 2003 but could not find the link!
>
> Thanks
>
> --
> Bernard Bourée
> bernard@bouree.net
> "Nak" <a@a.com> a écrit dans le message de
> news:O8P0RFjqEHA.1644@tk2msftngp13.phx.gbl...[color=green]
>> Hi Nick,
>>
>> It is quite easy to make your own templates for a class library. If[/color]
> you[color=green]
>> take a look at the 2002 versions from my web site you may be able to[/color]
> modify[color=green]
>> them to work with 2003. I first achieved this by downloading a pretty[/color]
> much[color=green]
>> empty class library project and stripped out any code so that it was[/color]
> empty,[color=green]
>> then looked at how the windows application template was structured. I'm
>> sure you can work it out :-) But it's worth having the extra templates
>> trust me!
>>
>> http://www.members.lycos.co.uk/nickpatemanpwp/
>> goto My Own Software > VB.NET Templates.
>>
>> I hope this helps.
>>
>> Nick.
>>
>> "Nick" <NickNickNick@freenet.de> wrote in message
>> news:OrQvDIiqEHA.1964@TK2MSFTNGP12.phx.gbl...[color=darkred]
>> > Thanks!!!!
>> > That is very valuable information!
>> > Andi
>> >
>> >
>> > "CJ Taylor" <[cege] at [tavayn] dit commmmm> schrieb im Newsbeitrag
>> > news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...
>> >> Standard cannot create DLL's.
>> >>
>> >> Otherwise, it would be listed as Class Library...
>> >>
>> >>
>> >> "Nick" <NickNickNick@freenet.de> wrote in message
>> >> news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...
>> >> > I am stuck with a very basic issue.
>> >> > I try to create a dll with VB.NET. I find in the documentation that
>> >> > I
>> >> should
>> >> > be able to set that up in the project property dialog:
>> >> > Common Properties - General - Output Type.
>> >> > It gives me "Windows Application" and "Console Application" but not
>> >> > "dll
>> >> > library".
>> >> >
>> >> > When I create a new project, I have 5 choices:
>> >> > - Windows Application
>> >> > - Console Application
>> >> > - ASP.NET Web Application
>> >> > - ASP.NET Web Service
>> >> > - ASP.NET Mobile WebApplication
>> >> >
>> >> > again, no DLL library project. Am I missing something?
>> >> >
>> >> > (I am using VB.net Standard - is the dll option not included here?)
>> >> >
>> >> > Thanks for help...
>> >> > Nick
>> >> >
>> >> >
>> >>
>> >>
>> >
>> >[/color]
>>
>>[/color]
>
>[/color]


Bernard Bourée
Guest
 
Posts: n/a
#45: Nov 21 '05

re: Dll with VB.Net


Nick
Thanks but that gives me only the oppotunity to download the msi file which
is canceleed since it detects that I dont have VS NET 20002 but not to the
code.

--
Bernard Bourée
bernard@bouree.net
"Nak" <a@a.com> a écrit dans le message de
news:uYnZvCQyEHA.2192@TK2MSFTNGP14.phx.gbl...[color=blue]
> Hi there,
>
> http://www.members.lycos.co.uk/nickpatemanpwp/
>
> click "My Own Software"
> click "VB.NET Templates" (It's down the page in the VB.NET section)
>
> Nick.
>
> "Bernard Bourée" <bernard@bouree.net> wrote in message
> news:e1rLKxMyEHA.4060@TK2MSFTNGP10.phx.gbl...[color=green]
> > Hi Nick
> >
> > Tried to downlod it to adapt at 2003 but could not find the link!
> >
> > Thanks
> >
> > --
> > Bernard Bourée
> > bernard@bouree.net
> > "Nak" <a@a.com> a écrit dans le message de
> > news:O8P0RFjqEHA.1644@tk2msftngp13.phx.gbl...[color=darkred]
> >> Hi Nick,
> >>
> >> It is quite easy to make your own templates for a class library.[/color][/color][/color]
If[color=blue][color=green]
> > you[color=darkred]
> >> take a look at the 2002 versions from my web site you may be able to[/color]
> > modify[color=darkred]
> >> them to work with 2003. I first achieved this by downloading a pretty[/color]
> > much[color=darkred]
> >> empty class library project and stripped out any code so that it was[/color]
> > empty,[color=darkred]
> >> then looked at how the windows application template was structured.[/color][/color][/color]
I'm[color=blue][color=green][color=darkred]
> >> sure you can work it out :-) But it's worth having the extra templates
> >> trust me!
> >>
> >> http://www.members.lycos.co.uk/nickpatemanpwp/
> >> goto My Own Software > VB.NET Templates.
> >>
> >> I hope this helps.
> >>
> >> Nick.
> >>
> >> "Nick" <NickNickNick@freenet.de> wrote in message
> >> news:OrQvDIiqEHA.1964@TK2MSFTNGP12.phx.gbl...
> >> > Thanks!!!!
> >> > That is very valuable information!
> >> > Andi
> >> >
> >> >
> >> > "CJ Taylor" <[cege] at [tavayn] dit commmmm> schrieb im Newsbeitrag
> >> > news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...
> >> >> Standard cannot create DLL's.
> >> >>
> >> >> Otherwise, it would be listed as Class Library...
> >> >>
> >> >>
> >> >> "Nick" <NickNickNick@freenet.de> wrote in message
> >> >> news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...
> >> >> > I am stuck with a very basic issue.
> >> >> > I try to create a dll with VB.NET. I find in the documentation[/color][/color][/color]
that[color=blue][color=green][color=darkred]
> >> >> > I
> >> >> should
> >> >> > be able to set that up in the project property dialog:
> >> >> > Common Properties - General - Output Type.
> >> >> > It gives me "Windows Application" and "Console Application" but[/color][/color][/color]
not[color=blue][color=green][color=darkred]
> >> >> > "dll
> >> >> > library".
> >> >> >
> >> >> > When I create a new project, I have 5 choices:
> >> >> > - Windows Application
> >> >> > - Console Application
> >> >> > - ASP.NET Web Application
> >> >> > - ASP.NET Web Service
> >> >> > - ASP.NET Mobile WebApplication
> >> >> >
> >> >> > again, no DLL library project. Am I missing something?
> >> >> >
> >> >> > (I am using VB.net Standard - is the dll option not included[/color][/color][/color]
here?)[color=blue][color=green][color=darkred]
> >> >> >
> >> >> > Thanks for help...
> >> >> > Nick
> >> >> >
> >> >> >
> >> >>
> >> >>
> >> >
> >> >
> >>
> >>[/color]
> >
> >[/color]
>
>[/color]


Bernard Bourée
Guest
 
Posts: n/a
#46: Nov 21 '05

re: Dll with VB.Net


Nick
Thanks but that gives me only the oppotunity to download the msi file which
is canceleed since it detects that I dont have VS NET 20002 but not to the
code.

--
Bernard Bourée
bernard@bouree.net
"Nak" <a@a.com> a écrit dans le message de
news:uYnZvCQyEHA.2192@TK2MSFTNGP14.phx.gbl...[color=blue]
> Hi there,
>
> http://www.members.lycos.co.uk/nickpatemanpwp/
>
> click "My Own Software"
> click "VB.NET Templates" (It's down the page in the VB.NET section)
>
> Nick.
>
> "Bernard Bourée" <bernard@bouree.net> wrote in message
> news:e1rLKxMyEHA.4060@TK2MSFTNGP10.phx.gbl...[color=green]
> > Hi Nick
> >
> > Tried to downlod it to adapt at 2003 but could not find the link!
> >
> > Thanks
> >
> > --
> > Bernard Bourée
> > bernard@bouree.net
> > "Nak" <a@a.com> a écrit dans le message de
> > news:O8P0RFjqEHA.1644@tk2msftngp13.phx.gbl...[color=darkred]
> >> Hi Nick,
> >>
> >> It is quite easy to make your own templates for a class library.[/color][/color][/color]
If[color=blue][color=green]
> > you[color=darkred]
> >> take a look at the 2002 versions from my web site you may be able to[/color]
> > modify[color=darkred]
> >> them to work with 2003. I first achieved this by downloading a pretty[/color]
> > much[color=darkred]
> >> empty class library project and stripped out any code so that it was[/color]
> > empty,[color=darkred]
> >> then looked at how the windows application template was structured.[/color][/color][/color]
I'm[color=blue][color=green][color=darkred]
> >> sure you can work it out :-) But it's worth having the extra templates
> >> trust me!
> >>
> >> http://www.members.lycos.co.uk/nickpatemanpwp/
> >> goto My Own Software > VB.NET Templates.
> >>
> >> I hope this helps.
> >>
> >> Nick.
> >>
> >> "Nick" <NickNickNick@freenet.de> wrote in message
> >> news:OrQvDIiqEHA.1964@TK2MSFTNGP12.phx.gbl...
> >> > Thanks!!!!
> >> > That is very valuable information!
> >> > Andi
> >> >
> >> >
> >> > "CJ Taylor" <[cege] at [tavayn] dit commmmm> schrieb im Newsbeitrag
> >> > news:eyvv1%23hqEHA.1960@TK2MSFTNGP10.phx.gbl...
> >> >> Standard cannot create DLL's.
> >> >>
> >> >> Otherwise, it would be listed as Class Library...
> >> >>
> >> >>
> >> >> "Nick" <NickNickNick@freenet.de> wrote in message
> >> >> news:eJR$P2hqEHA.536@TK2MSFTNGP11.phx.gbl...
> >> >> > I am stuck with a very basic issue.
> >> >> > I try to create a dll with VB.NET. I find in the documentation[/color][/color][/color]
that[color=blue][color=green][color=darkred]
> >> >> > I
> >> >> should
> >> >> > be able to set that up in the project property dialog:
> >> >> > Common Properties - General - Output Type.
> >> >> > It gives me "Windows Application" and "Console Application" but[/color][/color][/color]
not[color=blue][color=green][color=darkred]
> >> >> > "dll
> >> >> > library".
> >> >> >
> >> >> > When I create a new project, I have 5 choices:
> >> >> > - Windows Application
> >> >> > - Console Application
> >> >> > - ASP.NET Web Application
> >> >> > - ASP.NET Web Service
> >> >> > - ASP.NET Mobile WebApplication
> >> >> >
> >> >> > again, no DLL library project. Am I missing something?
> >> >> >
> >> >> > (I am using VB.net Standard - is the dll option not included[/color][/color][/color]
here?)[color=blue][color=green][color=darkred]
> >> >> >
> >> >> > Thanks for help...
> >> >> > Nick
> >> >> >
> >> >> >
> >> >>
> >> >>
> >> >
> >> >
> >>
> >>[/color]
> >
> >[/color]
>
>[/color]


Closed Thread