Search found 30 matches

by eriksradio
Tue Aug 24, 2004 11:08 pm
Forum: Off Topic
Topic: WinXP SP2: Enormous compability problem
Replies: 17
Views: 4964

Nasty Firewall Bug????????

I installed SP2 and it correctly identified ZoneAlarm and passed firewall
control to ZoneAlarm.

I then deactivated ZoneAlarm, and from the startup, so it was not running.

When I restarted the computer there was no firewall warning and I had a
session on the internet ...
by eriksradio
Sun Aug 15, 2004 12:41 am
Forum: Announcement
Topic: SoundEditor 19-4
Replies: 12
Views: 4520

I have my fingers crossed too !!!
by eriksradio
Sat Aug 14, 2004 3:17 am
Forum: Announcement
Topic: SoundEditor 19-4
Replies: 12
Views: 4520

Hi Flype

I am afraid I have had no luck with applying an FFT to the scope display.
I have succeeded in VB with raw code by "Deeth" (google will find it)
I tried to use this with your original program but no luck.
Deeth also has a DLL called FFT.DLL which I tried to use.
Then "FloHimself" made a PB ...
by eriksradio
Fri Aug 13, 2004 7:26 am
Forum: Announcement
Topic: SoundEditor 19-4
Replies: 12
Views: 4520

If the gang could add
an FFT to the scope display
it would be magic.
by eriksradio
Fri Aug 06, 2004 10:34 pm
Forum: General Discussion
Topic: How to record sounds from a mike ?
Replies: 18
Views: 6125

Don't forget to close when finished or there may be a big memory leak.
Each individual may be closed selectively.

mciSendString_("close capture", 0, 0, 0)


mciSendString_("close all",0,0,0) does the lot.
by eriksradio
Tue Jun 22, 2004 10:48 pm
Forum: General Discussion
Topic: bored times... got an idea? please let me try
Replies: 8
Views: 2570

Hi Dreglor

No luck so far.
I am away for a week.
Often a break and fresh start might produce results.
by eriksradio
Tue Jun 22, 2004 2:16 am
Forum: General Discussion
Topic: bored times... got an idea? please let me try
Replies: 8
Views: 2570

That could be the problem, but with my knowledge of programming cannot fathom it out. As you say it seems to give the DLL the buffer as a word but needs doubles instead.
I will have a fiddle to see if I can get any results. Thanks for the clue.
by eriksradio
Tue Jun 22, 2004 12:28 am
Forum: General Discussion
Topic: bored times... got an idea? please let me try
Replies: 8
Views: 2570

Even more, sorry I forgot.

I have used the FFT display as a seperate part of the program.
The problem then is to save the incoming audio stream. The MCI commands work fine, but the sound card will not be shared in W98, so it fails. W98 will not do both at the same time. It is all OK in XP and ME ...
by eriksradio
Tue Jun 22, 2004 12:20 am
Forum: General Discussion
Topic: bored times... got an idea? please let me try
Replies: 8
Views: 2570

I forgot, I am not interested in hearing the sound.
Only seeing the display and saving it to file as already the program does.

The FFT display is used for tuning purposes in the Digital Program I hope to write in PB (I have it developed in VB6 and Delphi all OK). It is also used
to display ...
by eriksradio
Tue Jun 22, 2004 12:13 am
Forum: General Discussion
Topic: bored times... got an idea? please let me try
Replies: 8
Views: 2570

Yes, That was what it appeared to be, a very small buffer, 4 bytes. If it could be set to 512 (enough for satiisfactory definition) . 1024 would look nicer though.

The sound format I am interested in is
11025 ,16bit and mono.
This is what is needed in my program.
by eriksradio
Mon Jun 21, 2004 11:15 pm
Forum: General Discussion
Topic: bored times... got an idea? please let me try
Replies: 8
Views: 2570

Hi Dreglor

I have been trying to make a typical FFT sound display.

If you search for "sound capture" by "Flype" as a past submission.

It was a way of capturing to file sound and at the same time it showed a"scope type" display of the audio. I have modified this somewhat for my own needs but ...
by eriksradio
Tue Jun 01, 2004 10:44 am
Forum: Coding Questions
Topic: can PB launch a included EXE file ?
Replies: 33
Views: 15169

If you ever find out how, please let me know.

I saw some weird things done in VB which I could not understand.

The idea to allow a program to run after lodinng into memopry was to first load a fake program and run it. This fake could be just nulls and also has to be the exact size of the exe which ...
by eriksradio
Sun May 23, 2004 3:09 am
Forum: Coding Questions
Topic: Include exe and copy the file
Replies: 16
Views: 4452

Sorry Geo, I don't really know.

I got this example from the PURE AREA site.
I downloaded the complete Code Archive
There is a wealth of info and examples there, a must have
for newbies like me.

I program mostly in VB.
When I can't do it in VB, I can usually do it and more in PB

Have fun
by eriksradio
Sat May 22, 2004 11:33 pm
Forum: Coding Questions
Topic: Include exe and copy the file
Replies: 16
Views: 4452

This works for me if it is any help


If CreateFile(1, "filename.exe")
UseFile(1)
L1 = ?ExitProc - ?Inc
WriteData(?Inc, L1)
CloseFile(1)
Goto BeginProgram1
Inc :
IncludeBinary "filename.exe"
exitProc:
EndIf

BeginProgram1:
by eriksradio
Sun May 16, 2004 10:52 pm
Forum: Coding Questions
Topic: Program runs twice
Replies: 4
Views: 1466

Hi again Fweil,

I have the program working OK now.

With the many files handled in the same way, if I put the file I wish to run
at the head of the list, it now only runs once as expected.

That effect seems only if the run request immediately follows the unpacking.
I don't know if it is a bug, but ...