Search results

  1. P

    Yes/No Combo box

    ComboName.RowSourceType = "Value List" ComboName.RowSource = "Open;Closed" Regards, Tim
  2. P

    Monday Lunch

    Along with some kind of chicken pizza thing... a winning combination.
  3. P

    Monday Lunch

    That place has character...but no customers:D
  4. P

    Monday Lunch

    Saloon pilot (sea biscuit)...
  5. P

    Monday Lunch

    Quick lunch here...
  6. P

    Getting value from query before report opens

    Sorry, I simply don't understand what you're trying to do... Just tested this in Northwind: When I put an unbound textbox on a report and add a DLookup function to that textbox's control source property... =DLookUp("categoryName","categories","categoryId =1") ...I see a value in that...
  7. P

    Getting value from query before report opens

    If I'm following you, yes... One way to do this is to just put a dlookup in the textbox's control source property. =DLookup("DatefieldName","QueryName","fieldName=X") Regards, Tim
  8. P

    Access Statements & VBA

    Or you can create a query using the Access Query Grid...assuming your data is related... Tim
  9. P

    Access Statements & VBA

    Hi there, If you want to use VBA to pull data from three tables, assembling the data and displaying it in, say, one textbox, then the easiest solution might be to use the Dlookup function...roughly... ' Tie together data from 3 tables and put the result in a textbox on a form...
  10. P

    Access Statements & VBA

    Assuming table1 and table2 and table3 are text boxes located on the same form as txtTest.... Me.txtTest.Value = Me.table1.Value & Right(Year([table2]), 2) & Me.table3.Value Regards, Tim
  11. P

    Disable Shortcut key

    Set the Key Preview property of your form to Yes. Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) Select Case KeyCode Case 13, 18 KeyCode = 0 End Select End Sub Look up Keycode in Help for more info... Regards, Tim
  12. P

    UK Healthcare v Banks bailout.

    Winter approaches and I could use a new sweater. I don't think this is an unreasonable first fix; once properly done it will build up our collective confidence as we move on to more pressing issues, such as the exchange rate between the U.S. dollar and pound...until that's evened out I won't be...
  13. P

    How to Suppress a keystroke in VBA

    If KeyCode = 187 Then ' Move to a control. Me.TextBoxXYZ.SetFocus ' Eat the key. KeyCode = 0 End If Regards, Tim
  14. P

    Change the Type of a Table Column from Autonumber to Number ?

    DoCmd.RunSQL _ "ALTER TABLE TheTableName " & _ "ALTER COLUMN ID_Number long" Regards, Tim
  15. P

    Lies & Playing Dumb

    Who the hell are we talking about here? TessB?
  16. P

    Reminiscing

    While I haven't used Access professionally in a long time, I still pop in here and watch the same spats erupt and similar thread topics (in the 'cooler and elsewhere) repeat every few months. For example, there must be at least one thread on evolution versus creationism every year…ironically the...
  17. P

    Posted DB to Sharepoint Linking to tables in Local FE

    Do their user accounts belong to the same Windows security groups as your account? That is, it might be a permissions problem. Regards, Tim
  18. P

    Time Bomb

    Is it a "time bomb" (something insidious) or just an expired license?
  19. P

    two listboxes

    Try this... Me.Requery Regards, Tim
  20. P

    two listboxes

    Try this... DLookup("unit_no", "unit", "[unit_name]='" & Me.units.Value &"'") A pretty good reference. Regards, Tim
Back
Top Bottom