Index
2001-08-15 16:14Richard Milner : error 1104 foxpro2.6 file read from vfp 6.0
2001-08-15 18:48Juergen Wondzinski : RE: error 1104 foxpro2.6 file read from vfp 6.0
2001-09-19 08:42Florin Marta : Error 1104
2001-09-19 09:33rafael copquin : Re: Error 1104
2001-09-19 10:33Patrick Bibro : RE: Error 1104
2001-09-19 11:18Cotton Jerry P : RE: Error 1104
2001-09-19 16:55Stuart Dunkeld : RE: Error 1104 under Citrix
2001-09-19 17:58Florin Marta : Re: Error 1104
2001-09-20 01:26Anders Altberg : Re: Error 1104
2008-07-31 08:31Kent Belan : VFP9 - Error 1104
Back to top
error 1104 foxpro2.6 file read from vfp 6.0

Author: Richard Milner

Posted: 2001-08-15 16:14:30   Link

I am getting an error on certain occasions reading a free table in foxpro

2.6 from a vfp 6.0 application.

It is error 1104 and occurs on a seek statement (see example code snippet

below).

Any ideas? The file is based accross a network from the system reading it.

******************************************

local ll_Result

ll_Result = .F.

Use \networkmapping ableX Alias tableX_26 Order key Shared

Select tableX_26

set order to key

ll_Result = Seek ([FRED])

***********************************

Error returned.

Error reading file. (1104) given for file tableX_26 at the line

"ll_Result = Seek ([FRED])".

©2001 Richard Milner
Back to top
RE: error 1104 foxpro2.6 file read from vfp 6.0

Author: Juergen Wondzinski

Posted: 2001-08-15 18:48:38   Link

Hi Richard,

Maybe you should rebuild the Index? Have you used a collatesquence in 2.6?

 Servus

    wOOdy

 |_/| ---- ProLib - programmers liberty -----

 (.. ) Our 5 MVPs make the Fox run... See us

  - /  at www.prolib.de or www.AFPages.com

-----Original Message-----

From: profox@leafe.com [mailto:profox@leafe.com]On Behalf Of Richard

Milner

Sent: Wednesday, August 15, 2001 5:15 PM

To: Multiple recipients of ProFox

Subject: error 1104 foxpro2.6 file read from vfp 6.0

I am getting an error on certain occasions reading a free table in foxpro

2.6 from a vfp 6.0 application.

It is error 1104 and occurs on a seek statement (see example code snippet

below).

Any ideas? The file is based accross a network from the system reading it.

******************************************

local ll_Result

ll_Result = .F.

Use \networkmapping ableX Alias tableX_26 Order key Shared

Select tableX_26

set order to key

ll_Result = Seek ([FRED])

***********************************

Error returned.

Error reading file. (1104) given for file tableX_26 at the line

"ll_Result = Seek ([FRED])".

©2001 Juergen Wondzinski
Back to top
Error 1104

Author: Florin Marta

Posted: 2001-09-19 08:42:37   Link

Hi all,

What does error 1104 means?

It occurs in 2 places, 1 line is "Go Top" and the other one "Count For.."

I'm using VFP6 SP5, tables are opened for shared acess.

Thank you

Florin Marta

©2001 Florin Marta
Back to top
Re: Error 1104

Author: rafael copquin

Posted: 2001-09-19 09:33:14   Link

>From VFP HELP

Error reading file (Error 1104)

An error was returned by the operating system while Visual FoxPro was

attempting to read a file.

Regards

Rafael Copquin

----- Original Message -----

From: "Florin Marta" <flmarta@romtelecomtm.ro>

To: "Multiple recipients of ProFox" <profox@leafe.com>

Sent: Wednesday, September 19, 2001 2:42 AM

Subject: Error 1104

> Hi all,

> What does error 1104 means?

> It occurs in 2 places, 1 line is "Go Top" and the other one "Count For.."

> I'm using VFP6 SP5, tables are opened for shared acess.

>

> Thank you

> Florin Marta

>

>

>

©2001 rafael copquin
Back to top
RE: Error 1104

Author: Patrick Bibro

Posted: 2001-09-19 10:33:42   Link

1104 errors are most likely connection/network problems. The easiest way to

create one is to open a table over a network and unplug you NIC. Because

its a connection problem these are not usually logged on my centralized

error log table. I do get these messages logged when they happen during

terminal services but that's not a connection problem. I'm still at a loss

as to why I have 1104's with Citrix/Terminal Services.

I would check your network first, and look at bandwidth issues second(We had

more problems before we were 100Base).

-----Original Message-----

From: profox@leafe.com [mailto:profox@leafe.com]On Behalf Of Cotton

Jerry P

Sent: Wednesday, September 19, 2001 10:19 AM

To: Multiple recipients of ProFox

Subject: RE: Error 1104

Florin

In your on error routine(you do have one don't you?) just trap for error #

1104. When you get the error turn on the debugger and figure out what's

going on. Is the error coming from trying to read a table(.dbf) or some

other type of file.

Mr. Jerry Cotton, MCP

<mailto:cottonjp@2mawcp.usmc.mil>

(252)466-4854 fax (252)466-4806 DSN-582

> -----Original Message-----

> From: Florin Marta [mailto:flmarta@romtelecomtm.ro]

> Sent: Wednesday, September 19, 2001 10:59 AM

> To: Multiple recipients of ProFox

> Subject: Re: Error 1104

>

>

> I know that :)

> What I mean is what can cause-it?

> How can I prevent/trap the error and how to deal with it?

> The tables are on the network. Is it a network failure of some kind?

> Florin Marta

>

> > >From VFP HELP

> >

> > Error reading file (Error 1104)

> > An error was returned by the operating system while Visual

> FoxPro was

> > attempting to read a file.

> >

> > Regards

> > Rafael Copquin

> >

> > > Hi all,

> > > What does error 1104 means?

> > > It occurs in 2 places, 1 line is "Go Top" and the other one "Count

> For.."

> > > I'm using VFP6 SP5, tables are opened for shared acess.

> > >

> > > Thank you

> > > Florin Marta

>

>

>

>

©2001 Patrick Bibro
Back to top
RE: Error 1104

Author: Cotton Jerry P

Posted: 2001-09-19 11:18:43   Link

Florin

In your on error routine(you do have one don't you?) just trap for error #

1104. When you get the error turn on the debugger and figure out what's

going on. Is the error coming from trying to read a table(.dbf) or some

other type of file.

Mr. Jerry Cotton, MCP

<mailto:cottonjp@2mawcp.usmc.mil>

(252)466-4854 fax (252)466-4806 DSN-582

> -----Original Message-----

> From: Florin Marta [mailto:flmarta@romtelecomtm.ro]

> Sent: Wednesday, September 19, 2001 10:59 AM

> To: Multiple recipients of ProFox

> Subject: Re: Error 1104

>

>

> I know that :)

> What I mean is what can cause-it?

> How can I prevent/trap the error and how to deal with it?

> The tables are on the network. Is it a network failure of some kind?

> Florin Marta

>

> > >From VFP HELP

> >

> > Error reading file (Error 1104)

> > An error was returned by the operating system while Visual

> FoxPro was

> > attempting to read a file.

> >

> > Regards

> > Rafael Copquin

> >

> > > Hi all,

> > > What does error 1104 means?

> > > It occurs in 2 places, 1 line is "Go Top" and the other one "Count

> For.."

> > > I'm using VFP6 SP5, tables are opened for shared acess.

> > >

> > > Thank you

> > > Florin Marta

>

>

>

>

©2001 Cotton Jerry P
Back to top
RE: Error 1104 under Citrix

Author: Stuart Dunkeld

Posted: 2001-09-19 16:55:23   Link

>> I'm still at a loss as to why I have 1104's with Citrix/Terminal Services.

Ah! There's a KB article explaining this. (We don't have internet access today so I can't track it

down for you.) Garrett Fitzgerald of MS started a Wiki page with references to KB articles he has

written, and one of these refers to 1104 errors under Citrix/TermServs. IIRC, it happens when

another user exits the application, and has something to do with a shared resource being released.

hth,

Stuart Dunkeld

-----------------------------------------------------------------------

This message is intended for the use of the addressee

only and may contain confidential or privileged information. If you

have received it in error please notify the sender and destroy it.

You may not use it or copy it to anyone else.

E-mail is not a secure communications medium.

Please be aware of this when replying.

Although East Sussex County Council has taken steps to ensure

that this e-mail and any attachments are virus free, we can take

no responsibility if a virus is actually present and you are advised to

ensure that the appropriate checks are made.

©2001 Stuart Dunkeld
Back to top
Re: Error 1104

Author: Florin Marta

Posted: 2001-09-19 17:58:31   Link

I know that :)

What I mean is what can cause-it?

How can I prevent/trap the error and how to deal with it?

The tables are on the network. Is it a network failure of some kind?

Florin Marta

> >From VFP HELP

>

> Error reading file (Error 1104)

> An error was returned by the operating system while Visual FoxPro was

> attempting to read a file.

>

> Regards

> Rafael Copquin

>

> > Hi all,

> > What does error 1104 means?

> > It occurs in 2 places, 1 line is "Go Top" and the other one "Count

For.."

> > I'm using VFP6 SP5, tables are opened for shared acess.

> >

> > Thank you

> > Florin Marta

©2001 Florin Marta
Back to top
Re: Error 1104

Author: Anders Altberg

Posted: 2001-09-20 01:26:37   Link

You xcan always type

ERROR 1104

in the command window and see the error message. It's "Error reading file."

Check with a harddisk scanner if the heard disk and the file system is ok.

-Anders

----- Original Message -----

From: "Florin Marta" <flmarta@romtelecomtm.ro>

To: "Multiple recipients of ProFox" <profox@leafe.com>

Sent: Wednesday, September 19, 2001 7:42 AM

Subject: Error 1104

> Hi all,

> What does error 1104 means?

> It occurs in 2 places, 1 line is "Go Top" and the other one "Count For.."

> I'm using VFP6 SP5, tables are opened for shared acess.

>

> Thank you

> Florin Marta

>

>

>

©2001 Anders Altberg
Back to top
VFP9 - Error 1104

Author: Kent Belan

Posted: 2008-07-31 08:31:28   Link

Hello,

I am getting an error 1104 - Error reading file at one client site.

It appears the workstation has lost the connection to the server.

If they exit the program and restart everything is back to normal.

The error happens on a SEEK command.

How can I trap for this error ?

Thanks,

Kent

©2008 Kent Belan