Search found 3 matches

by LeeShane
Wed Nov 17, 2010 1:55 pm
Forum: .NET Programming
Topic: How to retrieve POP3 emails in VB.Net
Replies: 1
Views: 2885

Re: How to retrieve POP3 emails in VB.Net

you can start by first create a new instance of the TcpClient, and attempt to connect to the POP3 server.
Dim tcpClient As New TcpClient()
tcpClient.Connect(fld_Server.Text, Convert.ToInt32(fld_Port.Text))

---------------------------
<link removed>
by LeeShane
Wed Nov 17, 2010 1:49 pm
Forum: .Net & Other Programming
Topic: Visual Studio.net
Replies: 17
Views: 27208

Re: Visual Studio.net

Microsoft Visual Studio is an integrated development environment (IDE) from Microsoft. Visual Studio supports different programming languages by means of language services, which allow the code editor and debugger to support (to varying degrees) nearly any programming language, provided a language-s...
by LeeShane
Wed Nov 17, 2010 1:42 pm
Forum: C/C++ Programming
Topic: void main & int main in C++
Replies: 9
Views: 10248

Re: void main & int main in C++

NEO I got a problem about int void & int main in C++ when I am trying to make some little codes.You told me about this last post.In my little code. Can you please what is the difference between that 2. You told me that I have to use return in void main.& I have to use return x in int void. please e...

Go to advanced search