Search results

  1. D

    Adding cascading menubar

    Guys, Can this be done? displaying the buttons slowly one after another so the users can see the effect???
  2. D

    Export data from Access table to .csv file

    Hi Guys I want to write a piece of code that will export data from Access table to .csv file and save it down in "U:\Daily Work" folder. The .csv file naming convention will be PO_Daily_Extract. Also can we do some validation on export like checking if the file name already exists in the folder...
  3. D

    Adding cascading menubar

    Can we do something like displaying the different sub options using slow motion ? SO when the user click on Admin then various sub options related to Admin will appear under it but with slow motion. ?? Please see attached screenshot for reference.
  4. D

    Adding cascading menubar

    Hi All I have designed a homepage which has a sidebar (A subform with all the options / buttons on the homepage). There is one Admin Button and when the button is clicked then it opens up a new form with further options for Admin like 'User management', 'Status Control', 'Permission management'...
  5. D

    Close all forms apart from current form

    I want to write a piece of code that will close any form apart from the current form.The following code doesn't work the way I want. Basically I want on the click event of the command button open up a relevant form but close other forms . If CurrentProject.AllForms("frm_LM_Home").IsLoaded...
  6. D

    Alternative of Combobox

    Hi Guys I am trying to get rid the comboboxes in my project and replace them with something that looks like a textbox but when mousehover event occurs on it then it just expands and shows all the values within it. And when the user selects a value then change that to something that looks like...
  7. D

    Interactive Startup form / Home page

    Thanks CJ_London, I will start a new thread as still I have few questions about it.
  8. D

    Interactive Startup form / Home page

    ok, I have tried that but i want it to work in a different way. Suppose there are few values in the listbox when the user choose one value then it should appear in the listbox but definetely no scrollbars in it .
  9. D

    Interactive Startup form / Home page

    I don't understand what you mean by step 6?
  10. D

    Interactive Startup form / Home page

    Along with this can we customize the message boxes ? e.g "The record has been saved " so instead of Access default message boxes use customized boxes .
  11. D

    Interactive Startup form / Home page

    I am looking for similar functionality so that users see the textbox but when they hover mouse on it then the drop down options appear . So look wise its a textbox and not a dop down box but as I said mousehover event brings all the options visible to users. Can anyone please help me in this...
  12. D

    Interactive Startup form / Home page

    Thanks Ridders, Have you designed logos for your projects? I have to design one for "lead management system" but can't think of any. I was trying to use powerpoint to design a logo but not sure what image I should put in for this particular project. Have you got any icons/logos that you can...
  13. D

    Interactive Startup form / Home page

    Hi Guys I am looking for some ideas to create interactive startup forms / Menu forms / Home Page for a project. I want to design a start up form in Access that will look like a web page ( colour pattern / Look and feel etc..) Can you please provide some guidance and share some screenshots ...
  14. D

    Subform Frame validation

    I can't attach db as its restricted at work :(
  15. D

    Subform Frame validation

    missingling, now I have put the code in subform but it doesn't do anything: Private Sub Form_BeforeUpdate(Cancel As Integer) If Nz(Me.Frame14, 0) = 0 Then MsgBox "Incomplete" Exit Sub End If End Sub Pbadly, I have tried displaying a message box as well but it didn't work as well in the...
  16. D

    Subform Frame validation

    Yes we are working on the same project. Minty, this doesn't work either. It lets me leave few frames blank.
  17. D

    Subform Frame validation

    Hi All I have a subform within a form. It has a control named Frame14 with 3 option buttons. It is the continuous subform. What I want to do is put a validation so that the users can't leave any option blank. There is a Save button in the main form that checks all the validations before...
  18. D

    Display the answer of each question in word document from Access form

    Static, sorry to come back to you but the Response field in word document is giving result in (1,2,3) where 1 means "Yes" ,2 means "No" and 3 means "N/A" Can I display "Yes","No" or "N/A" instead? Thanks
  19. D

    Display the answer of each question in word document from Access form

    Thanks Static for all your help. I will open another thread for mail merge. Many Thanks.
  20. D

    Display the answer of each question in word document from Access form

    And also please see attached the word document that gets opened when a button is clicked. There is a mail merge to retrieve the data from table tblQA but the fields don't get merged.
Back
Top Bottom