Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JamesBBB

    Extracting detailed file lists

    Hello all, I have a issue which I cannot resolve and I'm hoping someone can help me. In Windows explorer it is possible to add additional details in your file view, for instance I have a number of video files and have selected the following additional details, "Frame Height", Frame Width" and...
  2. JamesBBB

    Error trapping a query with no records as a result

    Hi There, Could someone help me with little problem with Access 2003, I have a database with address details and sometimes I need to search on a post code (zip code). The way I have done this is to set a public variable with the post code which is then passed to a query as criteria. On the...
  3. JamesBBB

    Query needed to strip the first character from a field

    Remou Apologies, I have entered the code in SQL mode on the query and it works perfectly Absolutlely superb Many thanks for that Really appreciated James
  4. JamesBBB

    Query needed to strip the first character from a field

    Hi Remou, Thankyou so much for such a quick repsonse, please forgive my ignorance, I can see exactly what the code is doing that you have supplied, however, how would I apply it in the queries critiera fields or should it be run as an sql statement from a button on a form. I was trying to...
  5. JamesBBB

    Query needed to strip the first character from a field

    Hi All, I have a problem with a query and I just cant seem to work out what to do, I really would appreciate some help. (Im using Access 2003) I have a text field that contains numbers such as 01 02 03 etc, however some of the values in the field contain numbers such as 010, 011, 012 etc. What...
  6. JamesBBB

    Problems formating an update query

    Hi JBinQLD Absolutely Fantastic, I cant thank you enough many many thanks James
  7. JamesBBB

    Problems formating an update query

    Hello I have a little problem here which I just cant solve, if anyone can help, I would be very grateful. Basically within my database I have 3 columns, One is [Series No] (Number) and the second is [Episode No](Number) and the last [Series Ref](Text). What I want to do is update [Series...
  8. JamesBBB

    How Do I read from a Recordet not starting at the first record

    Hi All Another poser, I would like to read a recorset, however I dont want to start at record one, Basically I want to read the first 20 records, display the first 20 records, and if the user wants to continue , he can click a continue button and it will display the next 20 records and so on...
  9. JamesBBB

    Is there a way to monitor if an app is running on the system

    Golum Absolutely Spot on perfect Many thanks James
  10. JamesBBB

    Is there a way to monitor if an app is running on the system

    Hi All, I wonder if someone could help me please, I am writing a database for my music collection and the player I use is called coolplayer.exe, a very small mp3 player that sits in the system tray. However, what I would like to do is check when coolplayer is running so that I can show or hide...
  11. JamesBBB

    atten PHV re some old code posted re MP3 tags

    Thanks Guys the help is invaluable, I will research and test and let you know how I get on Many thanks James
  12. JamesBBB

    atten PHV re some old code posted re MP3 tags

    Hi PHV, I hope this post reashes you. SOme time ago you posted a solution to reading MP3tags from within VBA, the code being You may try something like this : Dim sTagIdent As String * 3 Dim sTitle As String * 30 Dim sArtist As String * 30 Dim sAlbum As String * 30 Dim sYear As String * 4 Dim...
  13. JamesBBB

    Testing to see if an application is running

    Hi all, I am trying to write a small procedure to check if an application is running. I have found some code that MS states runs in VB but I cannot get it to run in Access 2003. This what I've found for VB, which i tried placing in the modules section Declare Function GetModuleHandle Lib...
  14. JamesBBB

    Basing a Recordset on a Filtered Continuous form

    Hi All This is a little difficult to explain. The object of the excerise is to allow a user to display anumber of records on a continuous form and each of these records contain a filename. After the user has filtered out just the records they need on the form (via Filters) then they would copy...
  15. JamesBBB

    Chr ( number_code )

    You could also have a look at this link http://www.planet-source-code.com/URLSEO/vb/scripts/ShowCode!asp/txtCodeId!9193/lngWid!4/anyname.htm Cheers James
  16. JamesBBB

    Chr ( number_code )

    Hi Matrixknow You could check this out yourself by writing this code on a button:- For a = 30 To 100 MsgBox Chr$(a) & vbCrLf & a Next a You can change the values of 'a' to whatever you want, but try the above first. I use it to find various ascii codes Cheers James
  17. JamesBBB

    Multiple Filtering Problem with wildcards

    Hi All I am having a problem with multiple filtering, which I cannot fathom, any help you be very gratefully received. Basically I have a form where a user can select up to 4 filter criteria from 4 text boxes(Each text box is for a specific field), he can select just one, or any number of...
  18. JamesBBB

    Conditional Formatting on a partial Field

    Thanks Remou, for having a look at my problem, however I have just this minute solved it. I stated above expression is "*" & "Sign off(Incomplete)" & "*" what I should use is as follows:- expression is [Title] like "*" & "Sign off(Incomplete)" & "*" It works now. Just a stupid mistake on...
  19. JamesBBB

    Conditional Formatting on a partial Field

    Hi There Im havving a little problem with conditional formatting. Im not sure if its just me!! Basically on a continuous form there are some records that contain (Incomplete) in the field name. ie records: Testing Project Stress Project Finalization Project Release Project(Incomplete) Sign...
  20. JamesBBB

    Transferring records from an Open form to Textfile

    Hi CautionMP Absolutely, fantastic, works perfectly thanks James

Part and Inventory Search

Back
Top