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: Renzy
  • Order by date
  1. Renzy

    Presentation CD using Flash

    Thanks, anyway. I was able to figure out the solution.
  2. Renzy

    Presentation CD using Flash

    Hi, I need some help. I'm creating a presentation CD using Flash but it involves .flv file. I don't know how to make it stop when it plays. I load it to a scrollpane movieclip and when I unload the movieclip the sound continues. I have buttons in my main movie that will proceed to different...
  3. Renzy

    Regular Expression Problem

    Hi, It is possible using javascript, the first thing you have to do is 1. Get the length of the string 2. Use lastIndexOf property to locate the last occurence of "\" then 3. use For-loop inorder to get the filename starting from the number indicated by lastIndeOf till the end of...
  4. Renzy

    Drop Down Menu thoughts

    Try this css: <html> <head> <title>Form</title> <style> .List { BACKGROUND: lavender; FONT: 8pt verdana,arial,sans-serif } .Heading { color:navy; background: #ffffcc; } </style> </head> <body bgcolor=&quot;#FFFFFF&quot; text=&quot;#000000&quot;> <form name=&quot;form1&quot...
  5. Renzy

    Icons!

    Hi, I want to create an emoticons with an extension of .ico, I tried a lot of software capable of doing an .ico file but I didn't find any which suite my needs. Any ideas? I want a software which supported gradient effects and can able to save an image with the width and height i specified...
  6. Renzy

    Preserving Symbols in Text Box

    Hi, I tried your code above but I didn't found any problems with that.... could you post your whole code for evaluation 'coz I didn't experience your problem in my computer... I tried to simulate it by placing symbols in contents and when I click the button for alpha, the symbol was added in...
  7. Renzy

    Form - Multiple buttons - Which one pressed?

    Hi, I think this is a bit shorter: <html> <head> <title>150buttons</title> <script> function dataval(no) { document.form1.whichbut.value=no; document.form1.submit(); } </script> </head> <body bgcolor=&quot;#FFFFFF&quot; text=&quot;#000000&quot;> <form name=&quot;form1&quot...
  8. Renzy

    Outlook 2002 Duplicate Message

    hi, rjkrash is right, if you dont want to receive the same email again you should uncheck leave a copy of messages on server so that every time you POP your mails using outlook your mails from your mail server is deleted and no occurrence of the same email will be POP the next time. Regards,
  9. Renzy

    Any Ideas about POP3!

    Hi tazman001, Sad to say you can't POP your hotmail mails using Outlook or any email interface because there admin doesn't enable POP3 from their server. In hotmail they wrote this in there help: You are using an ISP that has third-party POP restrictions. Check with your ISP to be sure. Some...
  10. Renzy

    Help with on Click

    Hi, Try this code below, I just dont know if onpress() will work in touch screen so, if it will not try onclick(): <html> <head> <title>touch screen</title> <script> function dataval(no) { document.form1.noemployee.value=document.form1.noemployee.value + no; } </script> </head> <body...
  11. Renzy

    upload to a dir and update a db at the same time?

    Hi, In your code above there is a conflicting code: When you use enctype=&quot;multipart/form-data&quot; in your <form> tag, you cant simply access other data by request.form. In my project which is similar of what you did, we bought a component for that-ASPupload Component for us to upload the...
  12. Renzy

    Word Documents creation

    Hi UniCorn, Yes, use ASP FileSystemObject wherein you can create and specify the filename of a particular file with all those data from your database and the created file resides in your server. If u think this will help, I could send you a sample code. Hope to help-
  13. Renzy

    Any Ideas about POP3!

    Hi Rhort, Thanks for the idea but what i want is the code that will enable POP3(post office protocol). Actually, i program a web based email and I want to add a POP3 feature for our users to access their mails from another server to our email interface. Fortunately, I did it already. Thanks.
  14. Renzy

    Ho do I retrieve a systems Mac Address

    Hi, Any problems with the codes above? If you find it hard to figure out...I could help you.
  15. Renzy

    Access Memo Field and &lt;textarea&gt; Problem

    Hi Michael, what i can give you is some hints why it happens. If you try to input more than 255 characters in your database field see to it that its data type is memo and use <textarea> tag in your form element to handle this data. In your Select query avoid using distinct because there's...
  16. Renzy

    Any Ideas about POP3!

    HI, I want to ask any ideas on How POP3 works? Imail v6.06 is our mailer it supports POP3 but I just dont know how to do it, so that all of the mails from other server transfer to users mailbox. Please help. Thanks.
  17. Renzy

    Menu Bar disappears on new window

    Hi, Try this: <html> <head> <title>window</title> <script language=&quot;JavaScript&quot;> function openHelp() { window.wind=...
  18. Renzy

    Help! Any Ideas.

    Thanks a lot for the informative link...
  19. Renzy

    Ho do I retrieve a systems Mac Address

    We used this code also to track things, make the best out of it. <% strIP = Request.ServerVariables(&quot;REMOTE_ADDR&quot;) strMac = GetMACAddress(strIP) strHost = Request.ServerVariables(&quot;REMOTE_HOST&quot;) Function GetMACAddress(strIP) Set net =...
  20. Renzy

    Ho do I retrieve a systems Mac Address

    HI, It is possible to get the mac address using ASP code but I have to tell you that this is not reliable 'coz we tried it. Some use proxy and the mac address of the server is what we get not the mac of the particular user who is accessing the web page. But anyway if you are really up to it I...

Part and Inventory Search

Back
Top