Search results

  1. mdnuts

    Opening bound form via macro or docmd

    hmm, i haven't used that yet. let me research into it.
  2. mdnuts

    Opening bound form via macro or docmd

    Same error - missing expression, which works fine doing a macro open.
  3. mdnuts

    Opening bound form via macro or docmd

    I have a bound form that normally is opened via macro. Very straight forward just has the following in the where. [userID]=[Forms]![Home]![txtSelectUser]I'm trying to open the same form via doCmd. DoCmd.OpenForm "frmUserInformation", , , "UserID=" & Me.txtProblemIDI've msgbox'd the...
  4. mdnuts

    Report.SourceObject Issue

    I probably can't offer much more at this point. Only alternate way I can think of is to use the same table. meaning it launches - inserts whatever information desired into one temporary table that is later used as the source of the report.
  5. mdnuts

    Report.SourceObject Issue

    I had a very similar situation. I tried to print to word after having a report open. I finally switched directions and had a button just make the report via VBA. This thread details out my woe's, rookiness and some fantastic help I got printing out to word...
  6. mdnuts

    How to

    That worked out really well. In the event someone else stumbles here - i used the following on my onLoad event for the form. Dim strInformationString As String If Not IsNull([fldSystems]) Then strInformationString = Trim([fldSystems]) Me.txtSystems.RowSource = strInformationString...
  7. mdnuts

    Report.SourceObject Issue

    what is your desired output format - pdf, word, excel?
  8. mdnuts

    How to

    The textbox on the User Information form that I'm referring to is txtSystems - in it would display the systems the user frequently uses. For example. Mary, Jane, Jean - use sysInfant Grace, Chris, Pat use sysToddler .... Charles being a floating employee could use sysInfant, sysToddler or...
  9. mdnuts

    How to

    In my Access 2013 Database I have a form for user information "frmUserInformation" (stored in tblusers) normal details are in there, last name, first name, etc. I have a related table for user submissions and other submissions both tied back to the user id in tblUsers. All normal everyday...
  10. mdnuts

    462 Error

    actually I was completely wrong in my assumption. What it was was the needed reference to the word object when setting InchesToPoints. This 'set column widths oTable.Columns(1).Width = InchesToPoints(1.75) oTable.Columns(2).Width = InchesToPoints(0.8) oTable.Columns(3).Width =...
  11. mdnuts

    462 Error

    I've narrowed the problem down. It's farting in a similar manner as my original post when also trying to use Rx's code. The problem specifically is when you create rows in the table then enter a recordset loop to create more rows. Or vice versa if you create rows in the loop and later try...
  12. mdnuts

    462 Error

    yours is definitely working. I'll have to step through yours and mine and see what's up. or more likely rebuild mine.
  13. mdnuts

    462 Error

    When I run this code to create a word doc - the first time no problem. Second time it pops the Error 462 error. Research on it shows it's usually when ActiveDocument is referenced without specifying the word.Application first. All that is fine I only have that in one location and it's...
  14. mdnuts

    create report to cut-n-paste into word table

    Seems to keep producing the extra rows for each record in the repeating field. I may have figured a way to get it to work - taking the results, combining the repeating row into one cell then save it to a table and pull the report off that table. Working through quirks for now.
  15. mdnuts

    create report to cut-n-paste into word table

    I'm assuming trying to populate it with VBA is a futile effort?
  16. mdnuts

    create report to cut-n-paste into word table

    Thank you for the reply. Attached the image that I hope clarifies it. The bullet point isn't a necessary thing I just have it in there for now.
  17. mdnuts

    create report to cut-n-paste into word table

    I have a report that groups by a project name and then a repeating field to list all associated detail having to do with the project. Then the projects loop to the next. (sorry for the periods in place of spaces - I couldn't see how to line up correctly otherwise.) This is what I'm shooting...
  18. mdnuts

    Ballot results capturing

    ok, this is about as far as I can go with this. See attached database example (it's zipped). Oh yeah - at this point, you have to enable macro's to let things work right. Table_1 - Vote overall Table_2 - Voting possibilities Table_3 - Ballots Cast Table_4 - Member Listing frmVoteEntry -...
  19. mdnuts

    Ballot results capturing

    i'll update the database sample, one min
  20. mdnuts

    Ballot results capturing

    Right, You could have a couple different scenarios. Overall you want a vote/ballot/voting set of tables where the vote table is the main one, ballots uses the vote id to store all possible voting choices and voting tables which uses the ballot id to store the record of what was cast along with...
Back
Top Bottom