Recent content by solty89

  1. S

    How to hide button

    Yes brav, my mistake.It works.Thank you.you are legend
  2. S

    How to hide button

    Yes, this is exactly what i want ,but this code is giving me error. So im sure there must be easiest way for the most of the things in the application ,but this is how i did it so far with my knowledge.no it education, no idea of programing
  3. S

    how to build if code

    this is the db
  4. S

    How to hide button

    Upload a stripped DB.. How to Upload a Stripped DB. To create a Sample DB (to be uploaded for other users to examine); please follow the steps.. 1. Create a backup of the file, before you proceed.. 2. Delete all Forms/Queries/Reports that are not in Question (except the ones that are...
  5. S

    How to hide button

    wtf ive tryed everything :(((
  6. S

    How to hide button

    the debuging its saying that it cant find the field.so there is the mistake in the code.its a subform in the form called "fourniturenerrorsub" and the field is in the subform called "code field".
  7. S

    How to hide button

    not working :(
  8. S

    How to hide button

    Hi guys, i would like to hide/show button depend on is there anything in a fielld.My current code is not working at the moment so pls help me where is the mistake: Private Sub Form_Load() If Form![fourniturenErrorsub]![Code Field] <> Null Then errorbtn.Visible = True Else errorbtn.Visible =...
  9. S

    how to build if code

    Hey Mihail, at the moment im working on MO 2013 and its telling be that it cant save the DB as v 2003 becouse of the new feutures im my DB.Also with zip is over 2mb and i cant upload it here :(
  10. S

    how to build if code

    thank u man, so becouse i had no idea of vba im doing exactly the same as this guide http://www.youtube.com/watch?v=Ri2Y9-16AEo so... 1.the form is "fourniturenform" and the code is for this form so... u see i have "add record" button.That what i want is the combination of "lila + code" to do...
  11. S

    how to build if code

    I'll be thanksful if u help me.do i need to send u jyst the vba code or all the database
  12. S

    how to build if code

    Okey, thanks, 1st way with indexing not posible for my situation, so can you help me with any other way with the VBA code, so when i hit the ADD button to return a message that the values alreadi exist in a1 and a2
  13. S

    how to build if code

    already have primery key and this is B1, but my question have nothing with this
  14. S

    how to build if code

    Hey Guys, I have a form where im fillind data into boxes and then i have "add record" button which is sending the data to a table.The code is like this: Private Sub addrecord_Click() CurrentDb.Execute "INSERT INTO tablename(a1,a2,a3,a4,a5,a6)" & _ "VALUES('" & b1 & "','" & b2 & "','" & b3 &...
  15. S

    How to carry over to new line

    i've solve it.U were close.Its : "INSERT INTO tablename(a1, a2, a3, a4, " & _ ",a5, a6)"
Back
Top Bottom