Search found 5 matches

by Primus
Fri Oct 21, 2011 5:37 pm
Forum: Coding Questions
Topic: AES Encryption [solved]
Replies: 2
Views: 997

Re: AES Encryption

Fantastic, thank you so much. I'm pretty sure this is the explaination for many disagreements I had with AES :D
by Primus
Fri Oct 21, 2011 2:15 pm
Forum: Coding Questions
Topic: AES Encryption [solved]
Replies: 2
Views: 997

AES Encryption [solved]

Hi,
I'm tinkering with some encryption stuff that doesn't exactly work at the moment, and I just can't figure out what the problem is.

Here's what should happen: Program 1 should write an AES-encrypted file, Program 2 should decrypt that file.

Program 1:

Structure Vector_struc
Byte.a[32 ...
by Primus
Fri Apr 15, 2011 7:15 am
Forum: Windows
Topic: [SOLVED] Transparent Window
Replies: 7
Views: 5254

Re: [SOLVED] Transparent Window

Found a solution myself: I use a parent window that has the same background as the main window. That way, the background doesn't vanish if the gadgets of the main window are modified.
by Primus
Fri Apr 15, 2011 6:08 am
Forum: Windows
Topic: [SOLVED] Transparent Window
Replies: 7
Views: 5254

Re: [SOLVED] Transparent Window

I'm using a code like that to create a transparent window, but I encountered a problem:

When hiding and un-hiding gadgets, the desktop shines through for the glimpse of a second.

It's just a short flash, but with a sufficient amount of gadgets, it becomes annoying. Besides, it doesn't look ...
by Primus
Mon Feb 07, 2011 5:19 pm
Forum: Tricks 'n' Tips
Topic: SetActiveWindow() applying to ALL windows
Replies: 3
Views: 1695

SetActiveWindow() applying to ALL windows

I discovered a simple way to set focus on a window, even if other programs have focus. As you know, the SetActiveWindow() function doesn't work in this situation.


Procedure SetActiveWindowAdvanced(WindowNumber)
StickyWindow(WindowNumber,1)
StickyWindow(WindowNumber,0)
EndProcedure


Maybe ...