Click here to Skip to main content
15,903,362 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to scroll the second panel by scrollbar in first panel? Pin
cocoonwls22-Jun-08 23:58
cocoonwls22-Jun-08 23:58 
GeneralRe: How to scroll the second panel by scrollbar in first panel? Pin
Harvey Saayman23-Jun-08 0:12
Harvey Saayman23-Jun-08 0:12 
GeneralRe: How to scroll the second panel by scrollbar in first panel? Pin
cocoonwls23-Jun-08 0:16
cocoonwls23-Jun-08 0:16 
QuestionSet the computer Date and Time (Format) Pin
Programm3r22-Jun-08 20:09
Programm3r22-Jun-08 20:09 
AnswerRe: Set the computer Date and Time (Format) Pin
Programm3r22-Jun-08 20:47
Programm3r22-Jun-08 20:47 
QuestionConnect to access 2007 to check username and password for windows form Pin
jackburton22-Jun-08 19:57
jackburton22-Jun-08 19:57 
AnswerRe: Connect to access 2007 to check username and password for windows form Pin
Harvey Saayman22-Jun-08 20:18
Harvey Saayman22-Jun-08 20:18 
QuestionAsynchron Pin
greekius22-Jun-08 19:28
greekius22-Jun-08 19:28 
In a Page (there is no async=true tag); i call a procedure asynchrously. Sometimes it calls the callback; sometimes not. Why do i face this reason?


private void AsynchronProcedure()
	....
    try
        {
            dbSqlConnection.Open();

            IAsyncResult asyncResult = dbSqlCommand.BeginExecuteNonQuery(MyCallBack, dbSqlCommand);

        }
        catch (Exception ex)
        {

        }
        finally
        {
            dbSqlConnection.Close();
        }


    }

    private void MyCallBack(IAsyncResult asyncResult)
    {
        SqlCommand dbSqlcommand = (SqlCommand)asyncResult.AsyncState;
        try
        {
            if (asyncResult.IsCompleted)
            {
                dbSqlcommand.EndExecuteNonQuery(asyncResult);
                
            }
        }
        catch (Exception ex)
        {
 
        }
    }

AnswerRe: Asynchron Pin
leppie22-Jun-08 21:13
leppie22-Jun-08 21:13 
Questionerror CS0051: Inconsistent accessibility Pin
George_George22-Jun-08 19:21
George_George22-Jun-08 19:21 
AnswerRe: error CS0051: Inconsistent accessibility Pin
Christian Graus22-Jun-08 19:32
protectorChristian Graus22-Jun-08 19:32 
GeneralRe: error CS0051: Inconsistent accessibility Pin
George_George22-Jun-08 23:16
George_George22-Jun-08 23:16 
GeneralRe: error CS0051: Inconsistent accessibility Pin
Christian Graus22-Jun-08 23:36
protectorChristian Graus22-Jun-08 23:36 
GeneralRe: error CS0051: Inconsistent accessibility Pin
George_George23-Jun-08 0:03
George_George23-Jun-08 0:03 
GeneralRe: error CS0051: Inconsistent accessibility Pin
Christian Graus23-Jun-08 0:26
protectorChristian Graus23-Jun-08 0:26 
GeneralRe: error CS0051: Inconsistent accessibility Pin
George_George23-Jun-08 1:35
George_George23-Jun-08 1:35 
GeneralRe: error CS0051: Inconsistent accessibility Pin
Christian Graus23-Jun-08 1:42
protectorChristian Graus23-Jun-08 1:42 
GeneralRe: error CS0051: Inconsistent accessibility Pin
George_George23-Jun-08 21:50
George_George23-Jun-08 21:50 
GeneralRe: error CS0051: Inconsistent accessibility Pin
Christian Graus23-Jun-08 21:52
protectorChristian Graus23-Jun-08 21:52 
GeneralRe: error CS0051: Inconsistent accessibility Pin
George_George23-Jun-08 23:18
George_George23-Jun-08 23:18 
GeneralRe: error CS0051: Inconsistent accessibility Pin
Christian Graus23-Jun-08 23:58
protectorChristian Graus23-Jun-08 23:58 
GeneralRe: error CS0051: Inconsistent accessibility Pin
George_George24-Jun-08 1:50
George_George24-Jun-08 1:50 
GeneralRe: error CS0051: Inconsistent accessibility Pin
User 665823-Jun-08 0:35
User 665823-Jun-08 0:35 
GeneralRe: error CS0051: Inconsistent accessibility Pin
George_George23-Jun-08 1:35
George_George23-Jun-08 1:35 
QuestionLink List Pin
benjamin yap22-Jun-08 18:02
benjamin yap22-Jun-08 18:02 

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.