Search results

  1. G

    Hide Properties on Open Database

    Thank you very much Bob - that is exactly what I needed :D
  2. G

    Hide Properties on Open Database

    Hi All, I am working in MS Access 2003 and Windows 2000 professional SP4. When I open a database with a Display Form defined in Startup the properties for the form sometimes diplay in a pop up. The switch for display or not seems to be whatever I had set last time I used Access, this...
  3. G

    Midday / Midnight

    I ended up doing: 'Work out time string strTime = Format(datDateTime, "h:Nn am/pm") 'Change time string for midnight If datDateTime - Int(datDateTime) = 0 Then strTime = "midnight" 'Change time string for midday If datDateTime - Int(datDateTime) = 0.5 Then strTime = "midday" Thank...
  4. G

    Midday / Midnight

    Cheers David, I like your thinking - make it someone elses problem! Unfortunately the speech interpreter is a given - I can't get that changed. It's Ok - I can write my own function to interpret a date as a string the way I want it - it would just have been easier if there was a prefined format.
  5. G

    Midday / Midnight

    Hi Dave, Thank you for the reply. Yes, I agree there is no ambiguity for the program and there are agreed conventions on how to interpret 00:00/12:00/24:00 etc. But not everyone knows them. So I want the final voice message to specifically say midday or midnight if that is appropriate. I...
  6. G

    Midday / Midnight

    I am writting a module that generates scripts for flood warning messages. The text, once produced, goes to another system outside Access for telephone distribution via voice synthesis. Someone else has done all that clever technical stuff. All I need to do is produce the script as a text...
Back
Top Bottom