Top 20 Microsoft Visual Basic 6.0 for PC Questions & Answers

0helpful
1answer

How to fix Error 1935 On Microsoft Visual C++ 2008. I did everything I know, and it didn't work.

Question edited for a lot more clarity. Question moved from Miscellaneous. "Error 1935" indicates that there is a problem with the Microsoft Visual C++ Redistributable package, which is required by MATLAB. The error typically means that the package failed to install properly.

Why do I get a Microsoft Visual C++ Redistributable error 1935 ...

MathWorks https://www.mathworks.com > matlabcentral > answers

Install Visual C++ 2008 fails: error 1935 (Win7 64bit)

Microsoft Community https://answers.microsoft.com > windows > forum > all Sep 10, 2011 - This error may occur when the Microsoft .NET Framework installation on the computer is damaged or is missing. Try the below step to reinstall ... Error 1935 while installing Visual C++ 2008 Sep 24, 2019 Cant install Microsoft Visual C++ 2008 Redistributable ... Dec 24, 2021 Windows 11 - Error 1935 while installing Visual C++ 2008 x64 ... Jan 22, 2023 error 1935 while installing Visual C++ 2008 Redistributabl Jul 13, 2014 More results from answers.microsoft.com ..
10/13/2023 11:12:36 PM • Microsoft Visual... • 30 views • 0 helpful votes
0helpful
1answer

I want to use my Active X Control in My

You might want to re-think the ActiveX Control. The state of hostility concerning web controls make what you're trying to do hard. The link you provided won't even display on my system. a PHP downloader is far easier to program combined with user authentication the security is a little better!
6/28/2017 3:57:03 AM • Microsoft Visual... • 71 views • 0 helpful votes
0helpful
1answer

How to add current date to folder name- updates automatically

newPath = "C:\Year\" & year(Date) Call MkDir(newPath) newPath = "C:\Year\" & year(Date) & "\" & month(Date) Call MkDir(newPath)
4/17/2017 8:36:03 PM • Microsoft Visual... • 146 views • 0 helpful votes
0helpful
1answer

Problems of Hotel 1.Hotel has 20single

And ?
5/9/2017 7:45:02 PM • Microsoft Visual... • 67 views • 0 helpful votes
0helpful
1answer

How can i develop a program that scrolls text on a display board?

Auto Hot Key is a good software to use. You can do macros for everything that you can do on a computer.
10/3/2014 11:12:51 AM • Microsoft Visual... • 101 views • 0 helpful votes
0helpful
1answer

What is the advantages of visual basic 6.0?

1) It's simple language. Things that may be difficult to program with other language can be done in Visual Basic very easily. 2) Because Visual Basic is so popular, There are many good resources (Books, Web sites, News groups and more) that can help you learn the language. You can find the answers to your programming problems much more easily than other programming languages. 3) You can find many tools (Sharewares and Freewares) on the internet that will Spare you some programming time. For example, if you want to ping a user over the internet in your program, Instead of writing the ping function yourself, you can download a control that does it, and use it in your program. Compare to other languages, Visual Basic have the widest variety of tools that you can download on the internet and use in your programs.
5/1/2014 10:32:46 AM • Microsoft Visual... • 224 views • 0 helpful votes
0helpful
1answer

C programming of inventory management for a local shop

Why do you program in c or visual basic if you can do the job with a database software access for example and if you want your problem to be solved you must provide more info
4/15/2014 7:14:48 AM • Microsoft Visual... • 100 views • 0 helpful votes
0helpful
1answer

How to make a horoscope code to visual basic 6.0

Private Function Horoscope(pBirthDate As Date) As String Dim pMonth As Integer Dim pDay As Integer pMonth = Month(pBirthDate) pDay = Day(pBirthDate) If pMonth = 3 Then If pDay >= 21 Then 'And pDay <= 31 Then Horoscope = "Aries" Else Horoscope = "Pisces" End If ElseIf pMonth = 4 Then If pDay >= 20 Then 'And pDay <= 30 Then Horoscope = "Taurus" Else Horoscope = "Aries" End If ElseIf pMonth = 5 Then If pDay >= 21 Then 'And pDay <= 31 Then Horoscope = "Gemini" Else Horoscope = "Taurus" End If ElseIf pMonth = 6 Then If pDay >= 22 Then 'And pDay <= 30 Then Horoscope = "Cancer" Else Horoscope = "Gemini" End If ElseIf pMonth = 7 Then If pDay >= 23 Then 'And pDay <= 31 Then Horoscope = "Leo" Else Horoscope = "Cancer" End If ElseIf pMonth = 8 Then If pDay >= 23 Then 'And pDay <= 31 Then Horoscope = "Virgo" Else Horoscope = "Leo" End If ElseIf pMonth = 9 Then If pDay >= 23 Then 'And pDay <= 30 Then Horoscope = "Libra" Else Horoscope = "Virgo" End If ElseIf pMonth = 10 Then If pDay >= 23 Then 'And pDay <= 31 Then Horoscope = "Scorpio" Else Horoscope = "Libra" End If ElseIf pMonth = 11 Then If pDay >= 22 Then 'And pDay <= 30 Then Horoscope = "Sagittarius" Else Horoscope = "Libra" End If ElseIf pMonth = 12 Then If pDay >= 22 Then 'And pDay <= 31 Then Horoscope = "Capricorn" Else Horoscope = "Sagittarius" End If ElseIf pMonth = 1 Then If pDay >= 20 Then 'And pDay <= 31 Then Horoscope = "Aquarius" Else Horoscope = "Capricorn" End If Else 'If pMonth = 2 Then If pDay >= 19 Then 'And pDay <= 29 Then Horoscope = "Pisces" Else Horoscope = "Aquarius" End If End If End Function
2/3/2014 2:51:51 AM • Microsoft Visual... • 655 views • 0 helpful votes
0helpful
1answer

How to print database in vb

To Print a Database you would require to create a Report. There were many ways of creating reports in Visual Basic 6.0. Hereby I am giving you an example of Data Report. Printing a Data Report Printing a data report can be accomplished in one of two ways. The user can click the Print button that appears on the data report in Print Preview mode (using the Show method), or you can programmatically enable printing using the PrintReport method. If an error occurs during printing, trap it in the Error event. Choosing to Display a Print Dialog Box When printing a report programmatically, you have two choices: to print by displaying the Print dialog box, or by printing without displaying the dialog box. To display the Print dialog box
  1. Add a CommandButton to a Form.
  2. In the button's Click event, place the following code.
DataReport1.PrintReport True The Print dialog box allows the user to select a printer, print to file, select a range of pages to print, and specify the number of copies to print. Note Printers must be installed on the computer in order to present a choice of printers. Printing Without a Dialog Box In some cases, you may wish to print the report without user intervention. The PrintReport method also gives you the option of selecting a range of pages to print, either all, or a specified range. To print without displaying the dialog box
  1. Add a CommandButton to a Form.
  2. In the button's Click event, place the following code:
DataReport1.PrintReport False Or, to specify a range of pages to print, use the code below: DataReport1.PrintReport False, rptRangeFromTo, 1, 2
3/11/2014 6:10:38 AM • Microsoft Visual... • 181 views • 0 helpful votes
0helpful
1answer

Write a computer program to change fahrenheit to centigrade

'Convert fahrenheit to centigrade dim cent as int cent = Val(Text1.Text) // Text1.text as your input cent = cent - 32 cent = cent * 0.5556 Text1.Text = cent // Converted and changed the same textbox
2/21/2014 10:59:22 PM • Microsoft Visual... • 153 views • 0 helpful votes
0helpful
1answer

I need to download the visual basic 6.0 now

you can download torrent file from this sitehttp://kickass.to/search/visual%20basic%206.0/
8/20/2013 2:03:00 PM • Microsoft Visual... • 565 views • 0 helpful votes
0helpful
1answer

Codes of c++

Microsoft Visual C++ 6.0 is an integrated development environment, or IDE, released by Microsoft in 1998. An IDE allows the user to create a computer application by using pre-designed functions, tools and other resources. Microsoft Visual C++ 6.0 features a source code editor, a compiler, a debugger and graphical user interface. Install Microsoft Visual C++ 6.0 on your computer. The installation process is fairly simple. Just follow the prompts. Run the program. A window will appear asking you to create a new application. On the "Project" tab, choose "Win32 Console Application." This means that you will create an application with an EXE file extension that can work with 32-bit Windows operating systems after compiling the project. Also, specify the project's name and the location where it will be saved. Click "OK." Click"OK" in the dialog box that will appear next. You will choose to start an open project. Double-click on the form in the center of the screen. Type: #include <iostream.h> int main() { cout <<"This is my first project!!! Hello everybody! \n" return 0; } Press "F5." This will build and run the project. Microsoft Visual C++ 6.0 will compile your project into an EXE file. Then it will open this file. You will see a new window open in which you'll see your greeting, " This is my first project!!! Hello everybody!" Press any key to exit the application. http://elvis.rowan.edu/~kay/cpp/vc6_tutorial/ http://msdn.microsoft.com/en-us/visualc/ee340952.aspx
2/3/2013 6:23:13 AM • Microsoft Visual... • 130 views • 0 helpful votes
0helpful
1answer

How to make barangay monitoring system using visual basic 6.0 with MySQL as database

You may email me @ [email protected] can make your barangay monitoring system.
10/7/2012 5:06:30 AM • Microsoft Visual... • 707 views • 0 helpful votes
0helpful
1answer

Open pdf files in vb6

11/28/2012 5:00:40 AM • Microsoft Visual... • 84 views • 0 helpful votes
0helpful
1answer

How to link a database with your project

search on google .you can find the code there
6/19/2012 7:26:32 AM • Microsoft Visual... • 60 views • 0 helpful votes
0helpful
1answer

How to read the specifications of the computer that we use

Which Operating System you are using if it is Windows 7 thenClick on StartYou will get the menuRight Click Computer option and left Click on PropertiesYou will get the Specs of the PC
6/22/2012 4:07:28 AM • Microsoft Visual... • 44 views • 0 helpful votes
2helpful
1answer

How to make a horoscope code to visual baisc 6.0

How to make horoscope using visual basic 6.0?
10/12/2011 4:33:44 AM • Microsoft Visual... • 1,242 views • 2 helpful votes
Not finding what you are looking for?
Microsoft Visual Basic 6.0 for PC Logo

314 questions posted

Ask a Question

Usually answered in minutes!

Top Microsoft Computers & Internet Experts

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

k24674

Level 3 Expert

8093 Answers

Brad Brown

Level 3 Expert

19187 Answers

Are you a Microsoft Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

View Most Popular

Microsoft Computers & Internet

  • Microsoft Computers & Internet

Most Popular Question

make horoscope code visual baisc 6 0

  • Computers & Internet
Loading...