Masm32 SDK description, downloads and other helpful links
Message to All Guests
NB: Posting URL's See here: Posted URL Change
QuoteUnregister your classes if the process is going to continue running after your DLL unloads.
QuoteNo window classes registered by a DLL are unregistered when the DLL is unloaded. A DLL must explicitly unregister its classes when it is unloaded.
QuoteYou should never perform the following tasks from within DllMain:
- Call functions in User32.dll or Gdi32.dll. Some functions load another DLL, which may not be initialized.
Dim As complex x, y, z
Dim As Double rr, ri
for rr=-1 to 1 step .5
for ri=-1 to 1 step .5
x=complex(rr, ri)
y=zeta(x)
print using "zeta(##.####, ##.####) = ";x.re;x.im;
print using "##.################, ##.################";y.re;y.im
next
next
zeta(-1.0000, -1.0000) = 0.0168761517881836, 0.1141564804323963
zeta(-1.0000, -0.5000) = -0.0538894302820935, 0.0752004260118382
zeta(-1.0000, 0.0000) = -0.0833333333333334, 0.0000000000000000
zeta(-1.0000, 0.5000) = -0.0538894302820935, -0.0752004260118382
zeta(-1.0000, 1.0000) = 0.0168761517881836, -0.1141564804323963
zeta(-0.5000, -1.0000) = -0.0008178931340101, 0.2230716886972805
zeta(-0.5000, -0.5000) = -0.1407574606243030, 0.1580763818474494
zeta(-0.5000, 0.0000) = -0.2078862249773547, 0.0000000000000000
zeta(-0.5000, 0.5000) = -0.1407574606243030, -0.1580763818474494
zeta(-0.5000, 1.0000) = -0.0008178931340101, -0.2230716886972805
zeta( 0.0000, -1.0000) = 0.0033002236853245, 0.4181554491413226
zeta( 0.0000, -0.5000) = -0.2991978789224703, 0.3593711792648014
zeta( 0.0000, 0.0000) = -0.4999999999999991, 0.0000000000000000
zeta( 0.0000, 0.5000) = -0.2991978789224703, -0.3593711792648014
zeta( 0.0000, 1.0000) = 0.0033002236853245, -0.4181554491413226
zeta( 0.5000, -1.0000) = 0.1439364270771889, 0.7220997435316735
zeta( 0.5000, -0.5000) = -0.4593028903460181, 0.9612542845058791
zeta( 0.5000, 0.0000) = -1.4603545088095850, 0.0000000000000000
zeta( 0.5000, 0.5000) = -0.4593028903460181, -0.9612542845058791
zeta( 0.5000, 1.0000) = 0.1439364270771889, -0.7220997435316735
zeta( 1.0000, -1.0000) = 0.5821580597520036, 0.9268485643308069
zeta( 1.0000, -0.5000) = 0.5784330210993112, 1.9635494964529780
zeta( 1.0000, 0.0000) = -1.#IND000000000000, -1.#IND000000000000
zeta( 1.0000, 0.5000) = 0.5784330210993112, -1.9635494964529780
zeta( 1.0000, 1.0000) = 0.5821580597520036, -0.9268485643308069