Search results

  1. E

    Birthday-Age

    I have 2 textboxes birthday and age.At the first I enter birthday's for example 28/01/1981 at the second I want to enter a value for example 30 and this age to be saved at birthday field in the table like 01/01/1981.This is in case when for smb is not given the birthday just the age. How to make...
  2. E

    TextBox and Combo

    Hi I have a textbox where I want to enter numbers 1.2..3.4. and a combobox where depended in what number I enter one city is chosen and stored in DB. For example I want to enter 1 and in combobox to be chosen Boston which is the value to be stored in DB? How to make this possible? Regards
  3. E

    Code not working

    Still nothing. Have u guys any email where I can send my db cause dont want to publish all it here.
  4. E

    Code not working

    Not working.Any email where to send my db cause dont want to publish all work here
  5. E

    Code not working

    Nthg displayed
  6. E

    Code not working

    Yes they are in the same form
  7. E

    Code not working

    yes they are in the same form.Don't understand what's happening
  8. E

    Code not working

    The same:((((( Both text boxes are unbound.Can this affect to the process? Regards
  9. E

    Code not working

    I put textbox format general number and use event AfterUpdate. The cursor just go after entering 1 and pressing Enter to the other textbox431 but doesnt show anything. What I am doing wrong? Regards
  10. E

    Code not working

    Hi I have 2 textboxes.By entering different number values to the first I want to return text to the other.For now my code is like that but not working : Private Sub Text430_AfterUpdate() If (Me!Text430.Value = 1) Then Me!Text431.Value = "BR" ElseIf (Text430.Value = 2) Then...
  11. E

    Enter data

    Hi All I have a table Cities with name of cities and IDs.For example: ID City 1 LA 2 Moscow 3 Paris 4 London I wrote code like this If (Me!Text430.Value = "LA") Then Me!Text431.Value = 1 to enter city code and to get the ID. I want in textbox432 to enter ID and to get...
  12. E

    DB problem

    Hi all. I am trying to figure out the construction of country demographic presentation. We got municipalities with circles,circles have one or more cities,cities have bashkia and comunes,comunes have villages as smallest part. I have to chose in my form circles and then from active cities to...
  13. E

    Frame with checkboxes

    Tried this code but nothing happens :((( I got 3 textboxes IlaciTremujoriDyte,IlaciTremujoriTret,IlaciTremujoriPare. Help pls Private Sub CheckTremujoriDyte_Click() If Me.CheckTremujoriDyte.Value = -1 Then Me.IlaciTremujoriDyte.Enabled = True Else Me.IlaciTremujoriDyte.Enabled = False...
  14. E

    Frame with checkboxes

    Hi. Is it possible to create a frame with 3 check-boxes which can be checked in the same time all three or just one or two of them.Also I need three text boxes to be activated for entering text when this check-boxes get checked.Please help
  15. E

    Text Box

    Thank you. Anyway I need the max number of digits to be 10 but it can be even 9 ,8 etc. How to make this data validation? Regards
  16. E

    CheckBox

    How to make possible in a check box with 3 options to be selected more than one? For example I need 2 or all 3 options selected. Regards
  17. E

    Text Box

    Hi How to limit text box to enter only 10 digit number? Regards
  18. E

    Access-Excel

    TRANSFORM Count(DL_Kryesore.DL) AS CountOfDL SELECT Rrethet.Rrethi, Count(Rrethet.Rrethi) AS Total FROM DL_Kryesore INNER JOIN Rrethet ON DL_Kryesore.GruaRrethiID = Rrethet.ID GROUP BY Rrethet.Rrethi PIVOT DL_Kryesore.DL; This is only one because this happens to all my reports. Thank you in advance
  19. E

    Birthday format

    Post some code pls Regards
  20. E

    Birthday format

    Can you help me please with some code because I am an Access newbie: (
Back
Top Bottom