Search results

  1. T

    Determine Which Textbox has Focus

    Ok, thanks for the replies! Thought I could get around creating so many events, but it's not a problem to do. It will just be a lot more code :)
  2. T

    Determine Which Textbox has Focus

    Hello, I have a form with 24 textboxes and I wish to grab the name of the textbox that currently has the focus by using Screen.ActiveControl.Name. Instead of calling a function to get this information by creating all 24 textbox OnGotFocus events, is there a way to trigger the function under...
  3. T

    Table Stucture Help - Tracking Varying Time Periods

    The_Doc_Man, Thanks for your help! I think I figured out the table structure now: tblProject ProjectID (pk) Project tblProjectHours ProjectID (fk) HoursID (fk) tblHours Hours(ID) (pk) Cost Category Month (date/time) Hours (double) I think this is right, but now I've run into a new problem...
  4. T

    Table Stucture Help - Tracking Varying Time Periods

    Hello, I'm having a hard time trying to figure out how I should go about designing the table structure for the hours tracking for the database I'm working on. Basically, I have a table with projects (tblProj) that I need to track the number of labor hours worked per month. The problem lies in...
Back
Top Bottom