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 Chriss Miller 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 mswilson16

  1. mswilson16

    Validate Field Not Null, Length, Character Type

    THANKS GUYS!!!! Got it working... not sure what was wrong... but just copied the frmName line, and changed it to frmPhone Thanks again guys!
  2. mswilson16

    Validate Field Not Null, Length, Character Type

    hey guys... Thank you very much for your help! The code for the Name is working great!!! It turns out that I dont need the code validation... but the Phone is not working. It doesn't give me an error, it just goes trhough.... any ideas?
  3. mswilson16

    Validate Field Not Null, Length, Character Type

    sorry guys... right from the beginning would be great. I have the asp but have never wrote javascript, and all I know about javascript is that it runs client side which is what I need...
  4. mswilson16

    Validate Field Not Null, Length, Character Type

    Forgot to add that I am new to Java and dont have a clue how to write the function... or were to call it from... Sorry! :-(
  5. mswilson16

    Validate Field Not Null, Length, Character Type

    Hi All, I have wrote an app in asp with a sql back ground. Now I need to validate some fields. I have a Name, Code and PhNumber field... *I need to make sure that Name has something in it, *Code field has something in it and has to be 4 characters long, *and need to make sure that phnumber...
  6. mswilson16

    Code Run after field Update

    ok, I just want to show a message box after the field is exited... I have tried the following <td> <input name="Entity_Name" type="text" onChange="<% Call CheckIfClientExist %>" size="32"> </td> Function CheckIfClientExist msg = "Umm, I guess, EOF?" Response.Write("<" & "script>alert('" &...
  7. mswilson16

    Code Run after field Update

    Hi All, I am used to writing apps in access and Vb were you can use the AfterUpdate Function... I am now writing a ASP app (with SQL back end) and I need to be able to call a function once a field is updated/exited... how do I do this? e.g. when the field <td> <input name="Entity_Name"...
  8. mswilson16

    Change Edit Form to Insertion

    Hi All, I have create a serious of ASP pages... and I need to know if something is possible. I created the pages by creating the asp page, then going to Insert, Application Objects, Record Update Form... Now this is working great, except for my one problem. When there are no records present...
  9. mswilson16

    Create Required Field

    I have created a serious of ASP pages... I created them by going to Insert, Application Objects, Record Update Form... my problem is now that I need to make sure that certain fields are required.... Could someone please tell me how to change my code to make certain fields required.... Thanks...
  10. mswilson16

    Create VPN Connection

    Hi all, I want to know if it is possible to create a vpn connection via a script. I know that you can use rasdial once the actual connection is made in network connections, but I want to make the actual connection. Using a mixture of server2000 and 2003, and 2000 and xp clients. if it can be...
  11. mswilson16

    Filter Records on 4 Fields

    I dont really have anything, I have just created a dynamic table by going Insert, Application Object, Dynamic Table... then create a ODBC connection connClient, then a recordset rsClient where deleted = false... other than that, dont have anything else.
  12. mswilson16

    Filter Records on 4 Fields

    thanks dotnetgnat how would apply this filter? do I use javascript/asp? Can I put the code on a command button?
  13. mswilson16

    Filter Records on 4 Fields

    Hi All, I am using ASP and reading a SQL database. I have a dynamic table that lists all the records found from rsClientInfo, what I need to do is, when all the clients have been found be able to put a filter on the results. e.g. be able to put in *wil* in a field as criteria to filter the...
  14. mswilson16

    Split Memo Field into Many

    Thanks! that worked great!
  15. mswilson16

    Split Memo Field into Many

    Hi All, I have a memo field that is used to fill a asp page. In my memo field I have something like: <p>This is a test</p> <p>This is the second line of the test</p> <p>This is the third line of the test</p> I have a form were I want to be able to take the above and split upto the first </p>...

Part and Inventory Search

Back
Top