No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
not sure if the MAC address is the way to go, what if you change nics. maybe the windows serial or registered users name, from the system information. take a look here on how to access that information. [url]http://www.freevbcode.com/ShowCode.Asp?ID=3157[/url]
I'm using the VB6 Standard Toolbar Control. I would like to basically do this: [code] Private Sub MDIForm1.Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button) [/code] Which cannot be done. I'm looking for a some along these line. I have tried this code in a timer, but it seems to make the button click …
I have worked out a good way to replace a scrollbar with a graphical slider, and it works great. Now I'm on to the knobs. Anyone have an idea on the best way to approach this? I want to code them, and not use a component. First I was thinking …
is there a way to implement a graphical scrollbar? the vb6 one is kinda ugly.
Hello everyone, I'm a bit new to this forum, found some excellent posts that helped me alot on this new and advance project I'm working on. I'm creating a program to control Vinyl Mastering Equipment, and the audio that goes with it. The problem I'm faced with is accurate timing. …
Hey check out the FMOD Api.. [url]www.FMOD.org[/url] this is a fantastic audio engine for many langs, including VB6.
I have this in my code [code] Private Sub mnuOpen_Click() Dim result As FMOD_RESULT Dim cD As New cCommonDialog If channel Then Call FMOD_Channel_Stop(channel) End If Timer1.Enabled = 1 On Error GoTo ErrorHandler If (cD.VBGetOpenFileName(sFile, Filter:="Wave Files (*.WAV)|*.WAV|All Files (*.*)|*.*", _ DefaultExt:="WAV", Owner:=Me.Hwnd)) Then Timer1.Enabled = 1 result = FMOD_System_CreateSound(system, …
The End.
jayDC