Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. papayac

    CDAudio and muliple CD Drives

    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...
  2. papayac

    Error 429 Win 2000 Only

    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...
  3. papayac

    Finding the DLL's in VB6

    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...
  4. papayac

    Finding the DLL's in VB6

    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...
  5. papayac

    String

    What does the string you are extracting the number of parts from look like?
  6. papayac

    printing within a box

    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...
  7. papayac

    Is it possible to store the list from a combo box in a variable???????

    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...
  8. papayac

    printing within a box

    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...
  9. papayac

    Changing case in text file to Uppercase

    '''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...
  10. papayac

    Is IT Possible?? Printing landscape and portrait on the same page

    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...
  11. papayac

    Printing

    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
  12. papayac

    personal data form

    Where are you storing the data? In other words where are you holding the information you do not want duplicated?
  13. papayac

    MMControl - Sometimes - no sound

    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...
  14. papayac

    WinXP changes all colors to Desktop color scheme

    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...
  15. papayac

    Programmatically Depress Toolbar Button

    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 =...
  16. papayac

    Package & Deploy & Dependency Files

    Wendas I have not experienced this problem myself - but I have heard of it before. From my recollection the solution typically has been to use a third party package and deploy program.
  17. papayac

    Securing Distributed Software

    I'm distributing a program that as the norm goes out as a demo and after x days expires. It would be easy to just grab the date installed and deavtivate after X days. The problem with this as I see it, is that just reinstalling the demo would give the user another X days. How can I prevent...

Part and Inventory Search

Back
Top