Search results

  1. A

    Updating fields through query

    I have two table Client_details and Release_details in a database,were client field is the primary keyin both the tabels.I want to update records of Airtel-India in Release_details,for that i have wrriten a query UPDATE Client_detail, Release_detail SET Client_detail.Client = "Airtel-India"...
  2. A

    Update query

    I have two table Client_details and Release_details in a database,were client field is the primary keyin both the tabels.I want to update records of Airtel-India in Release_details,for that i have wrriten a query UPDATE Client_detail, Release_detail SET Client_detail.Client = "Airtel-India"...
  3. A

    renaming a filed in a table

    I have a table Client-Details,in which i have a record namely "bharti-chennai".this table is associated with aother table "release-details". bharti-chennai has records in relase details.i want to change the name of bharti-chennai to bharti -mumbai ..how to do it.
  4. A

    multiple selection in a combo box

    In form "sendmail" their is a combobox "to" which gets ur email address. i want we could be able to select multiple entries thruogh this combo box and it should be seprated by a semi colon
  5. A

    combobox fields

    In the from "send mail" i have a combox "to" which is bounded to a field "names" in the table "email". i want new names to be added to the list automatically so In its "notinlist" event i have put this code... and getting an error plz help Private Sub txtTo_NotInList(NewData As String, Response...
  6. A

    saving fileds

    I have a form "release_details" having fields date, version, cksum ,comments,labels, and is link to a table, it has a button "mail" ,on clicking this button a new form is open which has a button "send mail" on clicking this a mail is sent and pops a message "mail sent". I need when "send mail"...
  7. A

    combo box

    In the from "send mail" i have a combox "to" which is bounded to a field "names" in the table "email". i want new names to be added to the list automatically so In its "notinlist" event i have put this code... Private Sub txtTo_NotInList(NewData As String, Response As Integer) Dim strSQL As...
  8. A

    bounding a filed

    i have a form "send mails" which is unbound it have a combobox field "to" ,i want it to bound to a field "names" in the table "email"
  9. A

    save record of other form

    I have a form "release_details" having fields date, version, cksum ,comments,labels, and is link to a table, it has a button "mail" ,on clicking this button a new form is open which has a button "send mail" on clicking this a mail is sent and pops a message "mail sent". when "send mail" is click...
  10. A

    saving data

    I have a form "release_details" having fields date, version, cksum ,comments,labels, and is link to a table, it has a button "mai"l ,on clicking this button a new form is open which has a button "send mail" on clicking this a mail is sent and pops a message "mail sent".I need when "send mail" is...
  11. A

    Address book

    I have a form "frmsend mail" whic have fields "To" and "Cc" i want to have a address book in the access itself having same functionality as outlook i.e it should add new email id to the address book, prompt the email id,etc. How to do tht. thnxx
  12. A

    mail attachment

    Hi all I have a form "frmSendEmail" having buttons "attachment" and "send mail" on click of attachemnt a file can be attached, on click of send mail mail can be sent. but if nothing is attached mail cant be send it shows an error "invalid use of null" i want mail to be send with out...
  13. A

    attachment

    in my application send mail, on click of a button "Attachments" we can attach any file but if we dont attach any file error is thrown. error is invalid use of null code for it is Private Sub cmdAttachment_Click() Dim intReturn As Integer, strarray() As String If IsNull(txtAttachment) Then...
  14. A

    from button

    Form has a button "Sendmail" on click of that button i could be able to open a from "frmsend mail". how to do it
  15. A

    exporting to out look

    hi, i have a table name datatable with fields TO,CC,BCC,BODY, and Buttons "get address","send mail","clear","save","Attachments",. on pressing get address i want a new form from where i can add recepients from outlook address book to TO and CC fileds. on pressing Attachments i could be able to...
Top Bottom