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 wOOdy-Soft 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: *

  • Users: smoker1
  • Content: Threads
  • Order by date
  1. smoker1

    If... Then Statement Issues

    Can anyone tell me why this code is not working in the OnFormat code for the detail section of a report? Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) If Me!RippedName Is Null Then AppName.BackColor = 12632256 Else End If End Sub The debugger is stating that an object...
  2. smoker1

    "405 Method Not Allowed" Error -- website based on db

    " I am currently developing a webpage for my brother's car dealership with FrontPage 2002. I have created a credit application page to interface with the corresponding database. I have uploaded the database to the server, but when I try to click the ok button (where it should send the data...
  3. smoker1

    Opening form with empty fields

    HELP! I haven't worked with MS Access in a very long time, and am getting stuck on the most simple problem. I have a form which is tied to a table. When the form opens, it populates the fields with the first records data. Since I have a combo box [cboPrimaryCustomerName] which searches for...
  4. smoker1

    crosshair cursor

    Hello all!! I am developing a website (FrontPage 2000) in which the client wants a crosshair cursor once the website is opened. Unfortunately, I don't know how to do this. Can anyone help me with the HTML coding? P.S. I only want the mouse to change while on this website, so I will need...
  5. smoker1

    Help with setting Input Mask/ Format on Field

    Hello all! I haven't been working with Access 2000 much lately, and have forgotten some of my old "tricks". I am designing a contact management DB which needs to have the an automatic contact id. I want the id to have the following format: current year - integer...
  6. smoker1

    automatically update a field

    How can I make an update query that updates on the first of each month? (I know how to do it every so many days, but that doesn't work for my need.) Thanks in advance for your help!! --Angela
  7. smoker1

    Refresh Form Data

    I have a form with several option groups. If a user selects an option, without selecting the limiting criteria (in a related combo box), it displays a message box instructing the user to limit the criteria. I'm getting stuck on how to clear the radio button from the option button (since...
  8. smoker1

    E-mailing a report to indicated user

    Is there a way to e-mail a report (using Outlook 2000) to the person who filled out a form, as well as to a distribution list? I currently am using a Macro to SendObject to the distribution list, but am confused how to e-mail a copy to the user as well. For example, if Sally Jones filled out...
  9. smoker1

    Saving Multiple Values in one field...

    Hello! I am using the MultiSelect Property in Access 95 to allow users to select multiple items in a bound list box. I know that coding is necessary so that it combines the items into one field, but am unsure how to do it. I have reviewed the MS site, which gave an example that didn't work...
  10. smoker1

    Selecting multiple items in list box

    Hello everyone! Can anyone tell me how a user can select multiple items in a form's list box (and have it save to the related table)? Thanks in advance for your assistance! --Angela
  11. smoker1

    Can data be grouped in a form?

    Does anyone know how to group data in a form? I have a query that lists managers and agents like this: Mgr1 Agent1 Mgr1 Agent2 Mgr1 Agent3 Mgr2 Agent4 Mgr2 Agent5 and so on.... The form is filtered by the Mgr, and what I want is for ALL their agents to list instead...
  12. smoker1

    Setting Default Values in a Linked Form

    I am trying to set the current date as a default value in one of my text boxes on a form. Normally, I could simply enter =Date() in the control source field. However, since I am writing the form data back to the table, I am unsure how to keep the original table name in the control source and...
  13. smoker1

    hihglighting text with multiple criteria

    Hello! I am trying to create code that looks at the time and highlights it if it is either under or over the goal times indicated. Here is my code in the "On Print": Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer) Dim goal As Date goal =...
  14. smoker1

    Exporting from Access to Excel

    I am creating Macros to export some Access table data into an existing worksheet (for graphing purposes). If my field is 3.9%, it transfers into notepad as .03 and therefore converts in Excel as 3%. I have tried setting the table decimal point properties to as many as 5, and it still doesn't...
  15. smoker1

    General Date Criteria

    In my linked table, there is a general date field (7/23/01 10:59 AM). I am writing a query for a real-time report & therefore, need to query the fields whose date criteria equals the current date. I originally tried =Now() which didn't work. Entering #7/23/01# works, but it doesn't serve us...
  16. smoker1

    Averaging a Subreport?

    I have a subreport in one group header and it needs to be averaged in another header? Is this possible?

Part and Inventory Search

Back
Top