Gabs, Could you upload the vb version. I'am also interested in sound,midi because i'am a musician. :-) I will look at it. Needed also midi implemetation. e.g....
... Hi Cor, It's already uploaded in Resources under the Files section. Can you help me convert this to HB? I'm sure this will be super-speedy when ported....
Gabs, Here is my test: [1] 1st run it doesn't show my soundcard. [2] I've changed all integer to short, then it show my soundcard. [3] I click start, nothing...
... Hi Don, If it doesn't do anything then that's good, it means the error routine was not triggered and the waveInOpen API was called properly. On my machine...
... Cor, Good to hear. Have you tried pressing the "Start" button? Does it show any error? If none, then I will have a bigger problem: Don just tried it and it...
GABS, I got the same error on a Dell Computer running Windows 2000. Tom ... http://groups.yahoo.com/group/hotbasic/files/Test%20Bed/fftaudio.BAS ... ...
Here is an updated version of InputBox. In the last version when the main sub was called, execution continued even though the main window was disabled. In...
... Suggestion: If all the working examples posted in HotTrial, HotThing, HotToys, etc, are placed in a directory, the HotFind program can "lookup" instances...
I have a file now with several z2's in 1 line However i cannot get rid of the chr$(0) when I want to place it in a edit object. defstr z1=chr$(0) defstr...
... By introduction, my proposal was to use z2 as the delimiter for fields in dbLIST -- because those fields could be parsed (.parse) into sLIST using z2. The...
... You must clear sList as the first statement sList.Clear in your FOR NEXT. Otherwise, your .parse statement will *add* to sList, whereas you want a *new*...
... tmp$=sList.Build(0,5,z2) dbList.additems tmp$ Understood, tmp$ above is a single record for your dbList. Think of your dbList as rows (.item) and columns...
... This makes a "table" (tab really works for console!): print a$; tab; a$.length Had not tried that before! No big conclusions yet, but I'm "Beginning to...
... Maybe the best idea is to use 0 as the delimiter for column fields in a record and 1 as the delimiter for subfields in a cell(row,column) defstr c0=chr$(0)...
Hi Cor, I don't know if I understand it right, but maybe this could be an alternative. -Alex- $apptype console $typecheck on defstr a = "Lastname" defstr b =...
... Cor and Tom, Hmmm...strange. Only in Don's machine the code didn't trigger the error. And I've been checking several times the VB code version and there's...
... Please see hotlocal.bas in HotTrial.zip. Text search (HotFind) of the manual and source code examples (*.bas files) provides keyword (goto, sub, etc)...
... Hey guys, have you noticed I've mentioned change the INTEGER to SHORT? VB Integer is 2 bytes data-type. Change them to SHORT or WORD then see if it works...