Recent content by XhevatTafaj

  1. X

    Question Creating Invoice Numbers

    Here is an database that include function to increment text.
  2. X

    Question Creating Invoice Numbers

    Such numbers can be the primary key. I'm sending you two functions ' Increment string Public Function incAlphaNum(inputString As String) As String Dim i As Long, formatStr As String For i = Len(inputString) To 1 Step -1 If Not (IsNumeric(Mid(inputString, i, 1))) Then Exit For...
  3. X

    Custom Ribbon is not activated on nsubform's.

    In Access 2007. I have a Main Form with (1) subforms that have a differenet .RibbonName set. When switching focus to the subforms, the Ribbon Tab for the Main Form stays active and the subform's Ribbon is not activated. I have put the ribbons assigned to the subforms on a main form, and they...
Back
Top Bottom