Click here to Skip to main content
15,886,085 members
Home / Discussions / C#
   

C#

 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 2:52
Tunisien865-May-10 2:52 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Michel Godfroid5-May-10 4:04
Michel Godfroid5-May-10 4:04 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 4:22
Tunisien865-May-10 4:22 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Michel Godfroid5-May-10 4:47
Michel Godfroid5-May-10 4:47 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 5:24
Tunisien865-May-10 5:24 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Michel Godfroid5-May-10 5:52
Michel Godfroid5-May-10 5:52 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien866-May-10 1:43
Tunisien866-May-10 1:43 
AnswerRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien8611-May-10 6:03
Tunisien8611-May-10 6:03 
Hi Freinds,

Finally I depass the problem of the connexion to server by the DB File's attachment Laugh | :laugh: . No exception apperas.Still now the problem of the filling of my combobox .I try with sqldataset instead of the sqlreader like this:
string sConnection = "Data Source=127.0.0.1,1433;Persist Security Info=True;Initial Catalog=GMAO;User ID=sa;Password=sa";
   string sSQL = "SELECT com FROM energie; ";
   SqlConnection conn = new SqlConnection(sConnection);
   SqlCommand comm = new SqlCommand(sSQL, conn);
   DataSet ds = new DataSet();
   SqlCeDataAdapter da = new SqlCeDataAdapter();
   SqlDataReader dr = null;
   try
   {
    
    comm.Connection.Open();
    da.Fill(ds, "SQL Temp Table");
    foreach(DataRow d in ds.Tables[0].Rows)
    comboBox1.Items.Add(d.ToString());
   }
   catch (SqlException ex)
   {
    //MessageBox.Show("connexion impossible");
    MessageBox.Show(ex.Message);
    return;
   }

   dr.Close();
   comm.Connection.Close();
  }

but nothing is added to my combobox.

Thanks in all cases for u collaboration
I am really sooooooooooo happy Laugh | :laugh:
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Eddy Vluggen5-May-10 4:24
professionalEddy Vluggen5-May-10 4:24 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 4:49
Tunisien865-May-10 4:49 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien866-May-10 2:17
Tunisien866-May-10 2:17 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Eddy Vluggen6-May-10 2:29
professionalEddy Vluggen6-May-10 2:29 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien866-May-10 3:40
Tunisien866-May-10 3:40 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien866-May-10 4:58
Tunisien866-May-10 4:58 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Eddy Vluggen6-May-10 5:30
professionalEddy Vluggen6-May-10 5:30 
AnswerRe: TCP/IP connexion failed in csharp smart device Pin
Luc Pattyn5-May-10 2:57
sitebuilderLuc Pattyn5-May-10 2:57 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 3:22
Tunisien865-May-10 3:22 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Luc Pattyn5-May-10 3:43
sitebuilderLuc Pattyn5-May-10 3:43 
AnswerRe: TCP/IP connexion failed in csharp smart device Pin
Pete O'Hanlon5-May-10 3:57
mvePete O'Hanlon5-May-10 3:57 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 4:08
Tunisien865-May-10 4:08 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Michel Godfroid5-May-10 4:16
Michel Godfroid5-May-10 4:16 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 5:06
Tunisien865-May-10 5:06 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Michel Godfroid5-May-10 5:12
Michel Godfroid5-May-10 5:12 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 5:29
Tunisien865-May-10 5:29 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Michel Godfroid5-May-10 4:08
Michel Godfroid5-May-10 4:08 

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.