Search the web
Sign In
New User? Sign Up
hotbasic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 5462 - 5503 of 17146   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5462
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....
chordnl
Offline Send Email
Mar 1, 2005
8:00 am
5464
... 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....
pinoygabs
Offline Send Email
Mar 1, 2005
8:06 am
5465
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...
Don
don67geo
Offline Send Email
Mar 1, 2005
8:09 am
5466
... 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...
pinoygabs
Offline Send Email
Mar 1, 2005
8:15 am
5470
Gabs, vb program show ESS Audiodrive HB program shows Audiodrive gr. cor...
chordnl
Offline Send Email
Mar 1, 2005
8:40 am
5471
... 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...
pinoygabs
Offline Send Email
Mar 1, 2005
8:42 am
5472
Gabs, When pressing the start button it triggers the error, same as you have. cor ... show ... tried ... found....
chordnl
Offline Send Email
Mar 1, 2005
8:46 am
5473
Just checkit out at: http://www.purearea.net/pb/CodeArchiv/English.html gr. cor...
chordnl
Offline Send Email
Mar 1, 2005
8:47 am
5476
.build in hotlist.txt manual is not clear to. Does someone have a working example and how to use this the right way to use this. gr. cor...
chordnl
Offline Send Email
Mar 1, 2005
10:16 am
5480
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 ... ...
Tom Slonaker
tcslonaker
Offline Send Email
Mar 1, 2005
12:31 pm
5481
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...
Tom Slonaker
tcslonaker
Offline Send Email
Mar 1, 2005
12:39 pm
5482
... hotlist.bas in HotTrial.zip. J...
doctor electron
globalservices1
Offline Send Email
Mar 1, 2005
1:04 pm
5483
... Suggestion: If all the working examples posted in HotTrial, HotThing, HotToys, etc, are placed in a directory, the HotFind program can "lookup" instances...
doctor electron
globalservices1
Offline Send Email
Mar 1, 2005
1:23 pm
5484
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...
chordnl
Offline Send Email
Mar 1, 2005
1:58 pm
5485
... 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...
doctor electron
globalservices1
Offline Send Email
Mar 1, 2005
2:22 pm
5486
... 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*...
doctor electron
globalservices1
Offline Send Email
Mar 1, 2005
2:26 pm
5487
... Sorry, the above statement takes multi-line snippet to z1 delimited string. To extract the multi-line text from the z1-delimited string: ...
doctor electron
globalservices1
Offline Send Email
Mar 1, 2005
2:36 pm
5488
Jim, What I want is all the items like: sID,sAuthor,sKeywords,sKeywords,sSnippets saved as 1 list.item not several. cor ... in a...
chordnl
Offline Send Email
Mar 1, 2005
2:37 pm
5489
I just want to delete the chr$(0) form a string cor...
chordnl
Offline Send Email
Mar 1, 2005
2:57 pm
5490
... 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...
doctor electron
globalservices1
Offline Send Email
Mar 1, 2005
3:02 pm
5491
... a$=replacesubstr$(a$,chr$(0),null) for one or more chr$(0) at any arbitrary position. J...
doctor electron
globalservices1
Offline Send Email
Mar 1, 2005
3:04 pm
5492
Jim, a$=replacesubstr$(a$,chr$(0),null) Does not remove chr$(0) cor...
chordnl
Offline Send Email
Mar 1, 2005
3:29 pm
5493
... $APPTYPE CONSOLE defstr z1=chr$(0) defstr a$="a"+z1+"b" print a$;space; a$.length a$=replacesubstr$(a$,chr$(0),null) print a$;space; a$.length PAUSE END ...
doctor electron
globalservices1
Offline Send Email
Mar 1, 2005
4:05 pm
5494
... 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...
doctor electron
globalservices1
Offline Send Email
Mar 1, 2005
4:11 pm
5495
... 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)...
doctor electron
globalservices1
Offline Send Email
Mar 1, 2005
4:27 pm
5496
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 =...
-Alex-
fconx_aho
Offline Send Email
Mar 1, 2005
8:25 pm
5497
Thanks Alex, You had the same idea as me :-) gr, cor...
chordnl
Offline Send Email
Mar 1, 2005
9:26 pm
5498
... 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...
pinoygabs
Offline Send Email
Mar 1, 2005
11:12 pm
5500
... Please see hotlocal.bas in HotTrial.zip. Text search (HotFind) of the manual and source code examples (*.bas files) provides keyword (goto, sub, etc)...
doctor electron
globalservices1
Offline Send Email
Mar 2, 2005
4:48 am
5503
... 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...
Don
don67geo
Offline Send Email
Mar 2, 2005
5:06 am
Messages 5462 - 5503 of 17146   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help