Left Side cannot be assigned
From: Richard (rwskinner)
Date: 10/28/04
- Previous message: Jud McCranie: "Re: Urgent problem"
- Next in thread: Jud McCranie: "Re: Left Side cannot be assigned"
- Reply: Jud McCranie: "Re: Left Side cannot be assigned"
- Reply: Bob Church: "Re: Left Side cannot be assigned"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Wed, 27 Oct 2004 18:53:05 -0500
Now why is this standard function code failing in Delphi 7 - Left Side
cannot be assigned to? Is it a compiler option or something?
Var
IOCTL_Storage_Check_Verify : Integer;
function Ctl_Code(DeviceType, FuncNo, Method, Access: integer): integer;
begin
Result:= (DeviceType shl 16) or (Access shl 14) or (FuncNo shl 2) or
(Method);
end;
IOCTL_Storage_Check_Verify := Ctl_Code(IOCTL_Storage_Base, $0200,
Method_Buffered, File_Read_Access);
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
- Previous message: Jud McCranie: "Re: Urgent problem"
- Next in thread: Jud McCranie: "Re: Left Side cannot be assigned"
- Reply: Jud McCranie: "Re: Left Side cannot be assigned"
- Reply: Bob Church: "Re: Left Side cannot be assigned"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|