Recent content by roccoIT

  1. R

    custom msgbox function

    How do I post a db in the forum??
  2. R

    custom msgbox function

    Thanks for the hint, but it is public... forth line in my first post. I'm going crazy with this...
  3. R

    custom msgbox function

    it does! ... in the frmAsk code. here it is: Option Compare Database Private Sub Comando1_Click() answered = 1 DoCmd.Close acForm, Me.Name, acSaveNo End Sub Private Sub Comando2_Click() answered = 2 DoCmd.Close acForm, Me.Name, acSaveNo End Sub Private Sub Comando3_Click()...
  4. R

    custom msgbox function

    Hello, I'm trying to build a custom msgbox function. In a module I have created a function that will open my custom form the user will use to make his choice. This choice is trapped through a public variable ("answered") Here it is: Option Compare Database Public answered As Integer Public...
Back
Top Bottom