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. Pantaz

    Error reading database blob stream

    My recommendation is to set a breakpoint right before that first CreateBlobStream call. Put a "watch" on partnums and the items property of lbPartNumber. Step into the code and see if it does anything unusual. Another thought, swap the lines of code around so partnums is the second or third...
  2. Pantaz

    Error reading database blob stream

    Oops... Uh, it was kinda late when I posted that... sorry.
  3. Pantaz

    Problem reading information from Query

    Your "if" statement may be failing because a field can be empty without being "NULL". You need to also check for an empty string ("").
  4. Pantaz

    Error reading database blob stream

    You're really going to hate this... TStream *partnums = dataMod->Invoice->CreateBlobStream(dataMod->Invoice->FieldByName("PartsList"),bmRead); lbPartNumber->Items->LoadFromStream(partnums);

Part and Inventory Search

Back
Top