Author |
Message |
Topic: Table positioning |
SnarlingSheep
Replies: 17
Views: 34429
|
Forum: General Help Posted: Wed Jan 26, 2011 8:12 pm Subject: Table positioning |
Quick guess..
Under each: %x = @sendmsg(~TABLE1,$1013,@index(TABLE1),0)
Add: %x = @sendmsg(~TABLE1,$1060,@index(TABLE1),0)
That's the ID for LVM_SETHOTITEM.. like I ... |
Topic: Using Global Atoms to Send/Receive between 2 programs |
SnarlingSheep
Replies: 3
Views: 17732
|
Forum: Advanced VDS 5 Source Code Posted: Wed Oct 27, 2010 6:30 pm Subject: Using Global Atoms to Send/Receive between 2 programs |
If you look, the info box isn't getting the text from the edit box, but rather storing what is in the edit box in an atom and then reading it from the atom.
Or if there are 2 instances open, the 1st ... |
Topic: [re-]beginners help. basic file open and save button pushes |
SnarlingSheep
Replies: 5
Views: 15203
|
Forum: General Help Posted: Sun Jun 27, 2010 12:41 pm Subject: [re-]beginners help. basic file open and save button pushes |
Things have changed a lot since VDS 2, and most of us here probably don't remember most of the syntax.
Moving to the most recent demo version will be your best starting point.
Then you will need tim ... |
Topic: WAV. Recording Alternative |
SnarlingSheep
Replies: 8
Views: 21547
|
Forum: General Help Posted: Sat May 29, 2010 4:03 pm Subject: WAV. Recording Alternative |
PK, I believe he was trying to record silence, and then check for anything that didn't match that(silence).
Any tips or info on checking the input for sound/level? I couldn't find anything useful. |
Topic: WAV. Recording Alternative |
SnarlingSheep
Replies: 8
Views: 21547
|
Forum: General Help Posted: Sat May 29, 2010 2:40 pm Subject: WAV. Recording Alternative |
That seems like a lot of disk activity.. There has to be a better way to accomplish what you are looking for.
If you have the ability to rewire your doorbell to the input of your soundcard, couldn't ... |
Topic: still alive? |
SnarlingSheep
Replies: 19
Views: 48730
|
Forum: Miscellaneous Posted: Wed May 19, 2010 2:38 pm Subject: still alive? |
I died... and kicking! |
Topic: Advanced Tab Control DSU Questions |
SnarlingSheep
Replies: 3
Views: 15129
|
Forum: General Help Posted: Thu Apr 08, 2010 1:02 pm Subject: Advanced Tab Control DSU Questions |
Codescript doesn't seem to come around anymore, not sure if anyone else can help you. |
Topic: Find a window from a task |
SnarlingSheep
Replies: 11
Views: 22671
|
Forum: General Help Posted: Wed Apr 07, 2010 12:18 am Subject: Find a window from a task |
First it should be GetWindowModuleFileNameA since there is an ANSI and Unicode version of this function in the API.
You forgot the Return type in the @lib() function.
The 2nd param of GetWindowModul ... |
Topic: Find a window from a task |
SnarlingSheep
Replies: 11
Views: 22671
|
Forum: General Help Posted: Tue Apr 06, 2010 12:43 pm Subject: Find a window from a task |
I'm thinking you would have to loop through all windows and check to see if the process they belong to matches the one you want to close.
Check out GetWindowModuleFileNameA:
http://msdn.microsoft.co ... |
Topic: Random list |
SnarlingSheep
Replies: 4
Views: 11887
|
Forum: General Help Posted: Sun Apr 04, 2010 1:34 pm Subject: Random list |
Wouldn't it be easier to play random songs from the list, rather than randomize the list?
RANDOM @datetime(ddyymmnnss)
%%song = @item(1,@random(0,@pred(@count(1)) ... |
Topic: DLL, loadlib and @lib() |
SnarlingSheep
Replies: 4
Views: 16714
|
Forum: General Help Posted: Thu Mar 04, 2010 4:25 pm Subject: DLL, loadlib and @lib() |
And if that doesn't work, try this:
%X = @binary(WORD,01)
%Y = @binary(WORD,01)
%R = @binary(WORD,50)
%G = @binary(WORD,50)
%B = @binary(WORD,50)
%I = @ ... |
Topic: DLL, loadlib and @lib() |
SnarlingSheep
Replies: 4
Views: 16714
|
Forum: General Help Posted: Thu Mar 04, 2010 4:18 pm Subject: DLL, loadlib and @lib() |
This is where I think VDS really drops the ball. It handles API types/structures terribly.
Here's what I think you need to replace your %T code with:
REM Values 01-99
%X = 01
%Y = 01
%R = 50
% ... |
Topic: Is this a bug in the debug-mode of the IDE? |
SnarlingSheep
Replies: 7
Views: 17377
|
Forum: General Help Posted: Sun Feb 28, 2010 3:08 pm Subject: Is this a bug in the debug-mode of the IDE? |
I assumed VDS needed to know there was a void param, not the function. |
Topic: Is this a bug in the debug-mode of the IDE? |
SnarlingSheep
Replies: 7
Views: 17377
|
Forum: General Help Posted: Sun Feb 28, 2010 1:55 pm Subject: Is this a bug in the debug-mode of the IDE? |
Didn't debug, but don't you need the NIL param in GetLastError?
@lib(KERNEL32,GetLastError,int:,nil:) |
Topic: Problems reading from a pipe using API |
SnarlingSheep
Replies: 4
Views: 20306
|
Forum: Advanced Help for VDS 5 & Up Posted: Fri Feb 26, 2010 5:25 pm Subject: Problems reading from a pipe using API |
Try this code I just posted for what I think is the easiest way to communicate between your VDS apps:
http://www.vdsworld.com/forum/viewtopic.php?p=35444 |
|