Recent content by UniqueTII

  1. UniqueTII

    Report Default Printer

    Nice...I just used this to print a page with multiple subforms to a PDF.
  2. UniqueTII

    Best Edward Norton Movie

    I would have trouble picking a favorite of his movies. I can't believe nobody mentioned Death To Smoochy though! :) I firmly believe that he's the most versatile actor of our time.
  3. UniqueTII

    Select query fields from combo box

    The noob is back. I've been away from this board for a few years (and I've forgotten most of what little I knew) but now I'm back with more dumb questions. I want to make a search function that searches certain fields based on the value of a combo box which is a list of the fields. I'm using...
  4. UniqueTII

    I can't keep data from duplicating itself.

    Each table has the student's SSN, work program (work study, community service, etc...), departmental earnings for that period, and work study earnings for that period. Since not all students that currently have earnings are listed in every report, the tables in the query are left joined to...
  5. UniqueTII

    I can't keep data from duplicating itself.

    I have a query that pulls data from 8 different tables, each containing data about a student's earnings during a 2 week pay period. The tables are connected by the students' SSN's, but since each student may have more than one job, their SSN can't be the primary key. My problem is that when I...
  6. UniqueTII

    Setting primary key with code?

    Help was no help, but a quick search of some SQL pages got me exactly what I needed. Thanks a bunch!
  7. UniqueTII

    Setting primary key with code?

    Is there any way to set the primary key of a table using code? The reason I want to do this is to set the PK after doing an automated TransferSpreadsheet so that I never have to actually deal with the table. Yeah, I'm lazy. :D
  8. UniqueTII

    Combo box wizard not working

    What I did is pretty close to that. Since the form will have different values for "Code" and "YearID", I made an onLoad event that looks like this: cbxSearchByID.RowSource = "SELECT tblApplication.AppStudentID FROM tblApplication WHERE tblApplication.code = """ & Code & """ AND...
  9. UniqueTII

    Combo box wizard not working

    I have a form that's based on a parameter query, and I'd like to have a combo box on it that's based on one of the fields and filters the form after it's updated, but when I try to create one using the wizard, I choose the field and it tells me that a value for a required parameter is missing...
  10. UniqueTII

    Mail merge problem

    Arghhhhhh! The code was fine. I found that out after I rewrote the entire thing using a new method and it still didn't work. The problem was that a date criteria in a query was static, rather than dynamic, so it was still looking for last year's results.
  11. UniqueTII

    Mail merge problem

    Here's the code: Private Sub cmdMerge_Click() 'Written by Helen Feddema 12-30-98 'Last modified 10-4-2001 On Error GoTo ErrorHandler Dim dbs As DAO.Database Dim rst As DAO.Recordset Dim strDBName As String Dim strTable As String Dim strSQL As String Dim ctl As Access.Control...
  12. UniqueTII

    Mail merge problem

    I have a database with an automated mail merge (through a table with SQL statements) and when I manually run the SQL, I can merge it with no errors, but when I try to run the automation, it tells me that no records are found. Any ideas of what I should check, or do you need more details?
  13. UniqueTII

    Problem with HTML email

    I'll give it a shot...thanks!
  14. UniqueTII

    Problem with HTML email

    The HTML is just a page that is stored in its own table. It's supposed to look like a webpage when it's mailed, but ended up looking like some messy text. The rest of the code just loops through the email addresses in their table. I have made a couple of mailing functions, and can help you if...
  15. UniqueTII

    Problem with HTML email

    and here's the HTML: <HTML> <HEAD> <TITLE>MASEA Survey</TITLE> </HEAD> <BODY bgcolor=#c6b5de> <TABLE BORDER=0 BGCOLOR="gray" WIDTH=100%> <TR> <TD ALIGN="center"><b>MASEA CONFERENCE QUESTIONAIRE</b></TD> </TR> </TABLE><P> <!-- Following must point to the cgi server --> <FORM...
Top Bottom