Search results

  1. C

    Query column for values withut numbers?

    that worked great, thank you :)
  2. C

    Query column for values withut numbers?

    Hi, I have a column that contains some values with just characters, and some with a mix of characters and numbers. I want to split the 2 but the method i thought would fix it, doesnt :x not like ([*1234567890*]) Thanks for the assist
  3. C

    Write names of folders to table once added to directory?

    im not trying to make it difficult, im just looking at methods as i find them as i dont really know anything at the moment about this sort of thing. might you have another source for the switchs? im having trouble getting my head around the access help information
  4. C

    Write names of folders to table once added to directory?

    currently looking into batch files or a vbs to be run from scheduler, though having errors with vbs (not yet tried batch): vbs: dim accessApp set accessApp = createObject("Access.Application") accessApp.OpenCurrentDataBase("C:\Images.mdb") accessApp.Run "NewImages" accessApp.Quit set...
  5. C

    Write names of folders to table once added to directory?

    just thinking into things (the scheduler isnt an option because i will be running this on several machines). Is there a way to have a batch run the code once the user logs in? again im unfamiliar with batch files
  6. C

    Write names of folders to table once added to directory?

    i see what your saying with this and wasnt even aware of being able to access properties in a recordset so thanks :) however, is there a way to run this in an automated way? thats my main problem, running the code without the user touching the tool itself
  7. C

    Write names of folders to table once added to directory?

    if your pointing towards creating a recordset of the subfolders in that folder then writing to the table(an index) where they are different, that would work but would cause a problem in both processing time as the directory grew and instancing the code to begin (want to avoid a user opening the...
  8. C

    Write names of folders to table once added to directory?

    Hi all! Basically, i need a method for when a user is going to scan an image, then places it in a folder, allowing that folders name added to a table automatically once saved. Because independent from the scanning program (Imaging - Kodak) i need to find a way to run the code to update the...
  9. C

    Replace / with ~ if date found in string

    sorry, i ninja edited the above as i had put solved prematurely. The error is database object is read only, which i dont get as the database is not read only :x i figure its going to change the value in the foeld first before creating the folder so guess at a database issue? also might a...
  10. C

    Replace / with ~ if date found in string

    getting closer but i hit a problem :( If InStr(Name![aName], "/") Then Name![aName] = Replace(Name![aName], "/", "~") End If MkDir strTempFilePath & "\" & Name![aName]
  11. C

    Replace / with ~ if date found in string

    Hi all, Tried finding a solution in this site but couldnt find one for searching a string for a specified character (if you see one, link me :x) Im searching through a column to create folders based on a field value. At a point i come across a field value that contains a date, so i wish to...
  12. C

    Date Formatting

    thanks for the input, i just cant work the syntax of what you say into my current line. Im using: strSQL = strSQL & "#" & .Fields("AB19").Value & "#," but i cant fit in the format comment tried: strSQL = strSQL & "#" & Format(.Fields("AB19").Value, "dd/mm/yyyy")) & "#,"
  13. C

    Date Formatting

    Hi, I have some code that retrieves data from a table via a query and then posts in a excel spreadsheet. However when the data is outputted it is output with a date field adopting the US format of (04/06/2009) instead of 06/04/2008) and i cant reformat it afterwards in the excel spreadsheet...
  14. C

    DCOUNT problem (dont identify blank?)

    Worked a treat, thanks very much :)
  15. C

    DCOUNT problem (dont identify blank?)

    so is it not possible to include NULL in "values that are not in A,B,C,D,E" ? It has to specifically be stated as a count all that are null?
  16. C

    DCOUNT problem (dont identify blank?)

    Hi, this might have got lost in the other topic so posting a fresh, I have a formula to work with where as i want it to return the number of records that dont have the following Status entries. =DCount("[Ref_No]","New","[Status]not in ('A','B','C','D' )") However, i want it to then be left...
  17. C

    DCOUNT issue (where value is one of 2 characters)

    Hi, I have a formula to work with where as i want it to return the number of records that dont have the following Status entries. =DCount("[Ref_No]","New","[Status]not in ('A','B','C','D' )") However, i want it to then be left with fields where [Status] is ' ' i.e empty, nothing inside. It...
  18. C

    Form printscreen issue

    nevermind, its cause 3 of the many text boxes are linked to a table, i figure ill need to do an export to report or a button to open current record in print screen :(
  19. C

    Form printscreen issue

    Hi all. I have a form that displays some values in a report format (i know reports better than forms :x). When i go to print this form, it prints thousands of copys of the same form based on the number of records in the table its linked to. What i need is for it to just print one form, not...
  20. C

    DCOUNT issue (where value is one of 2 characters)

    Nevermind iyou had it right the first time, just a square bracket on B was meant to be after status =DCount("[Ref_No]","New","[Status]='A' OR [Status] ='B'")
Back
Top Bottom