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: *

  • Users: lily1
  • Order by date
  1. lily1

    How to remove new line and tab in table field

    Thanks, hneal98. I I know something new :)
  2. lily1

    How to remove new line and tab in table field

    I just copy the syntex from other people's post, I never used immediate window before. I have fixed the problem by using query feature. But if you do not mind, could you please tell me what is the correct syntex to use immediate window? Thanks!
  3. 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)...
  4. lily1

    Grey out part of image using ASPImage.

    Many thanks, DreXor, it is very helpful. :))
  5. lily1

    Grey out part of image using ASPImage.

    Thanks for reply, Drexor, I checked ASPImage's official site, and could only found one sample code.I never use these features before. Could you please tell me a little more about how to specifying fill area and using template?.Or can you give me the url where I can find the helpful sample code...
  6. 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!
  7. lily1

    Get image's dpi using AspImage

    Sorry, DreXor, I am in vacation now and have not checked this forum for some time. I already talked to hosting company and they fixed the problem in server side . Thanks anyway.
  8. lily1

    Get image's dpi using AspImage

    I wrote to serverobjects.com yesterday, but have not got response. The asp code works, but all returns dpi =1, I do not think it is correct. Do you know why? Thanks for your help.
  9. 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: <%...
  10. lily1

    how to retrieve querystring part in a url

    Thanks for all your post, I know how to do it now.
  11. 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!
  12. 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)...
  13. 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...
  14. 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.
  15. lily1

    perl redirection not working

    Thanks for your kindly reply, the script works now.
  16. 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