Modify

Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#2387 closed Bug (Fixed)

FileOpen - parameters description - Filename of the text file to open.

Reported by: mlipok Owned by: FireFox
Milestone: 3.3.9.18 Component: Documentation
Version: 3.3.9.17 Severity: None
Keywords: Cc:

Description

This function can open many file types, not only TXT.

EXAMPLE:

#include <FileConstants.au3>
#include <MsgBoxConstants.au3>

Example()

Func Example()

Local Const $sFilePath = @ScriptDir & "\FileOpen.pdf"
If FileExists($sFilePath) Then

Local $hFileOpen = FileOpen($sFilePath, $FO_BINARY + $FO_UNICODE)
Local $sFileRead = FileRead($hFileOpen)
FileClose($hFileOpen)
MsgBox($MB_SYSTEMMODAL, "", "Contents of the file:" & @CRLF & $sFileRead)

Else

MsgBox($MB_SYSTEMMODAL, "File not exist", $sFilePath)

EndIf

EndFunc ;==>Example

Attachments (0)

Change History (4)

comment:1 Changed 11 years ago by mlipok

Pleas change
parameters description
From that
Filename of the text file to open.
to something like that
Filename to open (full path).

comment:2 Changed 11 years ago by FireFox

  • Milestone set to 3.3.9.18
  • Owner set to FireFox
  • Resolution set to Fixed
  • Status changed from new to closed

Fixed by revision [8656] in version: 3.3.9.18

comment:3 Changed 11 years ago by mlipok

in 3.3.9.18 it is still not fixed

comment:4 Changed 11 years ago by mlipok

I only confirm
in 3.3.9.19 now is fixed
thanks

Guidelines for posting comments:

  • You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
  • In-depth discussions should take place on the forum.

For more information see the full version of the ticket guidelines here.

Add Comment

Modify Ticket

Action
as closed The owner will remain FireFox.
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.