Using Win32 functions in Visual FoxPro Image Gallery
Windows Sockets 2 (Winsock)
..msdn
accept
bind
closesocket
gethostbyaddr
gethostbyname
gethostname
getnameinfo
getprotobyname
getprotobynumber
getservbyname
getservbyport
getsockopt
htonl
htons
inet_addr
inet_ntoa
listen
ntohl
ntohs
recv
recvfrom
send
sendto
setsockopt
socket
WSACleanup
WSACloseEvent
WSAConnect
WSACreateEvent
WSAEnumProtocols
WSAEventSelect
WSAGetLastError
WSARecv
WSASend
WSAStartup
WSAWaitForMultipleEvents
ws_connect
ws_select
Code examples:
A client for testing non-blocking Winsock server
How to build UDP responder
How to create non-blocking Winsock server
How to ping a remote site using ICMP API calls
How to retrieve network parameters for the local computer (including Host name, Domain name, and DNS Server)
Retrieving the interface–to–IP address mapping table
Retrieving the IP-to-physical address mapping table
Winsock: changing the byte ordering
Winsock: connecting to a news server (NNTP, port 119)
Winsock: creating a socket that is bound to a specific service provider
Winsock: how to retrieve a service information corresponding to a port
Winsock: how to retrieve a service information corresponding to a service name
Winsock: how to retrieve the protocol information corresponding to a protocol name
Winsock: how to retrieve the protocol information corresponding to a protocol number
Winsock: initializing the service in the VFP application
Winsock: reading and setting socket options
Winsock: reading email messages (POP3, port 110)
Winsock: resolving an address to a host name
Winsock: retrieving directory listing from an FTP server using passive data connection (FTP, port 21)
Winsock: retrieving information about available transport protocols
Winsock: retrieving information from a host database for a given host name
Winsock: retrieving the host information corresponding to a network address
Winsock: retrieving the standard host name and IP address for the local machine
Winsock: retrieving Web pages using sockets (HTTP, port 80)
Winsock: sending email messages (SMTP, port 25)
Winsock: connecting to a news server (NNTP, port 119)

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
Before you begin:
This sample shows how to retrieve a list of newsgroups stored on a news server. The base class contains practically all methods to extend this code for reading and posting messages to a newsgroup.



The code connects to NNTP server news.microsoft.com. Any other NNTP server can be used.
 
  Members area. Log in to view this example.
 
  User name:
  Password:
 
 
  Forgot your password?
 
  Sign up for
the Membership
 
 


User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
9824 bytes  
Created: 2003-02-23 10:42:07  
Modified: 2011-12-10 09:20:22  
Visits in 7 days: 136  
Listed functions:
closesocket
gethostbyname
GlobalAlloc
GlobalFree
GlobalSize
htons
inet_addr
inet_ntoa
recv
send
socket
WSACleanup
WSACloseEvent
WSAConnect
WSACreateEvent
WSAEventSelect
WSAGetLastError
WSARecv
WSASend
WSAStartup
WSAWaitForMultipleEvents
Printer friendly API declarations
My comment:
Some useful links:
  • RFC977. Network News Transfer Protocol
  • Network News Transfer Protocol on freesoft.org
  • How to use Winsock Control in order to build Internet applications


    #kwd: sln_winsock.
  • Word Index links for this example:
    Translate this page:
      Spanish    Portuguese    German    French    Italian  
    FreeTranslation.com offers instant, free translations of text or web pages.
    User Contributed Notes:
    johnk@spectrumdata.com | 2006-05-15 15:39:40
    This example does not work. WS_Connect cannot find entry point in dll
    A.M. | 2006-05-15 16:11:30
    Replace line
    nResult = ws_connect(hSocket, @cBuffer, Len(cBuffer))

    with
    DECLARE INTEGER WSAConnect IN ws2_32;
        INTEGER s, STRING @sname, INTEGER namelen,;
        INTEGER lpCallerData, INTEGER lpCalleeData,;
        INTEGER lpSQOS, INTEGER lpGQOS

    nResult = WSAConnect(hSocket, @cBuffer, Len(cBuffer), 0, 0, 0, 0)

    It may work better.

    Copyright © 2001-2013 News2News, Inc. Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use. The information on this page is presented AS IS, meaning that you may use it at your own risk. Microsoft Visual FoxPro and Windows are trade marks of Microsoft Corp. All other trademarks are the property of their respective owners. 

    Privacy policy
    Credits: PHP (4.4.9), an HTML-embedded scripting language, MySQL (5.1.55-log), the Open Source standard SQL database, AceHTML Freeware Version 4, freeware HTML Editor of choice.   Hosted by Korax Online Inc.
    Last Topics Visited (54.234.67.55)
    4 sec.Example: 'How to put a vertical text scrolling on the form (a movie cast)'
    7 sec.Function: 'SetThreadDesktop'
    4 hrs.Function: 'GdipShearMatrix'
     Example: 'Creating a mailslot'
    7.12 hrs.Function: 'GetWindowRgnBox'
    Function group: 'Painting and Drawing'
     Example: 'How to display picture stored in enhanced-format metafile (*.emf)'
    12.16 hrs.Example: 'How to copy the image of a form to the Clipboard using Bitmap API functions'
     Example: 'Storing screen shot of a form to bitmap file'
    16.07 hrs.Function: 'NetApiBufferFree'
     Example: 'Reading the structure of VFP main menu'
    Google
    Advertise here!