Click here to Skip to main content
16,008,719 members
Home / Discussions / C#
   

C#

 
GeneralRe: Is it possible to disable Tabs in TabControl? Pin
Christian Graus6-Mar-08 20:37
protectorChristian Graus6-Mar-08 20:37 
GeneralRe: Is it possible to disable Tabs in TabControl? Pin
The Cyclone6-Mar-08 19:58
The Cyclone6-Mar-08 19:58 
GeneralRe: Is it possible to disable Tabs in TabControl? Pin
Christian Graus6-Mar-08 20:38
protectorChristian Graus6-Mar-08 20:38 
AnswerRe: Is it possible to disable Tabs in TabControl? Pin
N a v a n e e t h6-Mar-08 19:51
N a v a n e e t h6-Mar-08 19:51 
GeneralRe: Is it possible to disable Tabs in TabControl? Pin
The Cyclone6-Mar-08 19:54
The Cyclone6-Mar-08 19:54 
GeneralRe: Is it possible to disable Tabs in TabControl? Pin
N a v a n e e t h6-Mar-08 20:03
N a v a n e e t h6-Mar-08 20:03 
GeneralRe: Is it possible to disable Tabs in TabControl? Pin
Laddie6-Mar-08 20:34
Laddie6-Mar-08 20:34 
Generalsetting usercontrol's datasource that is same as parent form Pin
saneng6-Mar-08 19:19
saneng6-Mar-08 19:19 
hi
i m newbie on C# I have created a usercontrol that has a datagridview i use this control on my parent form, the problem is that i want to set the datasource property of my usercontrol the same as my parent form so that
gridview shows the data of the datatable of parent form's dataset'
my coding is like this is it work fine


public partial class UserControl1 : UserControl
{
public DataSet ds;
public DataTable dt;

public UserControl1()
{
InitializeComponent();
}
public dataset ds
{
set
{
this.ds = value;
this.dgvSearch.datasource = ds;
}
get
{
return ds;
}
}
public DataTable dt
{
set
{
this.dt = value;
this.dgvSearch.DataMember = dt;
}
get
{
return dt;
}
}

or m missing something any sort of help will be highly appreciated
Thanks
GeneralRe: setting usercontrol's datasource that is same as parent form Pin
N a v a n e e t h6-Mar-08 19:41
N a v a n e e t h6-Mar-08 19:41 
QuestionList in c# [modified] Pin
Sonia Gupta6-Mar-08 19:10
Sonia Gupta6-Mar-08 19:10 
GeneralRe: List in c# Pin
N a v a n e e t h6-Mar-08 19:34
N a v a n e e t h6-Mar-08 19:34 
GeneralRe: List in c# Pin
Sonia Gupta6-Mar-08 20:24
Sonia Gupta6-Mar-08 20:24 
GeneralRe: List in c# Pin
Christian Graus6-Mar-08 20:47
protectorChristian Graus6-Mar-08 20:47 
GeneralCalling forms Pin
Gregory Bryant6-Mar-08 18:59
Gregory Bryant6-Mar-08 18:59 
GeneralRe: Calling forms Pin
Ajay.k_Singh6-Mar-08 19:06
Ajay.k_Singh6-Mar-08 19:06 
GeneralRe: Calling forms Pin
Gregory Bryant7-Mar-08 6:48
Gregory Bryant7-Mar-08 6:48 
GeneralRe: Calling forms Pin
Christian Graus6-Mar-08 19:48
protectorChristian Graus6-Mar-08 19:48 
GeneralRead DLL Pin
rowdy_vc++6-Mar-08 18:52
rowdy_vc++6-Mar-08 18:52 
GeneralRe: Read DLL Pin
Ajay.k_Singh6-Mar-08 19:22
Ajay.k_Singh6-Mar-08 19:22 
GeneralBrowse for a file and open the file. Pin
new2pgrmg6-Mar-08 18:33
new2pgrmg6-Mar-08 18:33 
GeneralRe: Browse for a file and open the file. Pin
Christian Graus6-Mar-08 18:35
protectorChristian Graus6-Mar-08 18:35 
Generalusing OR in switch case statements Pin
liptonIcedTea6-Mar-08 18:15
liptonIcedTea6-Mar-08 18:15 
GeneralRe: using OR in switch case statements Pin
Christian Graus6-Mar-08 18:31
protectorChristian Graus6-Mar-08 18:31 
GeneralRe: using OR in switch case statements Pin
mav.northwind6-Mar-08 19:01
mav.northwind6-Mar-08 19:01 
GeneralRe: using OR in switch case statements Pin
PIEBALDconsult7-Mar-08 6:01
mvePIEBALDconsult7-Mar-08 6:01 

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.