Geometry.Net - the online learning center
Home  - Computer - Visual Basic
e99.com Bookstore
  
Images 
Newsgroups
Page 2     21-40 of 152    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | Next 20

         Visual Basic:     more books (100)
  1. Starting Out With Visual Basic 2008 Update (4th Edition) by Tony Gaddis, Kip Irvine, 2009-02-19
  2. Starting Out With Visual Basic 2010 (5th Edition) by Tony Gaddis, Kip Irvine, 2010-08-27
  3. Programming in Visual Basic 2010: The Very Beginner's Guide by Jim McKeown, 2010-03-29
  4. Microsoft Visual Basic 2008: RELOADED by Diane Zak, 2008-07-24
  5. Introduction to Programming Using Visual Basic 2010 (8th Edition) by David I. Schneider, 2010-08-30
  6. Beginning Visual Basic 6 Database Programming by John Connell, 2003-08-13
  7. Microsoft Visual Basic 2005 Step by Step (Step By Step (Microsoft)) by Michael Halvorson, 2005-10-05
  8. Learn to Program with Visual Basic 2010 Express by John Smiley, 2010-06-09
  9. Mastering Microsoft Visual Basic 2008 by Evangelos Petroutsos, 2008-03-04
  10. Microsoft Office Excel 2007 Visual Basic for Applications Step by Step (BPG-step by Step) by Reed Jacobson, 2007-05-16
  11. Programming Microsoft Visual Basic 6.0 by Francesco Balena 196, 1999-05-26
  12. Simply Visual Basic 2008 (3rd Edition) by Paul Deitel, 2008-06-15
  13. Starting Out with Visual Basic 2008 (4th Edition) by Tony Gaddis, Kip Irvine, 2008-02-22
  14. Clearly Visual Basic: Programming with Microsoft Visual Basic 2008 by Diane Zak, 2008-08-15

21. Visual_Basic
Dec 24, 2009 Question DatePoints Posts MemberTitleVisual BasicTop Rated MembersExExPoints.
http://www.docstoc.com/docs/20377089/Visual_Basic

22. Visual Basic Resources : VB Scripts, Programs, Applications, Code, Books, Tutori
A directory of Visual Basic books, development software, jobs, magazine articles , online communities, programmers, scripts programs, tutorials,
http://www.bigwebmaster.com/Visual_Basic/

23. Visual Basic .NET Certificate Program
File Format PDF/Adobe Acrobat Quick View
http://unex.uci.edu/pdfs/brochures/Visual_Basic.pdf

24. Visual Basic/Built In String Functions - Wikibooks, Collection Of Open-content T
Dec 19, 2009 Retrieved from http//en.wikibooks.org/wiki/visual_basic/ Built_In_String_Functions . Categories Pages needing attention Visual Basic
http://en.wikibooks.org/wiki/Visual_Basic/Built_In_String_Functions
Visual Basic/Built In String Functions
From Wikibooks, the open-content textbooks collection Visual Basic This page may need to be reviewed for quality. Jump to: navigation search
Contents
  • String operations
    edit String operations
    edit Comparison
    Two strings are equal if and only if they have exactly the same contents, meaning that they are both the same length and each character has a one-to-one positional correspondence. However there is a statement that can be placed at the top of a module that affects string comparisons: Option Compare Text If you include this statement then string comparisons in that module will be case insensitive . This can be convenient but can also cause a certain amount of confusion. Many other languages test strings only for identity; that is, they only test whether two strings occupy the same space in memory. This latter operation is possible in Visual Basic using the StrPtr function. Example: Option Explicit Dim strHello as String Dim as String strHello = "hello" "hello" If StrComp(strHello, strHello2) =

25. Visual Basic/Files - Wikibooks, Collection Of Open-content Textbooks
Retrieved from http//en.wikibooks.org/wiki/visual_basic/Files . Categories
http://en.wikibooks.org/wiki/Visual_Basic/Files
Visual Basic/Files
From Wikibooks, the open-content textbooks collection Visual Basic This page may need to be reviewed for quality. Jump to: navigation search A reader has identified this page or section as an undeveloped draft or outline.
You can help to develop the work , or you can ask for assistance in the project room
Contents
edit Introduction
Another essential part of Visual Basic is file Input/Output, that is, working with files. While programming, you may want at some point to save data so they may be accessible for further use. This is where file I/O comes in. VB allows us to perform most operations available in Windows Explorer and DOS command line. Before you can do this, you need to understand how file I/O works.
edit Layout of Data
VB generally arranges data into records and fields for the programmer's convenience. The best way to explain this is by illustrating it: Bob,Larry,George Kevin,Ken,Alec This is obviously data containing names. Each line of data is called a record. So the first record contains Bob, Larry, and George. A field is each item in a record. So the first field in the first record would be Bob, the second field would be Larry, and so on. There may be as many fields and records as you see fit.
edit Input
When a program receives data from an outside source, it is considered input. In Visual Basic, this source is usually a standard text file, with a .txt file extension(as which could be read with Notepad). First, you need to open the file from which you want to read the data. This is done using the following code:

26. Visual Basic/External Processes - Wikibooks, Collection Of Open-content Textbook
Retrieved from http//en.wikibooks.org/wiki/visual_basic/External_Processes
http://en.wikibooks.org/wiki/Visual_Basic/External_Processes
Visual Basic/External Processes
From Wikibooks, the open-content textbooks collection Visual Basic This page may need to be reviewed for quality. Jump to: navigation search
edit Introduction
It is often the case that a program already exists to do some job so rather than rewrite the program in Visual Basic it is more efficient to run the existing program from Visual Basic. This can work very well for command line programs or scripts written in any language. The general scheme is to create a string containing the command line, call a function to run it and then wait for the command to complete. There are many refinements that can be made including all sorts of ways of sending data to the new process, reading results from it, pausing it, setting its priority and so on.
edit The Shell Function
The simplest way of running an external program is to do something like this: Shell "cmd /c dir %temp%" Shell is a built in Visual Basic function that executes a command line and returns a handle to that process. Shell takes an optional argument that controls the window style of the new process (maximized, normal, hidden, etc.).

27. Visual Basic - Wikiversity
Sep 8, 2010 Retrieved from http//en.wikiversity.org/wiki/visual_basic . Categories Visual Basic Computer science courses
http://en.wikiversity.org/wiki/Visual_Basic
Visual Basic
From Wikiversity Jump to: navigation search
Navigation: Engineering and Technology Computer Science Computer Programming Visual Basic
Visual Basic 6 is one of the world's most widely used programming languages. It takes an approach to computer programming called RAD , which emphasizes ease and speed of software development. Other popular programming languages such as C, C++, and Java are not necessarily so easy to create programs with, but they do tend to have other strengths. Many believe that VB6 is an ideal language for users who are new to programming, or users who previously used related languages such as QuickBASIC and wish to move to more advanced programming.
Contents
edit Prerequisites

28. Visual Basic .NET - Wikipedia, The Free Encyclopedia
Visual Basic.NET (VB.NET) is an objectoriented computer programming language that can be viewed as an evolution of Microsoft's Visual Basic (VB) which is generally
http://en.wikipedia.org/wiki/Visual_Basic_.NET
Visual Basic .NET
From Wikipedia, the free encyclopedia Jump to: navigation search Visual Basic .NET Paradigm structured imperative object-oriented ... declarative Appeared in 2001 (last revised 2010) Designed by Microsoft Developer Microsoft Stable release Visual Basic 2010 (VB 10.0.30319.1) (April 12, 2010) Typing discipline static strong both safe and unsafe ... Microsoft Visual Studio .NET, .NET 2003, 2005, 2008, 2010 Platform CLR OS Microsoft Windows ... CLR Proprietary Usual file extensions .vb/.vbs Website Microsoft's VB.NET website Visual Basic .NET VB.NET ) is an object-oriented computer programming language that can be viewed as an evolution of Microsoft's Visual Basic (VB) which is generally implemented on the Microsoft .NET Framework . Microsoft currently supplies Visual Basic Express Edition free of charge.
Contents

29. Visual Basic Tutorials
Visual Basic Tutorials Developing Web Applications We ll examine the IIS Application in this tutorial, going through the process of developing a simple
http://www.brainbell.com/tutors/Visual_Basic/
Visual Basic Tutorials
A Methodical Approach to Error Handling
What is an error? The short answer is, "Something that's expensive to fix." Dealing with errors is costly in terms of both money and time. Business objects
This tutorial presents a design pattern for developing solid, scalable, robust business objects, designed for (and from) real-life distributed enterprise applications. Developing Web Applications
We'll examine the IIS Application in this tutorial, going through the process of developing a simple application for Internet Information Server (just in case you hadn't worked out the acronym). Programming With Variants
Microsoft Visual Basic 6 further enhances the Variant data type from the previous version so that it can now hold user-defined types (UDTs). In this tutorial we will take an in-depth look at Variants and discuss the benefits and pitfalls of programming with them. Developing Applications in Windows CE
Windows CE is simply a 32-bit, non-PC operating system. You might have seen Windows CE devices, such as the handheld PC (HPC) or the palm-sized PC?these are just some of the many applications run by the Windows CE operating system. Staying in Control War Against Bugs
Program bugs are highly ecological because program code is a renewable resource. If you fix a bug, another will grow in its place. And if you cut down that bug, yet another will emerge

30. Visual Basic
IntroductionVisual Basic is a programming language that was developed by Microsoft. It was one of first graphical programming environments used. Programmers use this
http://it.toolbox.com/wiki/index.php/Visual_Basic

31. Visual Basic - Retrieving Accessibility Information Tutorials
Visual Basic Retrieving Accessibility Information Tutorials.
http://www.brainbell.com/tutors/Visual_Basic/Retrieving_Accessibility_Informatio

[Previous]
[TOC] [Next]
Retrieving Accessibility Information
Three main functions allow you to retrieve information about objects in an application: AccessibleObjectFromEvent AccessibleObjectFromWindow , and AccessibleObjectFromPoint . We won't be looking at events here, but we will be retrieving objects directly from a window and retrieving objects based on where the mouse is pointing on the form.
Retrieving objects from a window
The frmAccess form in the AAccess sample contains a number of standard controls, including list boxes, check boxes, and radio buttons. So the first thing we want to do is find which of these controls are accessible through the Active Accessibility interface. We need to start with a type declaration and a function declaration, which must go in a standard module, in this case mAccess The tGUID type is a UDT that maps to the C++ REFIID structure, often called the class ID. The value we assign to this UDT is the class ID of the interface we want to retrieve. We'll be retrieving the IAccessible interface provided by Active Accessibility.

32. Visual Basic - Processing
Jun 8, 2010 Downloads. Related Links. Retrieved from http//wiki.processing.org/w/ visual_basic . Category Snippets
http://wiki.processing.org/w/Visual_Basic
Visual Basic
From Processing
Jump to: navigation search Versions: Contributors: melka Started:
It might be interesting for some applications to run some Visual Basic Script, for example to get hardware information not available via Java/Processing. Original code from rgagnon.com In this sketch, we're writing a temp file on-the-fly, put some VBS in it, run it, get the result and display it in the console. The VBS we're writing will give us the ProcessorID on the computer. This is a value that is not accessible via Java directly (you'd have to write a jnilib, much more complex than VBS). Obviously, this code will only run on Windows
Source Code
/** vbs taken from http://processinghacks.com/hacks:vbs @author melka */ /** Library Imports */ import java.io.File import java.io.FileWriter import java.io.BufferedReader import java.io.InputStreamReader void setup /** Create and run the Visual Basic Script. Print the result on the console. */ String procID runVBS println procID noLoop void draw public ... String runVBS /** We'll store the result in this variable. */ String result ""

33. Through The Interface: Visual Basic & VBA
A blog for developers working with AutoCAD and other Autodesk technologies.
http://through-the-interface.typepad.com/through_the_interface/visual_basic/
Through the Interface
Kean Walmsley
October 2010
Sun Mon Tue Wed Thu Fri Sat
Post Index
Reverse Index
Twitter Updates
follow me on Twitter
Autodesk Blogs
May 28, 2010
As mentioned in this previous post , the following API wishlist surveys are currently live: AutoCAD®
AutoCAD® Civil 3D®

AutoCAD® Map 3D®

Revit®
...
Autodesk Navisworks®
We’ve had around 500 responses across the various surveys, but to give a few more people the chance to respond, we’ve extended the deadline until June 11th, 2010 To give you an idea of how the voting is looking so far, here’s a summary of the responses against the survey’s “money” question ( 5. From the following list of possible AutoCAD API enhancements, please choose three areas that you recommend we make our top priority for the next release or two of AutoCAD. Posted at 04:33 PM in AutoCAD AutoCAD .NET AutoLISP / Visual LISP Permalink ... Comments (7)
May 12, 2010
More translated AutoCAD VBA to VB.NET Migration DevTVs
In this previous post I mentioned a couple of additional translations of the VBA migration DevTV that were in progress. Here is an updated list of the various ones we now have available, including links to German, Spanish and Japanese versions:

34. Visual Basic - Oracle FAQ
Nov 23, 2008 Visual Basic Developer Center The Visual Basic FAQ VB Online Magazine. Retrieved from http//www.orafaq.com/wiki/visual_basic
http://www.orafaq.com/wiki/Visual_Basic
Visual Basic
From Oracle FAQ
Jump to: navigation search Visual Basic (VB) is an extremely popular and easy to use programming language provided by Microsoft Corporation . VB is based on the BASIC programming language and is mainly used to develop Windows based applications.
edit Accessing Oracle from Visual Basic
Connectivity to Oracle is provided via ODBC or OO4O (Oracle Objects for OLE). For more information about ODBC, read the ODBC FAQ . For information about OO4O, read the OO4O FAQ Look at these examples: DAO Example (Data Access Objects): Dim wstemp As Workspace Dim dbtemp As Database Dim rstemp As Recordset Set wstemp = DBEngine.Workspaces(0) Set dbtemp = wstemp.OpenDatabase("", False, False, "ODBC;DSN=Oracle;USR=scott;PWD=tiger") Set rstemp = dbtemp.OpenRecordset(myquery.Text, dbOpenDynaset, dbSQLPassThrough) howmany = Combo1.Clear Do Until rstemp.EOF msgbox rstemp(0) rstemp.MoveNext howmany = howmany + 1 Loop RDO example (Remote Data Objects): ADO example: example:
edit Counting records in a recordset
When you do a recordcount and it return only one record in the recordset, while you know there are more records, you need to move to the last record before doing the count. Look at this example.

35. Visual BASIC - Uncyclopedia, The Content-free Encyclopedia
Sep 9, 2010 Visual BASIC is basically visual. It was created after Bill Gates found the code to Real BASIC in a dumpster during one of his dumpster
http://uncyclopedia.wikia.com/wiki/Visual_BASIC

36. Free Online Books And Tutorials On Visual Basic
Free Online books or Tutorials on Visual Basic , Database Programming , ActiveX components.
http://programmerworld.netfirms.com/techbooks/visual_basic.htm

37. Mathtools.net : Visual Basic/Converters
Mar 12, 2006 Access to .NET/Crystal Reports Converter. Our converters can easily convert your Access forms and reports into webready ASP .
http://www.mathtools.net/Visual_Basic/Converters/index.html
Link Exchange for the Technical Computing Community Hosted by MathWorks
www.mathworks.com

Home
Visual Basic
Converters
Related Categories
Access to .NET/Crystal Reports Converter
Our converters can easily convert your Access forms and reports into web-ready ASP .NET forms and Crystal Reports as well as VB6/VB.NET/VC# .NET WinForms. Please view the converted sample reports and forms at our web site or check our trial demo out.
Submitted: Aug 07, 2004
Black Dirt Software
Black Dirt is the Creator of Convert for converting Visual Basic Forms into Java and runs a community dedicated to promoting Java for VB programmers.
Submitted: Jun 14, 2000
Visual Basic to Java Migration
SetVB2Java is an easy-to-use component for migration of Visual Basic Forms and UserControls into pure Java Source Code (Swing Style).
Submitted: Mar 12, 2006
Diamond Edge
Diamond Edge is dedicated to keeping Applet Designer the best VB to Java Converter. Convert your Access Forms and code to Java with Access Converter.
Submitted: Jul 03, 2000

38. Mathtools.net : Visual Basic/Reference And Documentation/Source Codes
The Visual Basic Programming Language Calculator! This program demonstrates
http://www.mathtools.net/Visual_Basic/Reference_and_documentation/Source_Codes/i
Link Exchange for the Technical Computing Community Hosted by MathWorks
www.mathworks.com

Home
Visual Basic Reference and documentation
Source Codes
The Visual Basic Programming Language: Calculator! This program demonstrates the graphical aspects of the Visual Basic programming language by displaying a calculator. The calculator is used by clicking on the appropriate buttons just as you would a real calculator.
Submitted: Jul 01, 2000
FreeVBCode.com
The place on the Web for the high quality, free visual basic code. Currently, there are 885 code examples and articles on this site. New code is added every day.
Submitted: Jun 22, 2000
Digital Clock
A simple Visual Basic digital clock program with source code.
Submitted: Jul 04, 2000
CodeRoom
On this site you will find free Visual Basic Source Code collected from various sources around the Internet.
Submitted: Jun 22, 2000
FreeCode
The FreeCode website is large collection of free Internet related source code. Free programs are available in the following languages: C/C++, Java, Perl, and Visual Basic. Submitted: Jun 22, 2000

39. The CGI-Index.com: Visual_Basic
The CGIIndex.com is a resource directory filled with hundreds of CGI and webmaster related resources. Infact, we have nearly 2000 resources and scripts
http://www.cgi-index.com/Visual_Basic/
Home Reviews Top Rated Popular ...
Top : Visual Basic
Visual Basic (VB) is an event driven programming language and associated development environment created by Microsoft. It is derived heavily from BASIC. VB enables Rapid Application Development (RAD) of graphical user interface (GUI) applications, easy access to databases using DAO, RDO, or ADO, and easy creation of ActiveX controls. A programmer can quickly put together an application using the components provided with Visual Basic itself.
Categories:
Bulleting Board Message Systems Chat Collections Database Software ... Survey and Voting

40. Free Visual Basic Source Code
Free Visual Basic and Visual Basic.NET Source Code , Code snippers , projects.
http://programmerworld.net/resources/visual_basic/visual_basic_code.php
Java C++ libraries C++ Compilers C Sharp ... Free Books Programming Resources: Java
C++ libraries

C++ Compilers

C++ Tools
...
Visual Basic Tools

Free Books: C++
VC++

Visual Basic
MS Dot Net (C#, VB.net, ASP.net ) ...
Windows Untold Tricks

Dot Net Section : Free Books and Tutorials Introduction to ASP.NET Browser Independent Authoring
What's New in Visual Studio .NET 2003
addthis_url = location.href; addthis_title = document.title; addthis_pub = 'sudhirmangla';
Free Visual Basic or Visual Basic.NET Source Code
  • DevX Source code, tips and tricks. Most source is free. FreeVBCode.com All code is tested before being posted. OpenNap: Open Source Napster Server Includes source for Napster type servers. Napster protocols are also listed. CodeGuru Code is categorized by name and type. Includes a section on Shell commands. SearchVB One of the most complete VB resources on the net. Source code for almost every want or desire.
  • Page 2     21-40 of 152    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | Next 20

    free hit counter