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 strongm 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. pinkpoppy

    combox and subform search form

    Hello, I have a search form. The search form has a combobox and a subform. When a user selects from the combobox (they select a supplier code), the subform will display the the searched results. In the subform, users are allow to add new records. When the user add a new record, the supplier...
  2. pinkpoppy

    Export Subform results to Excel

    Just an update, I was able to solve my issue with the sample above, thanks!
  3. pinkpoppy

    Export Subform results to Excel

    Thanks! The combo box and the subform is both on the main form. Do I need to put the code behind the export button?
  4. pinkpoppy

    Export Subform results to Excel

    Thank you for the suggestion. I've tried your suggestion and ran into an issue. I implement the code behind the command for the export button correct?
  5. pinkpoppy

    Export Subform results to Excel

    Hello, I am modifying a database that was created by someone else. The database has a form which a user can choose from a combobox and the result is then display in a subform. Combobox1 has a query behind it. when the user clicks on it, it shows in the dropdown the available last,first name...
  6. pinkpoppy

    count function that doesnt factor in hidden sections

    I have a formula that is counting a field, but it is also factoring the 'details' section when I insert a field. How do I stop the formula from not factoring in the details section and only count and display one the field I need?
  7. pinkpoppy

    need to get the count records

    thanks! it is displaying the right number now.
  8. pinkpoppy

    need to get the count records

    It is counting the total number of records there are instead of 9 that I need.
  9. pinkpoppy

    need to get the count records

    Yes, but it is not getting the right count.
  10. pinkpoppy

    need to get the count records

    I have a report displaying by groups, but I need the total count of records displayed. Example data: Group 1: State Group 2: Last Name NM Smith NM Benson GA Richardson GA Floyd GA...
  11. pinkpoppy

    range formula with parameter value?

    How can I write a formula that uses the range operator and also a parameter value? For example, I need a crystal syntax formula that checks to see if a database field of 1 - 12 has a parameter value of 11. Something like this if it is possible: if {tablename.field} in (1 to 12) = {Parameter...
  12. pinkpoppy

    forumla for finding missing number

    I am doing a survey of a group of people for a special demographic research. I need to find what age is missing from this group. I need to display from 2 different tables: Table1 has the "RACE" field and Table2 has the "Age" field. For example, my report current display as follows for year...
  13. pinkpoppy

    Finding missing data in months

    This is an example of my database. We keep track of how customers pay for products that are on a monthly basis. Customers are required to pay every month. I need to find which State, Customer(s) have not paid for a certain month. This report will need to run every month, so I will enter...
  14. pinkpoppy

    how to increment an item array by 1

    I have an item array: A600 I need to increase it by 1 (A601). How do I increase it and have it shown in a textbox? Thanks
  15. pinkpoppy

    Add "Select" in a combobox

    Thank you so much. Works great!
  16. pinkpoppy

    Add "Select" in a combobox

    I have a combobox in a window form and it is populating from a datasource via sql. I need a blank item, "select category". How do I do it? dtCategory = SQLQuery("Select Category Display from Category_Support").Tables[0]; DataColumn[] CategoryKeyColumn = new...
  17. pinkpoppy

    Killing / removing 2 sessions

    Hello, I am having some issues with killing 2 sessions I have in my application. The application has 2 pages that takes data. Page 1 is session["ABC"] and data is taken from dropdownlist and textboxes. Page 2 is session["EFG"] and this page has a gridview that has dropdownlist and textboxes...
  18. pinkpoppy

    Binding Dictionary Object to a gridview

    Can you show me an example? I am still working on this.
  19. pinkpoppy

    Binding Dictionary Object to a gridview

    I have a gridview that shows data. Data is called from a web service method.In one column, the values are displayed as abbreviation and I need those values displayed as the actual value. I have a Dictionary Object that I want to use to display the values. Dictionary - where do I put this...
  20. pinkpoppy

    Rename values in dataset

    thanks, finally got it!

Part and Inventory Search

Back
Top