Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_vb thread: String Compiling with "


Message #1 by "Seth Bembeneck" <sbembeneck@c...> on Wed, 19 Dec 2001 22:48:41 -0500
Thank You!
I tried your second Idea and It worked. I had looked into doing your 
suggestion before you suggested it, but I could not find in the ascii 
table ".
Thanks again,
Seth
> Hi
> 
> There are two ways, 
> 
> 1) U dont need double quotes strictly. Single quotes
> can do the job. u can add single quotes like-
>  strTemp= "<font face='" & sFontName & "'>"
> OR
> 2) Use the ASCII representation like-
>  strTemp= "<font face=" & chr(34) & sFontName &
> chr(34) & ">"
> 
> just check whether chr(34) is double quotes..
> 
> Regards
> Shreekar Joshi
> --- Seth Bembeneck <sbembeneck@c...>
> wrote:
> > I need to put together a string that includes the "
> > The string is as
> > follows:
> > <font face="Veranda">
> > This string is created during runtime, allowing the
> > user to change the font
> > (yes, this is used in a web page).
> > 
> > I start it out like this:
> > 
> > dim strTemp as string
> > 
> > strTemp= "<font face="         'here is where I get
> > stuck, how
> > 'do you add " ?
> > 
> > thanks in advance,
> > Seth
> > 
> > 
> $subst('Email.Unsub').
> 
> 
> __________________________________________________
> Do You Yahoo!?
> Check out Yahoo! Shopping and Yahoo! Auctions for all of
> your unique holiday gifts! Buy at http://shopping.yahoo.com
> or bid at http://auctions.yahoo.com

  Return to Index