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: *

  1. Terpsfan

    Combination chart

    What I'm trying to do is create a combination chart that has an x-axis, a primary value axis and a secondary value axis. I suppose this is called a combination chart, with one axis displaying a bar chart and the other a line chart. I'm not sure about how to go about this in Crystal.
  2. Terpsfan

    exit function in javascript

    Now that was simple. Thanks!
  3. Terpsfan

    exit function in javascript

    Is there something within Javascript that I can use to exit further processing in a function. I know in Visual Basic you have exit function. Thanks in advance.
  4. Terpsfan

    Emailing with Java Script

    Ok, since you have been so gracious to answer my questions so far, I have another one for you. And directly after this I am getting a book on Java Script. I have about 25 check boxes on the form, how could I loop through each one, and if one is checked, I would add the check box name to the...
  5. Terpsfan

    Emailing with Java Script

    Unfortunately this isn't working. What am I doing wrong? <HTML> <HEAD> <TITLE>Test</TITLE> </HEAD> <BODY> <form name="frmTest"> <input type="text" name="txtLname" size="25" /> <input type="text" name="txtFname" size="25" /> <input type="button" value="Email"...
  6. Terpsfan

    Emailing with Java Script

    Ok, next question. I want to insert a new line in the email body. How would I do that? Thanks again.
  7. Terpsfan

    Emailing with Java Script

    Thanks, that helped me a lot.
  8. Terpsfan

    Emailing with Java Script

    Thanks for your response. I don't know java script very well, so could you provide a short code example? Thank you very much.
  9. Terpsfan

    Emailing with Java Script

    Is there a way of taking entries in the text boxes on an html form and inserting their contents into the email through java script. This works but with hard-coded material. Thanks <html> <head> <TITLE> </TITLE> </HEAD> <Body> <FOrm NAME = "frmTest"> <INPUT TYPE = "text" Name="txtLname" Size...
  10. Terpsfan

    Getting distinct count from a column in a query

    Thanks for your response. Unfortunately that didn't work. What I ended up doin was creating a function in the report.
  11. Terpsfan

    Getting distinct count from a column in a query

    I am using Access 2000. I am trying to find the distinct count of the description column within the query. In Access 2002, I could create a subquery SELECT Count(Distinct Description)... Access 2000 doesn't allow this. Any ideas? Thanks PARAMETERS...
  12. Terpsfan

    Sending email via java script

    Can someone explain to me why this doesn't work? I found this on a java tutorial web site. I believe we are using Outlook/MS Exchange for email. I get no error messages and it says it sends the email, but nothing happens. Thanks <html> <head> <TITLE> </TITLE> </HEAD> <Body> <SCRIPT...
  13. Terpsfan

    .NET MCSD

    I have an MCSD for Visual Basic 6. I have a few years experience with .NET, particularly C#, but less on the job experience than I would like. Can someone point me in the right direction for study materials? Thanks Does it test the 1.0 or the 1.1 version of .NET? Now, I hear there is a 2.0...
  14. Terpsfan

    Extract data in between parentheses

    Thanks PHV, your solution was actually better, because it parses out the string wherever the parentheses are in the field.
  15. Terpsfan

    Extract data in between parentheses

    Thanks for your Responses. What I ended up doing was this, because the field always begins with a parentheses: Mid$([FieldName],2,(Instr(2,[FieldName],")")-2))
  16. Terpsfan

    Extract data in between parentheses

    I have a text field where I have data in between parentheses, like (TIPS) I would like to just extract the data from the parentheses. Does anyone have an example of how this works? I'm assuming you use a combination of mid and instr, but not sure how. Thanks
  17. Terpsfan

    Forms has become READ ONLY??

    Did you try compacting and repairing the database? Is the record source a query or table. If a query, check to see if it is pulling the right number of records.
  18. Terpsfan

    Access Frontend to SQL Server Backend

    I think your best bet is to create an Access Project, which enables you to create an Access front end to a SQL Server backend. You need Access 2000 or higher. Open Access File --> New--> Project (Existing Data) As long as you have your DSN defined with a connection to the database, you'll...
  19. Terpsfan

    Disappearing toolbars

    One thing you might want to look at is on your Tools -->Startup options. Make sure you check Allow Built In Toolbars and Allow Full Menus. That should ensure that your toolbars display.
  20. Terpsfan

    Intersection Table

    This is how I would break up the tables. I would have one main issue table for recording issues. Within that table you would have several related lookup tables. tblIssues (IssueID, IssueDescriptionID, Issue_Start_Date, Issue_End_Date, Entering_Person_ID, Status_ID, Priority_ID)...

Part and Inventory Search

Back
Top