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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Moogles

  1. Moogles

    Open pdf blob from Oracle table

    Thanks! I will try those too.
  2. Moogles

    Open pdf blob from Oracle table

    Sorry, I may have confused you. I meant I was able to echo out a string from a different column that is not a blob type. <?php { if ($conn=OCILogon("user", "password", "orcl")){ $s = OCIParse($conn, "SELECT description FROM pdffiles WHERE id = 1"); OCIExecute($s,OCI_DEFAULT)...
  3. Moogles

    Open pdf blob from Oracle table

    Yes, I was able to echo out a character string from the same oracle table. TIA
  4. Moogles

    Open pdf blob from Oracle table

    Thanks Ingresman. I just tried it, still gettting 'Object id #1'. Do you know what that means? TIA
  5. Moogles

    Open pdf blob from Oracle table

    Greeting from the PHP newbie! I am trying to open a pdf file stored in oracle blob column. The following code always get the result: Object id #1 Could someone tell me what that means and why I can't open the pdf file? TIA <?php { header("Content-type: application/pdf"); if...
  6. Moogles

    Data Report in Visual Basic.Net standard version?

    Thank you Christiaan! I added the component1.vb into my project. By any chance you know where can I find the documentation for it? If not, could you provide some brief description on how to use it? TIA, Moogles
  7. Moogles

    Data Report in Visual Basic.Net standard version?

    Thank you for the info. Regarding #2, I thought the data report should be in VB.net since it was in VB6. I was hoping to use that capability if the Crystal Report is not provided. I am having trouble to add the data report in VB.net. Any help is appreciated! TIA, Moogles
  8. Moogles

    Data Report in Visual Basic.Net standard version?

    Could someone help me on these: 1. I have VB.net standard version, does it come with crystal report? 2. If not, how can I create a report similar to Visual Basic 6 Data Report? Is there a specific reference I have to add in order for the Data Report to show up in Add new Item? TIA, Moogles
  9. Moogles

    Email in c++ or invoking print in C++

    Thank you, that is very nice of you to provide all that codes. Our POP3 server is not working currently, but I will give it a try later on.
  10. Moogles

    Email in c++ or invoking print in C++

    Thank you very much for the hint, that's exactly what I am going to do.
  11. Moogles

    wonder why I got the following erro

    Thank you very much, I will try that.
  12. Moogles

    Email in c++ or invoking print in C++

    Thank you for the response! I meant I would like to email a text file that resides on my c: drive. thanks!
  13. Moogles

    wonder why I got the following erro

    wonder why I got the following error when compiling my simple program used 'EnumDisplayDevices'. error: error C2065: 'EnumDisplayDevices' : undeclared identifier I have included window.h, also tried to include multimon.h. Anything wrong with my setup?
  14. Moogles

    Email in c++ or invoking print in C++

    Is there anything similar to VB mapisession in C++? I would like to email out a text file on the OS within in a C++ program; Or if you know how to invoke print to print the text file on OS within the C++ program. Any help is greatly appreciated!
  15. Moogles

    Send binary data, received only portion of data

    Thanks for your reply. I tried but did not have any luck. On the client side, the binary data was put into a file, the size is always 8k no matter how long I waited, and the process seems waiting for my action instead of gathering the data. I was able to send a 2K .jpg without any problem, but...

Part and Inventory Search

Back
Top