Recent content by mencoxx

  1. M

    A strange behavior of a Boolean variable

    Thank you for your interest. If the Timer function after midnight resets, then the delay is zero but I don't think it affects the variable 'flag'. Ciao
  2. M

    A strange behavior of a Boolean variable

    Ciao, I run a device monitoring program and noticed that at the turn of midnight, the program would stop, debugging I noticed that the variable 'flag' would change state on its own. I solved it, I know I had to use the API Sleep function, but still it's really weird. I attach a test example...
  3. M

    Error 3192 when try insert record in sql server

    can you open it into datasheet view? Yes o the first record then jump to the last record. Does that work? yes I know and it's really a strange problem. Thanks a lots Domenico
  4. M

    Error 3192 when try insert record in sql server

    Hi, I'm getting the usual error: 3192 traslate: Could not find output table <name>. (Error 3192)
  5. M

    Error 3192 when try insert record in sql server

    I found this solution, I don't Like but work '-------------------------------------------------------------------------------------------------- Dim rs As DAO.Recordset Dim Sql As String Sql = "Select Top 1 Stato, Collezione, Modello, Articolo From dbo_tblScheMod" Set rs =...
  6. M

    Error 3192 when try insert record in sql server

    I have a strange problem: I do an insert into command using as usual example: '---------------------------------------------------------------------- Dim dbs As DAO.Database Dim sql As String Set dbs = CurrentDb sql = "INSERT INTO dbo_tblScheMod (Stato, Collezione, Modello, Articolo) VALUES...
Top Bottom