Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (241 - 243 of 3870)

Ticket Resolution Summary Owner Reporter
#868 Completed Add _WinAPI_SetLayeredWindowAttributes Jpm ProgAndy
Description

i think, _WinAPI_SetLayeredWindowAttributes and _WinAPI_GetLayeredWindowAttributes are useful functions to create layered windows, so they should be added to WinAPI.au3

#3131 Rejected Add a "safe" modifier to ReDim to preserve Dimensions minxomat
Description

This is a request for a modifying keyword (or alternatively an Opt flag) to warn the user when he tries to redim with different dimensions (trashing the old array). Example:

; (1) Runs and trashes old array:
Local $aTest[0][0]
ReDim $aTest[1]

; (2) Breaks with an error / warning:
Local $bTest[0][0]
ReDim Safe $bTest[1]
#159 Completed Add a Date: header in _inetsmtpmail Jpm grand-pa@…
Description

E-mails sent with _inetsmtpmail do not include a Date: header line. So a mail client like Thunderbird "dates" those e-mails to 01/01/1970.

I've modified the function in Inet.au3 this way :

"Mime-Version: 1.0" & @CRLF & _
"Date: " & _DateDayOfWeek(@WDAY, 1) & ", " & @MDAY & " " & _DateToMonth(@MON, 1) & " " & @YEAR & " " & @HOUR & ":" & @MIN & ":" & @SEC & @CRLF & _
"Content-Type: text/plain; charset=US-ASCII" & @CRLF & _

(I've only added the line begining with "Date: )

Ideally, the timezone (eg. +0600) should be added after the time.

Note: See TracQuery for help on using queries.