Search results

  1. D

    Finding day

    :banghead:Te name of module and name of public function was the same... that was main problem. Thanks for any answers. Please close the topic.
  2. D

    Finding day

    From today result must be 12/12/2012. (funny date ;) ) This function must show date of Wednesday from today minimum 14 days later.
  3. D

    Finding day

    I resolve problem, (I dont know why this module doesn't work) i put this line in query: DateAdd("d";IIf(Weekday(Date();4)=4;4;8-Weekday(Date();4));Date()+14) & " 10:00:00"
  4. D

    Finding day

    Still this same error :( Maybe there is another solution to find minimum two weeks later Wednsday. (this time serial is only for information that it will be 10:00:00):banghead:
  5. D

    Finding day

    Yes, this module is placed like your comMod...
  6. D

    Finding day

    Maybe my question is stupid but how to check it ? This module is not in form, this module was build as new module from in the access window (this window with query tables forms ...) It still doesn't work :/
  7. D

    Finding day

    Or Maybe you have any idea how to wrote module (and how to run it in query) that can find minimum two weeks later first wensday. Thanks for answers.
  8. D

    Finding day

    Hello, Last time i wrote the module to find wensday minimum two weeks later from today. It looks like this: Public Function WyznaczSrode(DataWystawienia As Date) As Date Dim a As Date Dim c As Integer a = DataWystawienia + 14 c = Weekday(a) Do While c <> 6 a = a + 1 c =...
Back
Top Bottom