Click here to Skip to main content
15,889,281 members
Home / Discussions / C#
   

C#

 
AnswerRe: User Control - comments for public properties in form designer Pin
Martin#10-Apr-07 5:40
Martin#10-Apr-07 5:40 
QuestionListview and remove or disallow duplicates Pin
Saamir10-Apr-07 5:07
Saamir10-Apr-07 5:07 
AnswerRe: Listview and remove or disallow duplicates Pin
Saamir10-Apr-07 6:51
Saamir10-Apr-07 6:51 
QuestionReference type or not Pin
hamidkhan10-Apr-07 4:38
hamidkhan10-Apr-07 4:38 
AnswerRe: Reference type or not Pin
Guffa10-Apr-07 7:08
Guffa10-Apr-07 7:08 
QuestionRe: Reference type or not Pin
hamidkhan10-Apr-07 7:28
hamidkhan10-Apr-07 7:28 
AnswerRe: Reference type or not Pin
Guffa10-Apr-07 8:16
Guffa10-Apr-07 8:16 
QuestionCombobox value Pin
msogun10-Apr-07 4:26
msogun10-Apr-07 4:26 
I am trying to set the global value into into combobox and the value is not showing up in the combobox. Need help. Here is the code.

sql1 = @"SELECT locationNo, cast(locationNo as varchar) + cast(' - ' as varchar) + cast(locationName as varchar) as locationNames FROM Locations WHERE LocationNo = '" + VehicleGlobal.gv_Location + "'";
SqlDataAdapter da1 = new SqlDataAdapter(sql1, conString);
da1.Fill(ds, "Locations");

DataTable dt = ds.Tables["Locations"];
foreach (DataRow row in dt.Rows)
{
VehicleGlobal.gv_LocationName = row["LocationNames"].ToString();
}
this.cboLocation.Text = VehicleGlobal.gv_LocationName
AnswerRe: Combobox value Pin
mark_w_10-Apr-07 5:39
mark_w_10-Apr-07 5:39 
QuestionDataGridView validation Pin
7110-Apr-07 3:56
7110-Apr-07 3:56 
AnswerRe: DataGridView validation Pin
Sathesh Sakthivel10-Apr-07 4:17
Sathesh Sakthivel10-Apr-07 4:17 
AnswerRe: DataGridView validation Pin
sundeeppatil10-Apr-07 11:18
sundeeppatil10-Apr-07 11:18 
QuestionHelp regarding password char in textbox Pin
anu8110-Apr-07 3:56
anu8110-Apr-07 3:56 
AnswerRe: Help regarding password char in textbox Pin
gauthee10-Apr-07 4:05
gauthee10-Apr-07 4:05 
GeneralRe: Help regarding password char in textbox Pin
anu8110-Apr-07 4:14
anu8110-Apr-07 4:14 
GeneralRe: Help regarding password char in textbox Pin
althamda10-Apr-07 5:13
althamda10-Apr-07 5:13 
GeneralRe: Help regarding password char in textbox Pin
anu8110-Apr-07 19:03
anu8110-Apr-07 19:03 
GeneralRe: Help regarding password char in textbox Pin
gauthee10-Apr-07 18:36
gauthee10-Apr-07 18:36 
AnswerRe: Help regarding password char in textbox Pin
nikanth10-Apr-07 4:25
nikanth10-Apr-07 4:25 
QuestionTruncate decimal place Pin
polishprogrammer10-Apr-07 3:36
polishprogrammer10-Apr-07 3:36 
AnswerRe: Truncate decimal place Pin
gauthee10-Apr-07 3:48
gauthee10-Apr-07 3:48 
AnswerRe: Truncate decimal place Pin
Martin#10-Apr-07 3:59
Martin#10-Apr-07 3:59 
AnswerRe: Truncate decimal place Pin
Not Active10-Apr-07 4:31
mentorNot Active10-Apr-07 4:31 
AnswerRe: Truncate decimal place Pin
althamda10-Apr-07 6:00
althamda10-Apr-07 6:00 
AnswerRe: Truncate decimal place Pin
mabo4211-Apr-07 0:05
mabo4211-Apr-07 0:05 

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.