Search results

  1. T

    File directories

    thanks dbdamo - do you have a version of this db that isn't locked as I can't get in the backend of it when pressing f11
  2. T

    File directories

    This woild require the user to copy/paste the file directory from the file properties to a field in a table yes? If the file directory is constant and ther filename is the only thing that changes - is there not a more efficient way of doing this. Just to clarify on what i am trying to do -...
  3. T

    File directories

    This question has probably been asked before and In have done some searches but not found anything yet. I am trying to show hyperlinks to PDFs and word docs for database records - any signposting guys on how this has been done in the past?
  4. T

    Column not displaying in list box

    I have a dynamic multi search function set up using a query criteria Like "*" & [forms]![FRM_SearchMulti]![SrchText] & "*" or Like "*" & [forms]![FRM_SearchMulti]![SrchText] & "*" under each column one of the columns is Meeting date but when you search for a date - no filtering...
  5. T

    Grrrr lack of sleep means no answer to simple question lol

    Bearing in mind I have had only a few hours sleep last night - this question is annoyingly easy but fraught with difficulty through lack of shut eye:( I have a table called patients and another called patient attendance. Each one has forms for it. In the Patients form I want to be able to...
  6. T

    Update table with all dates for next 2 years - excluding weekends

    Thank you I have created a month worth of cells but when I copy and paste it pastes the same dates
  7. T

    Update table with all dates for next 2 years - excluding weekends

    I have a table called 'meeting' and a column in it called date. I want to add records to the table in one go so there is a record of every workday for the next 2 years: i.e Record 1. 3/8/2010 Record 2. 4/8/2010 etc is there a quick way of doing?
  8. T

    Why is this not recognised as a valid fieldname or expression... grrrrrr! lol

    PARAMETERS [Forms]![frmRptDialogSingle]![begdate] DateTime, [Forms]![frmRptDialogSingle]![enddate] DateTime; TRANSFORM Count(qry_cardiology1.EpisodeID) AS CountOfEpisodeID SELECT qry_cardiology1.Days FROM qry_cardiology1 WHERE (((qry_cardiology1.RequestDatetime) Between...
  9. T

    Exclude weekends

    I have done a search a found a solution! WorkingDays: IIf(Weekday([RequestDateTime])>Weekday([Procedure1DateTime]),1+Int(([Procedure1DateTime]-[RequestDateTime])/7),Int(([Procedure1DateTime]-[RequestDateTime])/7))*5+Weekday([Procedure1DateTime])-Weekday([RequestDateTime]) I was wondering...
  10. T

    Exclude weekends

    I have query where a column has a start date and end date. I wanted to be able to work out the days taken for each episode but take off days where weekends are encountered? Best wishes Tez SELECT tbl_Data.EpisodeID, tbl_Data.Outcome, tbl_Data.ReferringHospital, tbl_Data.ReceiveHospital...
  11. T

    Overide combo box vaue

    brilliant stuff. thank you!!
  12. T

    Overide combo box vaue

    ah - getting there now - have cleaned up code a bit more now coming up with error message though (see new attachment)
  13. T

    Overide combo box vaue

    sorry - the consultant combo
  14. T

    Overide combo box vaue

    I have done some searching now and found a sample. I have added this in the notinlist event but i still can't add new values see attached. the add patient form has the combo
  15. T

    Overide combo box vaue

    I have limittoloist set to n but it own;t let me enter my own values though
  16. T

    Overide combo box vaue

    Correct me if I am wrong but is it impossible to overide the value of a combo box? A colleague has asked me to have a combo box that can allow the user to type in thier own choice? if its not in the list
  17. T

    Alter table

    Hi guys What on earth is wrong with this: SELECT * INTO NewTable FROM qry_car_reqtoproc_crosstab ALTER TABLE NewTable ADD COLUMN ReportComments TEXT(25); I get ...... Syntax error in FROM clause. (Error 3131) You entered an SQL statement that has an invalid FROM clause. Possible...
  18. T

    Create table with 'dynamic columns' on the fly

    thats is kind of what I want. I understand your reservation though as I suspected I am making life difficult. What I am trying to do is have the user be able to make comments on a report basically. To do this i wanted to create a form that pulls the results of the cross tab query and lets the...
  19. T

    Create table with 'dynamic columns' on the fly

    Is there a way I can let the user decide what the table name is by essentially assigning a 'filename' to the table so they can store and recover results
Back
Top Bottom