Search results

  1. N

    Cant Create Image Edit Control in Access Form

    While unfortunately I am unable to help you with your programming problem, I cannot help but wonder why you want to use Access for moving images from the clipboard to a folder on the harddrive. Where does the database come into play? And why do you think people are too stupid to navigate...
  2. N

    Label text size

    Hello, Is there a way to make the text in a label smaller than size 8? I need to put some text on a form, but it's too large for the limited amount of space I have. Thank you.
  3. N

    Scrolling problem

    jkl0, turns out you did provide a solution after all. :) While setting the border style to None was not a good idea, setting it to Thin or Dialog works, at least upon initial opening of the form, which is all I need anyway. I chose Thin, by the way, because that preserves the Minimize and...
  4. N

    Scrolling problem

    I won't be able to do that due to the size of some continuous subforms I have on there. Oh well, thanks for trying to help. :)
  5. N

    Scrolling problem

    jkl0 - But this does happen when I'm opening the form as well; that's actually my main concern. I could live with it if it only happened when I switched views, but unfortunately, that's not the case. Keith - thanks for your suggestions; none really work though. :) My tab control is definitely...
  6. N

    Scrolling problem

    Hello, This is kind of ridiculous, but I'd like to get to the bottom of it. I have a form with a tab control on it, which holds all my controls on several pages. The tab control takes up almost the entire form; there's only a small area of the underlying form visible around it. For some...
  7. N

    Page/Tab forward button in tab control?

    I got it: Me.TabCtrl = 1 will take me to the second tab [apparently, numbering starts with 0]
  8. N

    Page/Tab forward button in tab control?

    I'm wondering if there was a way to put a button on my first tab that, when pressed, will take me to the second tab. Thank you.
  9. N

    Append

    I never did get the SQL code to work, but after some research and trial-and-error, I managed to create a query in the query builder that does what I need when I use a command button on my form to save my record and then execute a macro that runs the query: INSERT INTO tblAnswers ( RespondentID...
  10. N

    Append

    Yes, that is what I am trying to accomplish; thank you. Unfortunately, there seems to be some error in the SQL - when I try to run it, it aborts with a Syntax error and the FROM statement highlighted.
  11. N

    Append

    Hello, I have this survey application with the following tables - tblRespondent [PK RespondentID, other fields], tblAnswers [PK AnswersID, FK RespondentID, FK QuestionID, Answers {yes/no}, Notes {text}], tblQuestions [PK QuestionID, FK CategoryID, Question {text}], tblCategories [PK CategoryID...
Back
Top Bottom