473,386 Members | 1,908 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

VB Reference

CGW
I'm really, really frustrated. For some reason, help in Visual Studio
always brings up SQL help. I simply want a VB.Net reference for
functions like Left(), Right(), etc and I cannot find one anyway... what
I found on MSDN sucks. Anybody know where I can find a simple list of
string functions? Please.

Thanks,

CGW

*** Sent via Developersdex http://www.developersdex.com ***
May 17 '07 #1
9 1014
CGW
Nevermind... I was able to get what I needed under VBScripting.

Thanks,

CGW

*** Sent via Developersdex http://www.developersdex.com ***
May 17 '07 #2
"CGW" <no****@daymon.comschrieb:
Nevermind... I was able to get what I needed under VBScripting.
Be careful, this may be the documentation for VBScript and not VB.NET, which
are entirely different programming languages.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

May 17 '07 #3
entirely?

Cor

"Herfried K. Wagner [MVP]" <hi***************@gmx.atschreef in bericht
news:%2****************@TK2MSFTNGP02.phx.gbl...
"CGW" <no****@daymon.comschrieb:
>Nevermind... I was able to get what I needed under VBScripting.

Be careful, this may be the documentation for VBScript and not VB.NET,
which are entirely different programming languages.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

May 17 '07 #4
CGW,

http://msconline.maconstate.edu/tuto...bnet01-06.aspx

http://www.dotnetspider.com/kb/Article3118.aspx

--
Newbie Coder
(It's just a name)
"CGW" <no****@daymon.comwrote in message
news:O$**************@TK2MSFTNGP03.phx.gbl...
I'm really, really frustrated. For some reason, help in Visual Studio
always brings up SQL help. I simply want a VB.Net reference for
functions like Left(), Right(), etc and I cannot find one anyway... what
I found on MSDN sucks. Anybody know where I can find a simple list of
string functions? Please.

Thanks,

CGW

*** Sent via Developersdex http://www.developersdex.com ***

May 18 '07 #5
Yes, entirely.
"Cor Ligthert [MVP]" <no************@planet.nlwrote in message
news:%2****************@TK2MSFTNGP02.phx.gbl...
entirely?

Cor

"Herfried K. Wagner [MVP]" <hi***************@gmx.atschreef in bericht
news:%2****************@TK2MSFTNGP02.phx.gbl...
>"CGW" <no****@daymon.comschrieb:
>>Nevermind... I was able to get what I needed under VBScripting.

Be careful, this may be the documentation for VBScript and not VB.NET,
which are entirely different programming languages.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

May 18 '07 #6
if YourStateMent = true then
ShowMeThisOneInVBS
End if

Cor

"Scott M." <sm**@nospam.nospamschreef in bericht
news:03**********************************@microsof t.com...
Yes, entirely.
"Cor Ligthert [MVP]" <no************@planet.nlwrote in message
news:%2****************@TK2MSFTNGP02.phx.gbl...
>entirely?

Cor

"Herfried K. Wagner [MVP]" <hi***************@gmx.atschreef in bericht
news:%2****************@TK2MSFTNGP02.phx.gbl...
>>"CGW" <no****@daymon.comschrieb:
Nevermind... I was able to get what I needed under VBScripting.

Be careful, this may be the documentation for VBScript and not VB.NET,
which are entirely different programming languages.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>


May 18 '07 #7
"Cor Ligthert [MVP]" <no************@planet.nlschrieb:
if YourStateMent = true then
ShowMeThisOneInVBS
End if
You are picking a trivial sample which is almost similar in VBScript and
VB.NET. However, there is absolutely no guarantee that anything mentioned
in the documentation on VBScript will work the same way in VB.NET. There
are many subtle differences between the two programming languages.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

May 18 '07 #8
True, but I agree with Cor. VBScript is a scaled back version of VB 5 (not
6). However, the fundamental language core when you remove the IO features
has not changed from VB 4 to VB 2005. In some ways, a VBScript developer
will actually have an easier time moving to VB 2005 because the dotNet IO
methods appear to have been modeled after the Windows Scripting FileSystemIO
class.

As for OP's question, the VS 2005 local help system is easily confused. I
frequently get SQL Server or MS Office help pages instead of the help for
the VB or C# keyword I'm looking for. The on-line help is worse and
frequently returns help for environments I don't even have installed. I
suspect this is not a problem in the help system, but is an IDE issue where
it specifies the wrong development environment.

Mike.
"Herfried K. Wagner [MVP]" <hi***************@gmx.atwrote in message
news:u7**************@TK2MSFTNGP05.phx.gbl...
"Cor Ligthert [MVP]" <no************@planet.nlschrieb:
>if YourStateMent = true then
ShowMeThisOneInVBS
End if

You are picking a trivial sample which is almost similar in VBScript and
VB.NET. However, there is absolutely no guarantee that anything mentioned
in the documentation on VBScript will work the same way in VB.NET. There
are many subtle differences between the two programming languages.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

May 18 '07 #9
"Michael D. Ober" <obermd.@.alum.mit.edu.nospamschrieb:
VBScript is a scaled back version of VB 5 (not 6).
Well, that's a fact, and thus I agree.
However, the fundamental language core when you remove the IO features has
not changed from VB 4 to VB 2005.
What do you consider the "fundamental language core"?

Arrays have been changed.
Properties have been changed.
Classes and UDTs (now called structures) have been changed
'ByVal'/'ByRef' as the default passing mode have been swapped.
'As New' has changed its semantics.
....
In some ways, a VBScript developer will actually have an easier time
moving to VB 2005 because the dotNet IO methods appear to have been
modeled after the Windows Scripting FileSystemIO class.
Using a class I have never used before was never a problem for me -- I just
open the documentation, check out the members, their descriptions, and
samples illustrating their usage. However, my concern was about using the
VBScript documentation when programming in VB.NET: As I stated, there are
many little differences. 'Replace', for example, has changed slightly,
'String' has been renamed to 'StrDup', ... That's why I'd really recommend
to use the VB.NET documentation when using VB.NET.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

May 18 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: RU | last post by:
Hi, I am working on a porting project to port C/C++ application from unixware C++, AT&T Standard components to g++ with STL on Linux. This application has been working properly on...
110
by: Mr A | last post by:
Hi! I've been thinking about passing parameteras using references instead of pointers in order to emphasize that the parameter must be an object. Exemple: void func(Objec& object); //object...
11
by: Doug | last post by:
Is there any harm in passing an object into a method with the 'ref' keyword if the object is already a reference variable? If not, is there any benefit?
13
by: Abe Frohnman | last post by:
Hello all, I'm passing a reference to a class into the constructor of a form, like so: public MyForm(int count, ref Area myArea) {...} How can I use myArea outside the constructor? Should I...
4
by: z_learning_tester | last post by:
I'm reading the MS press C# book and there seems to be a contradiction. Please tell me which one is correct, 1 or 2. Thanks! Jeff 1. First it gives the code below saying that it prints 0 then...
13
by: al.cpwn | last post by:
I get that these two are different int* get() { static int m; return &m; } int& get() {
51
by: Kuku | last post by:
What is the difference between a reference and a pointer?
27
by: David W | last post by:
I'm almost tearing my hair out. A colleague claimed that a null reference can exist, like this: void f( int& p ) { printf( "%d\n", p ); } int main (int argc, char *argv) {
41
by: Summercool | last post by:
Can we confirm the following? also someone said, Java also has "reference" like in C++, which is an "implicit pointer": Pointer and Reference --------------------- I am starting to see what...
275
by: Astley Le Jasper | last post by:
Sorry for the numpty question ... How do you find the reference name of an object? So if i have this bob = modulename.objectname() how do i find that the name is 'bob'
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.