Posts: 64
Threads: 30
Joined: Sep 2011
Reputation:
0
Hi everybody
Just wanted a little help from you
you must have seen that when we enter something in a message box we do it like this
msgbox("text")
This msgbox command displays a message box like
But what to do if we want the msbox to display this
"text"
including ""
Thanks in Advance
Regards,
-Himansh
The Power to Believe in Yourself is the Power to change the Fate!
Posts: 245
Threads: 31
Joined: Sep 2010
Reputation:
0
msgbox("""text""")
I belive it is but there is other ways
Website: <!-- m --><a class="postlink" href="http://www.PBAProductions.com">http://www.PBAProductions.com</a><!-- m -->
E-Mail: <!-- e --><a href="mailto
atrick@AriSystems.Org">Patrick@AriSystems.Org</a><!-- e -->
Skype: Qwaxer
Youtube: Qwaxer
Posts: 64
Threads: 30
Joined: Sep 2011
Reputation:
0
@xolora
man i have already tried that but it says There are errors
You can try it yourself if you want to confirm that i am saying the truth.
The Power to Believe in Yourself is the Power to change the Fate!
Posts: 1,006
Threads: 111
Joined: Jul 2010
Reputation:
1
Have a look at this thread:
<!-- l --><a class="postlink-local" href="http://bpforums.info/viewtopic.php?f=9&t=361&hilit=Quotation">viewtopic.php?f=9&t=361&hilit=Quotation</a><!-- l -->
Posts: 64
Threads: 30
Joined: Sep 2011
Reputation:
0
@brandonio21
Thanks i got my answer
But can you tell me how does this command works
Code:
insert("And Dave said, " & Chr(34) & "Look out!" & Chr(34))
I have tested , this works but can you tell me how
-Himansh
The Power to Believe in Yourself is the Power to change the Fate!
Posts: 1,006
Threads: 111
Joined: Jul 2010
Reputation:
1
The "Chr(34)" Is basically telling Vb.net to insert a character with the value of 34 at that location. Quotation marks have a character value of 34.
Posts: 64
Threads: 30
Joined: Sep 2011
Reputation:
0
Ok i got it
But how can we know character value of other keys
And also sorry to xolora
I didn't read his post completely
The Power to Believe in Yourself is the Power to change the Fate!
Posts: 1,006
Threads: 111
Joined: Jul 2010
Reputation:
1
Here's a chart:
<!-- m --><a class="postlink" href="http://www.asciitable.com/">http://www.asciitable.com/</a><!-- m -->
Posts: 64
Threads: 30
Joined: Sep 2011
Reputation:
0
Thanks a lot
It really helped me a lot
The Power to Believe in Yourself is the Power to change the Fate!