Search found 236 matches

by Cuadrix
03 Jun 2019, 22:20
Forum: Ask for Help (v1)
Topic: How to read a list and copy files? Topic is solved
Replies: 2
Views: 928

Re: How to read a list and copy files? Topic is solved

Loop, Read, %ListFileLocation% FileCopy, %SearchLocation%\%A_LoopReadline%.*, %Destination% ; You can replace * with a file extension e.g. jpg , otherwise it will just copy the matched file regardless of the extension Return how can I copy the files that exactly match the list? Your code doesn't ma...
by Cuadrix
29 May 2019, 18:39
Forum: Off-topic Discussion
Topic: Gods don't exist.
Replies: 64
Views: 17224

Re: Gods don't exist.

joedf wrote:
29 May 2019, 18:33
Agnostic NOT EQ Atheist
Ofcourse. That's because they deal with two different things.
Gnosticism/agnosticism deals with knowledge, and theism/atheism deal with belief.
An atheist can be both agnostic and atheist, which is what the overwhelming majority of atheists are.
by Cuadrix
29 May 2019, 18:32
Forum: Off-topic Discussion
Topic: Gods don't exist.
Replies: 64
Views: 17224

Re: Gods don't exist.

The whole of persons life is what ammounts to his/her current beliefs. That doesn't invalidate what I said. I only want you to realize one thing for now, so here we go; The above is without a doubt true. Now what causes it to be true? The answer is external influence from external sources such as b...
by Cuadrix
29 May 2019, 15:26
Forum: Off-topic Discussion
Topic: Gods don't exist.
Replies: 64
Views: 17224

Re: Gods don't exist.

I think i have already made my point clear: atheists (usually) hold that god doesn't exist as a premise. You forgot something VERY critical. We hold that premise because of all the evidence that goes against any magic man in the sky existing. You on the other hand hold the premise that a god exists...
by Cuadrix
28 May 2019, 18:13
Forum: Off-topic Discussion
Topic: Gods don't exist.
Replies: 64
Views: 17224

Re: Gods don't exist.

This mammoth is entirely yours and it's ridicule is NOT transferable to the conceptual god idea we have been putting forward here. Almost everything you said is true, but you don't seem to be getting my underlying point; What if someone actually believed in Momo the Mammoth creating the universe? W...
by Cuadrix
28 May 2019, 12:59
Forum: Off-topic Discussion
Topic: Gods don't exist.
Replies: 64
Views: 17224

Re: Gods don't exist.

The only logical fallacy I see here is you assuming your specific gods existence without any real evidence whatsoever, then saying that our god "claims" are fallacies when both claims are actually on the same ground level. There is zero evidence of any of them. So, let me ask you a question: Do you ...
by Cuadrix
28 May 2019, 04:55
Forum: Off-topic Discussion
Topic: Gods don't exist.
Replies: 64
Views: 17224

Re: Gods don't exist.

It's an objective fact of reality that our lord and savior Momo the Mammoth created the universe. Proof? My butt clenched so hard it expanded and swallowed my chair.
by Cuadrix
27 May 2019, 18:07
Forum: Scripts and Functions (v1)
Topic: [DllCall] Pseudo wrapper for common DLL's
Replies: 8
Views: 2649

Re: [DllCall] Pseudo wrapper for common DLL's

burque505 wrote:
27 May 2019, 14:34
turns out my permissions are hammered on the Win7 machine. I'm running subinacl on it now to try to reset everything to default permissions
Uh. I see, glad you found the source of the crashing.

I edited the script for better compatibility with custom Dll's.

:beer:
by Cuadrix
27 May 2019, 09:55
Forum: Scripts and Functions (v1)
Topic: [DllCall] Pseudo wrapper for common DLL's
Replies: 8
Views: 2649

Re: [DllCall] Pseudo wrapper for common DLL's

Once you you eventually get the .ahk file, you just do the same as I describe above; Include it in your script with the #Include directive, which after you can just use the name of the function instead of typing DllCall("Name of function", params...) The wrapper expects the Dll file to be in a consi...
by Cuadrix
27 May 2019, 08:58
Forum: Scripts and Functions (v1)
Topic: [DllCall] Pseudo wrapper for common DLL's
Replies: 8
Views: 2649

Re: [DllCall] Pseudo wrapper for common DLL's

It's pretty simple actually. You just run the script and a selection window will pop up, now you just choose your Dll that exports out functions such as user32.dll or advapi32.dll , and then it will create an .ahk file with the name of the original Dll. It should also work for custom Dll's, but I ha...
by Cuadrix
26 May 2019, 22:07
Forum: Scripts and Functions (v1)
Topic: [DllCall] Pseudo wrapper for common DLL's
Replies: 8
Views: 2649

Re: [DllCall] Pseudo wrapper for common DLL's

Thank you. Forgot about that. Gonna modify the script a little.

Edit;
Modified it so namespaces don't conflict with existing Autohotkey functions.
by Cuadrix
26 May 2019, 17:15
Forum: Scripts and Functions (v1)
Topic: [DllCall] Pseudo wrapper for common DLL's
Replies: 8
Views: 2649

[DllCall] Pseudo wrapper for common DLL's

Bare bones pseudo DllCall wrapper for functions in common Dll's; user32.dll , kernel32.dll , comctl32.dll , gdi32.dll How to use? Place dllcall32.ahk file somewhere, preferably in a library folder , and include it with the #Include directive. Now you can use the specific function without wasting ti...
by Cuadrix
24 May 2019, 07:39
Forum: Ask for Help (v1)
Topic: DllCall - Str vs AStr and WStr Topic is solved
Replies: 12
Views: 2224

Re: DllCall - Str vs AStr and WStr Topic is solved

Ah, that makes sense. Thanks for clarifying @just me
by Cuadrix
23 May 2019, 17:26
Forum: Ask for Help (v1)
Topic: DllCall - Str vs AStr and WStr Topic is solved
Replies: 12
Views: 2224

Re: DllCall - Str vs AStr and WStr Topic is solved

One more question occurred; Is it actually necessary to use UIntP for a DWORD* ? Can I not just use Ptr for all pointer related arguments even if the value which the pointer points to is updated by the function? Or is there something preventing this working out? And yes, I know that Ptr is generally...
by Cuadrix
23 May 2019, 05:24
Forum: Ask for Help (v1)
Topic: A Little more help with DllCall / Data Types Topic is solved
Replies: 2
Views: 587

A Little more help with DllCall / Data Types Topic is solved

Docs: BOOL CryptVerifyMessageHash( PCRYPT_HASH_MESSAGE_PARA pHashPara, BYTE *pbHashedBlob, DWORD cbHashedBlob, BYTE *pbToBeHashed, DWORD *pcbToBeHashed, BYTE *pbComputedHash, DWORD *pcbComputedHash ); Autohotkey type for BYTE is UChar . Since the above; BYTE *pbHashedBlob is a pointer to a BYTE , d...
by Cuadrix
23 May 2019, 01:28
Forum: Ask for Help (v1)
Topic: DllCall - Str vs AStr and WStr Topic is solved
Replies: 12
Views: 2224

DllCall - Str vs AStr and WStr Topic is solved

Can I just use Str instead of AStr and WStr when "functions only accept a specific type of string" ?
Or should I always use AStr for LPSTR, LPCSTR and WStr for LPWSTR, LPCWSTR ?
by Cuadrix
22 May 2019, 07:48
Forum: Off-topic Discussion
Topic: Gods don't exist.
Replies: 64
Views: 17224

Re: Gods don't exist.

Life Of Brian (1979) - clip: "You're all individuals" https://www.youtube.com/watch?v=QereR0CViMY Brian -"You don't need to follow me . You don't need to follow anybody . You've got to think for yourselves. You're all individuals" All -"We are all individuals" Brian -"You're all different" All -"Ye...
by Cuadrix
22 May 2019, 03:31
Forum: Off-topic Discussion
Topic: Gods don't exist.
Replies: 64
Views: 17224

Re: Gods don't exist.

nnnik wrote:
22 May 2019, 03:22
That doesnt contrdict my statement in the slightest but ok.
Yep, I just wanted to be more specific.
by Cuadrix
22 May 2019, 03:12
Forum: Off-topic Discussion
Topic: Gods don't exist.
Replies: 64
Views: 17224

Re: Gods don't exist.

nnnik wrote:
22 May 2019, 02:57
Everything exists for a reason
Everything exists because of a cause, and the chain reaction from that cause is why everything is how it is.
Nothing exists because of reasons, only because of a cause.
by Cuadrix
21 May 2019, 20:40
Forum: Off-topic Discussion
Topic: Gods don't exist.
Replies: 64
Views: 17224

Re: Gods don't exist.

Baby John is certainly not the same brain as John the adult. Yet, we tend to say they are one and the same. If Elder John is later plaged by dementia and dies of old age, which of them should reach the afterlife?
Good question. I don't know.

So how do you know a god exists?

Go to advanced search