Search results

  1. arnelgp

    Solved Sharpen a video?

    NCH Videopad->Video Effect->Sharpen. you can adjust, using the slider the amount of sharpness while the video is playing.
  2. arnelgp

    Solved Difficulty sorting an alphanumerical text field

    result based on what you want to accomplish in post #5: Expr1 (sort order) is being shown here, but you can hide it on the Query design.
  3. arnelgp

    Solved Difficulty sorting an alphanumerical text field

    created a user-defined function in module1 and use it in query1 (Exrp1) and Sort on this calculated column. see query1.
  4. arnelgp

    Solved List Box Sort

    this a Modified version of the db you uploaded. it Sorts on their respective Group only.
  5. arnelgp

    bad bracketing

    you may also try this: Function GetDateRange(DateField As String, RangeType As Integer) As String 'Last Month Dim firstmonth As Date Dim lastmonth As Date firstmonth = DateSerial(Year(Date), Month(Date), 0) lastmonth = DateSerial(Year(firstmonth), Month(firstmonth) - 12, 0) 'Quarterly...
  6. arnelgp

    Solved Query with multiple parameters not working

    try this also: SELECT GrantsT.GrantURN, GrantsT.OrganisationName, GrantsT.CountryID, GrantsT.Status, GrantsT.StatusDate, GrantsT.ProjectStart, GrantsT.ImpactDue, GrantsT.Received, GrantsT.ProjectCompleted, GrantsT.EndOfProjectVisit, [Received] -...
  7. arnelgp

    Display Calendar

    here is another demo.
  8. arnelgp

    Filling Out a Template with Consecutive Fields

    share us the real excel template.
  9. arnelgp

    error while Adding blank rows to a report

    you may also check this one. i added another dummy table (dummy2). using union query will fail if you have lot of stopNumber on your table and the Union query will increase the the sql string and eventually will fail.
  10. arnelgp

    Write conflict

    then you are just Duplicating the infor already on the other table, thus, wasting space on your db.
  11. arnelgp

    How to test whether a form is opened as hidden?

    you may try: If CurrentProject.AllForms(stDocName).IsLoaded Then If CurrentProject.AllForms(stDocName).CurrentView = acCurViewFormBrowse Then If Forms(stDocName).Visible Then
  12. arnelgp

    Write conflict

    you don't need to Save the Full Address in your table, since it can be derived from the Other table. just link the two tables together using a query and use the query as the recordsource of your form.
  13. arnelgp

    32 bit Access vs 64 bit Access - HELLLLLP!!!!

    you get the access path: syscmd(acSysCmdAccessDir) & "msaccess.exe"
  14. arnelgp

    VBA email attachments

    try this: Sub SendEmailWithThunderbird() Dim thunderbirdPath As String Dim recipient As String Dim subject As String Dim body As String Dim attachmentPath As String Dim cmdLine As String ' Set Thunderbird executable path (adjust to your installation)...
  15. arnelgp

    Setting Recordsource when there are two or more forms open

    just test if frmActivitiesEdit is open:\ If CurrentProject.AllForms("frmActivitiesEdit").IsLoaded = False Then DoCmd.OpenForm "frmActivitiesEdit" End If Forms!frmActivitiesEdit.RecordSource = "Select * from qryActivitiesEdit Where ActionID = " & Me.txtActionID
  16. arnelgp

    Solved Display Image Conditionally

    use your Control not the fields in your table: Private Sub GroupHeader1_Format(Cancel As Integer, FormatCount As Integer) Me.Lvl1Img.Visible = Me.Lvl1Chk Me.Lvl2Img.Visible = Me.Lvl2Chk Me.Lvl3Img.Visible = Me.Lvl3Chk End Sub
  17. arnelgp

    SUBFORM CONTROLS

    you may try this on the subform's Current Event: Private Sub Form_Current() Dim bolVisible As Boolean With Me bolVisible = (.Recordset.RecordCount > 1) !FirstRecord.Visible = bolVisible !NextRecord.Visible = bolVisible !PrevousRecord.Visible = bolVisible !LastRecord.Visible...
  18. arnelgp

    The_Doc_Man has become upgraded to Super Moderator

    don't forget the blowout..
  19. arnelgp

    Ban's for doxing (or similar)

    means a woman/girl/transgender. maybe attributed by Elvis Costello: She may be the face I can't forget A trace of pleasure or regret May be my treasure or the price I have to pay She may be the song that summer sings May be the chill that autumn brings May be a hundred different things Within...
  20. arnelgp

    Solved HELP WITH VBA ON SUBFORM

    then you already have Duplicate JR_ID on JR_TrClassesT table. what the code is doing is adding (if it does not already exists on JR_TrClassesT) the 12 records you are looking for. next it uses an INNER JOIN (meaning only those 12 JR_ID should be included). but you said more than 12 are being...
Back
Top Bottom