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 SkipVought 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. 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"...
  16. jerasi

    Customizing a DataList

    Is it possible to display different fields in each item of a datalist? For example the first item will display id, name, phone, is_person and the second item (it's not a person) will display comm_id, title, description, is_person. My dataset contains all these fields. Depending on the...
  17. jerasi

    DataGrid displaying item in two lines

    Hello, I'm trying to format a data item so it displays on two lines, I need the id, last name and first name to display on the first line and the details to display on the second line (see xml snippet below). I don't have much experience with the data grid so any samples would be appreciated...
  18. jerasi

    ntoskrnl.exe is missing or corrupt

    There is no floppy in the drive and there is no CD in the CD Rom. Once the computer restarted (after doing the scandisk). It hang on a screen saying rebuilding indices for ActiveDirectory and that I need to restart in active directory restore mode. That screen presisted through the night (I...
  19. jerasi

    ntoskrnl.exe is missing or corrupt

    Hi, I was doing some maintenance to the server yesterday. I run defrag on both drives and then run a scandisk and rebooted the server (for scandisk to run). The server never came back online. I rebooted again (using the reset button) and got the following error: "windows could not start...
  20. jerasi

    External Mailing list in Exchange

    I just figured out a simple solution for setting up an external Distribution List in Exchange. My problem was how to setup an External Distribution List (i.e. abc@hotmail.com, blah@yahoo.com, etc.) so users can Add/Remove contacts from it without having to mess around with Active Directory...

Part and Inventory Search

Back
Top