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

    Combobox Selected Item - Change Forecolor

    Hi all, I have a combobox with a list of items that I loop through, and when a condition is met I want to change the forecolor of the item in the combobox that meets the condition. For example - my combobox has 10 items, and 3 of the items match a criteria - I want these 3 items to appear in...
  2. a75537

    Microsoft Outlook 10.0 Object Library - Setup on Client

    I've included the Micorsoft Outlook 10.0 Object Library in my project and everything works fine on my development PC. The code is really simple - just opening Outlook with an attached file: ---- Dim OLApp As New Outlook.Application Dim objMailItem As Outlook.MailItem Dim objAttachment As...
  3. a75537

    Panels & Radio Buttons

    Hi all, I have a Windows Form with 80 panels. Each panel contains 3 radio buttons (one radio button for Yes, one radio button for No, and one radio button for N/A). I would like to be able to retrieve the value of the radio button using the Panel. Lets say the Yes radio button has a value of...
  4. a75537

    No-Touch Deployment - Initial Form

    I've just figured out how to distribute my .Net Windows Forms app using the No-Touch Deployment method. When I'm ready for distribution I'll simply create a shortcut on all user's desktops pointing to my executable file on a web server (after installing the .Net Framework). I've been testing...
  5. a75537

    Report Totals Double when Printed

    I have a report that lists questions, and whether or not the questions are answered yes or no. The totals are displayed at the end of the report. For example: Question 1 Yes Question 2 Yes Question 3 No Total Questions: 3 Yes: 2 No: 1 Accuracy: 66.67% The report is displayed perfect on...
  6. a75537

    Toolbars and Templates

    Hi all, I've created a template using form fields where the user enters/selects information. A custom toolbar is attached to this template - it has one button called 'Send' that writes the information the user enters out to a file. When the user opens this template the only toolbar I want the...
  7. a75537

    Linking Tables - Undesirable Results

    I have 3 tables: Employees Inbound Outbound The Inbound and Outbound tables both have the EmpId value as a field to link to the Employees table. The Inbound table contains info on all Inbound calls the employee received, and the Outbound table contains info on all Outbound calls the employee...
  8. a75537

    Top N or Sort by Formula Field Work Around

    I have a table called Score which has a field called Answer. Answer will always be either 1 for yes or 2 for no. In my report I have a formula called @NoAnswer which is placed in the details: if {Score.Answer} = 2 then 1 else 0 The field {Score.Answer} is also placed in the details section...
  9. a75537

    Get 2nd Name with same ID

    I have an Employee table and a PhoneMonitor table which are linked by the EmpID field in the Employee table. I can then pull the FirstName and LastName fields from the Employee table based on the EmpId field in the PhoneMonitor table. This gives me the name of the person who's phone call was...
  10. a75537

    Error 2115???

    I'm trying to do something really simple and I keep getting an error. I have a form with two combo boxes and a text box. The first combo box contains Review Types and the second combo box contains Review Sections based on the review type selected in the first combo box. I want the text box to...
  11. a75537

    Average of Group Average

    This report is grouped by department, and then employee. It is used to calculate quarterly incentive payouts. I have calculated the average points for each employee by using a summary field("Insert Summary..."). I now want an average of all employee's averages by department. Sample...
  12. a75537

    Hierarchical combo boxes - how do I add records?

    I'm trying to build a database application(Access 97), to help different departments build internal audits. Each audit can have multiple sections, and each section contains multiple questions. I've built 3 tables: AUDIT - AuditIndex(Autonumber), AuditType AUDITSECTION -...
  13. a75537

    Randomly display n% of a group

    I need to create a report that displays random records totaling n% of the total records for each group, for a specified time period. The report is grouped by employee first, and then work queue. The detail displays the items worked for each queue within the selected date range. However, I...

Part and Inventory Search

Back
Top