Click here to Skip to main content
15,888,908 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# error message SystemCertificates\Disallowed Pin
classy_dog11-Feb-13 6:37
classy_dog11-Feb-13 6:37 
GeneralRe: C# error message SystemCertificates\Disallowed Pin
Dave Kreskowiak11-Feb-13 7:26
mveDave Kreskowiak11-Feb-13 7:26 
AnswerRe: C# error message SystemCertificates\Disallowed Pin
jschell11-Feb-13 8:14
jschell11-Feb-13 8:14 
GeneralRe: C# error message SystemCertificates\Disallowed Pin
classy_dog11-Feb-13 16:40
classy_dog11-Feb-13 16:40 
GeneralRe: C# error message SystemCertificates\Disallowed Pin
jschell12-Feb-13 14:17
jschell12-Feb-13 14:17 
GeneralRe: C# error message SystemCertificates\Disallowed Pin
classy_dog12-Feb-13 11:19
classy_dog12-Feb-13 11:19 
GeneralRe: C# error message SystemCertificates\Disallowed Pin
jschell12-Feb-13 14:20
jschell12-Feb-13 14:20 
GeneralRe: C# error message SystemCertificates\Disallowed Pin
classy_dog12-Feb-13 16:18
classy_dog12-Feb-13 16:18 
QuestionHow to sent/receive sms in C# application? Pin
Anand Gunasekaran11-Feb-13 3:43
professionalAnand Gunasekaran11-Feb-13 3:43 
AnswerRe: How to sent/receive sms in C# application? Pin
José Amílcar Casimiro11-Feb-13 4:28
José Amílcar Casimiro11-Feb-13 4:28 
AnswerRe: How to sent/receive sms in C# application? Pin
Abhinav S11-Feb-13 5:21
Abhinav S11-Feb-13 5:21 
AnswerRe: How to sent/receive sms in C# application? Pin
jschell11-Feb-13 8:15
jschell11-Feb-13 8:15 
GeneralRe: How to sent/receive sms in C# application? Pin
Anand Gunasekaran11-Feb-13 23:21
professionalAnand Gunasekaran11-Feb-13 23:21 
AnswerRe: How to sent/receive sms in C# application? Pin
Amir Mohammad Nasrollahi29-Jul-13 22:23
professionalAmir Mohammad Nasrollahi29-Jul-13 22:23 
QuestionConstructor issue Pin
antrock10111-Feb-13 2:41
antrock10111-Feb-13 2:41 
AnswerRe: Constructor issue Pin
Abhinav S11-Feb-13 2:51
Abhinav S11-Feb-13 2:51 
GeneralRe: Constructor issue Pin
antrock10111-Feb-13 3:43
antrock10111-Feb-13 3:43 
GeneralRe: Constructor issue Pin
Richard MacCutchan11-Feb-13 4:45
mveRichard MacCutchan11-Feb-13 4:45 
GeneralRe: Constructor issue Pin
antrock10111-Feb-13 4:55
antrock10111-Feb-13 4:55 
GeneralRe: Constructor issue Pin
Richard MacCutchan11-Feb-13 5:10
mveRichard MacCutchan11-Feb-13 5:10 
GeneralRe: Constructor issue Pin
Jibesh11-Feb-13 6:38
professionalJibesh11-Feb-13 6:38 
No. You havent done what Abinav suggested to you.
public partial class Form1 : Form
  {
      public OpenFileDialog dialog = new OpenFileDialog();
      System.Data.SqlServerCe.SqlCeConnection con;
      System.Data.SqlServerCe.SqlCeDataAdapter da1;
      DataSet ds1;



      public Form1()
      {
          InitializeComponent();
      }

      private void btn_sel_Click(object sender, EventArgs e)
      {

          //dialog.Filter = "*.sdf";
          dialog.ShowDialog();
          MessageBox.Show(dialog.FileName);
          loadconnection();

      }

      private void btn_close_Click(object sender, EventArgs e)
      {
          Application.Exit();
      }

      public void loadconnection()
      {
          con = new System.Data.SqlServerCe.SqlCeConnection();
          con.ConnectionString = "Data Source=" + dialog.FileName + ""; //opening dialog (selected file)

          con.Open();


          ds1 = new DataSet();
          string sql = "SELECT * From tbl_games";
          da1 = new System.Data.SqlServerCe.SqlCeDataAdapter(sql, con); // Modified this line
          da1.Fill(ds1, "Name");

          con.Close();
      }
  }


Try the above modified code.

BTW: are you writing the above program for WindowsCE device?
Jibesh V P

AnswerRe: Constructor issue Pin
Shameel11-Feb-13 5:02
professionalShameel11-Feb-13 5:02 
Questionif loop cant excuted properly Pin
abhishek91111911-Feb-13 0:36
abhishek91111911-Feb-13 0:36 
AnswerRe: if loop cant excuted properly Pin
Pete O'Hanlon11-Feb-13 0:45
mvePete O'Hanlon11-Feb-13 0:45 
AnswerRe: if loop cant excuted properly Pin
Dave Kreskowiak11-Feb-13 2:09
mveDave Kreskowiak11-Feb-13 2:09 

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.