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 TouchToneTommy 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. INeedSomeSeriousHelp

    Showing a video

    Private Sub Command5_Click() MMControl1.DeviceType = "AviVideo" MMControl1.FileName = "C:\WINDOWS\Desktop\DevTheBird.avi" MMControl1.Command = "Open" MMControl1.From = 0 MMControl1.Command = "Play" End Sub Follow this exam and let me know if it helps glenn
  2. INeedSomeSeriousHelp

    richtextbox not saving to access?

    When I add a text control and connect it via the DataField, DataMember and DataSource = (DataEnvironment) properties, it saves properly to an access database...but now I would rather use the RichTextBox (more powerful), but when I connect as described above with this RichTextBox, it doesn't save...
  3. INeedSomeSeriousHelp

    Crystal Report vs. Data Report Object

    I'm trying to learn the differences between the M.S. Data Report Object and Crystal Reports. How much easier, better, etc. is Crystal Reports. Thanks Glenn
  4. INeedSomeSeriousHelp

    Data Report Object vs Crystal Reports

    I hope I explain this correctly so you can help me. I have a database (Access) with multiple Tables. For the Exam Table, I have many child commands from this Exam Table. When I went to use the Data Report Object, I believe it only let me place fields from one child command into the details...
  5. INeedSomeSeriousHelp

    Rich Text Box not printing top 2 lines of 2nd page

    I am using the below code to print a rich text box named txtTestFile. The problem is the top 2 lines of the 2nd page are not printing...any ideas? Someone told me that a certain flag has to be set... I have no idea how to do that if that would help. Could you add the code to the below if it may...
  6. INeedSomeSeriousHelp

    How to print a document from VB^

    It is actually a word document. I was previously using a text document but I learned that there are problems with formating a text file so I changed it to a word document....I'm just not sure how to print the word document from within the VB6 environment. Thank you Glenn
  7. INeedSomeSeriousHelp

    How to print a document from VB^

    Open ("JD.doc") For Append As #1 Write #1, strJobDescription txtJobDescription = strJobDescription Close #1 The above is a document I use in my project..I know how to print a form in VB6 (PrintForm)...but I can't figure out how to simply print a document that I use in an application...
  8. INeedSomeSeriousHelp

    Code to change users screen resolution automatically

    I have written an application that must be run under 800X600 screen resolution. Currently, the user would have to change to this resolution every time they use my program. How do I code my program to detect and automatically change the user's computer screen resolution to my required 800X600...
  9. INeedSomeSeriousHelp

    Runtime error 424: Object Required

    Hello While testing my program, sometimes when I click the Enter button, I get the above Runtime error 424: Object Required. The user is not going to be instructed to select the Enter button but if they do accidently, I don't want the program to come to a crash as it currently does. Why in...
  10. INeedSomeSeriousHelp

    How to determine the memory requirement for your vb application

    When I release my program for sale, I need to display the Computer spec's required to run the program (OS: Windows 98, ME, etc...) the Disk Space required as well as the Memory to run the program. I have the first two completed but how do I determine the memory requirement to run my application...
  11. INeedSomeSeriousHelp

    Do I have to mention that I used Visual Basic 6 Professional Edition

    Hello. I am a relatively new programmer so please put up with my question...but I have an application I am about to release for sale for a specific medical industry. Do I have to mention somewhere in the program that I used Visual Basic 6 Professional Edition to create it? If so, can you direct...
  12. INeedSomeSeriousHelp

    My application runs on Windows 98 & ME but not XP!

    I was using someone else's computer when I installed the setup files....and I have never used XP before so I'm not sure about this log in issue...I did find the application under the Program Files folder and as mentioned, it did start but stopped once it came for the image control in the title...
  13. INeedSomeSeriousHelp

    My application runs on Windows 98 & ME but not XP!

    Nothing is different...I have run setup the same identical way on a Windows 98 and XP machine and it just doesn't run on the XP. glenn
  14. INeedSomeSeriousHelp

    My application runs on Windows 98 & ME but not XP!

    Please help me. I have created an application which won't run on Windows 2000 and XP. The setup files allow everything to be installed on the computer but when I double click on the .exe file...the program starts perfectly but then I get the following error message as the title screen is...

Part and Inventory Search

Back
Top