Search results

  1. maikon

    SQL returns "not into" other query

    Hi people, Do exists a way to a query return what doesn't into other query? For example: SELECT * FROM table WHERE "NOT INTO" (SELECT * FROM table WHERE ... ) Someone understood?! Thanks a lot!
  2. maikon

    Me.Undo leave autoincrement !?!

    Hi there, I've a button that position the table on a new record: DoCmd.GoToRecord , , acNewRec And I create a button to cancel that action: Me.Undo But the code field (autoincrement) continues autoincrementing! Explaning: 1. I click on "Add" button 2. The table's positioned on...
  3. maikon

    Cancel new record command

    Folk, I'm using the default command to add a new record in a table: DoCmd.GoToRecord , , acNewRec The question is: How I can cancel the new record inclusion on table? It's possible? Thanx a lot, Maikon
  4. maikon

    Graph1.HasTitle alternating

    Hi people. I have a problem here. I have that sub: Graph1 is a Microsoft Graph Chart. Command1 is a button that refresh Graph1 Combo1 is a combobox that has the Graph Title Private Sub Command1_Click() Graph1.Requery 'the command button take date interval and other informations to make...
  5. maikon

    Change date of MS calendar control 11.0 in VBA

    Hello there. I'm trying to change activex calendar control value by code but I don't having sucess, the value (date) don't change! How I tried: '1 Calendar.Value = Date 'Date = Today '2 Calendar.Today 'The help file suggest that form but don't go... '3 Calendar.Day = 21 Calendar.Month = 1...
Top Bottom