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!

Search results for query: *

  • Users: evergreean43
  • Content: Threads
  • Order by date
  1. evergreean43

    Max amount fields in one table

    I am creating an Access 2000 database with a Web Front end that will have around 150 questions with 148 questions having just one number input (which will either be a 1 or a 2 or a 3 or a 4 or a 5). All 148 questions will be short sentences such as: Question...
  2. evergreean43

    Max amount Access can handle?

    I am creating a Survey with 35 short questions and answers using a web interface and was wondering if Access 2000 can handle around 1000 users entering into the database within one week time? I would think a couple hundred users a day would populate the database. Would this be considered too...
  3. evergreean43

    Cache or nocache?

    I am creating a survey in Oracle 9i database with around 35 questions and around 1000 People will input within a week time. Please advise if nocache or cache is okay for when I create my sequence? Here is how I would do if it is nocache? create sequence my_seq start with 0 increment by 1...
  4. evergreean43

    Select option gives another form entry

    I need to create a form that has an initial question on a page called PageOne.cfm such as: Do you live in San Diego? If the Person says no it takes them to pageTwo.cfm If the person answers yes it automatically adds another form entry on pageOne.cfm that asks if the Person is over 35. If the...
  5. evergreean43

    Cannot find ActionMappings or ActionFormBeans

    I keep getting error message on my Tomcat 5.5 container Struts page saying: org.apache.jasper.JasperException: Cannot find ActionMappings or ActionFormBeans collection My form page: <%@ page language="java" %> <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> <head><title>Submit...
  6. evergreean43

    Object Based language doesnt use Inheritance

    I read this about what JavaScript is: faq216-6094 I also assume when you say JavaScriopt is object based it uses object oriented syntax for reference to objects but is not a fully object oriented language because you cant use Inheritance in JavaScript? Please advise.
  7. evergreean43

    Eliminate location variable at end of url

    I have go to location link on my web page and was wondering how I can eliminate the tag variable showing up on the end of the url after hitting the go to location link? If I hit the link: Go to Here Location it takes me to the correct location on my page but also changes my url from...
  8. evergreean43

    Check for form update values

    I have an Update form where I check if any values were changed after someone submits the form. If no values changed then message pops up and says: You did not update any information for this Form. The form will only go to the action page if a value is changed. It works great but cant get it to...
  9. evergreean43

    Database read only and it still locks

    I manually copy one Access 2000 database from one server to another. After copying Access 2000 database from one server to another I sometimes get this message: Cannot copy myDatabaseName: There has been a sharing violation. The source or destination file may be in use. The destination...
  10. evergreean43

    Mapping to server goes away when not logged on.

    I created Perl script on my Windows 2000 workstation that opens up a mapped directory on a Windows 2000 server. It works great in my task scheduler when I am logged on the workstation. When I am logged off and the task scheduler executes my script that opens up a mapped directory it doesnt...
  11. evergreean43

    loop on url parameters

    I have a URL that comes up in a search results page where it shows next record. It works great but I need more efficient way to test conditions. I have 10 search fields that could be entered and I check if each one is defined in the url. Here is an example just showing 2 out of my 10...
  12. evergreean43

    Web Engineer or Software Engineer

    I always wondered if I developed ASP Web applications, Database models and SQL scripts, I should be called a Software Engineer instead of a Web Engineer? Please advise if ASP Web Development, SQL Server and Oracle Database Development and sometimes developing system scripts would qualify my job...
  13. evergreean43

    Close Database connection to prevent Database locking issue?

    I have an Access 2000 read only form that gets locked alot after someone closes the form. It ends up being locked for about 2 hours sometimes after someone closes the read only form. Please advise what I can add such as database closing functions or something to prevent the database from...
  14. evergreean43

    Installing client

    I have Oracle Client unzipped files and need to know which one is the install setup for my Windows 2000 pc. There are alot of folders and also a file icon that says setup and there is an Install folder with a Win33 folder that has an file icon setup. Please advise which one I use to install...
  15. evergreean43

    Space added in textarea

    I have a condition on my form update that checks for differences between my form textarea value and the value in my Access 2000 database. It works 99% of the time but adds a space in the Form value on long url entries such as this: http://myserver/long/long/longlonglongurlhere/here_ page.cfm...
  16. evergreean43

    Encrypt in URL

    I can encrypt the field value in url but was wondering how I can also encrypt the field name in the url? <cfset key = "mystring"> <a href='destination.cfm?cityID=#URLEncodedFormat(Encrypt(thequery.cityID, "#key#"))#'>City</a> Destination Processing Page: <cfset key = "mystring"> <cfset...
  17. evergreean43

    Check for update before submitting

    I am trying to check my text and textarea fields on my update form to make sure a field value was changed before going to action page. If none were changed and someone hits submit button it should pop up message saying: You did not update any information for this form submit. Please advise...
  18. evergreean43

    Using loop to pass form fields and values

    I have a action page that works where I am passing alot of form values. The below example is a condense version of all my form values: <cfoutput> <form action="goto.cfm" method="post"> <input type="hidden" name="city" value="#form.city#"> <input type="hidden" name="state" value="#form.state#">...
  19. evergreean43

    Redirect issue

    I have some people using this link url: http://myserver/ab The url should be: http://myserver/ab/index.cfm The url (http://myserver/ab) takes the person to a redirected page (http://myserver/ab/cc/dd/index.cfm) and I cant find the redirect anywhere. We are using MX 6.1 on Windows 2000. Is...
  20. evergreean43

    Automatically save Email message to text file in my local C drive.

    Anyway to get an Outlook 2003 email with the subject word which in my case is California and then take the email message from the California Email and put it in a text file on my local workstation? I need this to automatically happen each time I get an email with the subject called California...

Part and Inventory Search

Back
Top