Click here to Skip to main content
15,884,353 members
Home / Discussions / C#
   

C#

 
AnswerRe: sqlQuery Pin
OriginalGriff6-Oct-12 4:49
mveOriginalGriff6-Oct-12 4:49 
Questiontic toe game not working as expected,please help? Pin
Member 94790245-Oct-12 22:59
Member 94790245-Oct-12 22:59 
AnswerRe: tic toe game not working as expected,please help? Pin
Pete O'Hanlon6-Oct-12 1:51
mvePete O'Hanlon6-Oct-12 1:51 
AnswerRe: tic toe game not working as expected,please help? Pin
John Orendt7-Oct-12 0:36
John Orendt7-Oct-12 0:36 
QuestionHow to create a message sender which will use your mobile no and credit but no use of your mobile? Pin
zain_zone5-Oct-12 22:11
zain_zone5-Oct-12 22:11 
AnswerRe: How to create a message sender which will use your mobile no and credit but no use of your mobile? Pin
Eddy Vluggen6-Oct-12 3:45
professionalEddy Vluggen6-Oct-12 3:45 
GeneralRe: How to create a message sender which will use your mobile no and credit but no use of your mobile? Pin
OriginalGriff6-Oct-12 5:00
mveOriginalGriff6-Oct-12 5:00 
QuestionNeed Help UNICODE Pin
Nazim Iqbal5-Oct-12 13:55
Nazim Iqbal5-Oct-12 13:55 
XML
Hi


I need your help in,
I am working on a project, MYSQL and PHP based, with WAMP SERVER
I have a field storytext, (data collected in URDU) detail are:

<b>Field               Type         Collation                    Null        Default
storytext          text           utf8_unicode_ci            Yes        NULL</b>

Retrieving URDU Data from MY SQL 5.5.8 running on wamp server with PHP is OK,

And the soft ware is only for Internal use not web base!
------------------------------------------------------------------------------------------
<b>HERE IS THE PROBLEM:</b>

One section of it is designed on Visual Studio.NET 2010 in which

I have a datagrid, on clicking any row I got the TEXT in details on text box,

which show <b>URDU TEXT</b>, from data base here is the problem with <b>TEXT BOX and DATAGRID.</b>

I got this..........

<b>DESP. ITEM

پروگرام رانا مب
شر ايٹ پرائم ٹائم ميں
گ٠تگو کرتے Û ÙˆØ¦Û’ وزير٠اعظم Ú©Û’
وکيل Ú†ÙˆÛ Ø¯Ø±ÙŠ اعتزاز احسن
کا Ú©Û Ù†Ø§ تھا Ú©Û ØµØ¯Ø± Ú©Û’ Ø¹Û Ø¯Û’
Ú©Ùˆ استشني حاصل Û Û’
وزير٠اعظم Ø</b>
-------------------------------------------------------------------------------------------------------
I also use in visual studio

<b>cnString = "datasource=localhost;username=root;password=;database=spidernews;charset=utf8;"</b>

How can I solve this problem,
can you help me out !
<b>URDU NOT SHOWING,  </b>

<pre lang="vb">Here is Whole CODE of Visual Studio, I am using:
------------------------------------------------------------------------------------------------------------------------</pre>


<pre lang="text">
Imports MySql.Data.MySqlClient

Public Class Form1

    Dim conn As Common.DbConnection
    Dim da As Common.DbDataAdapter
    Dim ds As DataSet = New DataSet
    Dim cnString As String
    Dim sqlQRY As String
    'Dim dt As DataTable
    'Dim strBuilder As Char




    '''' SCROLLONG TEXT START
    Dim scrollingText As String = "Spider NEWS "
    Dim txtStr(scrollingText.Length - 1) As String
    Dim txtPos As Integer = -1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

        'strBuilder.ToString ("tblnews" & char(34))


        cnString = "datasource=localhost;username=root;password=;database=spidernews;charset=utf8;"

        sqlQRY = "SET NAMES UTF8; SET CHARACTER SET UTF8;Select slugid,slug,storytext,storyduration,segmentdescription,prioritydescription,mosstatus from tblnews"
        'sqlQRY = "SET NAMES UTF8; SET CHARACTER SET latin1;Select slugid,slug,storytext,storyduration,segmentdescription,prioritydescription,mosstatus from tblnews"
        conn = New MySqlConnection(cnString)

        Try
            conn.Open()
            da = New MySqlDataAdapter(sqlQRY, conn)
            Dim cb As MySqlCommandBuilder = New MySqlCommandBuilder(da)

            da.Fill(ds, "tblnews")

            DataGridView1.DataSource = ds
            DataGridView1.DataMember = "tblnews"
            '''''


        Catch ex As Common.DbException
            MsgBox(ex.ToString)
        Finally
            conn.Close()
        End Try

        '''' SCROLLONG TEXT START
        For idx As Integer = 0 To UBound(txtStr)
            Dim workedString As String = ""
            workedString = scrollingText.Substring(idx) & " " & scrollingText.Substring(0, idx)
            txtStr(idx) = workedString
        Next
        Timer1.Interval = 5000
        Timer1.Enabled = True
        Timer1.Start()
        '''' SCROLLONG TEXT END
        Label2.Text = System.DateTime.Now

    End Sub

    Private Sub Save_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)

        da.Update(ds, "" + TextBox1.Text + "")
        MsgBox("Data sent", MsgBoxStyle.OkOnly, "Sucess")

    End Sub

    Private Sub DataGridView1_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellContentClick

        Dim i, j As Integer
        i = DataGridView1.CurrentRow.Index
        RichTextBox1.Text = DataGridView1.Item(2, i).Value

    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick

        Dim i, j As Integer
        i = DataGridView1.CurrentRow.Index

        '''' SCROLLONG TEXT START
        txtPos += 1
        Dim timerStr As String
        timerStr = txtStr(txtPos)
        RichTextBox1.Text = DataGridView1.Item(2, i).Value

        Label1.Text = timerStr
        If txtPos = UBound(txtStr) Then txtPos = -1
        '''' SCROLLONG TEXT START

    End Sub

End Class



</pre>

AnswerRe: Need Help UNICODE Pin
Richard MacCutchan5-Oct-12 22:29
mveRichard MacCutchan5-Oct-12 22:29 
QuestionC# search directory paths Pin
rachel_m5-Oct-12 10:43
rachel_m5-Oct-12 10:43 
AnswerRe: C# search directory paths Pin
Eddy Vluggen5-Oct-12 10:49
professionalEddy Vluggen5-Oct-12 10:49 
AnswerRe: C# search directory paths Pin
Richard MacCutchan5-Oct-12 22:28
mveRichard MacCutchan5-Oct-12 22:28 
GeneralRe: C# search directory paths Pin
rachel_m6-Oct-12 9:01
rachel_m6-Oct-12 9:01 
GeneralRe: C# search directory paths Pin
Richard MacCutchan6-Oct-12 21:19
mveRichard MacCutchan6-Oct-12 21:19 
Generalpls help learn c# need someone to guide me thru Pin
becky suinner5-Oct-12 9:42
becky suinner5-Oct-12 9:42 
GeneralRe: pls help learn c# need someone to guide me thru Pin
Eddy Vluggen5-Oct-12 9:46
professionalEddy Vluggen5-Oct-12 9:46 
GeneralRe: pls help learn c# need someone to guide me thru Pin
becky suinner5-Oct-12 9:58
becky suinner5-Oct-12 9:58 
GeneralRe: pls help learn c# need someone to guide me thru Pin
Eddy Vluggen5-Oct-12 10:03
professionalEddy Vluggen5-Oct-12 10:03 
GeneralRe: pls help learn c# need someone to guide me thru Pin
becky suinner5-Oct-12 10:01
becky suinner5-Oct-12 10:01 
GeneralRe: pls help learn c# need someone to guide me thru Pin
Eddy Vluggen5-Oct-12 10:08
professionalEddy Vluggen5-Oct-12 10:08 
GeneralRe: pls help learn c# need someone to guide me thru Pin
Richard MacCutchan5-Oct-12 22:19
mveRichard MacCutchan5-Oct-12 22:19 
GeneralRe: pls help learn c# need someone to guide me thru Pin
Pete O'Hanlon5-Oct-12 22:28
mvePete O'Hanlon5-Oct-12 22:28 
Questionhow can i delete data from sql database on select the item from listbox in window form in asp.net Pin
Ranjeet69315-Oct-12 7:23
Ranjeet69315-Oct-12 7:23 
AnswerRe: how can i delete data from sql database on select the item from listbox in window form in asp.net Pin
kamalkss5-Oct-12 8:00
kamalkss5-Oct-12 8:00 
GeneralRe: how can i delete data from sql database on select the item from listbox in window form in asp.net Pin
Ranjeet69315-Oct-12 8:15
Ranjeet69315-Oct-12 8:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.