Using the Multimedia Control I have no problems playing a commercial CD in the first CD Drive. What I would like to do, is to tell the program which CD Drive to play from. With MP3's it is easy because you use a filename with cda files you do not.
How can I tell the Multimedia Control to play...
I have a program I have packaged with both the Package and Deployment Wizard (for Win 98 users) and the Microsoft Visual Studio 6.0 Installer for NT/2000/XP users.
The program runs fine on a Win98 machine and on NT4.0 and XP machines.
It loaded OK on a 2000 Professional machine and then on...
Thanks for the help. However the DLL is being created unknowingly by the user to hold an encryted authorization code that is based on when the program is first run. So there is no DLL to install during the installation.
Why a DLL - I figure most people wouldn't wantr to mess with them...
This should be easy - but I'm missing it somewhere. I have an application I'm going to distribute. I want to place a file on the users computer where all of the dll files are stored (well at least most of them). I don't know what system the user is running Win95/98/NT/2000/XP - How can I...
I don't know much about pulling data in from Excel. Or do you mean that you want the information tableted as it is in Excel. The 10 x 3 box is that 3 inches wide by 10 inches high? Is there additional data ex. a seperate sheet per student or person? Will all the data fit inside a 10 x 3 box...
In the code below the "," is used as the field separator and the command Split is used
Dim S as string
dim T as Variant
'''Load the variable
For i = 0 to (combo1.listcount-2)
s = s + combo1.list(i) + ","
next i
s = s + combo1.list(combo1.listcount-1)
'''Load the...
The code below will draw a box around text printed. Note that at the end of each printer.print line that has text there is a ";" this is to hold the printer position to get the printer.CurrentX position.
The If Printer.CurrentX > EndX is used to insure that the longest line of text...
'''Open the file you want to change asume'c:\Data.dat'
'''BEFORE RUNNING SAVE A COPY OF YOUR DATA FILE IN A SAFE SPOT - JUST INCASE
Open "c:\data.dat" FOR INPUT AS #1
OPEN "C:\TEMP.DAT" FOR OUTPUT AS #2
while not eof(1)
Line Input #1, d$
d$ = ucase(d$)
''' Move...
Is it possible to print both landscape and portrait on the same page? If so, how? I have tried
Printer.Orientation = vbPRORPortrait
Printer.Print "This is Portrait"
Printer.Orientation = vbPRORLandscape
Printer.Print "This is Landscape"
Printer.EndDoc
VB6 does...
This is relatively simple
For i = 0 to (list1.listcount-1)
Printer.print list1.list(i)
next i
printer.enddoc
This assumes that list1 is the name of your list
I am using the MMControl to play mp3 files. Most of the time it works great - but once in awhile I will get a MP3 that plays - but no sound comes out. By "Plays but no sound comes out" I meanm, the MMCAudio.Position is changing. Most of the code I am using is below. I don't think...
I appoligize if this is not the correct Forem but it is a VB6 problem but more so a WinXP problem.
Just loaded WinXP (Home) and VB6 Professional runs fine - Except, on all of my forms the controls are all picking up the desktop colors. All my foregrounds and backgrounds are set using palette...
Since you only have two choices - why not use one button and alter its caption, or image displayed on toolbar icon
Example
Sub ChangeStatus()
If button.caption = "Read Only" then
button.caption = "Read/Write Mode
Other Logic Here
else
button.caption =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.