Search results

  1. K

    Help with populating Report from a Query

    You're a genius vbaInet!! Worked like a charm without code!! Thanks to both plog and vbaInet for all of your help!!
  2. K

    Help with populating Report from a Query

    Hmmm.. I guess that would be a way to do it... I keep thinking that there has to be a better way. Maybe some way of autonumber type field that can be put into a query that gives a sequential reference to each line of data or some way of referencing the first, second, third, etc. record that...
  3. K

    Help with populating Report from a Query

    Really? Copying and pasting is the only way to go? I suppose I could just export it directly from Acces into Excel in which case all the pretty formatting stuff (presentation is important in all business, don't you think?) is lost on the export. I was just hoping for an easier way to get a...
  4. K

    Help with populating Report from a Query

    Hey everyone, I am sure there is another thread out there to this effect but I am having a hard time putting in the right search thread to find it. I am on Access 2000 building an mdb database to keep track of attendance at monthly community meetings. Based on past attendance (criteria...
  5. K

    Copying or Moving a Video (or any other kind) File from One Folder to Another

    Oh my God, you're a genius, elliotgr! Made a few modifications, but it worked like a charm!! The modifications below for those intending to use this in the future: Private Sub Command0_Click() Dim myObject as Object Dim Source as String Dim Dest as String Set myObject =...
  6. K

    Copying or Moving a Video (or any other kind) File from One Folder to Another

    Hey everyone, I have a database that keeps track of sketch comedy bits in Access 2003 .mdb format. Thanks to everyone's help here, it is a really bitching database that allows me to add information and watch those videos on a separate form. Now I want to take it one step further in helping me...
  7. K

    Help with expression to get text string from check boxes

    Hey MMaynard, You're a friggin' genius, dude! I am still trying to wrap my head around what you have there but I am starting to get the gist of it. Also, is there no way of getting rid of the last comma in the LeftString? Right now, it returns two checked conditions as "Mental Illness, and...
  8. K

    Help with expression to get text string from check boxes

    I got back to work and tried it out and it worked awesome! Thanks, MMaynard! Is there a way to get the last ctl.Name to be preceded by an "and" (like mental illness, domestic violence and chronic medical problem instead of mental illness, domestic violence, chronic medical problem)? I tried...
  9. K

    Help with expression to get text string from check boxes

    Hey MMaynard, I hate to be a bother considering the time and effort that you have given me, but is there any way to get that in an .mdb format? I am still running on MSA 2003 and am unable to open .accdb files...
  10. K

    Help with expression to get text string from check boxes

    Hey MMaynard, I hate to be a pest, but would you be able to upload that test form? I am still a relative beginner in Access and would love to know how you made it work. Kyu
  11. K

    Help with expression to get text string from check boxes

    Thank you so much for your help MMaynard! I am trying it out as we speak. BTW, is the text box that the string dumps into called "MyLongString"?
  12. K

    Help with expression to get text string from check boxes

    Would this particular code work on a continuous form, as well? I know that Form subroutines tend to only affect the first record on continous forms...
  13. K

    Help with expression to get text string from check boxes

    I have a database that keeps track of special needs of social work clients and I need some help displaying data a string of text based on data entered through check boxes. After case managers have gathered intake information from a client, they enter the data through a form that allows them to...
  14. K

    Questions regarding code for embedded Media Player

    DARBID, YOU'RE A FRIGGIN' GENIUS!!! OK, so I tried using the timer to keep track of where the play back is on the media is at any given time. I tried duration and that did not work , but current position did! Using this method, it showed me that current position is indeed not static and can...
  15. K

    Questions regarding code for embedded Media Player

    Because the input mask is set to h:nn:ss, you have to put in five digits: one for the hour, two for the minutes and two for the seconds. So if you want to put in 1:00 as in one minute, you have to enter 0:01:00 or if it's 1:00 as in one hour, then you have to enter 1:00:00. I did this to...
  16. K

    Questions regarding code for embedded Media Player

    Yeah, I tried using duration, but found that it was read only and static, therefore not very useful for what I wanted to do. Yeah, I use a recordsource because I have other bits o' info displayed on the form like actors in the sketch, times (as you can see on the one I posted), year and other...
  17. K

    Questions regarding code for embedded Media Player

    This one I had no problem with as you can see in the database I posted. As far as I can tell, once time is converted into seconds (e.g. 0:03:15 in h:nn:ss format equals 195 seconds) it can find the current position in any kind of video file that is compatible with WMP. This is how I got it to...
  18. K

    Questions regarding code for embedded Media Player

    Hey darbid, Thanks for your continued efforts! Here is an abbreviated version of the mdb. And I must say so myself, it's not a half bad video organizing/ viewing tool, either!
  19. K

    Questions regarding code for embedded Media Player

    Hey darbid, Thanks for all of the research you are doing! If we were in the same area, I would take you out for a drink! I tried your solution and I am still running into the problem of being able to associate an interal control like WMPSliderCtrl or or SelectionStart (which still seems...
  20. K

    Questions regarding code for embedded Media Player

    Thanks, darbid for your quick response! I tried SelectionStart/ SelectionEnd but now it tells me that Object does not support property/ method. Any way to invoke this property in Access? The actual lines of code I wrote was: mediap.SelectionStart = Me.Text12 mediap.SelectionEnd = Me.Text14
Back
Top Bottom