Search results

  1. D

    How to generate objects based on database

    Where would it create it, and what would it be named? thanks.
  2. D

    How to generate objects based on database

    Is there a way I can generate objects (eg. text box, button), based on what is in my database? For example, if I have 2 records with a number of 2, then it would show 2 textboxes and 2 buttons, and so on and so forth. The text boxes should be generated on the form. Is there any way to do this...
  3. D

    Urgent -

    I have 2 tables right now. Here's how the work: tbl1: primary key | field1 eg. 1|song name| 2|song name2| tbl2: primary key (mostly meaningless) | ID (key to link to tbl1) | file 1|1| c:/test/hello.jpg 2|1| c:/test/hello2.jpg 3|1| c:/test/hello3.jpg 4|2| c:/test/hello4.jpg 5|2|...
  4. D

    Viewing images in access?

    Is there any way that I can view an image in a form in access based on info from my table? Should I use any specific activex? Thanks.
  5. D

    Best format to embed pictures

    Mainly, I'm wondering what format images (jpg, bmp) I should upload to my form.
  6. D

    Collecting MP3 file information

    I found this: http://blog.ewal.net/shazammp3/ any way to put that into access in vba?
  7. D

    Collecting MP3 file information

    I meant trying to find out the id3 tags, so that I could see the id3 tags of the file.
  8. D

    Best format to embed pictures

    What's the best format to embed pictures into access? I'm currently embedding a 200kb jpeg background, and I'm noticing flicker when I change tabs. Should I use bitmap to remove the flicker I have, or is there anything else I can do? thanks.
  9. D

    Collecting MP3 file information

    Did you figure out how to do this? This seems really interesting. Thanks.
  10. D

    Rich text editor for access

    Is there a rich text editor for access(one which allows, mainly underlining of text). Or is there a way I can code a rich text editor? I mainly want the function to underline highlighted text, and push a button to add a special character. Thanks.
  11. D

    How to quit a loop

    Hi! This is the loop I have: Do While Not fcrs.EOF If file_test <> fcrs![File] Then fcrs.MoveNext MsgBox (fcrs![ID]) Else 'How do I quit the loop here? End If Loop How can I quit the loop if the else criteria is met? Thanks!!!
  12. D

    Reset table

    Is there VBA code to do that? Thanks!!
  13. D

    Reset table

    Hi! I currently have a table filled with a list of files, which is being written to by a form. I want to reset the table(delete the data), and the primary key, but I want to keep my table structure ( I have a few fields which are specific, eg. autonumber, memo, date). How can I remove all the...
  14. D

    Keyboard shortcuts?

    Is there any way to implement keyboard shortcuts into an access form. For example, to do an action x, i need to press "ctrl + y", how could I do that? Thanks!!
  15. D

    How to do an "on enter" event

    I have a form right now, where I do a filter-based search. I'd like to press enter to do a search, but I'm not sure how to do that. Now my filter is triggered by a button push. How can I change it to enter? Thanks.
  16. D

    How to make a form transparent

    Hi! I currently have a subform inside another form. I'd like to make the background of the subform transparent, because I have a picture as a background in my main form. How can I do that? Thanks!!
  17. D

    How to get list of files in a folder

    Is it possible to get a list of all the files in a folder (including all of it's sub folders)? I'd like to get a list of all those files and write a vba script to check to see if they're in my database, and give a list of files not in my db. I'm not sure exactly how to do that.
  18. D

    How to cut off part of a string (parse)

    Sorry I wasn't clear. Your code worked. I want it to also tell me only the folder path, rather than only the file.
  19. D

    How to cut off part of a string (parse)

    That code works great! How can I use it, now to cut off only the file name and the "/" that precedes it, to only create: "c:/test/file", from "c:/test/file/test.wav" Thanks!!
  20. D

    Windowless Forms

    Could you please post the api you used to create movable windows? How can you create an outline like the one in the linked picture? Thanks!!
Back
Top Bottom