There are lots of asm examples in the datetime folder.
Which one gives me the desired result?
DayOfYear ??? The result is strange.
include \masm32\MasmBasic\MasmBasic.inc ; download (http://masm32.com/board/index.php?topic=94.0)
Init
Inkey Str$("%i days since 1st of January\n", Age(TimeSF("01.01."), d))
EndOfCode
Output:
79 days since 1st of January
Thank you JJ,
79 days today.
But that is not going to help me much.
My prog reads "Dates" from a database, which are all different.
So I have to give year, month and day to the function (Macro).
How do you do that?
TimeSF() (http://www.webalice.it/jj2006/MasmBasicQuickReference.htm#Mb1328) expects a string in the format dd.mm.yy - in the example above, 01 january (and the macro assumes "current year" if no year is supplied).
What is the format of your database? Can you post an example?
Format ?
It returns a string, which contains year,month,day "2014-04-25"
Then the three values get changed into ints.
Quote from: clamicun on March 21, 2016, 09:39:46 AM
It returns a string, which contains year,month,day "2014-04-25"
include \masm32\MasmBasic\MasmBasic.inc ; download (http://masm32.com/board/index.php?topic=94.0)
Init
Let esi="2014-04-25"
Let esi=Mid$(esi, 9, 2)+"."+Mid$(esi,6, 2)+"."+Left$(esi, 4)
Inkey Str$("%i days since ", Age(TimeSF(esi), d)), esi
EndOfCodeOutput:
696 days since 25.04.2014
include \masm32\MasmBasic\MasmBasic.inc ; download
Init
Let esi="2014-04-25"
Let esi=Mid$(esi, 9, 2)+"."+Mid$(esi,6, 2)+"."+Left$(esi, 4)
Inkey Str$("%i days since ", Age(TimeSF(esi), d)), esi
EndOfCode
Output:
696 days since 25.04.2014
--------------------------
yes.. 696 day since...
--------------------------
But - as always with MasmBasic - where is the result ?
(I never use console built)
It is not esi, edi,eax, not ...
It is %i ???
As I often said...I do not understand your Macros.
Where or what is it ?
And I can't use it anyway in my project.
"Let esi="2014-04-25"
Let esi=Mid$(esi, 9, 2)+"."+Mid$(esi,6, 2)+"."+Left$(esi, 4)"
I have my own proc which corresponds to php's explode.
mov esi,offset downloaded_data ; (2014-04-25)
explode offset year,'-'
explode offset month,'-'
explode offset day,0
(Then - if need - I convert them into ints)
------------
So I think, I should try..
DayOfYear PROC pdt:PTR DATETIME
DaysInMonth PROC pdt:PTR DATETIME
There I do not understand "pdt:PTR DATETIME"
That is...what do I invoke ...?
Should be year,month,day
INVOKE DayOfYear,offset systemTime ; from (INVOKE GetLocalTime,offset systemTime) - does not function
I'll get it tomorrow or the day after, but If you are not pi..d because of not wanting to use your "LiveProject MsBs" give me a hint please.
PS.
Don't forget to tell me the "whereabout" of %i
deleted
Quote from: clamicun on March 21, 2016, 12:33:27 PM
As I often said...I do not understand your Macros
...
Don't forget to tell me the "whereabout" of %i
Sorry for that (btw, what does
explode offset year,'-' do?). Here is a version closer to your needs:
include \masm32\MasmBasic\MasmBasic.inc ; download (http://masm32.com/board/index.php?topic=94.0)
.data
downloaded_data db "2014-04-25", 0
Init
Let esi=offset downloaded_data ; (2014-04-25)
Let esi=Mid$(esi, 9, 2)+"."+Mid$(esi,6, 2)+"."+Left$(esi, 4) ; convert to 25.04.2014
Let esi=Str$("%i days since ", Age(TimeSF(esi), d))+esi
MsgBox 0, esi, "The result:", MB_OK
EndOfCodeAs to the %i, google for
printf format integerNote that of course, you could declare...
.data
MyResult dd ?
... and then replace all occurrences of
esi with
MyResult.
Re GetLocalTime etc: If you want to roll your own, it's all in \Masm32\MasmBasic\MasmBasic.inc, ca. lines 4415...4510
;esi must be set on offset string toprocess e.g. 2016-03-21
;arg1 offset string to create ;eg. year db 4 dup(?),0
;arg2 delimiter '-'
;mov esi,offset toprocess
;explode offset year,'-'
;===
explode MACRO arg1,arg2
LOCAL thislabel
LOCAL thisoutlabel
push eax
mov edi,arg1
thislabel:
mov al,[esi]
cmp al,arg2
je thislabelout
inc esi
mov [edi],al
inc edi
jmp thislabel
thislabelout:
inc esi
pop eax
ENDM
Thank you nidud,
I'll check it out.
nidud,
checked it.
Produces 6 syntax errors...
nidud,
actually it gives me 20some syntaxerrors !!
Did you ever test it ?
deleted
GetDays ( 1900, 01, 01 ): 42448
The build is a bit non-standard*), but it works :t
How do you deal with local time vs UTC?
Btw your printf "\n" puts out a LF only. In contrast, Masm32 printf emits CRCRLF 8)
include \masm32\include\masm32rt.inc
.code
start:
xor ebx, ebx
.Repeat
printf("Test %d \n", ebx)
inc ebx
.Until ebx>=3
exit
end start
*)
P.S.: *.asc attached; hit F6 to build in RichMasm, \Masm32\bin\AsmC needed
deleted
Hi Nidud,
GetDays ( 1900, 01, 01 ): 42448 ok.
GetDays ( 2016, 01, 01 ): 80 ok.
GetDays ( 2017, 01, 01 ): 286 my prog does not accept the values
GetDays ( 2014, 04, 25 ): 696 ok.
GetDays ( 2017, 12, 24 ): 643 my prog does not accept the values
GetWeekday( 2016, 03, 21 ): 1 my prog returns 0
JJ,
"How do you deal with local time vs UTC?"
I don't deal - Mysql deals...
Quote from: clamicun on March 22, 2016, 08:47:03 AM
GetDays ( 1900, 01, 01 ): 42448 ok.
GetDays ( 2016, 01, 01 ): 80 ok.
GetDays ( 2017, 01, 01 ): -286 my prog does not accept the values
GetDays ( 2014, 04, 25 ): 696 ok.
GetDays ( 2017, 12, 24 ): -643 my prog does not accept the values