Issue writing a String

Hi all

I have a very very silly question maybe. But I tried in a simple example unsuccessfully, and I want to write this on a String:


‘“BtnDescarga” onclick="return AccionCfdi(’

But I dunno how to do it, I have a problem with the quotation marks.

Any suggestions?

[quote=232266:@Gerardo García]Hi all

I have a very very silly question maybe. But I tried in a simple example unsuccessfully, and I want to write this on a String:


‘“BtnDescarga” onclick="return AccionCfdi(’

But I dunno how to do it, I have a problem with the quotation marks.

Any suggestions?[/quote]

Yeaaaaaaahhhh:

I got the Solution:

Dim busqueda As String = “”“BtnDescarga”"" + " onclick="""+“return AccionCfdi(’”
Msgbox busqueda

Dim busqueda As String = "'""BtnDescarga"" onclick=""return AccionCfdi('"

works too and includes the initial ’

[quote=232280:@Wayne Golding]Dim busqueda As String = "'""BtnDescarga"" onclick=""return AccionCfdi('"

works too and includes the initial '[/quote]
oooooooooooooooo Thank you!!!