Search results

  1. D

    How to convert date format using SQL

    I need to convert the date format October 10th, 2013 to 10/01/2013 in a field using sql in access 2010, I know it has to be an update query but dont know how to start writing the query.
  2. D

    C#.net help

    when i run this code I get an error on line : private void Form1_load(object sender,EventArgs e) error is on void Expected class, delegate, enum, interface or struct what does this mean?
  3. D

    decrypt access 2010 database

    I have the password that encrypted the db, the problem is that it will not let me decrypt the db!
  4. D

    decrypt access 2010 database

    I encrypted the database, I know this because previous versions of the database have the decrypt option in the info window. the newer version only has encrypt and when I type a new password I get an error not a valid password.
  5. D

    decrypt access 2010 database

    the decrypt database does not show in the info window, there is only an encrypt button.
  6. D

    decrypt access 2010 database

    I encrypted a access 2010 database and want to remove the encryption, I open the database in exclusive mode and enter the old password but there is no option to decrypt database. Please can anyone help me?
  7. D

    Data Validation using excel spreadsheet

    How can I validate data using an excel spreadsheet? i have a table with Product information, I want only the ProductId that are in the spreadsheet to be used in the database. How can I check the ProductID entered in the form actually exists in the excel spreadsheet?
  8. D

    Y/N/Cancel message box

    I am running 2010, I am unable to post db because the data is sensitive
  9. D

    Y/N/Cancel message box

    I did a decompile now i get an error on this line: error '438' MsgBox Err.Descripton, vbExclamation, "Error #: " & Err.Number
  10. D

    Y/N/Cancel message box

    none at all!!!
  11. D

    Y/N/Cancel message box

    Private Sub BtnStartAgain_Click() ' Make sure that there is a Product_ID If IsNull(Me.Product_ID) Then MsgBox "Please create a new record in this form first!", vbExclamation Exit Sub End If 'Save current record if necessary If Me.Dirty Then...
  12. D

    Y/N/Cancel message box

    I get error Run Time Error '438' - Object doesnt support this property or method Debug takes me to thie line: MsgBox Err.Descripton, vbExclamation, "Error #: " & Err.Number
  13. D

    Y/N/Cancel message box

    Re: Y N Cancel message box help i get an error on this line : Private Sub BtnGoToSymbol2_Click() ' Make sure that there is a Product_ID If IsNull(Me.Product_ID) Then MsgBox "Please create a new record in this form first!", vbExclamation Exit Sub End If...
  14. D

    Y/N/Cancel message box

    this is what the error is referencing Private Sub BtnGoToSymbol2_Click() ' Make sure that there is a Product_ID If IsNull(Me.Product_ID) Then MsgBox "Please create a new record in this form first!", vbExclamation Exit Sub End If 'Save current record if...
  15. D

    Y/N/Cancel message box

    Y N Cancel message box help Does anyone know how I can get a generic YNCAncel message box? I have seen a generic Y N message box on the microsoft website that works in any form, but I need a Y N Cancel thanks
  16. D

    Y/N/Cancel message box

    I am trying to code a y/n/cancel message box, the yn works but the cancel gives me an error Private Sub Form_BeforeUpdate(Cancel As Integer) Dim strMsg As String Dim iResponse As Integer ' Specify the message to display. strMsg = "Do you wish to save the changes?" & Chr(10)...
  17. D

    Field value formating not showing on form

    I created a label and the caption is the ID but the caption doesnot show the mask it just shows the numbers without the formatting
  18. D

    Field value formating not showing on form

    when you say at the end of my code you mean like this? Forms!frmProductIcon2!LblpID.Caption 00\-00\-0000;_? That doesn't work
  19. D

    Update form on click

  20. D

    Update form on click

    what is the syntax to save the data?
Top Bottom