Custom Query (3933 matches)
Results (265 - 267 of 3933)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #481 | Completed | Add margin parameter to SplashTextOn | ||
| Description |
Text in SplashTextOn looks bad because it is too close to the Window border. With considerable programing effort, I believe I could do what I want by using GUICreate()and GUICtrlCreateLabel() instead, but since IMHO SplashTextOn is bad out of the box, the change should be made directly there. One uniform top, bottom, left, and right margin in pixels would be fine. Using 'en' units would be even better, so the padding could vary with font size. |
|||
| #494 | Rejected | Add more resource functions to WinAPI.au3 | ||
| Description |
_WinAPI_FindResource _WinAPI_FindResourceEx _WinAPI_SizeOfResource _WinAPI_LoadResource _WinAPI_LockResource _WinAPI_FreeResource Have attached the above functions to ticket. They may need alterations, the basics of them are working ok. |
|||
| #2346 | Completed | Add native FileSetEnd() based on _WinAPI_SetEndOfFile() | ||
| Description |
In native AutoIt there were added FileSetPos,FileGePos so the only one missing native file operation is FileSetEnd. FileSeEnd can be used (together with FileSetPos) to change size of file (truncating or expanding). Example for this is in HelpFile example for _WinAPI_SetEndOfFile() Set of all file operation UDF/native functions: _WinAPI_CloseHandle - FileClose _WinAPI_CreateFile _WinAPI_FlushFileBuffers - FileFlush _WinAPI_GetFileSizeEx - FileGetSize _WinAPI_ReadFile - FileRead _WinAPI_SetEndOfFile _WinAPI_SetFilePointer - FileSetPos _WinAPI_WriteFile - FileWrite --- Example for change file size by UDF: #include <WinAPI.au3>
; truncate file size to 12 bytes
$hFile = _WinAPI_CreateFile('test.txt', 2, 4)
_WinAPI_SetFilePointer($hFile, 12)
_WinAPI_SetEndOfFile($hFile)
_WinAPI_CloseHandle($hFile)
|
|||
