Click here to Skip to main content
15,924,317 members
Home / Discussions / C#
   

C#

 
AnswerRe: Will this cause memory leak? Pin
Nemanja Trifunovic1-Oct-04 6:24
Nemanja Trifunovic1-Oct-04 6:24 
GeneralDataGrid Select Pin
jzb30-Sep-04 16:58
jzb30-Sep-04 16:58 
GeneralRe: DataGrid Select Pin
Christian Graus30-Sep-04 17:07
protectorChristian Graus30-Sep-04 17:07 
GeneralRe: DataGrid Select Pin
IronSnake1-Oct-04 3:08
IronSnake1-Oct-04 3:08 
Generalweb site Pin
cmarmr30-Sep-04 14:52
cmarmr30-Sep-04 14:52 
GeneralRe: web site Pin
Christian Graus30-Sep-04 15:12
protectorChristian Graus30-Sep-04 15:12 
GeneralRe: web site Pin
Nick Parker30-Sep-04 17:18
protectorNick Parker30-Sep-04 17:18 
GeneralThis crashes out on me on dataAdapter.Fill(ds) Pin
mcupryk30-Sep-04 14:40
mcupryk30-Sep-04 14:40 
string strSQL = "SELECT USERID FROM TBUSERS WHERE USERNAME='" + username + "'";
string strDSN = "server=POS;uid=system;pwd=system;database=POS";
OdbcDataAdapter dataAdapter = new OdbcDataAdapter(strSQL, strDSN);
DataSet ds = new DataSet();
dataAdapter.Fill (ds);
DataTable table = ds.Tables[0];

foreach (DataRow row in table.Rows)
{
string pw = row[0].ToString ().TrimEnd (new char[] { ' ' });
if (String.Compare (password, pw, false) == 0)
return true;
}
return false;
GeneralRe: This crashes out on me on dataAdapter.Fill(ds) Pin
Christian Graus30-Sep-04 15:13
protectorChristian Graus30-Sep-04 15:13 
GeneralRe: This crashes out on me on dataAdapter.Fill(ds) Pin
Heath Stewart30-Sep-04 15:27
protectorHeath Stewart30-Sep-04 15:27 
GeneralBinarySearch problem... Pin
Tesic Goran30-Sep-04 13:18
professionalTesic Goran30-Sep-04 13:18 
GeneralRe: BinarySearch problem... Pin
Heath Stewart30-Sep-04 15:16
protectorHeath Stewart30-Sep-04 15:16 
GeneralRe: BinarySearch problem... Pin
Tesic Goran30-Sep-04 17:52
professionalTesic Goran30-Sep-04 17:52 
GeneralRe: BinarySearch problem... Pin
Heath Stewart1-Oct-04 14:38
protectorHeath Stewart1-Oct-04 14:38 
GeneralRe: BinarySearch problem... Pin
Tesic Goran2-Oct-04 14:36
professionalTesic Goran2-Oct-04 14:36 
GeneralDigicam wizard Pin
Alex Korchemniy30-Sep-04 11:18
Alex Korchemniy30-Sep-04 11:18 
GeneralDataGrid Custom Column Header Pin
ddelapasse30-Sep-04 10:44
ddelapasse30-Sep-04 10:44 
GeneralRe: DataGrid Custom Column Header Pin
Heath Stewart30-Sep-04 14:30
protectorHeath Stewart30-Sep-04 14:30 
GeneralRe: DataGrid Custom Column Header Pin
ddelapasse30-Sep-04 14:56
ddelapasse30-Sep-04 14:56 
GeneralRe: DataGrid Custom Column Header Pin
Heath Stewart1-Oct-04 14:36
protectorHeath Stewart1-Oct-04 14:36 
GeneralShortcut Manager Pin
pat27088130-Sep-04 10:11
pat27088130-Sep-04 10:11 
GeneralRe: Shortcut Manager Pin
Heath Stewart30-Sep-04 10:32
protectorHeath Stewart30-Sep-04 10:32 
GeneralRe: ProgressBar Pin
Heath Stewart30-Sep-04 10:28
protectorHeath Stewart30-Sep-04 10:28 
GeneralPerformance of DoubleBuffer in .NET Pin
Wizard_0130-Sep-04 9:41
Wizard_0130-Sep-04 9:41 
GeneralRe: Performance of DoubleBuffer in .NET Pin
Heath Stewart30-Sep-04 10:26
protectorHeath Stewart30-Sep-04 10:26 

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.