Frage

Ich habe Probleme mit der GetNextExtended bekommen (36) den Betrieb Arbeits in Btrieve. Hier ist der Aufruf, die den Statuscode zurückgibt 62:

    intStatus = BTRCALL(B_GETNEXTEXTENDED, _
                        m_byteFilePosBlk, _
                        m_byteRecordBuffer(0), _
                        lngDataBufferLen, _
                        ByVal strKeyBuffer, _
                        intKeyBufferLen, _
                        m_intKeyNum)

Nachdem eine Suche nach dem Code zu tun, fand ich zahlreiche Website besagt, dass die Code zeigt einen Fehler in dem Datenpuffer, gespeichert in m_byteRecordBuffer. Hier werden die gespeicherten Werte in diesen Variablen:

m_byteRecordBuffer(0)    16    'These two bytes indicate the total size of'  
m_byteRecordBuffer(1)    0     'data buffer' 

m_byteRecordBuffer(2)    67    'These two bytes indicate the characters 'UC''
m_byteRecordBuffer(3)    85

m_byteRecordBuffer(4)    0     'These two bytes indicate the maximum reject' 
m_byteRecordBuffer(5)    0     'count, which if set to 0 defaults to 4,095' 

m_byteRecordBuffer(6)    0     'These two bytes indicate the number of terms'
m_byteRecordBuffer(7)    0     'which has been set to zero'

m_byteRecordBuffer(8)    1     'These two bytes indicate the number of' 
m_byteRecordBuffer(9)    0     'records to return'

m_byteRecordBuffer(10)  1     'These two bytes indicate the number of fields'
m_byteRecordBuffer(11)  0     'to extract'

m_byteRecordBuffer(12)  2     'These two bytes indicate the length of the'
m_byteRecordBuffer(13)  0     'field to extract'

m_byteRecordBuffer(14)  1     'These two bytes indicate the field offset'
m_byteRecordBuffer(15)  0

Ich hoffe, ich bin nur etwas einfach fehlt. Jede Hilfe wäre sehr geschätzt.

War es hilfreich?

Lösung

In dem Aufzeichnungspuffer, versucht, die Position der UC Zeichen tauschen.
Put 'U' (85) in Position 2 und 'C' (67) in Position 3.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top