Visual Basic Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming Languages - MoreVisual Basic Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Create a Highly Available Database Solution. Advantage Database Server can provide the availability to keep your data safe and ready for your application and users.
  #1  
Old November 26th, 2002, 09:03 PM
Donnie Brasco Donnie Brasco is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2002
Location: Australia
Posts: 1 Donnie Brasco User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
hey all

i am new to vb and does anyone no a free compiler that is very small if you do please attach the url

Reply With Quote
  #2  
Old November 27th, 2002, 09:06 AM
Onslaught's Avatar
Onslaught Onslaught is offline
/(bb|[^b]{2})/
Dev Shed Demi-God (4500 - 4999 posts)
 
Join Date: Nov 2001
Location: Somewhere in the great unknown
Posts: 4,827 Onslaught User rank is Second Lieutenant (5000 - 10000 Reputation Level)Onslaught User rank is Second Lieutenant (5000 - 10000 Reputation Level)Onslaught User rank is Second Lieutenant (5000 - 10000 Reputation Level)Onslaught User rank is Second Lieutenant (5000 - 10000 Reputation Level)Onslaught User rank is Second Lieutenant (5000 - 10000 Reputation Level)Onslaught User rank is Second Lieutenant (5000 - 10000 Reputation Level)Onslaught User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Day 22 h 57 m 29 sec
Reputation Power: 88
Send a message via ICQ to Onslaught
Not really. You can get a very cheap VB version if you are a student from most college bookstores, but I don't know of an independant compiler for it and I doubt you would really want to write VB code outside of its native IDE. It is possible, but it would be more trouble than it's worth in most cases.

Just my 2 cents.

Reply With Quote
  #3  
Old December 6th, 2002, 03:47 PM
Shocka's Avatar
Shocka Shocka is offline
dont click here
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2002
Posts: 409 Shocka User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 h 35 m
Reputation Power: 6
hmm VB without its IDE.... never even thought of this seems so far fetched..

Reply With Quote
  #4  
Old December 12th, 2002, 11:25 PM
Deep Code Deep Code is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2002
Location: Massachusetts
Posts: 32 Deep Code User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 23 m 2 sec
Reputation Power: 6
Send a message via AIM to Deep Code
Basic is the language behind VB, just like C++ is the laguage behind Visual C++, Microsoft's program just makes form making Visual, you can do it in raw code.. There are probably programs out there that compile Basic for free.. I've never looked, but you most likely wouldnt get the visual form editing capabilities that Microsoft's Visual Basic gives you. It would be more like mIRC scripting of dialogs.

Reply With Quote
  #5  
Old December 13th, 2002, 01:58 AM
Shocka's Avatar
Shocka Shocka is offline
dont click here
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2002
Posts: 409 Shocka User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 h 35 m
Reputation Power: 6
ive programed in basic(q, z and apple) and its similar yet so different from VB. VB is far advanced unless i onlly worked with the basic of basic..

Reply With Quote
  #6  
Old December 13th, 2002, 07:47 AM
Onslaught's Avatar
Onslaught Onslaught is offline
/(bb|[^b]{2})/
Dev Shed Demi-God (4500 - 4999 posts)
 
Join Date: Nov 2001
Location: Somewhere in the great unknown
Posts: 4,827 Onslaught User rank is Second Lieutenant (5000 - 10000 Reputation Level)Onslaught User rank is Second Lieutenant (5000 - 10000 Reputation Level)Onslaught User rank is Second Lieutenant (5000 - 10000 Reputation Level)Onslaught User rank is Second Lieutenant (5000 - 10000 Reputation Level)Onslaught User rank is Second Lieutenant (5000 - 10000 Reputation Level)Onslaught User rank is Second Lieutenant (5000 - 10000 Reputation Level)Onslaught User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Day 22 h 57 m 29 sec
Reputation Power: 88
Send a message via ICQ to Onslaught
There are free compilers out there. You can find them by searching google, but I don't know how well they are.
You can write VB code outside of it's native IDE, but I wouldn't recommend it. There is a lot of extra crap that must be written for a VB app if you do it text only. Just open up a form and look at the code that is there.

Here is a link to one site for a free compiler:
http://www.freebyte.com/programming...rs/envelop.html

Here is also what some of the code looks like for a form. This is what is generated from the IDE, along with the frx files.
Code:
VERSION 5.00
Begin VB.Form frmMain 
   Caption         =   "Form1"
   ClientHeight    =   2430
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   3150
   Icon            =   "frmMain.frx":0000
   LinkTopic       =   "Form1"
   ScaleHeight     =   2430
   ScaleWidth      =   3150
   StartUpPosition =   3  'Windows Default
   Begin VB.PictureBox picNormal 
      Height          =   615
      Left            =   600
      Picture         =   "frmMain.frx":000C
      ScaleHeight     =   555
      ScaleWidth      =   555
      TabIndex        =   2
      Top             =   720
      Width           =   615
   End
   Begin VB.PictureBox picQuery 
      Height          =   615
      Left            =   2160
      Picture         =   "frmMain.frx":044E
      ScaleHeight     =   555
      ScaleWidth      =   555
      TabIndex        =   1
      Top             =   720
      Width           =   615
   End
   Begin VB.Timer Timer1 
      Left            =   240
      Top             =   1920
   End
   Begin VB.Label Label1 
      Caption         =   "This form is never seen by the user."
      Height          =   375
      Left            =   120
      TabIndex        =   0
      Top             =   120
      Width           =   4335
   End
End
Attribute VB_Name = "frmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Reply With Quote
  #7  
Old December 13th, 2002, 08:59 AM
Deep Code Deep Code is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2002
Location: Massachusetts
Posts: 32 Deep Code User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 23 m 2 sec
Reputation Power: 6
Send a message via AIM to Deep Code
Personally, I wouldn't want to type out every characteristic of a form.. :-x Just get M$ VB

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreVisual Basic Programming > hey all


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

 Free IT White Papers!
 
Accelerating Trading Partner Performance
One in five. That's how many partner transactions have at least one error. That is an amazing statistic, particularly given the extraordinary leaps in innovation across the global supply chain during the past two decades. Download this white paper to learn more.

 
Competing on Analytics
This Tech Analysis is designed to help identify characteristics shared by analytics competitors, and includes information about 32 organizations that have made a commitment to quantitative, fact-based analysis.

 
Cost Effective Scaling with Virtualization and Coyote Point Systems
An overview of the industry trend toward virtualization, how server consolidation has increased the importance of application uptime and the steps being taken to integrate load balancing technology with virtualized servers.

 
Five Checkpoints to Implementing IP Telephony
Implementation planning for IP PBX software and IP telephony has become vital as businesses replace discontinued legacy PBX phone systems. This informative whitepaper outlines five "checkpoints" for any implementation plan that will help make IP communications a successful proposition.

 
Hosted Email Security: Staying Ahead of New Threats
In the last two years, email has become a fierce battleground between the nefarious forces of spam and malware, and the heroes of messaging protection. The spam volumes increased alarmingly every month, bringing clever new forms of phishing and virus propagation attacks.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway