21 May '13 - 12:57 *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
 
   Home   Help Search Login Register  
Pages: [1]
  Reply  |  Print  
Author Topic: Bass library best library in his kind for vb!  (Read 1561 times)
NiTrOwow
Posts: 9


« on: 14 Apr '12 - 21:56 »
Reply with quoteQuote

Hi there,

I'm new at the forums. But just want to thank un4seen software a ton! For the great lib!!!

Using it in lots of my vb projects playing around with it and its the best lib i've seen so far!


Snapshot made with Wss-data dot com Screen Capture v1.0

Preview of software:
http://www.youtube.com/watch?v=b-NtQF8bK8k

Using version 2.4.7.1 of bass.dll

I knew some people are doing damn annoying about the dll that needs to be next to the ripper. So i simple added the dll lib to a resource file & unpack it @form_load and then let it load the lib.
Problem solved

Add-Ins > Add-In Manager > VB 6 Resource Editor
Load it.
Add a new reource file save it to whatever folder. Or just in the source folder (what i always do)
And then double click the .RES right in the top.
Like this:


Browse bass.dll add it and you're done.

if dir(app.path & "\bass.dll") = vbnullstring then
dim lib1 as byte
lib1= LoadResData(101, "CUSTOM")
open app.path & "\bass.dll" for binary as #1
put #1, ,lib1
close #1
end if

Thanks un4seen software! <3

Best Regards,
NiTrOwow
« Last Edit: 19 Apr '12 - 19:25 by NiTrOwow » Logged
gnag
Posts: 160


« Reply #1 on: 15 Apr '12 - 15:34 »
Reply with quoteQuote

Interesting Tool, does your Ripper rip each Track separately or only the whole Stream as one File?
Logged
NiTrOwow
Posts: 9


« Reply #2 on: 16 Apr '12 - 22:38 »
Reply with quoteQuote

Interesting Tool, does your Ripper rip each Track separately or only the whole Stream as one File?

Separately to all new files with as filename the stream songname.

NiTrOwow
Logged
NiTrOwow
Posts: 9


« Reply #3 on: 19 Apr '12 - 19:09 »
Reply with quoteQuote

I only have some crashes sometimes. I have no clue how to fix this.



The instruction at 0x773a3ab3 referenced memory at 0xf230be9a. A read or write operation on memory failed: read.

Click OK if you want the program to terminate.

Problem signature:
   Problem Event Name: APPCRASH
   Application Name: Audio Stream - Ripper v1.0.exe
   Application Version: 1.1.0.0
   Application Timestamp: 4f89c98c
   Fault Module Name: msvcrt.dll
   Fault Module Version: 7.0.7601.17744
   Timestamp of error module: 4eeaf722
   Exception Code: c0000005
   Exception Offset: 00009d8c
   OS Version: 6.1.7601.2.1.0.256.1
   Locale ID: 1043
   Additional Information 1: 7919
   Additional Information 2: 791920c7be5b29c094c38dfb32e50696
   Additional Information 3: f184
   Additional Information 4: f1844ff2ca7e160b3654d3adc496ec2f

OS: Windows 7 Ultimate 64-bit build 7601 SP1
Runtimes installed:
.NET Framework 4 Client Profile
.NET Framework 4 Extended
.NET Framework 4 Multi-Targeting Pack
And


Maybe someone knows how to get this fixed.

NiTrOwow
« Last Edit: 17 Jul '12 - 16:09 by NiTrOwow » Logged
NiTrOwow
Posts: 9


« Reply #4 on: 17 Jul '12 - 16:10 »
Reply with quoteQuote

I still have some crashes. Someone knows how to get this fixed?
Logged
Ian @ un4seen
Administrator
Posts: 15253


« Reply #5 on: 17 Jul '12 - 17:37 »
Reply with quoteQuote

Unfortunately, the info above doesn't tell us very much about the crash. Do you have a call stack? If not, please try adding some logging in your app to narrow down where it is crashing, eg. you could write a "calling X" line just before calling a function and an "X returned" line just after it returns.
Logged
NiTrOwow
Posts: 9


« Reply #6 on: 19 Jul '12 - 15:12 »
Reply with quoteQuote

I will enable logging, thanks for the informantion. I have some beta testers for my app. I will reply as soon as possible!

Thanks for looking intro this!

Regards,
NiTrOwow
Logged
NiTrOwow
Posts: 9


« Reply #7 on: 19 Jul '12 - 20:16 »
Reply with quoteQuote

Some crash logs from my new built in crash logger,

http://pastebin.com/mSxccHiQ
http://pastebin.com/X35feQPv

Always DoMeta before the hard crash.
 
I've modded that sub myself idk what the problem is maybe i forgot something. Maybe working with a Integer s not that smart, Boolean s the way to go?

DoMeta sub:
http://pastebin.com/YY9AePdp

Regards,
NiTrOwow
« Last Edit: 19 Jul '12 - 20:19 by NiTrOwow » Logged
Ian @ un4seen
Administrator
Posts: 15253


« Reply #8 on: 20 Jul '12 - 16:39 »
Reply with quoteQuote

Can you confirm which line in the DoMeta function it is crashing at? Looking at it, I guess the problem may be this line...

        TmpNameHold = Mid(p, 1, InStr(p, ";") - 2)

If the ';' character isn't present, I guess that'll be a problem. You could add a check for that. I'm not a VB user myself, but perhaps it would look something like this...

        if InStr(p, ";") = 0 Then Exit Sub
Logged
NiTrOwow
Posts: 9


« Reply #9 on: 20 Jul '12 - 23:39 »
Reply with quoteQuote

Can you confirm which line in the DoMeta function it is crashing at? Looking at it, I guess the problem may be this line...

       TmpNameHold = Mid(p, 1, InStr(p, ";") - 2)

If the ';' character isn't present, I guess that'll be a problem. You could add a check for that. I'm not a VB user myself, but perhaps it would look something like this...

       if InStr(p, ";") = 0 Then Exit Sub

Ah okee thanks. Some guys i know are still testing the app for me. Because i have not really any big crashes. I have to wait for another log where i added much more log entries after all the calls and functions.

Thanks for checking this.
I will post updates here if i have them.

Regards,
NiTrOwow
Logged
NiTrOwow
Posts: 9


« Reply #10 on: 2 Sep '12 - 12:03 »
Reply with quoteQuote

Havn't got anything so far. The users who used my program stopped using it idk.
I have seen it crashes several times but still can't find whats wrong Sad

Anyways i made something new.



Looks cool right? Smiley
Logged
spiritdead
Posts: 50


« Reply #11 on: 2 Sep '12 - 18:33 »
Reply with quoteQuote

Havn't got anything so far. The users who used my program stopped using it idk.
I have seen it crashes several times but still can't find whats wrong Sad

Anyways i made something new.



Looks cool right? Smiley

 i have a advanced music software using bass.dll but i need 2 functions ( record streamurl and waveform) you can help me ? i can help you Cheesy
« Last Edit: 2 Sep '12 - 18:36 by spiritdead » Logged
Pages: [1]
  Reply  |  Print  
 
Jump to:  

Powered by SMF 1.1.18 | SMF © 2013, Simple Machines