Recent content by fulltime

  1. F

    How to copy a form?

    whenever the user imports a file, i wan the form to be autocreated...
  2. F

    How to copy a form?

    Thks Col, but I need to perform the above in VBA coding... Everything should be done by the click of a command button...
  3. F

    How to copy a form?

    This is actually a rephrase of the scenario I posted in the other thread yesterday. I have a form, titled "Danish", now i wan to make a copy of it, i.e, its textboxes, buttons and save the new form as "English". How can i perform ALL of the above in coding? Thks.. FT :)
  4. F

    Creating a Form Programmatically

    Hi, Bascially, I am done with my "Language" database, however, should the user wan to define a new LAnguage in my DB, i need to have a new form for it, tats y i need to make a copy of the form. Everything has to be done in coding, tats the requirement tat i have from my supervisor. So ur...
  5. F

    Creating a Form Programmatically

    hi robert, thks for your reply. However, i do encounter a few problems Set frm = CreateForm(, "existing_form") If the name of my form is English, i just use Set frm = CreateForm(, "English") Am i correct? In any case, onli a BLANK form pops up in design view and i am required to REDESIGN...
  6. F

    Creating a Form Programmatically

    How can i create a form programmatically? I read somewhere tat i can use the createForm function to create a form and i can also specify the template of an existing form in my DB. CreateForm( , existing_form) is the above code correct assuming existing_form exists in my DB? In addition, how...
  7. F

    Delete Query

    okies, thks. i will try it out
  8. F

    Delete Query

    Hi all. Below are the info tat i am providing so that u can advice me on how to solve this problem of mine. Table name = ImageTable Fields = 1. Code 2. Pic I want to pop up a MsgBox If the table is empty, i.e. there are no records in the table. How can i achieve that? Thks..
  9. F

    Hiding the "import" window

    thks larry, but will the changes affect all my programs? i am actually looking at a solution within MS acess..
  10. F

    Hiding the "import" window

    i tried to hide the "import" window by setting focus to the form, however, it doesnt work.. anyone else w a better suggestion? thks FT :)
  11. F

    Hiding the "import" window

    Hi all, below are my codes to display bitmaps in a MS Access form by just inserting the path to the image. Option Compare Database Private Sub CH1_Pic_AfterUpdate() On Error Resume Next Me![ImageFrame1].Picture = Me![CH1.Pic] End Sub Private Sub...
  12. F

    Form keeps loading/refreshing

    thks robert, i got the solution.. When i did the form in MS ACCESS 2002, i enetered the codes into the onCurrent n AfterUpdate () based on the fact tat it is version 2002.. for MS 2000, a different set of codes need to be used.. thks
  13. F

    Form keeps loading/refreshing

    one thing to add, when i perform the above in MS Access 2002 SP-1, i do not get any problems.. The error onli occur when i open the form in MS Access 2000 SP-3
  14. F

    Form keeps loading/refreshing

    Hi all, I encountered some weird symptons with my Access forms. I am using the form to display images(done by setting the OnCurrent and After Update property). When my PC is just powered on, and i try to load say form "ENGLISH". Form "ENGLISH" will appear, but the focus will switch in between...
  15. F

    File Browser to specify PATH only

    thks..i will take a look
Top Bottom