Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
How to change display settings: screen resolution, screen refresh rate
Enumerating data formats currently available on the clipboard
Custom GDI+ class
Capturing keyboard activity of another application with the Raw Input API (VFP9)
Mapping and disconnecting network drives
Winsock: retrieving directory listing from an FTP server using passive data connection (FTP, port 21)
Winsock: sending email messages (SMTP, port 25)
How to display the Properties dialog box for a file (ShellExecuteEx)
Disk in drive A:
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
How to download a file from the FTP server using FtpGetFile
Using Font and Text functions
Detecting changes in connections to removable drives (VFP9)
How to play AVI file on the _screen
Using Video Capture: displaying on FoxPro form frames and previewing video obtained from a digital camera
Using EnumPrinters function to enumerate locally installed printers
Splash Screen for the VFP application
Running MSDOS Shell as a child process with redirected input and output (smarter RUN command)
Converting Unicode data from the Clipboard to a character string using a given code page
Creating irregularly shaped FoxPro form using transparency color key
Subclassing CommandButton control to create BackColor property
Enumerating network resources
Vertical Label control
Custom HttpRequest class (WinHTTP)
Changing file attributes

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
 
LPARAMETERS  lpFileName
 
#DEFINE FILE_ATTRIBUTE_READONLY       1  
#DEFINE FILE_ATTRIBUTE_HIDDEN         2  
#DEFINE FILE_ATTRIBUTE_SYSTEM         4  
#DEFINE FILE_ATTRIBUTE_DIRECTORY     16  
#DEFINE FILE_ATTRIBUTE_ARCHIVE       32  
#DEFINE FILE_ATTRIBUTE_NORMAL       128  
#DEFINE FILE_ATTRIBUTE_TEMPORARY    512  
#DEFINE FILE_ATTRIBUTE_COMPRESSED  2048  
 
DECLARE SHORT SetFileAttributes IN kernel32;
    STRING lpFileName, INTEGER dwFileAttributes
 
DECLARE INTEGER GetFileAttributes IN kernel32 STRING lpFileName 
 
* read current attributes for this file
dwFileAttributes = GetFileAttributes (lpFileName)
 
IF dwFileAttributes = -1
* the file does not exist
    RETURN
ENDIF
 
IF dwFileAttributes > 0
    * read-only attribute to be set
    dwFileAttributes = BitOr(dwFileAttributes, FILE_ATTRIBUTE_READONLY)
 
    * archive attribute to be removed
    IF BitAnd(dwFileAttributes, FILE_ATTRIBUTE_ARCHIVE) = FILE_ATTRIBUTE_ARCHIVE
        dwFileAttributes = dwFileAttributes - FILE_ATTRIBUTE_ARCHIVE
    ENDIF
 
    * setting selected attributes
    = SetFileAttributes (lpFileName, dwFileAttributes)
ENDIF
 
 

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
1120 bytes  
Created: 2001-08-14 12:00:00  
Modified: 2007-08-02 14:45:37  
Visits in 7 days: 170  
Listed functions:
GetFileAttributes
SetFileAttributes
Printer friendly API declarations
My comment:
Pass a file name to this procedure. This code sets read-only and clears archive attributes for the selected file.

DOS command ATTRIB can be used for the same purpose:
ATTRIB -R c:\mydir\*.* /S
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:
There are no notes on this subject.


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.235.20.17)
3.41 hrs.Function: 'GetProfileString'
Function group: 'Registry'
 Example: 'Smart Card Database Query Functions'
4.22 hrs.Example: 'Using the LoadImage function to have a bitmap file loaded and displayed on VFP main window'
 Example: 'Reading and setting explicit Application User Model ID for the current process (Win7)'
4.33 hrs.Function: 'StrToInt'
 Example: 'Opening the Page Setup dialog box to specify the attributes of a printed page'
4.44 hrs.Example: 'Converting Unicode data from the Clipboard to a character string using a given code page'
 Example: 'Splash Screen for the VFP application'
5.15 hrs.Function: 'DeleteMenu'
Function group: 'Menu'
8.22 hrs.Example: 'How to change display settings: screen resolution, screen refresh rate'
Language: 'C++'
Google
Advertise here!