locked
how to write arabic in visual basic 6.0 RRS feed

  • Question

  • how to write <g class="gr_ gr_4 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace" data-gr-id="4" id="4">arabic</g> in visual basic 6.0 
    Sunday, November 5, 2017 7:25 PM

Answers

  • Hello,

    Since this forum is discussing and asking questions about the Visual Basic programming language, IDE, libraries, samples, and tools, and your issue is more related to VB6. This link about vb6,

    please refer that:

    http://www.vbforums.com/forumdisplay.php?1-Visual-Basic-6-and-Earlier

    Thank you for participating in the forum activities.

    Best Regards,

    Cherry



    MSDN Community Support
    Please remember to click "Mark as Answer" the responses that resolved your issue, and to click "Unmark as Answer" if not. This can be beneficial to other community members reading this thread. If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.

    Monday, November 6, 2017 5:28 AM

All replies

  • Hello,

    Since this forum is discussing and asking questions about the Visual Basic programming language, IDE, libraries, samples, and tools, and your issue is more related to VB6. This link about vb6,

    please refer that:

    http://www.vbforums.com/forumdisplay.php?1-Visual-Basic-6-and-Earlier

    Thank you for participating in the forum activities.

    Best Regards,

    Cherry



    MSDN Community Support
    Please remember to click "Mark as Answer" the responses that resolved your issue, and to click "Unmark as Answer" if not. This can be beneficial to other community members reading this thread. If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.

    Monday, November 6, 2017 5:28 AM
  • how to write <g class="gr_ gr_4 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace" data-gr-id="4" id="4">arabic</g> in visual basic 6.0 

    I believe Visual Basic 6.0, which is about as old as the ancient Arabic language, written in Arabic can be found printed on the walls, ceiling and floor (and some pottery) of the newly discovered void in the Great Pyramid of Giza. Or maybe not.

    La vida loca

    Wednesday, November 8, 2017 6:45 PM
  • how to write <g class="gr_ gr_4 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace" data-gr-id="4" id="4">arabic</g> in visual basic 6.0 


    I believe Visual Basic 6.0, which is about as old as the ancient Arabic language, written in Arabic can be found printed on the walls, ceiling and floor (and some pottery) of the newly discovered void in the Great Pyramid of Giza. Or maybe not.

    La vida loca

    You find them on almost every house in America, Europe, Australia and Africa.

     

    Success
    Cor




    • Edited by Cor Ligthert Wednesday, November 8, 2017 7:29 PM
    Wednesday, November 8, 2017 7:22 PM
  • how to write <g class="gr_ gr_4 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace" data-gr-id="4" id="4">arabic</g> in visual basic 6.0 

    I don't have Visual Basic 6.0 but here's how I'd do in in VB .NET

    Option Strict On
    Option Explicit On
    Module Module1
        Sub Main()
            Console.WriteLine("<g class=" & Chr(34) & "gr_ gr_4 gr-alert gr_spell gr_inline_cards gr_run_anim ContextualSpelling ins-del multiReplace" & Chr(34) & " data-gr-id=" & Chr(34) & "4" & Chr(34) & " id=" & Chr(34) & "4" & Chr(34) & ">arabic</g>")
            Console.ReadKey()
        End Sub
    End Module

    For a forms app:

    Public Class Form1
        Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
            TextBox1.Text = "بريطانيا،. جُل أن ودول السيء الواقعة, هو بفرض وعُرفت للإتحاد انه, مع "
        End Sub
    End Class
    
    Gives this:

    DISCLAIMER - I do not speak or read or understand Arabic, I copied the text shown from this website - it is supposed to be just random text, If it is actually foul, or insulting or anything unpleasant, that is not intentional at all.

     

    • Edited by Devon_Nullman Thursday, November 9, 2017 6:46 PM Added Forms code.
    Thursday, November 9, 2017 6:33 PM
  • Hello,

    Since this is a VB.NET forum I'm moving this to an off-topic forum.


    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem. Contact via my Twitter (Karen Payne) or Facebook (Karen Payne) via my MSDN profile but will not answer coding question on either.
    VB Forums - moderator
    profile for Karen Payne on Stack Exchange, a network of free, community-driven Q&A sites

    Thursday, November 9, 2017 6:47 PM