Recent content by Rich_Lovina

  1. R

    Windows 2k Media Player

    Hi there, My Win 2k professional has turned off all sound and greyed out the button enabling volume control in the media icon. I thought it might have had something to do with Win Media player hotfixes, so I removed them and still cannot get the sound back. Thanks any help in advance.
  2. R

    Display real time Now() etc.

    Thanks for tip. Will try time. p.s. Have solved format error, was formatting in form before dbase design.
  3. R

    Display real time Now() etc.

    Detailed search cannot answer my time problem. Returning after long break in programming, I am trying to create a form to display TimeIn and TimeOut fields such that actioning an OnClick command (or separate tick-box), TimeIn field will hold current time for that record. Need to set the same for...
  4. R

    Holidays for $US15 per day...

    No way Ken, we just bring together one component independently based on probably 30 tonnes of trees they waste annually doing old fashioned hard copy publications for their employees to peruse each week and then figure out what their next job-hop will be. It's a self-perpetuating paper wastage...
  5. R

    House Purchasing

    And what goes up might just come down soon... I found a site on housing price crashes in various OECD countries recently. See the Economist for starters...at http://www.economist.com/opinion/displayStory.cfm?story_id=4079458
  6. R

    Holidays for $US15 per day...

    Some years ago I met a UK programmer having a cool-out in Lovina, North Bali, and adopted a similar lifestyle...except from Australia its much closer! ...and many thanks to the programmers who helped me to re-build a database now almost 70,000 records strong. See samples at www.austgov.com Or...
  7. R

    Finding first line of duplicates for deletion

    Thanks Pat, that was done for manual deletions.
  8. R

    Finding first line of duplicates for deletion

    Pat Hartman wrote... Hi there, Pat wrote: "...The easiest way to do this if you don't care which record is saved is..." Now, in my dbase I do care, since I have the data set such that the oldest record (by date or older autonumber) appears first in the duplicate set. How do I write the sql...
  9. R

    MS Access 2k Not Updating

    When trying to run a query on a query my query list is not updating. Have tried Repair & Compacting, close & re-start and still not updating. I have 239 queries saved, but need them all. Could this be the problem? Also, even after compacting, dbase is now 40 Mb. One relationship just 'dropped...
  10. R

    Removing Duplicates & Updating kept record

    I want to be able to delete the older-dated record in a series globally. Simultaneously, if the older-dated record has F25_ALLTAGS=yes, I want to update that tag and the edited tag to the newer record. See sample in attachment. Which is the best way to go about this? Thanks in advance any ideas.
  11. R

    Name Splitter Problem

    Dougs Code works perfectly in A2K [CODE]Function PrsIntls(NameAgs As String) As String Dim SpPntr As Integer Dim Intls As String Well, I must thanks Doug, your code does the job perfectly!
  12. R

    Name Splitter Problem

    Error....Variable Not Defined Correction...variable not defined
  13. R

    Name Splitter Problem

    Still a dummy at this code, I replaced above line with NameArray = Split(NameAgs, " ") in all 3 places, and now code is getting error PrsInitls is not a valid variable Any idea where I make it valid? Thanks
  14. R

    Name Splitter Problem

    Invalid Use of Me keyword An error message is appearing in this version highlighting me in line 3 below. Any ideas why?? Function PrsLstNm(NameAgs As String) As String Dim NameArray As Variant NameArray = Split(Me.NameAgs, " ") PrsLstNm = NameArray(UBound(NameArray)) End Function...
Top Bottom