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 wOOdy-Soft 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 jerasi

  1. jerasi

    HTML Editor for WinForms (.Net 1.1)

    Hi, I'm looking for .Net 1.1 component that will allow my users to edit html documents (besic editing). Does anyone know of a free component that will do this? App is WinForms .Net 1.1 Thanks.
  2. jerasi

    Multi language support

    Hello, I'm looking into a multi language feature for my website. I would like database information stored in English but depending on a users choice, I would like to display it in Spanish (i.e. translate a description field on the fly). Is there a way to do this without using third party...
  3. jerasi

    Inserting html file to report

    Hello, I'm trying to find a way of inserting an html file to a report. Is that possible with crystal reports 9? I have an existing report and I want to insert an html file (no images, just text) so it's always on the first page. Is there a way to do it programmatically? P.S. I can't just hard...
  4. jerasi

    Word Docs from Asp.Net

    Thank you for your posts. What I'm looking to accomplish is this: 1. User uploads their signature file (word doc) 2. Server saves the signature file in a specific directory for later retrieval 3. Server extracts the text from the word doc 4. Server insert the extracted text to the SQL server...
  5. jerasi

    Word Docs from Asp.Net

    Hello, I'm trying to find a way to extract text from an uploaded word document without having ms word install on the web server. The application is hosted by a web hosting company and they don't want ms word installed on the server (can't blame them) Is there any way to extract text from word...
  6. jerasi

    Extracting Text from PDF

    Well, that was a quick "No" by the web hoster :) The iFIlter solution sounded good but I can't use it. I will be able to use a third party control if I can find one that does a pdf to text conversion.
  7. jerasi

    Extracting Text from PDF

    yuhui, that's an interesting solution. I will check if the web hoster will allow me to install iFilter. Also, you mentioned iFilter and FREETEXT, how would the query look like? Thank you all for your help, it is greatly appreciated.
  8. jerasi

    Extracting Text from PDF

    The process is like this: 1. User goes to website and upload a pdf document 2. The pdf document gets saved to the docs directory The user wants the ability to search the text in the files by keyword. How do I extract the text from the PDF document in order to insert it to the database directly...
  9. jerasi

    Extracting Text from PDF

    I don't know any way to read a pdf file into XML do you?
  10. jerasi

    upload a file then close the form

    In the "code behind" page... After you finished uploading the file do this... Page.RegisterStartupScript("window.returnValue=" & sValue & "; window.close();") sValue can be whatever value you want to return (no spaces). You will need to remove the function from the aspx page.
  11. jerasi

    Extracting Text from PDF

    I need to extract all the text from PDF files that are uploaded to my site. I want to insert the extracted text to the database so I can run searches on it. Does anyone know a good web control that will do this for me? I was looking for a long time now and couldn't find anything suitable...
  12. jerasi

    Saving a collection in viewstate

    Here's the whole class. Thank you for your time. <Serializable()> Public Class Users Implements IEnumerable Dim m_Collection As Collection Public Sub New() m_Collection = New Collection End Sub Public Function GetEnumerator() As System.Collections.IEnumerator...
  13. jerasi

    custom javascript and requiredfieldvalidator

    Just a thought: change showObject(Process) to showObject(Process, txt) txt is the asp textbox you are validating. change: btnsubmit.Atrributes.Add("onClick", showObject(Process);") to: btnsubmit.Atrributes.Add("onClick", showObject(Process, '" & txtSearch.ID & "');") Note: replace "txtSearch"...
  14. jerasi

    Saving a collection in viewstate

    I tried that but no luck. Here's my class definition <Serializable()> Public Class Users Implements IEnumerable I'm trying to add it to the ViewState like this: dim m_Users as New Users viewstate("m_Users") = m_Users I still get the error: "The type 'WebApplication2.Users' must be marked...
  15. jerasi

    Saving a collection in viewstate

    Hello, I would like to save a class collection into the viewstate but I get the following error: "The type 'WebApplication2.Users' must be marked as Serializable or have a TypeConverter other than ReferenceConverter to be put in viewstate" I have a "Users" which is a collection of "User"...

Part and Inventory Search

Back
Top