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

C#

 
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 
GeneralRe: Error message Pin
danzar5-Jul-09 7:48
danzar5-Jul-09 7:48 
GeneralRe: Error message Pin
Blue_Boy5-Jul-09 7:50
Blue_Boy5-Jul-09 7:50 
GeneralRe: Error message Pin
danzar5-Jul-09 7:58
danzar5-Jul-09 7:58 
QuestionTracing association application Pin
Muammar©5-Jul-09 5:56
Muammar©5-Jul-09 5:56 
AnswerRe: Tracing association application [modified] Pin
dan!sh 5-Jul-09 6:07
professional dan!sh 5-Jul-09 6:07 

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.