Search results

  1. T

    Too many fields....

    Too many columns If you compact and repair the database you should be able to add columns again up to 255. However, I agree with the comments above that you may have to review your design. Good luck.
  2. T

    Top 10 Ways To Not Get An Answer

    What is the question? Wile I agree with the posts above there is something I like to add. I have noticed that frequently people are not able to explain in clear language what their problem is. I read the question several times and I still don't understand what they mean. Sometimes another user...
  3. T

    How to default your input boxes to a new record screen

    New Record In the Properties of the Form change Data Entry (on the Data Tab) to: YES.
  4. T

    tab colour

    Tab Color Don't know RGB but try ColorCop, a handy freeware program that gives you the color info on any item on the screen. Here's the link: http://www.prall.net/ Good Luck
  5. T

    Search and Data Entry Forms

    Combobox Check out this link: http://www.utterangel.com/pages/access_downloads.aspx You can download an example called 'Combobox - Populate a Form' that shows you how to do it. Good Luck
  6. T

    Relinking Tables On Startup

    Relink tables Perhaps this link helps. http://www.rogersaccesslibrary.com/download3.asp?SampleName=RelinkOnOpen.mdb Good Luck
  7. T

    Add to Lookup Table from PopUp Form

    Lookup Check out this link: http://www.fontstuff.com/access/acctut20.htm or this one: http://www.microsoft-accesssolutions.co.uk/not_in_list.htm
  8. T

    New Record, Delete Record, Next, previous Command Buttons

    Buttons Open the Tool Box, make sure the Wizard is selected and drag the button control onto the form. The wizard will guide you through the process. PS. Please next time post your question in the right forum. :) Good Luck
  9. T

    Combo Box (Filter by selection)

    Filter May be this link helps: http://www.techonthenet.com/access/forms/filter_form.php
  10. T

    Removing the Downarrow in a combo

    Arrow Check this link: http://www.applecore99.com/frm/frm011.asp
  11. T

    Combo Box help (database included)

    Combo Box It doesn't work because the necessary code in the After Update Event of the Combo Box is missing. Check out this link: http://allenbrowne.com/ser-03.html Or search this forum, there are many good examples around
  12. T

    datefield = Null

    Date Try this in the form: Me.Datefield = ""
  13. T

    Hiding and Resizing Columns

    Forms Instead of Datasheet you can set it to Continuous Forms. A lot easier to format and control.
  14. T

    Tab colours

    Tab colors Please search the forum, there are several posts regarding this subject.
  15. T

    Can Access do some basic calculation ?

    Calculations If you search the Forum you will find plenty of information about calculations and how to implement them, as well as tips about importing spreadsheets.
  16. T

    Sum Produces Negative Number - I Want Positive

    Sum OK, try this: =Sum(IIf([Field]="Novice",1,0))
  17. T

    Sum Produces Negative Number - I Want Positive

    Sum Try this if 'Novice' is the name of the field. =Sum([Novice])
  18. T

    If-Then problem

    Flickering Are you using Access 2003? The flicker problem is a known issue, it happens with labels on the tab control. You can work around it by changing it in a text box.
  19. T

    sum of the fields

    Sum Set the Control Source of Field 4 to: =[Field1]+[Field2]+[Field3] Set the default value for fields 1,2 & 3 to '0'
  20. T

    If-Then problem

    If-Then In the On Mouse Down property try something like this: If Me.label12.Visible = True Then Me.label12.Visible = False Else Me.label12.Visible = True End If
Top Bottom