Search results

  1. T

    Rounding Issue

    Hello, I have the following code written by VBA in MS Access 2010. This code prints in the Label1.caption the number of this equation. the_average = CDbl(TextBox1.Text) * 2 / 3 + CDbl(TextBox2.Text) / 3 the_average = Format(the_average, "#.###") Label1.caption= the_average Some of the operations...
  2. T

    Changing Font to Bold

    Thank you so much for your reply. I do not know how to program it by VBA. I think it is difficult task. I changed the whole plan because of this and changed the form. I do not know why MS forgot to do something like this? It is something very important and found a lot of posts cross the internet...
  3. T

    Changing Font to Bold

    Hello Again, I have the following expression in a calculated Field in Access 2010. > ="We certify that Mr." & " " & [Name] & " " & "Has Graduated" > And it works really fine. It takes the name from the [Name] field. I want to know how make the name with bold font alone? Is there any method or...
  4. T

    Dynamic Label

    Thank you so much
  5. T

    Dynamic Label

    Dear John, I am making a certificates so I need it to look like: We certify that Mr. Mark Melon took the course and passed it. Now, (We certify that Mr.) & (took the course and passed it.) are labels. (Mr. Mark Melon ) is selected from a combo box. And you can notice that the name has a...
  6. T

    Dynamic Label

    Hello All, Hope you're having a great day. I know this might look a little bit strange but I really need it. I have a label or several labels that are followed by combo box. The combo box selects a name at once. The labels contains some texts just before this combo box and after it. I want the...
Back
Top Bottom