Microsoft Visual Basic 6.0 for PC Logo

Related Topics:

A
Anonymous Posted on Aug 08, 2013

Creating a horoscope code in visual basic - Microsoft Visual Basic 6.0 for PC

1 Answer

dagem aberham

Level 2:

An expert who has achieved level 2 by getting 100 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

Guru:

An expert who has written 7 tips or uploaded 3 video tips

  • Expert 123 Answers
  • Posted on Feb 19, 2019
dagem aberham
Expert
Level 2:

An expert who has achieved level 2 by getting 100 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

Guru:

An expert who has written 7 tips or uploaded 3 video tips

Joined: Jun 04, 2011
Answers
123
Questions
4
Helped
52749
Points
604

5 Related Answers

Anonymous

  • 174 Answers
  • Posted on Jun 09, 2009

SOURCE: can u tel me how to create a setup.exe in Visual basic

hi,
the process of getting a single 'setup' file is known as 'software packaging'. There are certain software which can do this for you. (no need to crack your head)

http://www.iterating.com/productclasses/Software-Packaging/products

thanks.

Ad
gewiz

Rob Hill

  • 1480 Answers
  • Posted on Jun 16, 2009

SOURCE: how to word wrap

Standard VB or .NET VB ?

smb_146

Syed Bilal

  • 252 Answers
  • Posted on Dec 05, 2009

SOURCE: visual basic

chck oout these pages
http://www.vbcode.com/

http://msdn.microsoft.com/en-us/library/aa984064%28VS.71%29.aspx

http://www.vbcodesource.com/vbLinks.php

http://www.a1vbcode.com/

http://www.codeguru.com/vb/


Anonymous

  • 1 Answer
  • Posted on Aug 03, 2010

SOURCE: visual basic code for atm machine

visual basic code of atm machine

Anonymous

  • 67 Answers
  • Posted on Aug 22, 2010

SOURCE: How to create a program

The "Hello World" program is always the first program you should write in any language, as it will show you very basic use of the language.
Here is a tutorial of a "hello world" program for VB6.
Hope this helps, good luck!

Ad

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

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
2helpful
1answer
0helpful
1answer
0helpful
1answer
0helpful
1answer

What is visual basic practical 6.0

Read the HOW TO section in the Help File of the program, or search the net for "what is visual basic practical"
2helpful
2answers

I dont know anything about vb and my teacher has given me big pro

There are many online help sites available especially for Visual Studio. One of my favorites (which happens to be free) is www.planet-source-code.com. Professionals and begginners alike post code they have created for the community. There is a comprehensive search tool to find examples of code that could prove to be helpful to you.
0helpful
1answer

How do copy a table from an access database in one folder to another access database in another folder through visual basic code

Simple method Open both tables (or create second) and copy each record from source to target through 'do while not eof' or 'for each' syntax.

Second solution create link in target DB for first table, and use SELECT INTO statment in SQL.
0helpful
1answer

Problem in creating report

Crystal Reports comes bundles with VB6 and is a good choice fro reports. Regards -- Joe
0helpful
1answer

Time ocx

try this
http://www.snapfiles.com/help/missingfiles.html
or try this also
http://www.visual-basic.com.ar/vb-ocx-files.htm
http://www.bigresource.com/VB-Created-activex-ocx-but-browser-wont-load-DEl2srDlaG.html

it might help u good luck
2helpful
2answers
Not finding what you are looking for?

1,746 views

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

Loading...