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

C#

 
GeneralRe: how to write in excel cells using DataReader if a particular cell is “ReadOnly” using C# Pin
dan!sh 5-Jul-09 21:10
professional dan!sh 5-Jul-09 21:10 
QuestionC# + MS ACCESS application - daily report problems Pin
daydr3am3r5-Jul-09 19:34
daydr3am3r5-Jul-09 19:34 
Question[Message Deleted] Pin
Bimal's5-Jul-09 19:30
Bimal's5-Jul-09 19:30 
AnswerRe: Making copy of a FILE Pin
Baeltazor5-Jul-09 19:38
Baeltazor5-Jul-09 19:38 
AnswerRe: Making copy of a FILE Pin
Mycroft Holmes5-Jul-09 19:42
professionalMycroft Holmes5-Jul-09 19:42 
AnswerRe: Making copy of a FILE Pin
himanshu25615-Jul-09 19:44
himanshu25615-Jul-09 19:44 
QuestionFinding usages of classes from a reference in Visual Studio (C#) Pin
Bijesh5-Jul-09 18:42
Bijesh5-Jul-09 18:42 
QuestionLink textbox to postgresql database Pin
daffy_20035-Jul-09 17:03
daffy_20035-Jul-09 17:03 
Hi! how am i suppose to do if i wan to search the data in the database by typing the info in the textbox and it will show the information onto the comboBox?

For example, I type the Employee name into the textbox, then from there, it will search the database and show the contact number of the employee in the combobox.

Is there any way to do it?
I tried using npgsql.dll but it keeps giving errors?
This is the code that i used :
string strConnString = "Server=remote_server;Port=5432;User Id=john;Password=john;Database=testserver";
try
{
NpgsqlConnection objConn = new NpgsqlConnection(strConnString);
objConn.Open();
string strSelectCmd = "SELECT MachineID FROM MachineDeviceMatrix";
NpgsqlDataAdapter objDataAdapter = new NpgsqlDataAdapter(strSelectCmd, objConn);
objDataAdapter.Fill(this.MachineDeviceMatrix);
objConn.Close();
}
catch (Exception ex)
{
System.Windows.Forms.MessageBox.Show(ex.Message, "Error message", MessageBoxButtons.OK, MessageBoxIcon.Error);
}

please help, thanks!
AnswerRe: Link textbox to postgresql database Pin
dan!sh 5-Jul-09 18:08
professional dan!sh 5-Jul-09 18:08 
QuestionCreating this "Please wait..." window? Pin
SimpleData5-Jul-09 7:49
SimpleData5-Jul-09 7:49 
AnswerRe: Creating this "Please wait..." window? Pin
dan!sh 5-Jul-09 7:59
professional dan!sh 5-Jul-09 7:59 
GeneralRe: Creating this "Please wait..." window? Pin
SimpleData5-Jul-09 8:09
SimpleData5-Jul-09 8:09 
GeneralRe: Creating this "Please wait..." window? Pin
danzar5-Jul-09 8:31
danzar5-Jul-09 8:31 
GeneralRe: Creating this "Please wait..." window? Pin
SimpleData5-Jul-09 8:35
SimpleData5-Jul-09 8:35 
GeneralRe: Creating this "Please wait..." window? Pin
dan!sh 5-Jul-09 8:41
professional dan!sh 5-Jul-09 8:41 
GeneralRe: Creating this "Please wait..." window? Pin
Christian Graus5-Jul-09 14:13
protectorChristian Graus5-Jul-09 14:13 
GeneralRe: Creating this "Please wait..." window? Pin
SimpleData5-Jul-09 22:48
SimpleData5-Jul-09 22:48 
AnswerRe: Creating this "Please wait..." window? Pin
DaveyM695-Jul-09 8:35
professionalDaveyM695-Jul-09 8:35 
GeneralRe: Creating this "Please wait..." window? Pin
SimpleData5-Jul-09 8:37
SimpleData5-Jul-09 8:37 
GeneralRe: Creating this "Please wait..." window? Pin
DaveyM695-Jul-09 8:54
professionalDaveyM695-Jul-09 8:54 
GeneralRe: Creating this "Please wait..." window? Pin
SimpleData5-Jul-09 9:04
SimpleData5-Jul-09 9:04 
GeneralRe: Creating this "Please wait..." window? Pin
DaveyM695-Jul-09 9:15
professionalDaveyM695-Jul-09 9:15 
AnswerRe: Creating this "Please wait..." window? Pin
Alan N5-Jul-09 9:52
Alan N5-Jul-09 9:52 
QuestionError message Pin
danzar5-Jul-09 7:38
danzar5-Jul-09 7:38 
AnswerRe: Error message Pin
Blue_Boy5-Jul-09 7:40
Blue_Boy5-Jul-09 7:40 

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.