Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. henley12

    Spellcheck with MS Access 2007 runtime

    Is there a way to get Spellcheck to work with MS Access 2007 Runtime version? Perhaps I am missing something simple. Thanks.
  2. henley12

    Populate one listbox with selection from another listbox

    I have seen that article. I have the process of switching them from one listbox to the other working (except I want it to add to the left listbox and not remove the entry from the right listbox. When I double-click the left listbox, I just want it to delete from the listbox, not necessarily...
  3. henley12

    Populate one listbox with selection from another listbox

    I have a form with two listboxes. The left listbox needs to be populated with data from the right listbox. The data in the right listbox needs to look like the following: Heading1 value1 value2 value3 Heading2 value4 value5 ...etc. First, is it possible to populate a listbox...
  4. henley12

    Command Button Problem

    I have an OK button on the second form that returns the value to a field on the original form. I think perhaps the problem lies in the fact that I am trying to do all of this in the click event of the original form's button. Is there a way to pause the execution of the click event to open the...
  5. henley12

    Command Button Problem

    I have a form with a command button to generate work orders. When this button is clicked, it is to open another form so the user can choose a date for the work orders to generate through, then perform the routine to add a record to the table, generate the next date, add the next record, and so...
  6. henley12

    Finding first Monday of the month

    I have a form with 2 combo boxes, a date field and a command button. The first combo box has Every first or Every last. The second combo box has the days of the week. Given that I select Every first and Monday, how would I make the command button populate the date field with the chosen...
  7. henley12

    Updating one form from another form

    I have a form that performs a DLookup to populate fields on the form based on an Equipment ID. I also have a "search" button next to the Equipment ID field that pulls up the Equipment form to verify or edit that record. If I make a change to the record on the Equipment form, it should update...
  8. henley12

    Emailing from Access 2007 through Groupwise - thread181-1332520

    I have asked a question about this before. I am trying to write a help-desk application and when I fill out a new form, I need to email that information to the person responsible. What is the easiest way to do this?
  9. henley12

    Populate Textbox or Memo field on one form with data from another form

    This is still not working for me. I am programming in Access 2007. I hope I am explaining what I want clearly. My main form has a command button next to a memo field. When I click the command button, another form opens up with 4 checkboxes. I want the label of those checkboxes to show up on...
  10. henley12

    Populate Textbox or Memo field on one form with data from another form

    I am getting an error. What am I missing? The code stops on this line: strList = strList & CRLF & Me("t" & ctl.Name).Value And the error says "Object doesn't support this property or method.
  11. henley12

    Populate Textbox or Memo field on one form with data from another form

    What event do I attach this code to?
  12. henley12

    Populate Textbox or Memo field on one form with data from another form

    The checkboxes will have text beside them which I want to show up in the memo field, each on a separate line, depending on what was checked.
  13. henley12

    Populate Textbox or Memo field on one form with data from another form

    I am writing a maintenance database and I have a button on my form that opens another form with a list of checkboxed items on it. I need to populate the memo field on the first form with the items selected. I'm sure there is an easy way to do this, but it escapes me at the moment. Please help.
  14. henley12

    Emailing through Groupwise in Access

    I am trying to send a formatted email from Access and I seem to have reached a limit of characters in my email. Does anyone know of such a limit? Here is the code I am using: Private Sub ConfigureHyperlink() Dim emailAddress As String Dim subject As String Dim body As String...
  15. henley12

    Access Password

    Is there any way possible to get around a password for an Access Database? We have a database, I believe in Access 97 format, that has gotten corrupted. When we try to go in and repair the database, it asks for a password. Nobody knows the password here.
  16. henley12

    Automating Import Files

    I have a database which gets updated every month via an Excel CSV file. Is there a way to automate the import process so that I can press a button and it will allow me to browse for the filename to select for import? I have an import specification created and the data is going to the same...
  17. henley12

    Hidden Form

    Well....one easy solution is to create a startup form. In the On Load event of the startup form, you could put some code like the following: DoCmd.OpenForm "frmHiddenForm", acNormal, , , , acHidden DoCmd.OpenForm "frmMain", acNormal DoCmd.Close acForm, Me.Name This will hide the form you want...

Part and Inventory Search

Back
Top