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!

Search results for query: *

  • Users: lily1
  • Content: Threads
  • Order by date
  1. lily1

    How to remove new line and tab in table field

    My table gather information from a form, some users filled form with new line or tab in the "description" field, I want to remove these new lines and tab in the table, I tried using immidiate window, and typed: DoCmd.RunSQL: "UPDATE Property SET Property.[Desc] = Replace(Desc,Chr(13) & Chr(10)...
  2. lily1

    Grey out part of image using ASPImage.

    Is it possible to grey out part of image(in square shape) by using ASPImage? I would appreciate if you can give me some sample code. Thanks for any help!
  3. lily1

    Get image's dpi using AspImage

    In my script, I want to check the image's dpi using AspImage. But the result is not right. I tested two images, both dpi=1. urls: http://user1046822.wx15.registeredsite.com/keller/test.asp?name=107097 http://user1046822.wx15.registeredsite.com/keller/test.asp?name=1079198 My code: <%...
  4. lily1

    how to retrieve querystring part in a url

    I want to get the querystring part of a url. For exapmple, if url is: http://www.mydomain.com/myscript.asp?name1=value1&name2=value2, I want to use some asp functions to retrieve the string "?name1=value1&name2=value2". How can I do this? Thanks for help!
  5. lily1

    How to save and overwrite an image

    After cropping the image, I want the cropped image to overwrite the old image. I use code: Private Function Crop(ByVal Source As Bitmap, ByVal x As Int32, ByVal y As Int32, ByVal width As Int32, ByVal height As Int32) As Bitmap Dim Cropped As New Bitmap(width, height)...
  6. lily1

    How to check picture resolutions?

    This is another question, the users upload their pictures basically for print purpose, so I would like to check if their pictures is in good resolutions, if not, I will display a message and ask them to upload better quality pictures. The problem is how can I check a image's resolutions using...
  7. lily1

    Display pictures in picture view application

    I have pictures on the server, when user click the thumbnail of a picture, I want an image viewer application like "Image magic" to be called and "Image magic" will be loaded and show the picture instead of showing picture in browser, is it possible? How can I do? It is very Urgent.Please help.
  8. lily1

    perl redirection not working

    I have a simple form, if the user enters a correct username and password, then the page will be redirect to a new page, but the result is the perl script print the code "Location: 'http://www.homeschoolingparent.com'" and does not redirect. The following is my script: #!/usr/bin/perl...

Part and Inventory Search

Back
Top