Search results

  1. arnelgp

    Solved Nesting IIF Statement with functions that end in (field)

    if it is alreay Solved on that thread, stick to that thread.
  2. arnelgp

    Solved Nesting IIF Statement with functions that end in (field)

    on query qryCDpayrolltaxesWI, you are only processing Single status, for Married what formula do you use? so after combining all of these into 1 function, you have no need for query qryStateTax?
  3. arnelgp

    Solved Sum the data in a textbox in continous form

    show us your Query SQL string.
  4. arnelgp

    Solved How to make vba check all records in continuous form not only top one record

    what is the code you are using to check if an item has available stock?
  5. arnelgp

    How to make bold in Rich Text Box

    Me.TxtTextSummary = "<strong>" & UCase([Forms]![FRM_TBLALL_FullDetails]![SFRM_TBL_StaffDetails].[Form]![LblComplaintRef]) & "</strong>"
  6. arnelgp

    Solved Sum the data in a textbox in continous form

    create a query for your table and add the Calculated column (the 1 and 0). use the Query as recordsource of your continuous form, then you can sum the Calculated column.
  7. arnelgp

    Shell.application with second argument

    the &amp comes when you highlight the code and copy/paste it, instead of using the Clipboard button to copy.
  8. arnelgp

    Solved How to make vba check all records in continuous form not only top one record

    you need to Loop through each record of the subform's recordset" With Me.subformName.Form.RecordsetClone If Not (.BOF And .EOF) Then .MoveFirst Do Until .EOF 'check if item has .MoveNext Loop End If End With
  9. arnelgp

    Solved Nesting IIF Statement with functions that end in (field)

    must have uploaded the wrong version. here again.
  10. arnelgp

    Shell.application with second argument

    "Shell.application" will only open the file and has no way to open the SubAddress. just use FollowHyperlink. FollowHyperlink can only be used on MS apps that has SubAddress (Excel, Word, PP).
  11. arnelgp

    Solved Nesting IIF Statement with functions that end in (field)

    you open the the query in design view and see the Expressions on the Computed columns of MarSM2, MarSM, MarLG, etc.
  12. arnelgp

    Refactoring an Access Database

    somewhere in this forum, there is a case where you can change the Labels of Controls to simulate multi language. orientation of Text Input can be change also by changing the Keyboard language via VBA.
  13. arnelgp

    Solved Nesting IIF Statement with functions that end in (field)

    i think there is no advantage of using a Function on your case. see BasTaxCompute module and query QryStateTax_arnelgp that uses ComputeTax function.
  14. arnelgp

    MS Office warning

    using this method will not show any warning: Dim sPath As String sPath = "E:\Images\ALL RAW Images\Herbanium_Collection\Group_E\Ericaseae-eric-1\DMHN010962A.nef" CreateObject("Shell.Application").NameSpace(0).ParseName(sPath).InvokeVerb "Open"
  15. arnelgp

    Refactoring an Access Database

    maybe the db was created for Arabic audience, the reason for the orientation. and the client approved of such. before you do any modification, create a copy of the db and keep in a safe place, in case it got worse than before. i may hint you are also not an ms access programmer yourself. if you...
  16. arnelgp

    DLookup on a SQL statement

    you drag tblUser, 2 times and join them on appropriate field: SELECT tblTaskAssignment.taskAssignmentID, tblTaskDefinition.TaskDescription, tblTaskAssignment.TaskAssignmentStatusUpdated, tbluser.username, tbluser.UserID, tbluser.UserTypeID, tblTaskAssignment.TaskAssignmentStatus...
  17. arnelgp

    DLookup on a SQL statement

    don't use Dlookup. use Query designer and drag those 4 tables and join them on their appropriate related fields. test the query and use it instead of your SQL string. SELECT tblTaskAssignment.taskAssignmentID, tblTaskDefinition.TaskDescription, tblTaskAssignment.TaskAssignmentStatusUpdated...
  18. arnelgp

    Solved I need a VBA code to create a directory under parent directory

    you may also try: Public Sub CreatePathFromRoot(Byval sNewPath as string) Dim drv As String drv = GetDrive() sNewPath = Replace$(drv & "\" & sNewPath, "\\", "\") On Error Resume Next MkDir sNewPath End Sub Public Function GetDrive() As String Dim f As Object, fso As Object Set fso =...
  19. arnelgp

    Textbox looses info when fromis closed

    as suggested in post #3 if the comboboxex are Bound and the textbox get their values from the combos, set the textbox values using the Current Event of the Form, eg: Private Form_Current() Me!Textbox1 = Me!Combo1.Column(1) End Sub
  20. arnelgp

    When I select courses in the SUBJECT enrolld List (List Box), the count either doesn’t show or shows incorrectly. How can I fix this? Please guide.

    again i will ask you, did you Download the rectified db i uploaded. You should try it not your version.
Back
Top Bottom