Click here to Skip to main content
15,898,588 members
Home / Discussions / C#
   

C#

 
GeneralRe: Required data through http connection Pin
honeyashu29-Jul-09 22:18
honeyashu29-Jul-09 22:18 
GeneralRe: Required data through http connection Pin
stancrm29-Jul-09 22:31
stancrm29-Jul-09 22:31 
AnswerRe: Required data through http connection Pin
Manas Bhardwaj29-Jul-09 21:08
professionalManas Bhardwaj29-Jul-09 21:08 
AnswerRe: Required data through http connection Pin
stancrm29-Jul-09 21:09
stancrm29-Jul-09 21:09 
Questiondatabase conectivity in C# Pin
MahaKh29-Jul-09 19:19
MahaKh29-Jul-09 19:19 
AnswerRe: database conectivity in C# Pin
Aman Bhullar29-Jul-09 19:25
Aman Bhullar29-Jul-09 19:25 
AnswerRe: database conectivity in C# Pin
bilal haider29-Jul-09 19:45
bilal haider29-Jul-09 19:45 
AnswerRe: database conectivity in C# Pin
CoderForEver29-Jul-09 23:34
CoderForEver29-Jul-09 23:34 
Hey dude I might help u if u can work on SQL ..............
Here is some

using System.Data.SqlClient;

public SqlConnection con = null;
SqlDataAdapter da = new SqlDataAdapter();
/* for the connection
String conStr = @"Data Source=Database Path;" +
                    "AttachDbFilename=" + input1 +
                    ";Integrated Security=True;" +
                    "Connect Timeout=30; User Instance=True";
            con = new SqlConnection(conStr);
/* to update the database using stored procedure

SqlCommand cmd = new SqlCommand();
            cmd.Connection = con;
            cmd.CommandType = CommandType.StoredProcedure;
            cmd.CommandText = "Procedure Name";
            cmd.Parameters.Add("@a", SqlDbType.VarChar).Value = "xxx";
            MessageBox.Show("Employee Removed", "Successfull",);
              
                cmd.ExecuteScalar();


If it is ok dig out more
GeneralRe: database conectivity in C# Pin
nelsonpaixao30-Jul-09 14:34
nelsonpaixao30-Jul-09 14:34 
QuestionHow to find the Position of an element (Html Tag) on an HTML page using c#? Pin
svt gdwl29-Jul-09 18:30
svt gdwl29-Jul-09 18:30 
AnswerRe: How to find the Position of an element (Html Tag) on an HTML page using c#? Pin
dan!sh 29-Jul-09 19:04
professional dan!sh 29-Jul-09 19:04 
QuestionWebBrowser Pin
nelsonpaixao29-Jul-09 18:09
nelsonpaixao29-Jul-09 18:09 
QuestionHow to make repeated calls to a DLL from C#? Pin
J.G.W29-Jul-09 17:09
J.G.W29-Jul-09 17:09 
AnswerRe: How to make repeated calls to a DLL from C#? Pin
Richard Andrew x6429-Jul-09 17:12
professionalRichard Andrew x6429-Jul-09 17:12 
AnswerRe: How to make repeated calls to a DLL from C#? Pin
Vimalsoft(Pty) Ltd29-Jul-09 21:06
professionalVimalsoft(Pty) Ltd29-Jul-09 21:06 
GeneralRe: How to make repeated calls to a DLL from C#? Pin
J.G.W29-Jul-09 23:23
J.G.W29-Jul-09 23:23 
GeneralRe: How to make repeated calls to a DLL from C#? Pin
Vimalsoft(Pty) Ltd29-Jul-09 23:38
professionalVimalsoft(Pty) Ltd29-Jul-09 23:38 
GeneralRe: How to make repeated calls to a DLL from C#? Pin
J.G.W30-Jul-09 17:27
J.G.W30-Jul-09 17:27 
GeneralRe: How to make repeated calls to a DLL from C#? Pin
J.G.W10-Aug-09 16:31
J.G.W10-Aug-09 16:31 
GeneralRe: How to make repeated calls to a DLL from C#? Pin
Blikkies30-Jul-09 1:04
professionalBlikkies30-Jul-09 1:04 
QuestionWordlist.txt file hide? Pin
alrsds29-Jul-09 16:29
alrsds29-Jul-09 16:29 
AnswerRe: Wordlist.txt file hide? Pin
Mycroft Holmes29-Jul-09 17:39
professionalMycroft Holmes29-Jul-09 17:39 
GeneralRe: Wordlist.txt file hide? Pin
harold aptroot29-Jul-09 19:56
harold aptroot29-Jul-09 19:56 
GeneralRe: Wordlist.txt file hide? Pin
Mycroft Holmes29-Jul-09 20:03
professionalMycroft Holmes29-Jul-09 20:03 
GeneralRe: Wordlist.txt file hide? Pin
harold aptroot29-Jul-09 20:28
harold aptroot29-Jul-09 20:28 

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.