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 bkrike 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: LaPluma
  • Content: Threads
  • Order by date
  1. LaPluma

    error '80040e21'

    Hello I am getting two error messages with the following script. They are: Microsoft JET Database Engine error '80040e21' Field 'Forum.Email' cannot be a zero-length string. /guest/gsave.asp, line 65 and: Microsoft JET Database Engine error '80040e21' Field 'Forum.Message' cannot...
  2. LaPluma

    Hello I have the following code

    Hello I have the following code on form.asp which checks that all fields in the form have been completed. The code works. <% If Request.Form.Count > 0 Then Name = Trim(Request.Form(&quot;t1&quot;)) Email = Trim(Request.Form(&quot;t2&quot;)) Message =...
  3. LaPluma

    Validation sample - server side?

    Hello I have a server side script which checks that form fields have been completed. If not, an error page is called pointing out that 'Name' (for example) must be completed, and invites the user to 'go back' to complete the fields correctly. However, I think we have all seen those error...
  4. LaPluma

    CDONTS clarification

    Hello I am writing for a little clarification. Below is an example CDONTS script for sending e.mail. If I want to send a copy of the e.mail message (sent to the Webmaster by the visitor) to the visitor - in the way autoresponders might work - can I simply use: ObjCDOMail.CCTo =...
  5. LaPluma

    Difficult table arrangement

    Hello I have a Web page here: http://www.grafik1.net/conForm11.asp The Flash and graphics are contained in a table arrangement which doesn't make reading easy - unfortunately. This is the relevant code: </HEAD> <BODY bgcolor=&quot;#FF9900&quot; text=&quot;ffffff&quot;> <table border=0...
  6. LaPluma

    Breaking out of the pop up window

    Hello I have a pop up window which contains a form. The form, once submitted, calls a &quot;Thank you&quot; page. This works OK, but the &quot;Thank you&quot; page appears in the pop up window! Is it possible in JavaScript to somehow close the pop up window when the form is submitted, and to...
  7. LaPluma

    Chatting, Java, and Windows98 problems

    Hello I am writing in the hope that someone may be able to throw some light on a problem I am experiencing. Whenever I attempt to log into a Chat - either through IE6 (just downloaded for the second time) or NS4+ - I am not able to see who the other chatters are or what they are saying. (I can...
  8. LaPluma

    VBScript to validate e.mail

    Hello I am using a VBScript to try to validate the information input in a form. This is the code: <% 'Function to Validate Email Address Function ValidateEmail(email) dim atCnt ValidateEmail = false if len(cstr(email)) < 7 then ValidateEmail = true elseif...
  9. LaPluma

    E.mail validation

    Hello I have a validation script to check that a proper e.mail address has been added to a form, but can't seem to get it to work. Here's the code and I would be grateful for any suggestions. Cheers LaPluma <% Dim emailAddress emailAddress = Request(&quot;Email&quot;) if emailAddress <>...
  10. LaPluma

    CDONTS and JavaScript

    Hello I have a Web site with a simple form on it. This form uses the following VBScript(ASP)CDONTS code: <% if (cStr(Request(&quot;Submit&quot;)) <> &quot;&quot;) Then dim MailObj set MailObj = Server.CreateObject(&quot;CDONTS.NewMail&quot;) MailObj.From = Request.Form(&quot;name&quot;)...
  11. LaPluma

    ASP and pop-ups

    Hello I have a simple ASP page which says 'Thank you + name' to the person who has visited the site, completed the form, and clicked 'submit'. This 'Thank you + name' page is a full Web page, but I wonder if it is possible to create it as a pop up window, loaded immediately the user clicks...
  12. LaPluma

    Flash and ASP - form help, please

    Hello I have a form created in FlashMX here: http://www.grafik1.net/mainTest.html and the code behind it is: <HTML> <HEAD> <meta http-equiv=Content-Type content=&quot;text/html; charset=ISO-8859-1&quot;> <TITLE>mainTest</TITLE> </HEAD> <BODY bgcolor=&quot;#FFFFFF&quot;> <!-- URL's used in...
  13. LaPluma

    Hello I have tried looking theou

    Hello I have tried looking theough the Tek-Tips keyword search, but can't quite find what I am looking for. I have a site here: http://www.grafik1.net/index1.html The Flash menu is generated by the following: <object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot...
  14. LaPluma

    Is classid necessary?

    Hello I am new to Flash and I am quite taken aback by the HTML code which my Flash menu has generated. I have this: <object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot; codebase=&quot;http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0&quot...
  15. LaPluma

    Completely new to Flash

    Hello I am completely new to Flash, but like most people I am impressed by what it can do. I am less impressed by what I can do with Flash! I have a test page, which was developed quite quickly in Swish and then exported as a swf file into Flash MX (I only have trial versions of them both). I...
  16. LaPluma

    align an image against the top right hand side of the page

    Hello I am writing to ask for some advice on how to align an image so that it is tightly ditted against the top right of the Web page. I have this: <div align=right><img SRC=&quot;legs1.jpg&quot; NAME=&quot;legs1.jpg&quot; BORDER=0 height=407 width=271 valign=TOP></div> but it doesn't seem...
  17. LaPluma

    Annoying browser redirect problem

    Hello I have a piece of JavaScript code here (which somebody on the Tek-Tips forum kindly helped me out with): <SCRIPT language=&quot;javascript&quot;> function getlanguage(){ language=navigator.language; if(language) {language=language.substring(0,2);} else {language=&quot;z&quot;;}...
  18. LaPluma

    Database title bar - how to remove name?

    Hello When a MS Access 2000 DB is opened, we immediately see an inner and outer frame. The inner frame contains the name of the database as in: test: Database. This inner frame contains the names of our tables and the objects and groups panel down the left hand side. However, in the title bar...
  19. LaPluma

    Compress a database?

    Hello I have a MSAccess2000 database with about 2000 e.mail addresses in it over 5 or 6 fields. The database weighs about 21MB (!), and I wonder if it is possible to somehow compress the database before I upload it. Many thanks LaPluma
  20. LaPluma

    Is there a rule?

    Hello I have a page here: http://www11.brinkster.com/stevehigham/db/test.asp which is a result of this: <%@language=vbscript%> <% Option Explicit Dim ConnectionString Dim connObj Dim sql Dim oRS ConnectionString=&quot;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=&quot; &...

Part and Inventory Search

Back
Top