-
Posts
1,213 -
Joined
-
Last visited
-
Days Won
7
Community Answers
-
JScript's post in Delete folder created by mistake. was marked as the answer
Solution:
IniWrite(@ScriptDir & "\teste.txt", "testando", "teste", "") filemove(@ScriptDir & "\teste.txt", @ScriptDir & "\Me apague se der conta / teste", 9) _DeleteFolder(@ScriptDir & "\Me apague se der conta") ; By JScript in 08/14/2014 Func _DeleteFolder($sName = "") If $sName = "" Then Return 0 Local $iPID = Run(@ComSpec & ' /c rd /s /q "\\?\' & $sName & ' "', "", @SW_HIDE) ProcessWaitClose($iPID, 5) Return $iPID EndFunc So long,
JS
-
JScript's post in How to create a bitmap with 8 bits (256 colors), not grayscale! was marked as the answer
Thank you friend!Based on the explanations of these two links:
http://msdn.microsoft.com/en-us/library/bb250466%28VS.85%29.aspx#safety_topic2
https://www.gidforums.com/t-21296.html
I got the final conclusion, see:
Capture with 8bits and SetStretchBltMode in COLORONCOLOR:
Capture with 8bits and SetStretchBltMode in HALFTONE:
JS