Free Vb Coding Program - Trying to find one

Pages: 1, 2
free web hosting
Free Web Hosting, No Ads > CONTRIBUTE > Freebie Stuff

Free Vb Coding Program - Trying to find one

psychiccyberfreak
does anyone know where I can find a free copy of vb, but no luck. Is there a program that I can download to code in vb? I probably wont be using it to make cash, but you know.

Reply

cragllo
Yes, I would also like to know if there are any free programs out there...

Reply

Inspiron
Visual Basic.NET programming...?
Or just the codes ....?

You will need Visual Studio from Microsoft and its only paid version..

If its codes,
try these...

http://www.vb-helper.com/
http://reliableanswers.com/vb/help.asp
http://www.visualbasicforum.com/

There are many more VB Help on codings, try searching google..
http://www.google.com/search?q=vb+help&sou...=utf-8&oe=utf-8

Reply

snlildude87
I really do not think you can obtain a legal copy of Microsoft Visual Basic anywhere...heck, I don't even think there is an illegal copy.

The way I got my copy of Visual Basic is by taking a class at my school. My teacher had tons of copies of Microsoft Visual Basic Working Model Edition (because they came with the book), and she passed them out to the class. So I recommend that you take a class or buy a book with an MSVB CD included, then you will have a copy. smile.gif

Reply

psychiccyberfreak
No, I wanted to get a program. I understand it dosent need to be compiled, and it is interpreted, so can I just do this in notepad or something? I am going away to a coding school this summer, and I dont want to look like a poser there, so please help. I dont want pirated software, or cracks, or anything.

Reply

hype
It's paid version, as suggested by inspiron, so you cant get any of that outside, unless its pirated

Reply

Spectre
Microsoft did put out a version of Visual Basic called Working Model Edition or something like that, which was legally free, but wasn't able to compile projects to binary form. If you want to get it, try looking in Microsoft's Download Center. Other than that, your only option is to purchase the full version - you should be able to pick up Microsoft Visual Studio 6.0 for a relatively low price nowadays.

Reply

solankyno1
You have to purchase a legal copy of Visual Studio from the market. this is the only advice i can give u here at trap17 because we can't discuss other advices here. ...........

Reply

snlildude87
Actually, you don't really need to have a VB coding program although it helps a lot. Here's the full code of my Pascal program (generates the row of a Pascal triangle based on the desired row number of the user):

CODE
VERSION 5.00
Begin VB.Form frmPascal
  Caption         =   "Pascal Triangle"
  ClientHeight    =   2415
  ClientLeft      =   60
  ClientTop       =   345
  ClientWidth     =   4170
  BeginProperty Font
     Name            =   "MS Sans Serif"
     Size            =   9.75
     Charset         =   0
     Weight          =   400
     Underline       =   0   'False
     Italic          =   0   'False
     Strikethrough   =   0   'False
  EndProperty
  LinkTopic       =   "Form1"
  MaxButton       =   0   'False
  ScaleHeight     =   2415
  ScaleWidth      =   4170
  StartUpPosition =   2  'CenterScreen
  Begin VB.TextBox txtText
     Height          =   975
     Left            =   120
     MultiLine       =   -1  'True
     ScrollBars      =   2  'Vertical
     TabIndex        =   5
     Top             =   600
     Width           =   3975
  End
  Begin VB.CommandButton cmdGo
     Caption         =   "Go!"
     Enabled         =   0   'False
     Height          =   375
     Left            =   120
     TabIndex        =   3
     ToolTipText     =   "Generates the given row"
     Top             =   1680
     Width           =   1935
  End
  Begin VB.CommandButton cmdCopy
     Caption         =   "Copy"
     Height          =   375
     Left            =   2160
     TabIndex        =   2
     ToolTipText     =   "Copies the answer to clipboard"
     Top             =   1680
     Width           =   1935
  End
  Begin VB.TextBox txtRow
     Height          =   360
     Left            =   1680
     TabIndex        =   1
     Top             =   120
     Width           =   2415
  End
  Begin VB.Label Label1
     Caption         =   "By: Sang Nguyen"
     BeginProperty Font
        Name            =   "Times New Roman"
        Size            =   8.25
        Charset         =   0
        Weight          =   400
        Underline       =   0   'False
        Italic          =   -1  'True
        Strikethrough   =   0   'False
     EndProperty
     Height          =   255
     Left            =   120
     TabIndex        =   4
     Top             =   2160
     Width           =   1215
  End
  Begin VB.Label lblRow
     Caption         =   "Enter row to find:"
     Height          =   255
     Left            =   120
     TabIndex        =   0
     Top             =   120
     Width           =   1455
  End
End
Attribute VB_Name = "frmPascal"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdCopy_Click()
   Clipboard.Clear
   Clipboard.SetText txtText.Text
End Sub
Private Sub cmdGo_Click()
   Dim answer As String, Row As Double, X As Double
   
   Row = txtRow.Text
   If Row <= 170 Then
       For X = 0 To Row
           answer = answer & ", " & nCr(Row, X)
       Next X
       answer = Mid(answer, 2, Len(answer))
       txtText.Text = answer
   Else
       MsgBox "Highest number allowed is 170.", vbCritical, "Error"
       txtRow.Text = "170"
   End If
End Sub
Private Sub txtRow_Change()
   If IsNumeric(txtRow.Text) = True Then
       cmdGo.Enabled = True
   Else
       cmdGo.Enabled = False
   End If
   txtText.Text = ""
End Sub

This is an example of an .frm file, or a form file where you place controls on the slate. Basically, the code above looks exactly the same as the code in the VB code editor except for the first 87 lines. If you need help interpreting this, feel free to PM me or post and reply, and I'll be happy to help you. smile.gif

Oh, in case you don't believe that I coded that all by myself, take a look at the executable (no viruses, backdoors, trojans, or worms) smile.gif

Edit: Added the download file. smile.gif

 

 

 


Reply

rejected
You could get a copy from limewire or something, and there are cracks out there...

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Recent Queries:-
  1. vbcoding - 11.05 hr back. (1)
  2. search program vb - 15.10 hr back. (1)
  3. search program in vb - 20.00 hr back. (1)
  4. begin vb6 - 51.67 hr back. (1)
  5. searching program using vb coding - 83.42 hr back. (1)
  6. pascal triangle code in visual basic - 94.19 hr back. (1)
  7. searching program using vb - 98.73 hr back. (1)
  8. common codings in vb - 154.88 hr back. (1)
  9. codings for login in vb - 192.01 hr back. (2)
  10. vb coding - 135.18 hr back. (2)
  11. hr program in vb coding - 255.96 hr back. (3)
  12. vb codings - 4.13 hr back. (17)
  13. free gif coding vb6 - 272.72 hr back. (1)
  14. search on vb program - 279.53 hr back. (1)
Similar Topics

Keywords : vb, coding, program

  1. Www.limewire.com
    fastest file sharing program (11)
  2. Thumbnail Utility Program
    Free from Fookes.com (2)
    An easy to use, free thumbnail creator. I have used it for the last few years for preparing pictures
    for web site presentations and it works very well. Highly recommended.
    http://www.fookes.com/ezthumbs/ ....
  3. A Really Great Program For Spriting/pixel Art
    (5)
    Graphics Gale Free Edition This program is similar to paint, only it's actually useful :b It Has
    some really cool features, and makes it really easy to get what colors you want. The company's
    website is humanbalance.net ....
  4. A New Free Speech Program
    CoolInfo (1)
    It's a free Speech program, it's CoolInfo.. With CoolInfo you'll forget your mouse and
    keyboard you'll be able to navigate and search the web using your speech even working with
    programs.. it has an option that you can add commands to it with different programs.. you can get
    it here ....
  5. Gimpshop!
    Free Photoshop-like program for download (3)
    www.GIMPshop.com This program works with Windows, Mac, Linux, etc., so don't worry I consider
    it a hot deal myself, considering I love the program and promote it wherever I go, so here's the
    scoop for any of you who are used to using Photoshop, but don't like the hefty price-tag:
    there's another option. The program is called GIMPshop, and it's an add-on to the popular
    image-editing program called The GIMP. I'm sure a lot of you have heard about The GIMP before,
    but for those of you who haven't, it's a powerful multi-OS based program us....
  6. Free Pc To Phone Calls
    A program that allows you to make free phone calls (12)
    I found a progarm called vopistunt that allows you to make free phone calls from pc to homephone or
    cell phone. Here is the url: VoipStunt This is the rate table, just look for "FREE" Rates ....
  7. Convert 500mb To 2 Mb With Any File Extension!
    No joke. It's a new program. Hot news! (44)
    Yes, it is true! Now we can convert games, movies, programs of 400MB to 1 GB to a ridiculous
    size of 2MB or even 5MB, the point is that this unbelivable new program as an unbelievable high
    compression rate. I know, i know, i was thinking like you are now, but the fact is that i installed
    this program and tryed it and it really compresses much and much more then the well known programs:
    - Winrar - 7-Zip - Winzip But how is that possible, i don't know, i really don't, but
    when i download a file with 2MB and when i extracted it, it took me hours to extrac....
  8. Free Proxy Server Program
    (16)
    its called proxy switcher, i had to find something so i could get back into websites where my ip
    number as been banned, so i found this program, best thing about the full version is free too so you
    don't have pay the $30US for it so here is the website. www.proxyswitcher.com enjoy.....
  9. Awesome Proxie Program
    JAP (5)
    A freind of mine tuned me into this its called JAP its prolly not special but i really enjoy
    it....Im not even going to pretend to know how it works, i just know it does and its very easy and
    its work a look......AND ITS FAST!!! JAP ....
  10. Need A Program That Can Save Mp3's
    (9)
    Well, I am currently looking after a program that can open files like .wav or .wma, and then save
    them as .mp3. My MP3 player can't play wav or wma files, so I need them in MP3. I know there are
    many free programs to do that, but I don't know which programs... So, just load a wma or wav
    file, then save it as mp3. Can't be hard? Hope I get a reply soon /smile.gif' border='0'
    style='vertical-align:middle' alt='smile.gif' /> ....
  11. Seo Studio
    Excellent program for SE submission,ranking,analysis,etc... (0)
    SEO Studio Lite Free Edition Here is what you get in SEO Studio Lite Free Edition : QUOTE
    Search Engine Submission: Free search engine submission to over 60 major search engines and
    directories for an unlimited number of websites. (Unlimited submission features are available)
    Search Engine Ranking: Free search engine ranking reports with unlimited keywords and websites on
    over 260 major and International search engines. Google API support for safe ranking checks. (Search
    the first 30 results only) Keyword Analysis: Advanced keyword analysis with actionable in....
  12. Blinkx - A Free Search Program
    Some kind of free desktop search tool (3)
    Blinkx is a kind of search engine that will search your PC for relevant information at the same time
    as it is searching the web. It is a 100% free program, get to Blinkx's homepage to download the
    free add-on program n get using it. I don't think it contains spyware/adware, or it is a scam,
    because there was a feature news about this freebie on ComputerActive - a PC magazine. The URL of
    Blinkx's homepage: http://www.blinkx.com If you are a begginer or don't how to get this
    free thing working on your pc, just follow the steps below: 1. Launch your web....
  13. What For Program Do You Use For Making Webdesigns?
    wich Program do you use for it? (28)
    I am making WebDesigns with Adobe Photoshop 7.0 I Slice with it and i Code it whit Ace HTML 5.0
    (free ware) wich programm do you use for it? My Designed Site's whit Adobe:
    http://www.Xtreme-Crew.nl and http://www.Serious-Gaming-Clan.tk Rate and Comment please!....

    1. Looking for vb, coding, program

Searching Video's for vb, coding, program
advertisement



Free Vb Coding Program - Trying to find one



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE