Recent content by Cavern

  1. C

    Complex forms as subforms

    Thank you. I'll look into doing it the way you mentioned, by creating the function. Thank you also for pointing out the 'Like' in my code. :D
  2. C

    Complex forms as subforms

    OKay, I think I found the reason that my form is messing up, its because on the form, it wasn't the VB code as I suspected, its a couple of list-boxes on the form that have a SQL statement of this type: SELECT Categories.Name FROM Categories INNER JOIN ArticleCategories ON...
  3. C

    Dates without years

    I'm creating a database to store a bunch of information on various animal species, and one of the peices of information I would like to store is the migration and breeding dates of the animal. I was wondering if there was a way I could use the Date type for this information, and be able to...
  4. C

    Complex forms as subforms

    So I have to go through all the code in the original form and change any references from Froms!mainformname!controlName to Forms!mainformname!subformname.Form!controlName ? This is exactly what I was hoping I wouldn't have to do, modify the original form. I was hoping there was some way to...
  5. C

    Complex forms as subforms

    I have a complex form (in that it contains a lot of VB code and events) to display the information of various articles in my database. I would like to add some browsing options to the form (like a list of all articles on the left, and some different back/forward options), but I also need to...
  6. C

    Updating Text Box when List Box selection changes

    Bump for a friday afternoon comment....
  7. C

    Updating Text Box when List Box selection changes

    I have a text box ('DescriptionText') which is supposed to display the 'description' text from an item that is selected in a list ('List6') which displays the name of a habitat, and has the ID and Description fields hidden. I am trying to use the following code to update the Description text...
  8. C

    Adding a value to Combo-Box with Query source

    I am trying to make a combo-box that determines the records shown in a list-box on my form (for navigation of a book database). The combo-box contains a list of all the categories that contain books using a SQL query. But I would like to add an 'any' category to the end. I just don't know how to...
  9. C

    Emailing Report For One Record

    Works great... Thanks a bunch! :D
  10. C

    Emailing Report For One Record

    Hello, I have a report designed right now that prints information about a company from my database and I need to design a few forms that have lists of companies, and where the user can select a company from the list and click a button to send the report for that company to someone via email...
  11. C

    Printing From Form, Items In A list

    Thanks for the reply... But I think I mis-phrased the question. I understand how to load the form based on a single field, but the problem I'm having is that sometimes the fields that are used to populate the listbox change.. For instance, sometimes the list-box might contain all the companies...
  12. C

    Opening a form to a specific record without filtering the other records out

    I had a similar problem, but I finally figured a way to get a form that I use all the time to open to a specific entry ONLY when I want it to (otherwise it just opens to the first entry).. I used the OpenArgs parameter to pass the [Record ID] of the company I want to open (only if there is an...
  13. C

    Printing From Form, Items In A list

    Just another quick question, Ive got a form where I select an option from a combo-box, and then a list box is populated with a list of companies based on what I pick for the combo-box (ie. 'All Companies Exporting', 'All Companies Registered', Etc..). The list-box has 3 columns, the [Record ID]...
  14. C

    Splitting Names and updating

    I think I got it.. Apparently Left() takes an index from the left, and Right() takes an index from the right, but Instr() returns an index from the left.. Which is trouble when you're trying to use an index from the right.. So, had to switch the expression for finding the right-hand section to...
  15. C

    Splitting Names and updating

    Hmmm.. It seems to be concatenating the second name if its shorter as well.. Ie. 'A BBBBB' becomes 'A' and 'BB'...
Back
Top Bottom