Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Reading header information from AVI file
Retrieving configuration information for the specified workstation (Win2000/XP)
Shortcut Menu Class
Starting external program from VFP and waiting for its termination
Another way to go online (it is not about choosing an ISP)
Displaying dimmed window behind VFP top-level form
Extended MessageBox Class
System Image List Viewer
Using Change Notification Objects to monitor changes to the printer or print server
Writing to INI file
GDI+: Drawing a Pie Chart
Retrieving Printer Device Context using PrintDlg function
Setting the volume label
Storing the environment strings in cursor
Using InternetSetFilePointer when resuming interrupted download from the Internet
Using the heap of the calling process to allocate memory blocks
Converting a hexadecimal string to an integer
Creating a device context for the specified printer
Creating the Save dialog box to specify the drive, directory, and name of a file to save
Enumerating connections made to a shared resource for the local computer (WinNT only)
Enumerating files opened on the network
Obtaining list of tables stored in an ODBC Data Source
Retrieving the state of your Internet connection
Drawing cursors for the classes defined by the system (preregistered): BUTTON, EDIT, LISTBOX etc.
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: 144  
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.242.188.217)
    13.52 hrs.Function: 'SQLInstallerError'
    Function group: 'ODBC API'
    23.34 hrs.Function: 'GdiGetBatchLimit'
    Function group: 'Painting and Drawing'
    1 day(s)Example: 'Winsock: how to retrieve the protocol information corresponding to a protocol name'
     Function: 'SQLBrowseConnect'
     Example: 'Converting command-line string to a set of Unicode argument strings (WinNT only)'
    2 day(s)
    Function group: 'Window Procedure'
     Function: 'GetProcessTimes'
    Function group: 'Process and Thread'
     Function: 'CeGetSystemInfo'
    Function group: 'Remote Application Programming (RAPI)'
     Function: 'GetSystemPowerStatus'
     Example: 'Validating the heap of the calling process'
    Google
    Advertise here!