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

    Button Access Key Behavior

    Hi all, I have a form which has several buttons on it. Each button has a unique access key set in the text property. (i.e. E&xit). The access keys work fine when alt is pressed, as they should. The problem is, that whenever any button on the form has focus, the access keys for ANY button work...
  2. caoamo

    Chart based off of a cross tab problem

    Hi, Crystal XI... I have a chart that is based off of a cross-tab report which counts the total of claims for each month by type. The cross-tab looks like this: Month HMO Traditional Total Jan 5 2 7 Feb 2 1 3...
  3. caoamo

    Easy one about Me.Hide()

    Excuse my ignorance, as I'm still fairly new to VB.NET.... I want to hide my start up form while the form gathers some data from the users computer. Why won't this work for hiding the form when the application loads? Private Sub frmResults_Load(ByVal sender As Object, ByVal e As...
  4. caoamo

    DB schema help

    Hello all. I am creating a small backend DB for an application. The tables required number only a few, but I have some doubts as to the best way to set it up. I want to record a User ID and PW, along with journal entries, appointment information, and financial deadlines. My initial set up looks...
  5. caoamo

    Good Resources

    Hi. I'm fairly new to VB.NET. I've picked up and read "Visual Basic .NET step by step" from Microsoft Press, from cover to cover and completed most of the tutorials. This book seemed much more geared towards the IDE interface of Visual Studio, and much less concerned with actual coding. I'm...
  6. caoamo

    New record being inserted while still entering previous record

    Whenever I am in data entry mode on a table, while filling out the fields for a new record, Access automatically creates a new blank row under it. This new row is now showing up in some of my queries undesireably. Is there anyway to disable this feature so that I have to manually tell Access to...
  7. caoamo

    Help with a Union Query in Access

    I have a TargetChange_tbl in my database that contains the following fields: eventID, date, employeeID, equipmentID, targetID, chamberPosition Every time the maintenance team changes a target in a machine, it needs to be logged. I want to build a query off of this table that returns only the...
  8. caoamo

    help with UNION

    I'm trying to build a single table query which displays the last date that a specific event (target change) was performed, with some details. The basic query I have looks like this: SELECT TOP 1 chamberPosition AS [Position], targetID, date FROM TargetChange_tbl WHERE chamberPosition=1 GROUP BY...

Part and Inventory Search

Back
Top