Search results

  1. Eugene-LS

    D.White - Follow Me. Modern Talking style 80s. Music Disco.

    D.White - My Everything (Big Extended Version, mix by Marc Eliow) NEW Italo Disco
  2. Eugene-LS

    D.White - Follow Me. Modern Talking style 80s. Music Disco.

    D.White - If you could stay (Fan Video) Modern Talking style
  3. Eugene-LS

    Continue developping

    https://www.access-programmers.co.uk/forums/threads/vba-code-for-relinking-new-tables-from-back-end-accdb-to-front-end-database.322695/#post-1820593
  4. Eugene-LS

    Solved Radio Options to select a record in a continuous form

    Maybe that would work for you?
  5. Eugene-LS

    Bring Word to the front when opened in ACCESS

    With MS Word you can use .Activate method. Private Sub OpenAndActivateWord() 'MS Word - Opening a document and activating application window '--------------------------------------------------------------------------------------------------- Dim sDocPath As String Dim objWordApp As Object On...
  6. Eugene-LS

    Solved Incorrect output when filing report

    I couldn't figure out how it works for you.
  7. Eugene-LS

    Solved Incorrect output when filing report

    Report "SafetyInfoControlsubreport" Set RecordSource Property to: SELECT RiskAssessmentID, Activity.ActivityID, ControlMeasure, HazardRef FROM (Hazard INNER JOIN (Activity INNER JOIN ActivityHazard ON Activity.ActivityID = ActivityHazard.ActivityID) ON Hazard.HazardID =...
  8. Eugene-LS

    Copy Data from one table to another

    Private Sub UpdateRecordsIfIsEmpty() ' Copying the data from table "Investments01_Appendix" to the table "Investments01_tbl", _ ONLY if the same field name in table "Investments01_tbl" is empty...
  9. Eugene-LS

    Solved Separate Icons for each apps

    Thank you very much for the information. It is very important!
  10. Eugene-LS

    Solved Separate Icons for each apps

    This option starts Microsoft Access without displaying the startup dialog box. You are right - it is acceptable without this option.
  11. Eugene-LS

    Solved Separate Icons for each apps

    Try this way: Сreate a shortcut (on the desktop) with a command like: "C:\Program Files\Microsoft Office\root\Office16\MSACCESS.EXE" "D:\MSAProjects\YourFolderName\YourAppName_v001.accdb" /NoStartup Then set desired icon to this shortcut.
  12. Eugene-LS

    creating multiple copies of sales order forms

    I think = Yes. I solved a similar problem this way:
  13. Eugene-LS

    Solved Sound in Access

    Check out example below please
  14. Eugene-LS

    Solved Sound in Access

    Try : Private Sub TestPlayWaveFile() '... \Sounds\potion_gulp.wav strSound = CurrentProject.Path & "\Sounds\potion_gulp.wav" PlayWaveFile StopWaveFile End Sub ... Works!
  15. Eugene-LS

    Solved Exporting Error If fist query has no records...

    The same code with less strings:
  16. Eugene-LS

    Solved Exporting Error If fist query has no records...

    One more solution: ' ... Set rst1 = CurrentDb.OpenRecordset("Data_1") If rst1.RecordCount = 0 Then MsgBox "There are no records to export!", vbExclamation, "No entries" rst1.Close Set rst1 = Nothing Exit Sub End If ' ...
  17. Eugene-LS

    Adding blank rows to a report to fill a page

    Try that query: SELECT 0 As Expr1,EstimatePK, OrderedPartsPK, ReqRecID, ReqOrderedPart, ReqOrderedPartChanges, ReqOrderedPartName, RegisteredOn, ReqSupplierFK, ReqQuantity, ReqUnitFK, ReqRemarks, ReqUnitPrice, OtherExpenses FROM tblEstimate WHERE ReqOrderedPart LIKE...
  18. Eugene-LS

    Solved AfterUpdate() need to return to field on form...

    As I could see your field is named as "Return" so use command : Me.Return.SetFocus
  19. Eugene-LS

    Disable "Not Responding"

    Try something like this: Private Sub PGInStatusBarTest() 'ProgressBar in StatusBar 'More info: https://www.codevba.com/fragments/Access_StatusBar.htm#.Yy_eLExBxrw '--------------------------------------------------------------------------------------------------- DoCmd.Hourglass True 'True...
Back
Top Bottom