Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[MS4][Resolved] Error With Books
#1
I am having trouble with my book system that i made, there error only occurs when i try to save the book so im guessing its in the saving subs. I have tried to find and fix this error but it keeps eluding me. I am posting a download of the source incase anyone wants to help me.

Download: REMOVED
Reply
#2
I understand asking for help,
But posting your ENTIRE source?
are you sure?
Reply
#3
Most of it is just stuff from tutorials section so....
Reply
#4
I was going to help, until I noticed the source was using byte arrays.
Reply
#5
Fixed it, I had this

Code:
Public Type BookRec
    Name As String
    Page1 As String
    Page2 As String
End Type

Instead of

Code:
Public Type BookRec
    Name As String * NAME_LENGTH
    Page1 As String * 2000
    Page2 As String * 2000
End Type
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)