|
-
Jun 28th, 2008, 11:50 AM
#1
Thread Starter
Frenzied Member
[RESOLVED] Textbox string
The original is
Code:
.Expression = """AYAM"""
the output is AYAM. This ok. Then I change to used textbox
I want to get the input value from textbox..I used textbox.
It should be AYAM because I input this text in my textbox5.
But my output is & TextBox5.Text & . I got my textbox name. Why could be like this? What wrong with my code below?
Code:
.Expression = """ & TextBox5.Text & """
-
Jun 28th, 2008, 11:52 AM
#2
Re: Textbox string
Code:
.Expression = """" & TextBox5.Text & """"
-
Jun 28th, 2008, 11:55 AM
#3
Re: Textbox string
The logic is: dual quotes within quotes are accounted as a single quote.
-
Jun 28th, 2008, 12:03 PM
#4
Thread Starter
Frenzied Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|