Search results

  1. S

    Write Conflict error, not sure how to fix this

    I am gettin ga "write conflict" error and i am not sure why this error is popping. It has three options "save changes", "copy to clipboard", and "Drop CHanges." How can I get rid of this error. Any information would be helpful. Thanks
  2. S

    Combine 3 text fields but I get a syntax error

    Thank you. The three values are in different text boxes, but I want to have them in that format so I can search through a column which has that format. SO if it finds something with the same format a msgbox will pop up. for example lets say we type in Red in the first text box, 66 in the second...
  3. S

    Combine 3 text fields but I get a syntax error

    I have three text boxes that are not linked to any tables. I want to combine the three text fields so that I can use this to search through a column in the table. The format I want is text1-text2 text3. I am not quite sure how to combine the three texts. I ahve tried " & Me.dpre & "-" &...
  4. S

    Simple question about button

    I was wondering if there was a way to automatically click a button upon entering a form. I have a form, and when I enter into to it, I would like it to automaically click one of the buttons on that form. Any suggestions would be nice. Thanks for the help.
  5. S

    change a value on a form when entering the form

    I have two forms. When I enter a textbox on the first form and enter a date and exit the text box (on exit event), it opens up the second form, which already has previously entered data in it. Upon entering this second form, I would like to automatically change one of the fields from a "Yes" to...
  6. S

    Msgbox question

    I have a message box that displays numbers. I was wondering if it was possible to make the numbers in bold or in a larger font? Thanks for the help. MsgBox("Please add the Invention Disclosure Number " & right(Me.Discl_Year, 2) & "-" & Me![Discl Number] & " to the Docket Form.", vbOKCancel +...
  7. S

    Trouble with opening form code

    Not sure what is wrong with my code. I am trying to open a form based on the siffix and prefix. It just opens up the first form created. They are both text fields. Any suggestions would be appreciated. Thanks. Dim stLinkCriteria As String Dim strdsuf, strdpre As String strdsuf = Me.dsuf...
  8. S

    Simple Question with IF statement.

    I inserted the code, but it gives me an error message whether I put a comma in the text field or if i leave it out. Not sure what the problem is.
  9. S

    Simple Question with IF statement.

    I have a text field and the user enters is supposed to enter a name in the format Last Name, First Name. However if the user does not enter with the correct format, then I want an error message to pop up. Basically if the user does not enter a comma (,) in their input, then I want an error...
  10. S

    Different Msgbox

    Thats great, Thanks for all your help. I think I will add beeps.
  11. S

    Different Msgbox

    Alot of times, the user will just click ok with out reading the message. The message is pretty important and the user must read it. I know, it would annoy me too, but if blinkin I know I would take some time to read it.
  12. S

    Different Msgbox

    Is It possible to have a blinking message box or a blinking button. If so how would I implement it. I want some type of message box that will get the users attention. Any ideas would be appreciated. Thanks
  13. S

    Error in code for an edit button

    I am trying to execute this code. I have a edit form and when I click edit, it should open up the form "Input Form." It should open the specific form based on what the user enters for "name." I get an error (RunTime 2137) saying "You cant use Find or Replace Now." I am not quite sure why this...
  14. S

    Want to combine some code but not sure how

    That code does not give me the right results. It says "Enter Parameter Value." Not sure what to do with that. Is there anyway I can use my initial code because it gives the correct results but only when I do them seperately. I need a AND so they can find the complete ID (dsuf and dpre).
  15. S

    Want to combine some code but not sure how

    I have this code which pulls up specific forms based on 'dsuf'. If dsuf = RGA, it pulles up the forms with RGA. I have another field called dpre. 'dpre' and 'dsuf' make up the forms ID. dpre and dsuf are stored in a table. Is there a way to combine these two groups of code so that if a form has...
  16. S

    Can't Figure out the problem in my code when Opening a form

    ok so I got it. For future reference for other I added DoCmd.OpenForm "Dockets Data Input Form", acNormal, "", "", , acNormal DoCmd.GoToControl "Patent Type" DoCmd.FindRecord Forms![Invention Disclosure Input Form]![dsuf] to my onclick event. If I want to add another field so it searches...
  17. S

    Can't Figure out the problem in my code when Opening a form

    it is supplementary information to the record. .
  18. S

    Can't Figure out the problem in my code when Opening a form

    Table 1 and Table 2 are not linked. It is just that the ID, name, and date of form1, all automatically get transferred to form 2. So they get inputted in table 2. For example If I put "Sam" for the name in form1. Sam gets inputed in the name field of table 1. When I submit the form1, the name...
  19. S

    Can't Figure out the problem in my code when Opening a form

    Table 2 which is bound to form2 has a few entries from table 1 such as name date etc. I will try the code out at work tomorrow.
  20. S

    Can't Figure out the problem in my code when Opening a form

    sorry for the confusion. I guess I am using the word value loosely. Basically, I have two forms (Form 1 and Form 2). Each are linked to different tables (table 1 and table 2). When the user clicks submit on form 1, it goes to form 2. Now on form 1, there is a text box so the user can input...
Back
Top Bottom