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

    asp??

    I just took on two new development projects at work that I'm pretty sure involve asp (although I could be wrong since I'm still fairly new to asp) and I could definately use some help. 1. On our internal website we would like to create a table that would contain 5 industry related articles...
  2. crystalb24

    Most Popular Articles - determined by link hits

    I've been given a project at work that I'm hoping someone can help me with. Our marketing department want to create a section on there internal homepage to feature 5 articles a day, track the most popular articles by how many people use the links provided to the full text of the article, and...
  3. crystalb24

    Most Popular Articles - determined by link hits

    I've been given a project at work that I'm hoping someone can help me with. Our marketing department want to create a section on there internal homepage to feature 5 articles a day, track the most popular articles by how many people use the links provided to the full text of the article, and...
  4. crystalb24

    Updating a shared database file

    Here's the scenario: I have a group with 6 users. Each user will maintain there own ACT 6.0 database file on there local machine (necessary for when they travel and need to have there database information available). 4 of these users need to be able to update a networked version of there...
  5. crystalb24

    Sending html emails

    I'm new to the concept of sending html emails. Can I simply copy and paste the html code from Dreamweaver into the body of the email? All email (sender and all recipients) contained to Lotus Notes 6. ~Crystal Click here (http://www.freeiPods.com/default.aspx?referer=7003325) for a free iPod
  6. crystalb24

    Creating emails from checkboxes

    Currently I have html pages designed with 2 or 3 checkboxes, meant to indicate that the user wants to use a certain tool provided. The purpose of the checkboxes presently is to track who is using what tool. What I would like to do is to have the checkboxes create an email to be sent to the users...
  7. crystalb24

    Deleting tabs in ACT! 6.0

    I'm creating a custom database and have no need for the "Sales/Opportunity" tab. Is there a way to delete this? ~Crystal Click here (http://www.freeiPods.com/default.aspx?referer=7003325) for a free iPod
  8. crystalb24

    background colors of table cells

    I am currently using a table with a background color in specfic cells. I'd like to use a gradient fill effect instead of a flat color in those cell but I'm not sure how to do that. Advise anyone? ~Crystal Click here (http://www.freeiPods.com/default.aspx?referer=7003325) for a free iPod
  9. crystalb24

    Controlling a movie

    I have a flash menu that I want to control by declaring the variables on the individual pages that it is associated with. The menu has 7 main sections and (currently) 4 sub sections. The problem that I am running into is that each of the main sections has different sub sections (or at the very...
  10. crystalb24

    Disappearing statements in a textarea field

    I'm trying to alter the appearence of my textarea fields. What I want is for a statement to be visible in the textarea until the user begins to type there. Here is the code for the textarea field - <input type='hidden' name='mission'> <TEXTAREA ROWS="10" COLS="65" name="section2atextarea"...
  11. crystalb24

    Using buttons in a frameset page

    I'm trying to use buttons to direct users through pages in a frameset using this code: <input name="button 1" type="button" class="style20" onClick="MM_goToURL('parent','instructions.htm');return document.MM_returnValue" value="First Time User"> but when it redirects to the URL it does so...
  12. crystalb24

    Creating an &quot;accordian&quot; style effect

    I'm trying to create a website with an accordian style effect on the tabs that rest on the right of the screen (like the effect used on this site - www.danecook.com). In Flex, it's an easy as adding a <mx:Accordian> tag (that only operates vertically as far as I can tell), but I'm still fairly...
  13. crystalb24

    Releasing a demo

    I am currently building a web based application and would like to release a demo version to a select group for feedback (basically give them a cd since the site isn't live). I need to lock the files so that: 1. Only the index.htm file is accessable and 2. None of the files are editable What...
  14. crystalb24

    Multiple selections from a drop down box

    I'd like to create a drop down box that allows for multiple selections, but not by using the ctrl key. I'd like the drop down box to have checkboxes that the user can select, allowing them to select multiple items. Is this even possible? ~Crystal Click here...
  15. crystalb24

    Need help with a syntax error

    I'm fairly new to setting up stored procedures and I'm running into a syntax error that I don't understand. "Incorrect syntax near '@MSBP1'. Must declare the variable '@MS'." Can anyone help me figure this out? ~Crystal Click here (http://www.freeiPods.com/default.aspx?referer=7003325) for a...
  16. crystalb24

    New question about event behaviors and drop down menus

    This is the code that I am currently using to allow the user to add a value to a drop down menu. <script type="text/javascript"> function addNewValue(targ) { if (targ.value == 'Add') { newVal = prompt('Create your own Pre-meeting checklist item'); newOpt =...
  17. crystalb24

    Adding a &quot;link&quot; to an upload option

    I want to add a "link" to a page to allow users to upload documents from there desktop that would get saved into a database file, but seeing as how I've only ever seen the finished product of this I have no idea how to code for it. Help?? ~Crystal Click here...
  18. crystalb24

    Need help creating stored procedures

    I need to create two new stored procedures for a web based application that I am creating, both triggered by buttons on the screen. First is to save the users work and close the application. Second is to save the users work and continue to the next section of the application. I need the...
  19. crystalb24

    Help with a form

    I am trying to create a form in the following scenario - I have a list of several individual checklists. When a user selects one, and pop-up window appears that allows them to customize that that specific checklist, reordering items mainly. I have the pop-up window feature working, but what I...
  20. crystalb24

    Need help refining a working script

    Here is the code that I'm using: <script language="JavaScript"> function updateTextarea(cb) { var taValue = document.formName.textareaName.value; if(cb.checked) { if(taValue != "") taValue += " "; taValue += cb.value; //APPENDS checked value to textarea }//end if else //checkbox...

Part and Inventory Search

Back
Top