Search results

  1. D

    Multiple images in reports

    Hi! Let me describe my situation first, just to give you guys a clear view of what I'm doing. My database has links to upto 6 image files(each taking up the whole page, 8.5 by 11), per record. I'm trying to provide an interface for my users to view the image files, so I made a report, which...
  2. D

    VBA to set focus to a report on load

    How can you set focus to a report on load? Right now, once it loads it does not have focus. Thanks!!
  3. D

    Run a .bat file, after pushing a button

    Hi! How can I execute a .bat file, and open it up, after clicking a button?Thanks!
  4. D

    Form flickers on tab pages

    I currently have an acess form with a tabcontrol which has 5 tabs. It sits over an image currently. Whenever I change the tab, or I move my mouse over the tab page, the screen over the tab page flickers, and I can see through to the image often, and it does wierd flickering effects like that. Do...
  5. D

    Count the records in a recordset

    How can you count the # of recordset? I tried using (rs is my recordset). Everything is populated into the rs and it works. In order to count the # of records, now I'm using a do while not eof, and it's working, but i'm wondering, is there as alternate way to find the # of records in rs? I...
  6. D

    Problem with code for id3

    How do you know you need to dim it as MediaPlayer...there are no references to it...
  7. D

    Problem with code for id3

    That's kind of the problem. I can't find a reference, other than the place I call MP3., to the object.
  8. D

    Problem with code for id3

    I've been searching all over this forum, and I found this really neat link(read from post 17 down): http://www.access-programmers.co.uk/forums/showthread.php?t=28702&page=2 Which shows how exactly you can get in id3 info from mp3s into a database. But the problem is when I try to use it, I am...
  9. D

    Field visible/invisible based on field before

    But I'd need to make an onclick for each of the boxes right. No way around making 8 things, correct?
  10. D

    Field visible/invisible based on field before

    Ok. So, basically, Monkier: Thanks a lot for telling me about how this can be bad for the user's experience. But, basically, the 8 fields aren't required. It's a possible 8, but, the user will basically fill out 1 first, then proceed to 2, then 3, 4, and so on and so forth. So, if say 1-5 are...
  11. D

    Field visible/invisible based on field before

    I have 8 fields right now: field1, field2, ... I want to make it so that if, and only if field1 is > 0 then it will display field2, and so on and so forth, so that a field is only displayed if the one before it is filled. How can I do that? Do I need to make a TON of if loops, or is there a way...
  12. D

    Setting control source for an object

    Sorry for being so vague. So basically, I'm going to break it down fully. I have 2 tables: tbl1: ID| Song | tbl2: PriKey | ID (which is linked to tbl1's ID, except this is nonunique)| lyrics basically the lyrics are links to image files (i have them scanned), and there are multiple lyrics...
  13. D

    Setting control source for an object

    That still doesn't work. Did you try it? Can you post a code sample of it, because it's not working for me. It's still a 424 error, and it says "object required" over the tables![...] expression during the break analysis. Putting it into a recordset might work, but when I tried it, it didn't...
  14. D

    Setting control source for an object

    it gives me an error though: 424 (object required). I tried connecting to the database that way though.
  15. D

    Setting control source for an object

    I really did read the manual. I couldn't find anything on this. Most of my questions are answered in it. This is one of my last questions in a problem I'm having. Thanks!!
  16. D

    Setting control source for an object

    I'm trying to set the control source of a text box, but I don't know the syntax for it. me.txtLabel.controlsource That's as much as I have. I need it's control source to be set to the 3rd record in a table "file". That table isn't the form's record source. How can I do that? Thanks.
  17. D

    Variables when referring to object names

    Hi! I have a few objects: txtLabel1 txtLabel2 txtLabel3 . . . They're all are incrementing in that order, so is there a way I can do the me.txtLabel[number here], through a variable. so, for example, var_num = 3 me.txtLabel + var_num (except that doesn't work) How can I do that? Thanks.
  18. D

    Problems with Generating Objects

    I'm able to create objects using the create object function, but, I have some problems: 1) I can't create objects on my current form. The form needs to be in design view, and you can't make the current form go to design view 2) You can't name objects on the form 3) There are actions which I...
  19. D

    How to generate objects based on database

    I know but can I open my current form to make the edits? It doesn't seem to work that way....
  20. D

    How to generate objects based on database

    I did, but it gives me an error saying I need to be in design view. How can I open my current form in design view, change it, and then automatically make it normal form view? thanks!
Back
Top Bottom