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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by janerussel

  1. janerussel

    export comma delimited query to outlook email

    Can someone tell me how to export a query in a comma delimited format to an outlook email. I would want to do this programmatically using a button. Is Access capable of this.
  2. janerussel

    Additional parameter text box popping up

    I have a report based on a query that includes a filter value from a form text box. [forms]![frmMain]![frmSubMain]![frmReports]![txtDept] If I run the report from my PC, I type the value in the text box "txtDept" and click the button to run the report, it displays perfectly. If I run the...
  3. janerussel

    Pop Up form filters underlying form

    Hi Thanks again but now I get this error message. Run time error 3622; You must use the dbSeeChanges option with OpenRecordset when accessing a SQL server table that has an IDENTITY column.
  4. janerussel

    Pop Up form filters underlying form

    Sorry, but that doesn't work. The Main form goes to the first record. If I could just get the main form to go to the last record it would work, since the new record is always the last record.
  5. janerussel

    Pop Up form filters underlying form

    Here it is. The VolID is an autonumber. Thank you for your help. Private Sub Form_AfterUpdate() Dim frm As Form, Cri As String Set frm = Forms![frmMain] frm.Requery Cri = "[VolID] = " & Me![VolID] & "" frm.Recordset.FindFirst Cri Set frm = "" End Sub
  6. janerussel

    Pop Up form filters underlying form

    I get this error compile error: Type mismatch the "" on this line is highlighted. Set frm = ""
  7. janerussel

    Pop Up form filters underlying form

    I have a modal pop up form for creating a new employee. The form requires FName, LName fields and has an auto number field for the unique record. When the record is saved and the form is closed, I want to go to the new record in the main form which is the last record in the dataset. How can I...
  8. janerussel

    Format text in Pie Chart Key

    Hi; I'm using CR 11 in a VB.NET program, so I don't have an option to select the Preview tab, click the text in your chart's legend.
  9. janerussel

    Format text in Pie Chart Key

    I have a report based on a stored procedure from SQL. In the report I am including a pie chart. The chart key displays what the various colors in the chart represent. This is what the key displays. I have described the color where in the key it shows a color square. blue Sum of...
  10. janerussel

    Command using SQL statement

    Thank you for your help. Do you think it is because this is a version that is used with VB.net. Maybe it doesn't have all the functionality that the client version has.
  11. janerussel

    Command using SQL statement

    Thank you I was able to make the label changes, but the items I listed above are in the key. Can you change the labels in the key. I don't see this options.
  12. janerussel

    Command using SQL statement

    I am using VS 2005 with the CR component. I did not see an option to change the labels. If I select the chart it is one selection, I can't select individual items.
  13. janerussel

    Command using SQL statement

    I am using a SQL statement for my record selection and am including a pie chart graph in my report header. The key in the graph displays the following: Sum of command.Carpool 25% Sum of command.Bicycle 30% Sum of command.Walk 25% Sum of command.Vanpool 10% Sum of command.Transit 10%...
  14. janerussel

    Count mode values for pay period

    Thank you very much I'm goint to try this now and will get back to you.
  15. janerussel

    Count mode values for pay period

    Also, can you create a group that is not associated with a database field. I do not have a field, Mode.

Part and Inventory Search

Back
Top