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: Terpsfan
  • Content: Threads
  • Order by date
  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

    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.
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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
  8. Terpsfan

    Multi Form question

    This question sounds awfully simplistic, but I have to ask. In a multi form application, I am trying to open a second form, and then close the first one. I'm able to open the second by creating a new form instance. I'm not able to close the first form. When I call this.Close it closes the...
  9. Terpsfan

    Create Time Schedule Graph

    I would like to create a time schedule chart (bar chart), in which I would display the employee schedules for a given work day. Each bar would represent an employee on the schedule. The bar would begin at the start time of the employee and have a length of total hours worked. The y axis would...
  10. Terpsfan

    Windows development book for C

    I was wondering if anyone could suggest a good book for developing Windows apps in C.
  11. Terpsfan

    Fiscal Year Crosstab Query

    How does one set up a fiscal year crosstab query? The default behavior is by the calendar year. Is there any setting in Access I can set to change this, or do I have to do it in code? Any help would be appreciated.
  12. Terpsfan

    Export HTML to XML or vice versa

    Basically what I need to do is to have the user fill in the fields in a web page and then hit save, which would generate a document or html page that could then be emailed as an attachment. I found a way to export a web page to Word but this won't work for me because vbscript,asp is not...
  13. Terpsfan

    Create combo box to search on any part of field

    The default behavior of Access is to search through a combo box based on the start of the field. Is there a way to search through a combo based on any part of the field. I've never seen this implemented but I am sure there is a way to get it done. Thanks
  14. Terpsfan

    Counting number of groups in a query

    What I am trying to accomplish is the arrive at a count of the total number of groups within a query, instead of the total number of records. I'm able to do this with 2 queries but would like to be able to do it within one. Do I use a subquery for this? If you could provide an example that...
  15. Terpsfan

    Exporting to a Word or RTF Document

    Is there a way to export data entered into an html form to a Word template with Javascript? I am able to do this with vbscript but it is not supported here. Any code example would be appreciated. Thanks.
  16. Terpsfan

    Export to Word sans .asp

    Is there a way to export an html page to Microsoft Word without using ASP, just using basic html? Any ideas would be appreciated.
  17. Terpsfan

    Byte array example

    I am trying to convert a VB.NET code example over to C# regarding a byte array. This is to export a crystal report to PDF using an exporttostream method. This is how it looks in VB.NET. Dim st as System.IO.Stream st = invoiceDoc1.ExportToStream(ExportFormatType.PortableDocFormat)...
  18. Terpsfan

    Numbering groups

    What I am trying to accomplish is to concatenate a number to a detail field that would indicate sort of an auto number sequence within a group. I would I guess add a 1 each time the group name changes within the group. I'm not looking to count the detail items. Example: REGION group header...
  19. Terpsfan

    Finding Duplicate Records

    I am trying to run a stored procedure that will display invoices that have the same invoice amount as well as invoice date. This would have to be grouped by the duplicate invoices. Some of the fields are InvoiceID, InvoiceDate, InvoiceAmount
  20. Terpsfan

    Controlling Paging in Crystal .NET

    I am running some reports in the .NET environment. Within the Crystal Viewer, there is a navigator control. Each time the user clicks to the next page, it's firing a page load event and processing all the logic again. Is there any way of preventing this? Thanks

Part and Inventory Search

Back
Top