Click here to Skip to main content
15,891,136 members
Home / Discussions / C#
   

C#

 
QuestionMaking an enterprise app database independent... Pin
Salil Khedkar12-Sep-05 22:23
Salil Khedkar12-Sep-05 22:23 
AnswerRe: Making an enterprise app database independent... Pin
Mohamad Al Husseiny13-Sep-05 7:23
Mohamad Al Husseiny13-Sep-05 7:23 
Questionuse of system.threading.timer Pin
dhol12-Sep-05 21:32
dhol12-Sep-05 21:32 
Questiondatagrid firstvisiblerow Pin
xrado12-Sep-05 20:21
xrado12-Sep-05 20:21 
AnswerRe: datagrid firstvisiblerow Pin
xrado12-Sep-05 20:34
xrado12-Sep-05 20:34 
QuestionC# combo box Pin
cshaaaa12-Sep-05 19:49
cshaaaa12-Sep-05 19:49 
AnswerRe: C# combo box Pin
mav.northwind12-Sep-05 20:06
mav.northwind12-Sep-05 20:06 
AnswerRe: C# combo box Pin
Mohamad Al Husseiny13-Sep-05 6:52
Mohamad Al Husseiny13-Sep-05 6:52 
An example of what Mav told you
public class ComboItemEx
{
private int id;
private string name;
private string address;
public int ID
{
get
{
 return id;
}
set
{
id=value;
}
}
public string Name
{
get
{
return name ;
}
set
{
name=value;
 }
}
public string Address
{
return address;
}
set
{
address=value;
}
public override ToString()
{
// return what you want to display in combobox
  return name;
}
}
and some where you can add it
CombobItemEx cbi=new CombobItemEx();
cbi.ID=44;
cbi.Name="my name";
cbi.Address="my address"
comboBox1.Items.Add(cbi)



MCAD
QuestionAuthenicating remote user using Tokens Pin
akshayswaroop12-Sep-05 18:58
akshayswaroop12-Sep-05 18:58 
AnswerRe: Authenicating remote user using Tokens Pin
Dave Kreskowiak13-Sep-05 4:39
mveDave Kreskowiak13-Sep-05 4:39 
GeneralRe: Authenicating remote user using Tokens Pin
Anonymous13-Sep-05 19:29
Anonymous13-Sep-05 19:29 
GeneralRe: Authenicating remote user using Tokens Pin
Dave Kreskowiak14-Sep-05 1:16
mveDave Kreskowiak14-Sep-05 1:16 
QuestionPreviewWord Pin
Anonymous12-Sep-05 18:40
Anonymous12-Sep-05 18:40 
QuestionHow can I start and close GPRS connect Pin
sp04.tw12-Sep-05 17:31
sp04.tw12-Sep-05 17:31 
QuestionHow to let user input the URL of the web service?? Pin
KT19823812-Sep-05 17:19
KT19823812-Sep-05 17:19 
AnswerRe: How to let user input the URL of the web service?? Pin
Andy Brummer12-Sep-05 17:49
sitebuilderAndy Brummer12-Sep-05 17:49 
QuestionNeed Help With Accessing Web Page Pin
Thaynann12-Sep-05 15:24
Thaynann12-Sep-05 15:24 
AnswerRe: Need Help With Accessing Web Page Pin
Andy Brummer12-Sep-05 17:55
sitebuilderAndy Brummer12-Sep-05 17:55 
QuestionRe: Need Help With Accessing Web Page Pin
Thaynann12-Sep-05 19:14
Thaynann12-Sep-05 19:14 
AnswerRe: Need Help With Accessing Web Page Pin
Andy Brummer13-Sep-05 6:09
sitebuilderAndy Brummer13-Sep-05 6:09 
GeneralRe: Need Help With Accessing Web Page Pin
Thaynann13-Sep-05 12:15
Thaynann13-Sep-05 12:15 
QuestionC# Removing Excel object from Task Manager Pin
dsrao12-Sep-05 14:24
dsrao12-Sep-05 14:24 
AnswerRe: C# Removing Excel object from Task Manager Pin
LeenaSo12-Sep-05 19:59
LeenaSo12-Sep-05 19:59 
AnswerRe: C# Removing Excel object from Task Manager Pin
minhpc_bk12-Sep-05 21:18
minhpc_bk12-Sep-05 21:18 
AnswerRe: C# Removing Excel object from Task Manager Pin
miah alom13-Sep-05 5:37
miah alom13-Sep-05 5:37 

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.