Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. tetsuo3030

    Error 5 while sitting on 'read events'?

    Thanks for the reply. I've actually had debugging turned on and the line number is pointing to the 'read events' call. I know the currently active form at the time of the error is the one that contains the grid..and I know the currenlty selected table at the time of the error is the record...
  2. tetsuo3030

    Error 5 while sitting on 'read events'?

    Hi. I am getting Error 5: Record out of Range..but in a manner I haven't seen before. Usually, the origin of this error is some piece of code that is directly setting the record pointer outside of the current range of the table...this case is a little different. The Error 5 origin in this...
  3. tetsuo3030

    Detecting Synchronization Failure(Sybase/Mobilink)

    Hi. I am running ASA 8.0.2.4339. The Handle_Error connection event only fires when an error occurs while the Upload stream is being applied to the Consolidated database. I need a way(or an event) to tell whether or not an error occurred during either the Upload *or* the Download. Since the...
  4. tetsuo3030

    Hard Abortion of TCP/IP Connection question

    I have a Window's client process that is connecting to a Window's server process. When testing a "Hard Abort" of the connection while the client is connected to the server(i.e. pulling the Ethernet cord out of my laptop, which is the client, while the status of the connection is 7 or Connected)...
  5. tetsuo3030

    Foxpro Client/Server, Simple Disconnection Problem

    Does nobody know? This seems a pretty generic question.
  6. tetsuo3030

    Foxpro Client/Server, Simple Disconnection Problem

    I have a Foxpro client application that makes a simple connection to a certain server process(not Fox) using the Winsock classes. My problem is that when I am communicating and test a hard disconnect, litterally pulling the Ethernet cord, the client process dies appropriately, but the server...
  7. tetsuo3030

    Binary Header Problem w/ Foxpro 6.0 & Winsock

    i got this fixed..i ended up taking a little bit from everyone.. my final solution involves calling GetData() from the DataArrival() event with the size of the binary header(2 bytes)...when that returns, I simply call GetData() again with the size of the ASCII message and since the first two...
  8. tetsuo3030

    Binary Header Problem w/ Foxpro 6.0 & Winsock

    well, I think I found the root of the problem..VFP 6.0 does not support byte arrays..if the Winsock.GetData() command encounters a NULL then it simply stops processing...that's the reason i get the NULL and then a bunch of junk afterwards..
  9. tetsuo3030

    Binary Header Problem w/ Foxpro 6.0 & Winsock

    >> You do understand that in ascii 00000000 = NUL and 00000011 >> = SOH. Matt, I do understand this. The fact that 00000000 = NUL is exactly my problem here! I'm trying to interpret the data coming across as an Integer followed by a bunch of ASCII data. Instead of seeing the first 2 bytes as...
  10. tetsuo3030

    Binary Header Problem w/ Foxpro 6.0 & Winsock

    You do understand that data comes across the wire in binary format, right? The server is sending me ASCII preceded by bytes that signify the integer value of the length of the ASCII message. So in Ethereal, I can see that the HEX of the first two bytes is 00 and 46 respectively. 00 expands to...
  11. tetsuo3030

    Binary Header Problem w/ Foxpro 6.0 & Winsock

    Mike(Lewis)..yes I should be able to do that(use STRTRANS).. the problem is I can't figure out where this needs to be done. When the Winsock method .GETDATA(@lcData) returns back to .DATAARRIVAL(bytestotal), it lcData is already blank! When I run the commands through the Command window and...
  12. tetsuo3030

    Binary Header Problem w/ Foxpro 6.0 & Winsock

    CHR(48) is 00110000 and CHR(54) is 00110110.. the binary header that precedes my message is: 00000000 01000110 -------- -------- DEC=0 DEC=70
  13. tetsuo3030

    Binary Header Problem w/ Foxpro 6.0 & Winsock

    Hello..I am having a problem retrieving data properly via Winsock in Foxpro 6.0. My client is supposed to receive an ASCII message that has 2-bytes attached to the front that is supposed to represent the length of the ASCII message in bytes. for instance, if the incoming ASCII message is...
  14. tetsuo3030

    error when initializing object

    im getting: OLE error code 0x8000ffff:Catastrophic failure from the line: this.ioCrystalRunTime = createobject("CrystalRuntime.Application") This occurs randomly on various versions of Windows(e.g. it works fine most of the time)...any ideas?
  15. tetsuo3030

    Table buffer for alias xxx has uncommitted changes

    thanks to both of you
  16. tetsuo3030

    Table buffer for alias xxx has uncommitted changes

    I'm running VFP 6.0. I realize this error comes from, in my case, doing a REQUERY() on a table that has uncommitted changes. Does anyone know of a way to determine whether or not a table or view has uncommitted changes?

Part and Inventory Search

Back
Top