Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - SW

Pages: [1]
1
Programs / Re: Steve64 Repo
« on: August 19, 2019, 05:45:58 am »
thanks for adding default compression in QB64.
But it bit outdated. What about something better... like LZ4 ?

2
Programs / Re: Spell It Aloud (Help Requested)
« on: August 05, 2019, 01:18:42 pm »
congratz, Steve!

I mind its good to add multi lingual support by adding ".\en\Alphabet Sounds\" and "".\en\Word Sounds\". So you can add other pronounces(languages) for same images.

3
Programs / Re: Tank Walls 2
« on: July 05, 2019, 03:28:52 am »
w/o wall shoot and turn any side to get funny guided shell :)

4
Programs / Re: 7z Test Cracker
« on: June 25, 2019, 09:26:33 pm »
10 chars its too long to bruteforce thru console calls...
Need more info what might be in pass i.e. some word(s) and position.

may be better use 7z API (i.e. winapi 7z.dll) ?

5
QB64 Discussion / VB to QB64 converting Win API calls
« on: June 14, 2019, 05:13:05 pm »
Just code samples for VB and QB64 convertion. Not found something like this, so can be usefull.

sample #1
Code: Visual Basic: [Select]
  1. Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (Destination As Long, Source As Long, ByVal Length As Long)
Code: QB64: [Select]
  1.      SUB CopyMemory ALIAS "RtlMoveMemory" (Destination AS LONG, Source AS LONG, BYVAL Length AS LONG)

sample #2
Code: Visual Basic: [Select]
  1. Declare Function GetTickCount Lib "kernel32" () As Long
Code: QB64: [Select]
  1.     FUNCTION GetTickCount&
Pay attention! "as Long" transform to suffix "&"





6
QB64 Discussion / Re: FOR i = 1 TO 0 is slow?
« on: June 11, 2019, 11:57:01 pm »
Win7 SP1 on i7 2600
 [ You are not allowed to view this attachment ]  

Pages: [1]