Recent content by Sweetu

  1. S

    On mouse hoover event , display a text

    you can use this also Dim SetTime As Integer, InfoBox As Object Set InfoBox = CreateObject("WScript.Shell") 'Set the message box to close after your desired seconds SetTime = 2 Select Case InfoBox.PopUp("Click OK (this window closes automatically after 2 seconds).", _...
  2. S

    Make a text box appear on some records but not all.

    which you want to make invisible set the visible property to false Private Sub Part_Number_2_AfterUpdate() If Me.Account_Ref = "ARB20" Then Dim answer As String answer = MsgBox("Do you need to enter another part number?", vbYesNo, "Another Part Number?") If...
  3. S

    Refresh Another Form On Form Close

    make one combobox & add Ascending & Descending list, On After update Event paste this code If Me.YourComboboxName.Value = "Ascending" Then DoCmd.SetOrderBy " Primary kEy or your value for ASC" Else If Me.YourComboboxName.Value = "Descending" Then DoCmd.SetOrderBy "Primary kEy or...
  4. S

    Assign case to diffreddnt user and track

    in a separate table ?
  5. S

    Assign case to diffreddnt user and track

    Dears need a bit hint or assistance , What would be the structure for assigning case to another user & revert back to same and so on while keeping the track , such as jeorge created a case which saved in case table & case table have one FK with case to identify the user assigned, but how we...
  6. S

    Table Locked message

    Table or controls on form?
  7. S

    Conditional formatting with dates.

    On create check out for code/module then copy/paste above code to VBE...name it and call however you need
  8. S

    ADO connection with Access 2013 to Sql 2008

    Yes dear now you got it right...I need to set up DSN datasource connections.... I've to distribute this to 8 devices... Can you please teach me...how to do? Thanks for your reply though...
  9. S

    ADO connection with Access 2013 to Sql 2008

    I checked everything is fine and indexed properly, just sql credentials is making me crazy...and searching via filter on to existed query takes 2 minutes... Before migrating to sql it filter out the records within seconds...:banghead: Someone suggested me to create ADO connection and add the...
  10. S

    ADO connection with Access 2013 to Sql 2008

    I connected already via ODBC...but every time it requires sql login and password... Can you help me with ADO please?
  11. S

    ADO connection with Access 2013 to Sql 2008

    Hi dears Experts! I need your help please... I've access 2013..which is connected to Sql 2008 via ODBC... Before I was using query for forms to filter required data... But after migrating tables from access to sql query takes much longer time to display in forms.... And every time I need to...
  12. S

    Form check for NZ

    I'm using on load Form ,Still no success ------------------------------ If Is Null(me.textbox.value) then textbox.enabled=False Else textbox.enabled=True ------------------------------ but actually this should be on click button where I'll find in the form textbox for one...
  13. S

    Form linked with Navigation menu unable to filter

    Thank you dear for suggestions, the problem with page control is when we click on the page it goes slightly up and when we scroll via mouse wheel its not scrolling though scrolling part is best with Navigation Form... if possible please guide here, I added new Navigation with Test name & tabl2...
  14. S

    Form check for NZ

    No dear I'm asking about checking for null field or NZ in form and then in textbox property sheet, Data tab and Enabled" Yes/No"... How to enable that in VBA.... Maybe we need to write VBA on load form but how set property sheet>Data Tab>enabled to Yes or No by checking textbox is null with...
  15. S

    Form check for NZ

    Dears Experts, I'm in need of your expert assistance, If we created a form based on table but we need to check for empty or null cell/feild values that we left intentionally while filling out the data... But after some time we need to update that feild from Form.... I know We'll check for...
Back
Top Bottom