Why can't i define ditto mark " ?

  • Thread starter Thread starter kimiraikkonen
  • Start date Start date
K

kimiraikkonen

I'm using VB.NET 05 express and i have to declare a simple string
like:

Dim mystring As String
mystring = " " "

But that doesn't work.

Also i can't define it in order to write into textbox:

In order to define ditto mark, strings are entered between ditto marks
of VB.NET enviroment:

For example

mystring = "something" is OK but mystring = """ NO.

How can i fix it?

Thanks.
 
Kimi

A single double quote is written as two double quotes inside double quotes
quotes. By instance """"

Cor
 
kimiraikkonen said:
I'm using VB.NET 05 express and i have to declare a simple string
like:

Dim mystring As String
mystring = " " "

But that doesn't work.

Also i can't define it in order to write into textbox:

In order to define ditto mark, strings are entered between ditto marks
of VB.NET enviroment:

For example

mystring = "something" is OK but mystring = """ NO.

How can i fix it?

Thanks.

Another way to assign a quote character is
myString = chr(34)
 
Back
Top