Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)

  • RE: Generating a Bar Code

    Aa above, download still failed. Can some post it in reply?

  • RE: blob (word or pdf?)

    Assumeded that you have a table called ImageData with ImageNo varchar(50),  Data(Image) Fields

      Dim mstream As ADODB.Stream

      Dim rsDocumentAs ADODB.Recordset

       Set mstream = New ADODB.Stream

       mstream.Type = adTypeBinary

       rsDocument.Open "Select...

  • RE: blob (word or pdf?)

    In Image(Blob) Data Type you can put any data, pdf, word, gif, your own class object into the database table field.

    Using ADODB stream to load the object into field:

      Set...

  • RE: File images in SQL Server

    Regardless you have compressed the images to smaller file size, the problem will remain in long run, if scanning is going to be on going, database will eventually grow back...

  • RE: running external apps from sql server 2000?

    Please check your permission rights first for the crashing problem.

    Another way to call the external application is through COM object. COM object will do what needed to be done....

  • RE: Image Insert

    I do agree with DALEC on the storing images in Database, it can be slow. A few GB Data is not a problem.

    Step 1 : Create a table with...

  • RE: XML Output from DB

    Thanks for the XMLSPY option, we only have one license purchased.

    Perferly with VB/SQL and not using the XMLSPY and third party application.

  • RE: XML Output from DB

    quote:


    I use XMLSPY. Although its not code itself, it makes generating it easy. They have a demo version. Download it and see...

Viewing 8 posts - 1 through 8 (of 8 total)