Click here to Skip to main content
15,860,859 members
Home / Discussions / C#
   

C#

 
AnswerRe: Force TextBox to show cursor Pin
Christian Graus29-Apr-08 23:24
protectorChristian Graus29-Apr-08 23:24 
GeneralRe: Force TextBox to show cursor Pin
Christian Wikander29-Apr-08 23:26
Christian Wikander29-Apr-08 23:26 
GeneralRe: Force TextBox to show cursor Pin
Christian Graus29-Apr-08 23:32
protectorChristian Graus29-Apr-08 23:32 
QuestionC#.Net MS Access and DataGridView Problem Pin
Blackhawk5000029-Apr-08 23:00
Blackhawk5000029-Apr-08 23:00 
AnswerRe: C#.Net MS Access and DataGridView Problem Pin
Blackhawk5000030-Apr-08 1:07
Blackhawk5000030-Apr-08 1:07 
AnswerRe: C#.Net MS Access and DataGridView Problem Pin
Ashfield30-Apr-08 1:30
Ashfield30-Apr-08 1:30 
GeneralRe: C#.Net MS Access and DataGridView Problem Pin
Blackhawk5000030-Apr-08 1:34
Blackhawk5000030-Apr-08 1:34 
QuestionSQL Server Replication Pin
abdurrahman oğuz29-Apr-08 22:58
abdurrahman oğuz29-Apr-08 22:58 
i'm using SQL Server 2005, Windows XP SP2, Visual Studio .Net 2003, AVG anti-virus, no firewall, no proxy.

i configure IIS (virtual directory) and SQL Server (publication) as described in Miscrosoft web site.
i installed Microsoft SQL Server 2005 Mobile Edition and configured for web sycronization. i tried everything which mentioned in many blogs, forms and msdn but i recieve the error "Header Information is either is corrupted or missing..."

When i type "http://[Server IP]/[Virtual Directory]/sqlcesa30.dll", it return a valid result but i cannot connect to SQL Server for Pull or Push or SubmitSql process.

here is my code

string rdaOleDbConnectString = "Provider=SQLOLEDB;" +
    "Data Source=" + MainForm.ServerIP + ";" +
    "User Id=" + MainForm.DBUserID + ";" +
    "Password=" + MainForm.DBPassword + "; " +
    "Initial Catalog=" + MainForm.DBName + ";";
SqlCeRemoteDataAccess rda = null;

try 
{
    rda = new SqlCeRemoteDataAccess();
    rda.InternetLogin = MainForm.WebUserID;
    rda.InternetPassword = MainForm.WebPassword;
    rda.InternetUrl = "http://" + MainForm.ServerIP + "/" + MainForm.WebDir + "/sqlcesa30.dll";
    rda.SubmitSql(txtQuery.Text, rdaOleDbConnectString);

    MessageBox.Show("The query execution is successfull");
}			
catch (SqlCeException exc)
{
    MessageBox.Show(exc.Message);

    return;
}
finally
{
    rda.Dispose();
}


is there any suggestions?
QuestionC#.Net and MS Excel merging Pin
codingrocks29-Apr-08 22:14
codingrocks29-Apr-08 22:14 
QuestionGIS Travel Time Estimations Pin
devil8529-Apr-08 21:54
devil8529-Apr-08 21:54 
GeneralRe: GIS Travel Time Estimations Pin
phannon8629-Apr-08 22:22
professionalphannon8629-Apr-08 22:22 
GeneralRe: GIS Travel Time Estimations Pin
devil8529-Apr-08 22:27
devil8529-Apr-08 22:27 
GeneralRe: GIS Travel Time Estimations Pin
Guffa29-Apr-08 23:42
Guffa29-Apr-08 23:42 
JokeRe: GIS Travel Time Estimations Pin
Big Daddy Farang30-Apr-08 8:55
Big Daddy Farang30-Apr-08 8:55 
JokeRe: GIS Travel Time Estimations Pin
Guffa30-Apr-08 10:33
Guffa30-Apr-08 10:33 
QuestionHow to pass datatable as parameter into webservice method Pin
Balaji.KJ29-Apr-08 21:28
Balaji.KJ29-Apr-08 21:28 
AnswerRe: How to pass datatable as parameter into webservice method Pin
Vikram A Punathambekar29-Apr-08 21:39
Vikram A Punathambekar29-Apr-08 21:39 
GeneralRe: How to pass datatable as parameter into webservice method Pin
AshwiniSH29-May-14 0:03
professionalAshwiniSH29-May-14 0:03 
QuestionAbout setting password. Pin
Prabhat00329-Apr-08 20:28
Prabhat00329-Apr-08 20:28 
AnswerRe: About setting password. Pin
Christian Graus29-Apr-08 21:20
protectorChristian Graus29-Apr-08 21:20 
AnswerRe: About setting password. Pin
Abhijit Jana29-Apr-08 21:23
professionalAbhijit Jana29-Apr-08 21:23 
GeneralRe: About setting password. Pin
Christian Graus29-Apr-08 21:25
protectorChristian Graus29-Apr-08 21:25 
GeneralRe: About setting password. Pin
Prabhat00329-Apr-08 22:21
Prabhat00329-Apr-08 22:21 
GeneralRe: About setting password. Pin
Christian Graus29-Apr-08 22:29
protectorChristian Graus29-Apr-08 22:29 
GeneralRe: About setting password. Pin
Vikram A Punathambekar29-Apr-08 23:12
Vikram A Punathambekar29-Apr-08 23:12 

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.