Search results

  1. wh00t

    ok have done it before but....

    check what fields you are setting up as the main link to link the combo box to the form e.g. put the PK field on the form, and set this as the 'bound' colum in the combo box
  2. wh00t

    ok have done it before but....

    use the combo box wizard to 'Find a record on the form based on combo box selection'
  3. wh00t

    ok have done it before but....

    would u like the info to come up in the same form or a seperate form?
  4. wh00t

    Lotus Notes Email

    here's the code that I use to do it Public Function SendNotesMail(strSendTo As String, strBody As String, strSubject As String) 'This public sub will send a mail and attachment if neccessary to the recipient including the body text. 'Requires that notes client is installed on the system. 'Set...
  5. wh00t

    Access 97 and 2K on same drive

    search the Microsoft K'base, it's covered in there
  6. wh00t

    For the programmers

    please only post on one forum
  7. wh00t

    control name???

    ta, that got it
  8. wh00t

    control name???

    Hi I have some code which loops through records in a recordset, then changes the properites on a control in a form. e.g. for each record in table Bay (numbered 1-209), check that the equivalent control on the form has data in, if so then change the backcolor of an adjoined control using the...
  9. wh00t

    count records w/ criteria

    = DCount("*", "Job Summary Query", "SIndex =" & SIndex & "And Index =" & [Index])
  10. wh00t

    if then else

    If IsNull Me!SearchOperations Then MsgBox "There is no value" Else MsgBox "Please enter or select " + "'" + Me!SearchOperations.Value End If DoCmd.Close acForm, "SRO_Search_Add"
  11. wh00t

    Print to specific printer?

    ta I've gone for the display print dialog box
  12. wh00t

    Print to specific printer?

    I would like to be able to tell my db to print certain private and confidential documents to a specific printer, is this possible?
  13. wh00t

    Notes email w/attachment

    note - I also removed this line MailDoc.CREATERICHTEXTITEM ("C:\Consoles\Hfxtest.txt") it also works with any file type, I am using it with .xls documents
  14. wh00t

    Notes email w/attachment

    I now have it working!!!!! Set EmbedObj = AttachME.EMBEDOBJECT(1454, "", Attachment, "C:\Consoles\Hfxtest.txt") replace this line with this, and the mail gets sent with the attachment Set EmbedObj = AttachME.EMBEDOBJECT(1454, "", "C:\Consoles\Hfxtest.txt")
  15. wh00t

    Notes email w/attachment

    I've been playing around with this as I need to achieve similar If Attachment <> "" Then Set AttachME = MailDoc.CREATERICHTEXTITEM.Add("C:\Consoles\Hfxtest.txt") Set EmbedObj = AttachME.EMBEDOBJECT(1454, "", Attachment, "C:\Consoles\Hfxtest.txt") MailDoc.CREATERICHTEXTITEM...
  16. wh00t

    Beginner trying to filter a query!!!!!

    remove the quotes from the numbers
  17. wh00t

    query problem

    I don't think you've posted this in the Reports forum yet
  18. wh00t

    Access 97 not working on XP

    try these http://support.microsoft.com/default.aspx?scid=kb;en-us;141373 and http://support.microsoft.com/default.aspx?scid=kb;en-us;191224
  19. wh00t

    Getting part of a number

    if the carton # is of consistant length use the Mid function e.g barcode - (00)00052177740894485 create a new textbox and enter the below in the control source Mid([BarCode],13,8) will return 74089448
  20. wh00t

    Opening lotus notes and inserting the emailaddress

    make your code a public procedure like Public Sub SendMail(strAddressee As String, strSubject As String, strBody As String) Dim objNotesWS As Object Dim notesdb As Object Set objNotesWS = CreateObject("Notes.NotesUIWorkspace") Set notesdb = objNotesWS.COMPOSEDOCUMENT(, , "memo")...
Back
Top Bottom