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 strongm 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. mad411

    emial validation (again)

    hey onpnt [2thumbsup] i found the mistake (at last) [idea] in the above .html file where i was writing .... ........ if emailAdd <> &quot;&quot; then blnValidEmail = RegExpTest(emailAdd) if blnValidEmail then alert &quot;Valid email address&quot; else alert...
  2. mad411

    Email Validation Using VBScript

    hi, here's email validation code using vbscript <HTML> <HEAD> <TITLE>E-Mail Validation using VBScript</TITLE> </HEAD> <BODY> <script language=&quot;vbscript&quot;> <!-- function emailval() Dim emailAdd emailAdd = form1.emailAddress if emailAdd <> &quot;&quot; then emailAdd =...
  3. mad411

    emial validation (again)

    hey [afro] hey thanx a lot onpnt, here's a medal for u [medal] i've already marked ur post as an helpful & expert post i tried your code & it really works well, [2thumbsup] but if i type xyz@xyz.c or xyz@xyz.c.o.m then also it works. [sad] sorry for being so pushy towards vbscript...
  4. mad411

    emial validation (again)

    hey thanx to u all i've been to the site http://www.4guysfromrolla.com where i found this asp code for email validation http://www.aspfaqs.com/aspfaqs/ShowFAQ.asp?FAQID=47 <html> <head> <title>VBscript email validation</title> </head> <body> <% Dim emailAddress emailAddress =...
  5. mad411

    email validation

    hey thanx to u all i've been to the site http://www.4guysfromrolla.com where i found this asp code for email validation http://www.aspfaqs.com/aspfaqs/ShowFAQ.asp?FAQID=47 <html> <head> <title>VBscript email validation</title> </head> <body> <% Dim emailAddress emailAddress =...
  6. mad411

    email validation

    hi onpnt, thank you very much for your reply :-> but the code u sent checks only for @ sign & not for .com or .co.in :-( i need that vbscript should check for proper email address validation ok i'll try to explain again i have a text box & a submit button in my .HTML file the user inputs his...
  7. mad411

    email validation

    hello experts, is it possible for me to validate the email address typed by the user, i.e vbscript should check for all the things in the add. i.e only one @ sign only one . before com & .co.in etc i know this can be done using vbscript but dont know how? so please can anyone help
  8. mad411

    Circular Text

    hey SPYDERIX, thanks for that, when i write something with the text tool selected & go for its options ps says &quot;no options for the Type Tool&quot; is it because i have ps5.5 the problem is i dont have illustrator i tried to create the text in MS-Word through Wordart & paste it in...
  9. mad411

    Circular Text

    hi experts, i have a circular logo which is surrounded by text is it possible to create text in circular format in photoshop thanks for ur tek-tips
  10. mad411

    CDONTS???????

    hi all the experts, being a newbe, i dont know what exactly CDONTS is and why and where and how it is used, if u could please give a simple example. thank u bye
  11. mad411

    email validation

    hey Bastien thanks, [thumbsup] i was searching 4 a hill & u showed me a mountain thank u very much take care, bye
  12. mad411

    email validation

    hey friends just wondering if i can validate the email-id entered through the text field i.e. it should contain a single '@' sign, a single '.' & a single 'com' & of course it should be in sequence can this be done using asp
  13. mad411

    cursor positioning command?

    hi denniscpp it is as simple as this hope this solves ur problem #include <dos.h> #include <stdio.h> #include<conio.h> void main() { gotoxy(5,5); printf(&quot;denniscpp&quot;); }
  14. mad411

    date difference

    hey guys, thank u very much, it worked [thumbsup2]. this problem was [hammer]ing me since about a month & u solved it in just a day. thank u for [openup]ign me up bye [wavey2]
  15. mad411

    date difference

    Hi Denster, very very thanks for your reply. your prg. is too good. but it only specifies how to extract the system date. i was able to find the same but still didn't find the difference. so pls. can u suggest me the ways to find the diff. between the two date, ie. system date and...
  16. mad411

    Since a beginner i am not able to f

    Since a beginner i am not able to find the logic of this prg. According to me the output should be : 0, -1 #include<stdio.h> void main(void) { int i=-1; printf(&quot;%d, %d&quot;,++i,i++); } output: 1, -1 So please explain me the logic of the same.
  17. mad411

    date difference

    hello e'body the problem is very simple, i'm taking a date from the user & want to calculate its difference with system date in days. so plz help!!!!

Part and Inventory Search

Back
Top