Know-Legal Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. Forum: Access - Access Forums

    www.accessforums.net/forumdisplay.php?f=5

    General Access questions. AccessForums.net is a forum dedicated to Microsoft Access, if you want to ask any Access related questions or help other members out, please join our community, the registration is free and takes only one minute.

  3. Microsoft Access Forums

    www.accessforums.net

    Discussion forum for Microsoft Access users. AccessForums.net is a forum dedicated to Microsoft Access, if you want to ask any Access related questions or help other members out, please join our community, the registration is free and takes only one minute.

  4. Adding Code 128/39 Barcodes to Access Reports - Access Forums

    www.accessforums.net/showthread.php?t=33878

    Hello all! I just wanted to add this amazing bit of code to the repository! In my recent searches, I've found that adding barcode capabilities to Access falls into one of two categories: Extremely basic (limited to using a "Barcode Font" to simulate barcodes), or Costly (paying for a pre-packaged - and proprietary - barcode "solution" that can be imported into Access).

  5. How to use Row_Number() Over Partition By ... in Access

    www.accessforums.net/showthread.php?t=74682

    Public Function Row_Number(varChangeField As Variant) As Long. If varChangeField = ReferenceGroupID Then 'the group by field is the same as previous, increment the row counter. lngRowNumber = lngRowNumber + 1. Else. ReferenceGroupID = varChangeField 'the group by field has changed, reset the counter to 1. lngRowNumber = 1.

  6. Custom Shortcut Menu: List of msoControlButton Values ... -...

    www.accessforums.net/showthread.php?t=83609

    Using MS Access 2016. I'm trying to find a list of msoControlButton values to use VBA to create one or more custom shortcut menus. To make it clearer, I'm talking about the lines used in the code, below, for example ".Controls.Add msoControlButton, 141, , , True". The number 141 sets up the Find command. I haven't done much on shortcut menus ...

  7. Experts: I need some assistance with an **IN BETWEEN TWO CHARACTERS** query. Below are two (2) sample strings which include variable length last names, first names, and ranks: Jackson, Tom ~ PO2 (E5) Smith, Mary Ann ~ PO1 (E6) - All last names and first names are separated by a comma (,) - All first names and ranks are separated by a tilde (~)

  8. Multi-line textbox - Access Forums

    www.accessforums.net/showthread.php?t=65852

    Multi-line textbox. I'm trying to find the multiline property for a text box and I don't see it. I need the textbox on my form to be multiline, word wrap and have scroll bars as needed. I could swear the text box in access supported this, but perhaps I'm thinking VB. I'm using Access 2016. Any help you can provide is appreciated.

  9. Conditional Formatting Greyed Out; Do not know why? - Access...

    www.accessforums.net/showthread.php?t=64625

    1,051. If the info isn't in your record source (and you can't add it) you could use a dlookup statement. Dlookup ("trend","qdb_trend", criteria) This would put the up or down in a textbox and you could use conditional formatting from there. Sent from my iPhone using Tapatalk. 02-24-2017, 05:52 PM #6. Missinglinq.

  10. How to return top N records for each group? - Access Forums

    www.accessforums.net/showthread.php?t=87148

    I would like to return the top 2 count of SSNs by ID (see expected results below). I have the SQL below but when I run it I am asked to enter the paramter values for T2.CountID and I can't figure out why. SELECT T1.*. SELECT TOP 2 Count(T2.[_ID]) as CountID. FROM DataTab as T2.

  11. Creating a gantt chart in Access 2010 - Access Forums

    www.accessforums.net/showthread.php?t=69111

    Creating a gantt chart in Access 2010. Hi All, I'm wondering if it'll an easy endeavor to create a gantt chart to schedule machine repairs on a database I'm already using. I have a schedule repair start date field and a estimated repair completed date field already in a table used to log the repair. Is there a way to create a gantt chart based ...