Click here to Skip to main content
15,914,419 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: What the function declaration mean? Pin
ashwath197916-Nov-06 22:10
ashwath197916-Nov-06 22:10 
QuestionHow to make the packaging? Pin
rico cheah16-Nov-06 20:03
rico cheah16-Nov-06 20:03 
AnswerRe: How to make the packaging in VS.NET? Pin
Dave Sexton16-Nov-06 20:12
Dave Sexton16-Nov-06 20:12 
QuestionRe: How to make the packaging in VS.NET? [modified] Pin
rico cheah16-Nov-06 20:44
rico cheah16-Nov-06 20:44 
AnswerRe: How to make the packaging in VS.NET? Pin
Kevin Nicol17-Nov-06 1:33
Kevin Nicol17-Nov-06 1:33 
QuestionRe: How to make the packaging in VS.NET? Pin
rico cheah17-Nov-06 21:07
rico cheah17-Nov-06 21:07 
QuestionWhats the meaning of below declarations. Pin
ashwath197916-Nov-06 19:19
ashwath197916-Nov-06 19:19 
AnswerRe: Whats the meaning of below declarations. Pin
Guffa16-Nov-06 19:35
Guffa16-Nov-06 19:35 
That's what a VB6 programmer would use to continue writing sloppy code in VB.NET.

Option Strict Off

This turns off strict type checking. You should really turn this option on, so that the compiler doesn't do so much implicit conversions.

Option Explicit On

This forces you to declare every variable that you use, which is good.

Imports VB = Microsoft.VisualBasic

This lets you use some VB6 style functions by using a VB. prefix. There are replacements for most of those in the regular framework classes.

Imports System.Text

This is a normal import in a .NET program. It lets you use some text based classes like StringBuilder and Encoding.

Imports Microsoft.VisualBasic.Strings

This lets you use some VB6 style functions like LEFT, MID and INSTR. There are replacements for these in the regular String class.


---
b { font-weight: normal; }

GeneralRe: Whats the meaning of below declarations. Pin
ashwath197916-Nov-06 20:17
ashwath197916-Nov-06 20:17 
QuestionRichTextBox Pin
Socheat.Net16-Nov-06 16:42
Socheat.Net16-Nov-06 16:42 
AnswerRe: RichTextBox Pin
Zyndrof17-Nov-06 4:09
Zyndrof17-Nov-06 4:09 
QuestionSetting NTSC or PAL within a video capture program Pin
W.A. Dilhara16-Nov-06 16:36
W.A. Dilhara16-Nov-06 16:36 
AnswerRe: Setting NTSC or PAL within a video capture program Pin
Christian Graus16-Nov-06 21:55
protectorChristian Graus16-Nov-06 21:55 
QuestionIUnknown::Release(); in VB6 Pin
lafleon16-Nov-06 14:23
lafleon16-Nov-06 14:23 
AnswerRe: IUnknown::Release(); in VB6 Pin
Christian Graus16-Nov-06 16:12
protectorChristian Graus16-Nov-06 16:12 
Questionfiles/folders Pin
tibmark16-Nov-06 13:27
tibmark16-Nov-06 13:27 
AnswerRe: files/folders Pin
Christian Graus16-Nov-06 13:34
protectorChristian Graus16-Nov-06 13:34 
QuestionWhy does this only populate listbox with last record? Pin
penguin500016-Nov-06 12:33
penguin500016-Nov-06 12:33 
AnswerRe: Why does this only populate listbox with last record? Pin
mr_lasseter16-Nov-06 16:49
mr_lasseter16-Nov-06 16:49 
GeneralRe: Why does this only populate listbox with last record? Pin
penguin500017-Nov-06 2:31
penguin500017-Nov-06 2:31 
GeneralRe: Why does this only populate listbox with last record? Pin
mr_lasseter17-Nov-06 2:33
mr_lasseter17-Nov-06 2:33 
GeneralRe: Why does this only populate listbox with last record? Pin
penguin500017-Nov-06 10:20
penguin500017-Nov-06 10:20 
QuestionPlease help, HSC student stuck with code [modified] Pin
Tj.16-Nov-06 11:50
Tj.16-Nov-06 11:50 
AnswerRe: Please help, HSC student stuck with code Pin
Christian Graus16-Nov-06 12:00
protectorChristian Graus16-Nov-06 12:00 
AnswerRe: Please help, HSC student stuck with code Pin
Dave Kreskowiak16-Nov-06 16:58
mveDave Kreskowiak16-Nov-06 16:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.