Search results

  1. Eugene-LS

    Textbox can act like "Combo Box"

    Yes-s-ss. - It is! Use Custom Menu for TextBox.
  2. Eugene-LS

    Solved Sales Order Form Coding

    Can you post a copy of your application with just the form (with subforms) and required tables/queries. Just a few (fictitious) records to understand.
  3. Eugene-LS

    Unrecognised Database Format - Data migration issue?

    Take a look at that page: Unrecognizeable Database format 3343
  4. Eugene-LS

    Help in access issue - calculated field for Leave system

    See to Query " frmLeave_SubForm_Details" as example: SELECT [Leave Dates].*, GetDaysEFH([Start_Date],[End_Date]) AS DaysEFH, [Days]-GetDaysEFH([Start_Date],[End_Date]) AS EFH_Difference FROM [Leave Dates]; Try change some dates ([Start_Date] and [End_Date]) in query ...
  5. Eugene-LS

    Help in access issue - calculated field for Leave system

    Copy the function into any external module (not a form module), then you can use it along with other functions in forms, queries and reports.
  6. Eugene-LS

    Solved MS access Username displayed on Textbox field

    Can you post a copy of your application with just the form (with subforms) and required tables/queries. Just a few (fictitious) records to understand.
  7. Eugene-LS

    Solved MS access Username displayed on Textbox field

    Take a look at example below please
  8. Eugene-LS

    Solved MS access Username displayed on Textbox field

    Try write in Form "On Load" event: Private Sub Form_Load() Me.txtUnboundField = Environ("UserName") End Sub
  9. Eugene-LS

    @ column list box

    Have you read my post #4? ... I suggested that instead of Application.FollowHyperlink sVal to use Procedure from post #6 WScriptFollowHyperlink sVal
  10. Eugene-LS

    @ column list box

    Try other way to open Hyperlink: WScriptFollowHyperlink sURL Using that Procedure: Public Sub WScriptFollowHyperlink(vLink) ' FollowHyperlink is not working properly !!! '---------------------------------------------------------------------------------------------- Dim wsShell As Object...
  11. Eugene-LS

    @ column list box

    Try: Private Sub List64_DblClick(Cancel As Integer) Dim sVal As String sVal = Me.List64.Column(2) & "" Debug.Print sVal MsgBox sVal, vbInformation 'Application.FollowHyperlink sVal End Sub What will happen?
  12. Eugene-LS

    Query not sorting calculated fields correctly

    Try to convert result to Date format :
  13. Eugene-LS

    Only show queries that contain results, and close queries with no results

    Dim lResCount As Long ' ... If qdf.Type = 0 Then ' Select query lResCount = DCount("*", strQryName) If lResCount > 0 Then 'query contain results ! ' ... End If ElseIf qdf.Type = 48...
  14. Eugene-LS

    Help in access issue - calculated field for Leave system

    Check this function please
  15. Eugene-LS

    Help in access issue - calculated field for Leave system

    I started with line number 4: - "The important button in main screen ..." ;)
  16. Eugene-LS

    Help in access issue - calculated field for Leave system

    I read your assignment. Unfortunately, I don't have time to decide your whole list of wishes. Have you thought about hiring a specialist to finish your application?
  17. Eugene-LS

    Help in access issue - calculated field for Leave system

    Private Sub cmdExitApp_Click() '!!! - Button name changed to "cmdExitApp" DoEvents DoCmd.Close acForm, Me.Name Application.Quit End Sub
  18. Eugene-LS

    Solved Combo box Dropdown and Got Focus highlight field with colour

    You forgot Me.... statment! :) Public Function FocusInOut(bGotFocus As Boolean) 'Now in any combobox on any form in the event procedures for gotfocus and lostfocust ' onGotFocus: =FocusInOut(True) ' onLostFocus: =FocusInOut(False)...
  19. Eugene-LS

    Solved Combo box Dropdown and Got Focus highlight field with colour

    I'm working on that ... Try the example below
Back
Top Bottom