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 wOOdy-Soft 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 Terpsfan

  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))

Part and Inventory Search

Back
Top