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 shukui

  1. shukui

    sort image in a folder

    Thank you so much usige. It works great! Shukui[2thumbsup]
  2. shukui

    sort image in a folder

    Hi there, How do I sort the following file in a folder? Note that the one or two digits between 'CT' and '3150830758.png' are the keys. CT03150830758.png CT13150830758.png CT23150830758.png CT33150830758.png CT43150830758.png CT53150830758.png CT103150830758.png CT113150830758.png...
  3. shukui

    Disallowing Strings in Regex..

    Doesn't #Replace(String,"12","","ALL")# work? Stephen G
  4. shukui

    Hacked by Chinese

    Thanks Tek, the link is very very helpful. Stephen G [afro2]
  5. shukui

    Hacked by Chinese

    I developed a CF application for someone. However, a day after I put it on-line. It turns to something like "This site is hacked by Chinese, www.worm.com" etc in red text. I'm not sure what's up. I pulled the plug on the server and checked all of the index.cfm files to see when the...
  6. shukui

    Clock and session time out

    Here is the story... The Problem Developing applications for a secure intranet or extranet almost always leads to the idea of a session. Since HTTP is a stateless protocol, the ability to authenticate a user with a login is often tied to sessions. ColdFusion makes much of this easy for...
  7. shukui

    Clock and session time out

    Hi all, I want to display a clock to tell the user how much session time left if no activity is performed. However, if the user click a button, the session time will be reset to full. I do not want the user to refresh the page because doing that will lose the data that has already been filled...
  8. shukui

    string manipulation

    Yes, that is really elegence! How does it work, by the way?
  9. shukui

    string manipulation

    Thank you A440Guy, I figured it out this way: <cfset string = &quot;acthaychyaggdsdy&quot;> <CFLOOP INDEX=&quot;i&quot; FROM=&quot;#len(string)#&quot; TO=&quot;1&quot; step =&quot;-1&quot;> <cfif (i mod 3) EQ 0> <cfset string = Insert(' ', string, #i#)> </cfif> </CFLOOP> Thank you for...
  10. shukui

    string manipulation

    Hi all, How can I manipulate string like from &quot;acthaychyaggdsdy&quot; to &quot;act hay chy agg dsd y&quot; or change above string to a list or an array containing above elements. Thanks, Stephen
  11. shukui

    I have the following text file.

    Thank you DB, It works very well. Just two more little questions. (1) Do you think I can make the whole process simpler? (2) Why is there always a empty line after each label? I am actually working on a ColdFusion project to faciliate the administrator to select a few names from a...
  12. shukui

    Letter Sticker From Text File

    Dear DougP, It print out as one label per page, but I want to print all the labels (say 20 labels) in one page. Thanks, Shukui
  13. shukui

    I have the following text file.

    Yes, they are all three lines. Please tell how.
  14. shukui

    Letter Sticker From Text File

    shukui (TechnicalUser) Nov 19, 2001 I have the following text file. David Smith 1 New York St West Toronto, ON N1T 2W3 Micheal Jones 34 Wellington Street New York, NY 37377 Janet White 88 Toront Street Buffulo, OH 93939 ... Any one know how I can convert it to a MS Word 2000 file (using...
  15. shukui

    I have the following text file.

    I have the following text file. David Smith 1 New York St West Toronto, ON N1T 2W3 Micheal Jones 34 Wellington Street New York, NY 37377 ... Any one know how I can convert it to a MS Word 2000 file (using AveryWizard actually) so I can print out all the addresses onto a sheet of adhensive...

Part and Inventory Search

Back
Top