Search results

  1. E

    ID Column removal

    Hi I have several Access databases with identical tables.Let's say all these db's have table1,table2,table3.I need a script to remove ID column from table1 in all databases.Can you tell me where to find something like that?
  2. E

    Access-Excel

    Thx it works for me when I want to export a table to excel.Second task is to convert data from my reports to Excel.Is this possible?
  3. E

    Access-Excel

    Not quite sure how to use it because I am a beginner. Simply I need a button to make possible the export of data from my table1 to excel sheet
  4. E

    Access-Excel

    Which is the best practice for exporting report data from Access to Excel if this procedure is possible/
  5. E

    Empty textbox

    User will move from one page to another inside the tabbed control
  6. E

    Empty textbox

    No single controls residing on pages
  7. E

    textbox validation

    How to make textbox accept only numbers (10 of them) and not characters. I have some register code to enter like 4565434530 Thx
  8. E

    Form view

    How to make textbox show some text in form view? I mean if we have form with birthday textbox in formview before data is entered there is "birthday" word in it
  9. E

    Empty textbox

    I have tabbed form. I need some warning text to be shown if some fields are left empty when passing from page to page.How can this be coded?
  10. E

    Report by ranges of data

    Hi I have a table like this: MotherData __________ Name Age Nationality Education NumberChildren ProblemType If Age is from 19 to 70 and Problem type from 740.00 to 759.99 I need a query for the report like this Problem type Age 19-23 24-29 30-36...
  11. E

    query

    Hi I have a table like this: MotherData __________ Name Age Nationality Education NumberChildren ProblemType If Age is from 19 to 70 and Problem type from 740.00 to 759.99 I need a query for the report like this Problem type Age 19-23 24-29 30-36...
  12. E

    data mask

    Hi. How can I restrict data entry in a textbox. I want for the user to enter only values from 740.00 to 759.99.The mask also should be something like xx.xx in the textbox.Is it possible?
  13. E

    textbox validation

    Rabbie:Smthg Like sorry only numbers from 1-20 allowed.
  14. E

    textbox validation

    How to validate a textbox in order to accept only integers from 1-20 and in all the other cases show a message box for non accepted values?
  15. E

    Best practice

    Hi I have a tabbed form with controls directly placed on pages without using sub forms or separate forms for each page.Is it necessary to place a save button in each page for saving data entered?Which is the best practice to save records in this case if data entered in every page belongs to the...
  16. E

    Age/Year

    So how do i adapt in my case the code? Is important that only the year or age will be entered. For example it will be entered only 29 or 1981 and not all the birthday format like 01/01/1981
  17. E

    Name/Surname

    Hi I have to fields MotherName MotherSurname in the table and one only textbox Mother Name/Surname in the form? How to make possible the enter of data correctly in this textbox?
  18. E

    Age/Year

    Hi.I have in the table 2 fields FatherAge MotherAge.I need in the form two textboxes Year and Age for each of these fields in order to be entered data in case it is a year or a number.For example for Father I can have even 1970 or 40 and both have to be saved in FatherAge as number (40) How to...
  19. E

    textbox activated

    Still not working for me. I write the code at After Update event procedure.Maybe this is the wrong place?
  20. E

    textbox activated

    Thank you for response .I write If Me.TextBoxMain = "1" Then Me.txtbox1.Enabled = True Me.txtbox2.Visible = False Me.txtbox3.Visible = False End If If Me.TextBoxMain = "2" Then Me.txtbox1.Enabled = True Me.txtbox2.Visible = True...
Back
Top Bottom