Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by MagnaRider

  1. MagnaRider

    Switching between Access and SQL

    Have you considered using an DSN provider in your ADODB Connection object code? Doing this would simplfy having to recomplie code based on the deployment, minimize "dll hell" with various User OS and future OLE DB upgrades.
  2. MagnaRider

    MaskEdBox question

    Option Explicit Const lstNumericCharacters As String = "," Dim firstname As String Dim middlename As String Dim lastname As String Private Sub Form_Click() Call Display_Clean_String Call Display_AddressBook 'Will raise Error Frame1.Enabled = False Call...
  3. MagnaRider

    MaskEdBox question

    Shannan I dropped your code into a test form ... it works as expected. Setting the ENABLE property of Frame1 or MaskEdit1 to 'False' will raise the error. Focus EVENTs occur in the following order: Enter GotFocus Leave Validating Validaed LostFocus
  4. MagnaRider

    MaskEdBox question

    Check the CallStack during the DragDrop event. The error might be caused by a different control.
  5. MagnaRider

    Clearing a MaskedBox?

    '-- CLEAR THE MASKEDBOX MaskEdBox1.Mask = "" MaskEdBox1.Text = "" MaskEdBox1.Mask = "###-####"
  6. MagnaRider

    MaskEdBox question

    Has the ENABLE property been set to 'False'? What is the value of the CauseValidation property?

Part and Inventory Search

Back
Top